summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@outlook.com>2020-12-21 14:54:04 +0100
committerGitHub <noreply@github.com>2020-12-21 14:54:04 +0100
commit9518a273570e8d38438c2a29aa10f987e7d44ce1 (patch)
tree11806582f5e27bad01ae96705f75f431ec3e9caf
parentImprove Enderman targeting (diff)
downloadcuberite-9518a273570e8d38438c2a29aa10f987e7d44ce1.tar
cuberite-9518a273570e8d38438c2a29aa10f987e7d44ce1.tar.gz
cuberite-9518a273570e8d38438c2a29aa10f987e7d44ce1.tar.bz2
cuberite-9518a273570e8d38438c2a29aa10f987e7d44ce1.tar.lz
cuberite-9518a273570e8d38438c2a29aa10f987e7d44ce1.tar.xz
cuberite-9518a273570e8d38438c2a29aa10f987e7d44ce1.tar.zst
cuberite-9518a273570e8d38438c2a29aa10f987e7d44ce1.zip
-rw-r--r--src/BlockState.h27
-rw-r--r--src/CMakeLists.txt1
-rwxr-xr-xsrc/CheckBasicStyle.lua5
-rw-r--r--src/Protocol/ChunkDataSerializer.cpp6
-rw-r--r--src/Protocol/Palettes/Palette_1_13.cpp14113
-rw-r--r--src/Protocol/Palettes/Palette_1_13.h9
-rw-r--r--src/Protocol/Palettes/Palette_1_13_1.cpp14122
-rw-r--r--src/Protocol/Palettes/Palette_1_13_1.h9
-rw-r--r--src/Protocol/Palettes/Palette_1_14.cpp17218
-rw-r--r--src/Protocol/Palettes/Palette_1_14.h9
-rw-r--r--src/Protocol/Palettes/Palette_1_15.cpp17350
-rw-r--r--src/Protocol/Palettes/Palette_1_15.h9
-rw-r--r--src/Protocol/Palettes/Palette_1_16.cpp23536
-rw-r--r--src/Protocol/Palettes/Palette_1_16.h9
-rw-r--r--src/Protocol/Palettes/Upgrade.cpp8
-rw-r--r--src/Protocol/Palettes/Upgrade.h7
-rw-r--r--src/Protocol/Protocol_1_13.cpp8
-rw-r--r--src/Protocol/Protocol_1_14.cpp4
-rw-r--r--src/Registries/BlockStates.cpp (renamed from src/Registries/Blocks.cpp)6053
-rw-r--r--src/Registries/BlockStates.h25485
-rw-r--r--src/Registries/BlockTypes.h768
-rw-r--r--src/Registries/Blocks.h20284
-rw-r--r--src/Registries/CMakeLists.txt5
-rw-r--r--src/Registries/Statistics.h1
-rw-r--r--src/Simulator/IncrementalRedstoneSimulator/RedstoneSimulatorChunkData.h7
-rw-r--r--src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h8
26 files changed, 72531 insertions, 66530 deletions
diff --git a/src/BlockState.h b/src/BlockState.h
new file mode 100644
index 000000000..0928dad83
--- /dev/null
+++ b/src/BlockState.h
@@ -0,0 +1,27 @@
+#pragma once
+
+#include "Registries/BlockTypes.h"
+
+struct BlockState
+{
+ constexpr BlockState(uint_least16_t StateID) :
+ ID(StateID)
+ {
+ }
+
+ /** Gets the block type of this block state. */
+ BlockType Type() const;
+
+ bool operator == (BlockState Block) const
+ {
+ return ID == Block.ID;
+ }
+
+ bool operator != (BlockState Block) const
+ {
+ return ID != Block.ID;
+ }
+
+ /** The state ID of the block state. */
+ uint_least16_t ID;
+};
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index a3d34eb53..3844c6c10 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -72,6 +72,7 @@ target_sources(
BlockArea.h
BlockInServerPluginInterface.h
BlockInfo.h
+ BlockState.h
BlockTracer.h
BlockType.h
BrewingRecipes.h
diff --git a/src/CheckBasicStyle.lua b/src/CheckBasicStyle.lua
index d5b801708..79b4a761d 100755
--- a/src/CheckBasicStyle.lua
+++ b/src/CheckBasicStyle.lua
@@ -41,10 +41,11 @@ local g_ShouldProcessExt =
--- The list of files not to be processed:
local g_IgnoredFiles =
{
- "Bindings/Bindings.h",
"Bindings/Bindings.cpp",
+ "Bindings/Bindings.h",
"Bindings/LuaState_Implementation.cpp",
- "Registries/Blocks.h"
+ "Registries/BlockStates.cpp",
+ "Registries/BlockStates.h"
}
--- The list of files not to be processed, as a dictionary (filename => true), built from g_IgnoredFiles
diff --git a/src/Protocol/ChunkDataSerializer.cpp b/src/Protocol/ChunkDataSerializer.cpp
index d2b8489ea..ac740a145 100644
--- a/src/Protocol/ChunkDataSerializer.cpp
+++ b/src/Protocol/ChunkDataSerializer.cpp
@@ -42,17 +42,17 @@ namespace
auto Palette393(const BLOCKTYPE a_BlockType, const NIBBLETYPE a_Meta)
{
- return Palette_1_13::FromBlock(PaletteUpgrade::FromBlock(a_BlockType, a_Meta));
+ return Palette_1_13::From(PaletteUpgrade::FromBlock(a_BlockType, a_Meta));
}
auto Palette401(const BLOCKTYPE a_BlockType, const NIBBLETYPE a_Meta)
{
- return Palette_1_13_1::FromBlock(PaletteUpgrade::FromBlock(a_BlockType, a_Meta));
+ return Palette_1_13_1::From(PaletteUpgrade::FromBlock(a_BlockType, a_Meta));
}
auto Palette477(const BLOCKTYPE a_BlockType, const NIBBLETYPE a_Meta)
{
- return Palette_1_14::FromBlock(PaletteUpgrade::FromBlock(a_BlockType, a_Meta));
+ return Palette_1_14::From(PaletteUpgrade::FromBlock(a_BlockType, a_Meta));
}
}
diff --git a/src/Protocol/Palettes/Palette_1_13.cpp b/src/Protocol/Palettes/Palette_1_13.cpp
index b6a8bbc0a..513763b2a 100644
--- a/src/Protocol/Palettes/Palette_1_13.cpp
+++ b/src/Protocol/Palettes/Palette_1_13.cpp
@@ -1,7073 +1,7072 @@
#include "Globals.h"
-
#include "Palette_1_13.h"
-#include "../../Registries/Blocks.h"
+#include "Registries/BlockStates.h"
namespace Palette_1_13
{
- UInt32 FromBlock(const short ID)
+ UInt32 From(const BlockState Block)
{
using namespace Block;
- switch (ID)
+ switch (Block.ID)
{
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5399;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5400;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5401;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5402;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5403;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5404;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5405;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5406;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5407;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5408;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5409;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5410;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5411;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5412;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5413;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5414;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5415;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5416;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5417;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5418;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5419;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5420;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5421;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5422;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 7869;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 7870;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 7871;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 7872;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 7873;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 7874;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 7875;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 7876;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 7877;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 7878;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 7879;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 7880;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 7881;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 7882;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 7883;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 7884;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 7885;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 7886;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 7887;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 7888;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 7889;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 7890;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 7891;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 7892;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 7893;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 7894;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 7895;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 7896;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 7897;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 7898;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 7899;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 7900;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 7901;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 7902;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 7903;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 7904;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 7905;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 7906;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 7907;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 7908;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 7909;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 7910;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 7911;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 7912;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 7913;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 7914;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 7915;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 7916;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 7917;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 7918;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 7919;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 7920;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 7921;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 7922;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 7923;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 7924;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 7925;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 7926;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 7927;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 7928;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 7929;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 7930;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 7931;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 7932;
- case AcaciaFence::AcaciaFence(true, true, true, true): return 7615;
- case AcaciaFence::AcaciaFence(true, true, true, false): return 7616;
- case AcaciaFence::AcaciaFence(true, true, false, true): return 7619;
- case AcaciaFence::AcaciaFence(true, true, false, false): return 7620;
- case AcaciaFence::AcaciaFence(true, false, true, true): return 7623;
- case AcaciaFence::AcaciaFence(true, false, true, false): return 7624;
- case AcaciaFence::AcaciaFence(true, false, false, true): return 7627;
- case AcaciaFence::AcaciaFence(true, false, false, false): return 7628;
- case AcaciaFence::AcaciaFence(false, true, true, true): return 7631;
- case AcaciaFence::AcaciaFence(false, true, true, false): return 7632;
- case AcaciaFence::AcaciaFence(false, true, false, true): return 7635;
- case AcaciaFence::AcaciaFence(false, true, false, false): return 7636;
- case AcaciaFence::AcaciaFence(false, false, true, true): return 7639;
- case AcaciaFence::AcaciaFence(false, false, true, false): return 7640;
- case AcaciaFence::AcaciaFence(false, false, false, true): return 7643;
- case AcaciaFence::AcaciaFence(false, false, false, false): return 7644;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7453;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7454;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7455;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7456;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7457;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7458;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7459;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7460;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7461;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7462;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7463;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7464;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7465;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7466;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7467;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7468;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7469;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7470;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7471;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7472;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7473;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7474;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7475;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7476;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7477;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7478;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7479;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7480;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7481;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7482;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7483;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7484;
- case AcaciaLeaves::AcaciaLeaves(1, true): return 200;
- case AcaciaLeaves::AcaciaLeaves(1, false): return 201;
- case AcaciaLeaves::AcaciaLeaves(2, true): return 202;
- case AcaciaLeaves::AcaciaLeaves(2, false): return 203;
- case AcaciaLeaves::AcaciaLeaves(3, true): return 204;
- case AcaciaLeaves::AcaciaLeaves(3, false): return 205;
- case AcaciaLeaves::AcaciaLeaves(4, true): return 206;
- case AcaciaLeaves::AcaciaLeaves(4, false): return 207;
- case AcaciaLeaves::AcaciaLeaves(5, true): return 208;
- case AcaciaLeaves::AcaciaLeaves(5, false): return 209;
- case AcaciaLeaves::AcaciaLeaves(6, true): return 210;
- case AcaciaLeaves::AcaciaLeaves(6, false): return 211;
- case AcaciaLeaves::AcaciaLeaves(7, true): return 212;
- case AcaciaLeaves::AcaciaLeaves(7, false): return 213;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::X): return 84;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Y): return 85;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Z): return 86;
- case AcaciaPlanks::AcaciaPlanks(): return 19;
- case AcaciaPressurePlate::AcaciaPressurePlate(true): return 3375;
- case AcaciaPressurePlate::AcaciaPressurePlate(false): return 3376;
- case AcaciaSapling::AcaciaSapling(0): return 29;
- case AcaciaSapling::AcaciaSapling(1): return 30;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Top): return 7282;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Bottom): return 7284;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Double): return 7286;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6333;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6335;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6337;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6339;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6341;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6343;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6345;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6347;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6349;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6351;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6353;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6355;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6357;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6359;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6361;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6363;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6365;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6367;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6369;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6371;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6373;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6375;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6377;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6379;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6381;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6383;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6385;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6387;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6389;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6391;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6393;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6395;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6397;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6399;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6401;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6403;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6405;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6407;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6409;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6411;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, true): return 3850;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, false): return 3852;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, true): return 3854;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, false): return 3856;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, true): return 3858;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, false): return 3860;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, true): return 3862;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, false): return 3864;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, true): return 3866;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, false): return 3868;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, true): return 3870;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, false): return 3872;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, true): return 3874;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, false): return 3876;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, true): return 3878;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, false): return 3880;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, true): return 3882;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, false): return 3884;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, true): return 3886;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, false): return 3888;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, true): return 3890;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, false): return 3892;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, true): return 3894;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, false): return 3896;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, true): return 3898;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, false): return 3900;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, true): return 3902;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, false): return 3904;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, true): return 3906;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, false): return 3908;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, true): return 3910;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, false): return 3912;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::X): return 120;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Y): return 121;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Z): return 122;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::NorthSouth): return 5780;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::EastWest): return 5781;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingEast): return 5782;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingWest): return 5783;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingNorth): return 5784;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingSouth): return 5785;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::NorthSouth): return 5786;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::EastWest): return 5787;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingEast): return 5788;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingWest): return 5789;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingNorth): return 5790;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingSouth): return 5791;
- case Air::Air(): return -0;
- case Allium::Allium(): return 1114;
- case Andesite::Andesite(): return 6;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZM): return 5567;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZP): return 5568;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_XM): return 5569;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_XP): return 5570;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZM): return 4248;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZP): return 4249;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XM): return 4250;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XP): return 4251;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZM): return 4244;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZP): return 4245;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XM): return 4246;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XP): return 4247;
- case AzureBluet::AzureBluet(): return 1115;
- case Barrier::Barrier(): return 6493;
- case Beacon::Beacon(): return 5136;
- case Bedrock::Bedrock(): return 33;
- case Beetroots::Beetroots(0): return 8158;
- case Beetroots::Beetroots(1): return 8159;
- case Beetroots::Beetroots(2): return 8160;
- case Beetroots::Beetroots(3): return 8161;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5351;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5352;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5353;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5354;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5355;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5356;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5357;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5358;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5359;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5360;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5361;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5362;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5363;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5364;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5365;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5366;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5367;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5368;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5369;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5370;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5371;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5372;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5373;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5374;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 7741;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 7742;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 7743;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 7744;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 7745;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 7746;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 7747;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 7748;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 7749;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 7750;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 7751;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 7752;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 7753;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 7754;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 7755;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 7756;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 7757;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 7758;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 7759;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 7760;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 7761;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 7762;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 7763;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 7764;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 7765;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 7766;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 7767;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 7768;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 7769;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 7770;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 7771;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 7772;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 7773;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 7774;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 7775;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 7776;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 7777;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 7778;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 7779;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 7780;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 7781;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 7782;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 7783;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 7784;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 7785;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 7786;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 7787;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 7788;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 7789;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 7790;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 7791;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 7792;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 7793;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 7794;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 7795;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 7796;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 7797;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 7798;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 7799;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 7800;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 7801;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 7802;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 7803;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 7804;
- case BirchFence::BirchFence(true, true, true, true): return 7551;
- case BirchFence::BirchFence(true, true, true, false): return 7552;
- case BirchFence::BirchFence(true, true, false, true): return 7555;
- case BirchFence::BirchFence(true, true, false, false): return 7556;
- case BirchFence::BirchFence(true, false, true, true): return 7559;
- case BirchFence::BirchFence(true, false, true, false): return 7560;
- case BirchFence::BirchFence(true, false, false, true): return 7563;
- case BirchFence::BirchFence(true, false, false, false): return 7564;
- case BirchFence::BirchFence(false, true, true, true): return 7567;
- case BirchFence::BirchFence(false, true, true, false): return 7568;
- case BirchFence::BirchFence(false, true, false, true): return 7571;
- case BirchFence::BirchFence(false, true, false, false): return 7572;
- case BirchFence::BirchFence(false, false, true, true): return 7575;
- case BirchFence::BirchFence(false, false, true, false): return 7576;
- case BirchFence::BirchFence(false, false, false, true): return 7579;
- case BirchFence::BirchFence(false, false, false, false): return 7580;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7389;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7390;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7391;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7392;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7393;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7394;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7395;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7396;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7397;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7398;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7399;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7400;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7401;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7402;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7403;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7404;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7405;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7406;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7407;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7408;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7409;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7410;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7411;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7412;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7413;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7414;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7415;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7416;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7417;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7418;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7419;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7420;
- case BirchLeaves::BirchLeaves(1, true): return 172;
- case BirchLeaves::BirchLeaves(1, false): return 173;
- case BirchLeaves::BirchLeaves(2, true): return 174;
- case BirchLeaves::BirchLeaves(2, false): return 175;
- case BirchLeaves::BirchLeaves(3, true): return 176;
- case BirchLeaves::BirchLeaves(3, false): return 177;
- case BirchLeaves::BirchLeaves(4, true): return 178;
- case BirchLeaves::BirchLeaves(4, false): return 179;
- case BirchLeaves::BirchLeaves(5, true): return 180;
- case BirchLeaves::BirchLeaves(5, false): return 181;
- case BirchLeaves::BirchLeaves(6, true): return 182;
- case BirchLeaves::BirchLeaves(6, false): return 183;
- case BirchLeaves::BirchLeaves(7, true): return 184;
- case BirchLeaves::BirchLeaves(7, false): return 185;
- case BirchLog::BirchLog(BirchLog::Axis::X): return 78;
- case BirchLog::BirchLog(BirchLog::Axis::Y): return 79;
- case BirchLog::BirchLog(BirchLog::Axis::Z): return 80;
- case BirchPlanks::BirchPlanks(): return 17;
- case BirchPressurePlate::BirchPressurePlate(true): return 3371;
- case BirchPressurePlate::BirchPressurePlate(false): return 3372;
- case BirchSapling::BirchSapling(0): return 25;
- case BirchSapling::BirchSapling(1): return 26;
- case BirchSlab::BirchSlab(BirchSlab::Type::Top): return 7270;
- case BirchSlab::BirchSlab(BirchSlab::Type::Bottom): return 7272;
- case BirchSlab::BirchSlab(BirchSlab::Type::Double): return 7274;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 4965;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 4967;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 4969;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 4971;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 4973;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 4975;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 4977;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 4979;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 4981;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 4983;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 4985;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 4987;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 4989;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 4991;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 4993;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 4995;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 4997;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 4999;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5001;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5003;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5005;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5007;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5009;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5011;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5013;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5015;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5017;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5019;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5021;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5023;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5025;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5027;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5029;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5031;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5033;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5035;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5037;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5039;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5041;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5043;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, true): return 3722;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, false): return 3724;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, true): return 3726;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, false): return 3728;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, true): return 3730;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, false): return 3732;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, true): return 3734;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, false): return 3736;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, true): return 3738;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, false): return 3740;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, true): return 3742;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, false): return 3744;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, true): return 3746;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, false): return 3748;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, true): return 3750;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, false): return 3752;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, true): return 3754;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, false): return 3756;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, true): return 3758;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, false): return 3760;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, true): return 3762;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, false): return 3764;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, true): return 3766;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, false): return 3768;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, true): return 3770;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, false): return 3772;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, true): return 3774;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, false): return 3776;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, true): return 3778;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, false): return 3780;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, true): return 3782;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, false): return 3784;
- case BirchWood::BirchWood(BirchWood::Axis::X): return 114;
- case BirchWood::BirchWood(BirchWood::Axis::Y): return 115;
- case BirchWood::BirchWood(BirchWood::Axis::Z): return 116;
- case BlackBanner::BlackBanner(0): return 7094;
- case BlackBanner::BlackBanner(1): return 7095;
- case BlackBanner::BlackBanner(2): return 7096;
- case BlackBanner::BlackBanner(3): return 7097;
- case BlackBanner::BlackBanner(4): return 7098;
- case BlackBanner::BlackBanner(5): return 7099;
- case BlackBanner::BlackBanner(6): return 7100;
- case BlackBanner::BlackBanner(7): return 7101;
- case BlackBanner::BlackBanner(8): return 7102;
- case BlackBanner::BlackBanner(9): return 7103;
- case BlackBanner::BlackBanner(10): return 7104;
- case BlackBanner::BlackBanner(11): return 7105;
- case BlackBanner::BlackBanner(12): return 7106;
- case BlackBanner::BlackBanner(13): return 7107;
- case BlackBanner::BlackBanner(14): return 7108;
- case BlackBanner::BlackBanner(15): return 7109;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Head): return 988;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Foot): return 989;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Head): return 990;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Foot): return 991;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Head): return 992;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Foot): return 993;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Head): return 994;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Foot): return 995;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Head): return 996;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Foot): return 997;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Head): return 998;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Foot): return 999;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Head): return 1000;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Foot): return 1001;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Head): return 1002;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Foot): return 1003;
- case BlackCarpet::BlackCarpet(): return 6838;
- case BlackConcrete::BlackConcrete(): return 8392;
- case BlackConcretePowder::BlackConcretePowder(): return 8408;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8373;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8374;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8375;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8376;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8307;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8308;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8309;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8310;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8311;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8312;
- case BlackStainedGlass::BlackStainedGlass(): return 3592;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, true): return 6302;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, false): return 6303;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, true): return 6306;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, false): return 6307;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, true): return 6310;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, false): return 6311;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, true): return 6314;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, false): return 6315;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, true): return 6318;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, false): return 6319;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, true): return 6322;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, false): return 6323;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, true): return 6326;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, false): return 6327;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, true): return 6330;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, false): return 6331;
- case BlackTerracotta::BlackTerracotta(): return 5819;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7170;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7171;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XM): return 7172;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XP): return 7173;
- case BlackWool::BlackWool(): return 1098;
- case BlueBanner::BlueBanner(0): return 7030;
- case BlueBanner::BlueBanner(1): return 7031;
- case BlueBanner::BlueBanner(2): return 7032;
- case BlueBanner::BlueBanner(3): return 7033;
- case BlueBanner::BlueBanner(4): return 7034;
- case BlueBanner::BlueBanner(5): return 7035;
- case BlueBanner::BlueBanner(6): return 7036;
- case BlueBanner::BlueBanner(7): return 7037;
- case BlueBanner::BlueBanner(8): return 7038;
- case BlueBanner::BlueBanner(9): return 7039;
- case BlueBanner::BlueBanner(10): return 7040;
- case BlueBanner::BlueBanner(11): return 7041;
- case BlueBanner::BlueBanner(12): return 7042;
- case BlueBanner::BlueBanner(13): return 7043;
- case BlueBanner::BlueBanner(14): return 7044;
- case BlueBanner::BlueBanner(15): return 7045;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Head): return 924;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Foot): return 925;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Head): return 926;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Foot): return 927;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Head): return 928;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Foot): return 929;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Head): return 930;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Foot): return 931;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Head): return 932;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Foot): return 933;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Head): return 934;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Foot): return 935;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Head): return 936;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Foot): return 937;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Head): return 938;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Foot): return 939;
- case BlueCarpet::BlueCarpet(): return 6834;
- case BlueConcrete::BlueConcrete(): return 8388;
- case BlueConcretePowder::BlueConcretePowder(): return 8404;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8357;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8358;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8359;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8360;
- case BlueIce::BlueIce(): return 8572;
- case BlueOrchid::BlueOrchid(): return 1113;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8283;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8284;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8285;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8286;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8287;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8288;
- case BlueStainedGlass::BlueStainedGlass(): return 3588;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, true): return 6174;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, false): return 6175;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, true): return 6178;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, false): return 6179;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, true): return 6182;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, false): return 6183;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, true): return 6186;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, false): return 6187;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, true): return 6190;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, false): return 6191;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, true): return 6194;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, false): return 6195;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, true): return 6198;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, false): return 6199;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, true): return 6202;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, false): return 6203;
- case BlueTerracotta::BlueTerracotta(): return 5815;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7154;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7155;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 7156;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 7157;
- case BlueWool::BlueWool(): return 1094;
- case BoneBlock::BoneBlock(BoneBlock::Axis::X): return 8195;
- case BoneBlock::BoneBlock(BoneBlock::Axis::Y): return 8196;
- case BoneBlock::BoneBlock(BoneBlock::Axis::Z): return 8197;
- case Bookshelf::Bookshelf(): return 1127;
- case BrainCoral::BrainCoral(): return 8460;
- case BrainCoralBlock::BrainCoralBlock(): return 8455;
- case BrainCoralFan::BrainCoralFan(): return 8557;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8513;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8515;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8517;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8519;
- case BrewingStand::BrewingStand(true, true, true): return 4613;
- case BrewingStand::BrewingStand(true, true, false): return 4614;
- case BrewingStand::BrewingStand(true, false, true): return 4615;
- case BrewingStand::BrewingStand(true, false, false): return 4616;
- case BrewingStand::BrewingStand(false, true, true): return 4617;
- case BrewingStand::BrewingStand(false, true, false): return 4618;
- case BrewingStand::BrewingStand(false, false, true): return 4619;
- case BrewingStand::BrewingStand(false, false, false): return 4620;
- case BrickSlab::BrickSlab(BrickSlab::Type::Top): return 7318;
- case BrickSlab::BrickSlab(BrickSlab::Type::Bottom): return 7320;
- case BrickSlab::BrickSlab(BrickSlab::Type::Double): return 7322;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4333;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4335;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4337;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4339;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4341;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4343;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4345;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4347;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4349;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4351;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4353;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4355;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4357;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4359;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4361;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4363;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4365;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4367;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4369;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4371;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4373;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4375;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4377;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4379;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4381;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4383;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4385;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4387;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4389;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4391;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4393;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4395;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4397;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4399;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4401;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4403;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4405;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4407;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4409;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4411;
- case Bricks::Bricks(): return 1125;
- case BrownBanner::BrownBanner(0): return 7046;
- case BrownBanner::BrownBanner(1): return 7047;
- case BrownBanner::BrownBanner(2): return 7048;
- case BrownBanner::BrownBanner(3): return 7049;
- case BrownBanner::BrownBanner(4): return 7050;
- case BrownBanner::BrownBanner(5): return 7051;
- case BrownBanner::BrownBanner(6): return 7052;
- case BrownBanner::BrownBanner(7): return 7053;
- case BrownBanner::BrownBanner(8): return 7054;
- case BrownBanner::BrownBanner(9): return 7055;
- case BrownBanner::BrownBanner(10): return 7056;
- case BrownBanner::BrownBanner(11): return 7057;
- case BrownBanner::BrownBanner(12): return 7058;
- case BrownBanner::BrownBanner(13): return 7059;
- case BrownBanner::BrownBanner(14): return 7060;
- case BrownBanner::BrownBanner(15): return 7061;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Head): return 940;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Foot): return 941;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Head): return 942;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Foot): return 943;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Head): return 944;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Foot): return 945;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Head): return 946;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Foot): return 947;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Head): return 948;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Foot): return 949;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Head): return 950;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Foot): return 951;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Head): return 952;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Foot): return 953;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Head): return 954;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Foot): return 955;
- case BrownCarpet::BrownCarpet(): return 6835;
- case BrownConcrete::BrownConcrete(): return 8389;
- case BrownConcretePowder::BrownConcretePowder(): return 8405;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8361;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8362;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8363;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8364;
- case BrownMushroom::BrownMushroom(): return 1121;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, true): return 3987;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, false): return 3988;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, true): return 3989;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, false): return 3990;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, true): return 3991;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, false): return 3992;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, true): return 3993;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, false): return 3994;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, true): return 3995;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, false): return 3996;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, true): return 3997;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, false): return 3998;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, true): return 3999;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, false): return 4000;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, true): return 4001;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, false): return 4002;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, true): return 4003;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, false): return 4004;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, true): return 4005;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, false): return 4006;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, true): return 4007;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, false): return 4008;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, true): return 4009;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, false): return 4010;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, true): return 4011;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, false): return 4012;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, true): return 4013;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, false): return 4014;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, true): return 4015;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, false): return 4016;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, true): return 4017;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, false): return 4018;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, true): return 4019;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, false): return 4020;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, true): return 4021;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, false): return 4022;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, true): return 4023;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, false): return 4024;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, true): return 4025;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, false): return 4026;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, true): return 4027;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, false): return 4028;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, true): return 4029;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, false): return 4030;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, true): return 4031;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, false): return 4032;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, true): return 4033;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, false): return 4034;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, true): return 4035;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, false): return 4036;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, true): return 4037;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, false): return 4038;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, true): return 4039;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, false): return 4040;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, true): return 4041;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, false): return 4042;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, true): return 4043;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, false): return 4044;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, true): return 4045;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, false): return 4046;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, true): return 4047;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, false): return 4048;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, true): return 4049;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false): return 4050;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8289;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8290;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8291;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8292;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8293;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8294;
- case BrownStainedGlass::BrownStainedGlass(): return 3589;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, true): return 6206;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, false): return 6207;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, true): return 6210;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, false): return 6211;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, true): return 6214;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, false): return 6215;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, true): return 6218;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, false): return 6219;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, true): return 6222;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, false): return 6223;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, true): return 6226;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, false): return 6227;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, true): return 6230;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, false): return 6231;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, true): return 6234;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, false): return 6235;
- case BrownTerracotta::BrownTerracotta(): return 5816;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7158;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7159;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XM): return 7160;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XP): return 7161;
- case BrownWool::BrownWool(): return 1095;
- case BubbleColumn::BubbleColumn(true): return 8576;
- case BubbleColumn::BubbleColumn(false): return 8577;
- case BubbleCoral::BubbleCoral(): return 8461;
- case BubbleCoralBlock::BubbleCoralBlock(): return 8456;
- case BubbleCoralFan::BubbleCoralFan(): return 8559;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8521;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8523;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8525;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8527;
- case Cactus::Cactus(0): return 3425;
- case Cactus::Cactus(1): return 3426;
- case Cactus::Cactus(2): return 3427;
- case Cactus::Cactus(3): return 3428;
- case Cactus::Cactus(4): return 3429;
- case Cactus::Cactus(5): return 3430;
- case Cactus::Cactus(6): return 3431;
- case Cactus::Cactus(7): return 3432;
- case Cactus::Cactus(8): return 3433;
- case Cactus::Cactus(9): return 3434;
- case Cactus::Cactus(10): return 3435;
- case Cactus::Cactus(11): return 3436;
- case Cactus::Cactus(12): return 3437;
- case Cactus::Cactus(13): return 3438;
- case Cactus::Cactus(14): return 3439;
- case Cactus::Cactus(15): return 3440;
- case Cake::Cake(0): return 3506;
- case Cake::Cake(1): return 3507;
- case Cake::Cake(2): return 3508;
- case Cake::Cake(3): return 3509;
- case Cake::Cake(4): return 3510;
- case Cake::Cake(5): return 3511;
- case Cake::Cake(6): return 3512;
- case Carrots::Carrots(0): return 5287;
- case Carrots::Carrots(1): return 5288;
- case Carrots::Carrots(2): return 5289;
- case Carrots::Carrots(3): return 5290;
- case Carrots::Carrots(4): return 5291;
- case Carrots::Carrots(5): return 5292;
- case Carrots::Carrots(6): return 5293;
- case Carrots::Carrots(7): return 5294;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZM): return 3498;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZP): return 3499;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XM): return 3500;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XP): return 3501;
- case Cauldron::Cauldron(0): return 4621;
- case Cauldron::Cauldron(1): return 4622;
- case Cauldron::Cauldron(2): return 4623;
- case Cauldron::Cauldron(3): return 4624;
- case CaveAir::CaveAir(): return 8575;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 8176;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 8177;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 8178;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 8179;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 8180;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 8181;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 8182;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 8183;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 8184;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 8185;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 8186;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 8187;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Single): return 1729;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Left): return 1731;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Right): return 1733;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Single): return 1735;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Left): return 1737;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Right): return 1739;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Single): return 1741;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Left): return 1743;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Right): return 1745;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Single): return 1747;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Left): return 1749;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Right): return 1751;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZM): return 5571;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZP): return 5572;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XM): return 5573;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XP): return 5574;
- case ChiseledQuartzBlock::ChiseledQuartzBlock(): return 5696;
- case ChiseledRedSandstone::ChiseledRedSandstone(): return 7175;
- case ChiseledSandstone::ChiseledSandstone(): return 246;
- case ChiseledStoneBricks::ChiseledStoneBricks(): return 3986;
- case ChorusFlower::ChorusFlower(0): return 8067;
- case ChorusFlower::ChorusFlower(1): return 8068;
- case ChorusFlower::ChorusFlower(2): return 8069;
- case ChorusFlower::ChorusFlower(3): return 8070;
- case ChorusFlower::ChorusFlower(4): return 8071;
- case ChorusFlower::ChorusFlower(5): return 8072;
- case ChorusPlant::ChorusPlant(true, true, true, true, true, true): return 8003;
- case ChorusPlant::ChorusPlant(true, true, true, true, true, false): return 8004;
- case ChorusPlant::ChorusPlant(true, true, true, true, false, true): return 8005;
- case ChorusPlant::ChorusPlant(true, true, true, true, false, false): return 8006;
- case ChorusPlant::ChorusPlant(true, true, true, false, true, true): return 8007;
- case ChorusPlant::ChorusPlant(true, true, true, false, true, false): return 8008;
- case ChorusPlant::ChorusPlant(true, true, true, false, false, true): return 8009;
- case ChorusPlant::ChorusPlant(true, true, true, false, false, false): return 8010;
- case ChorusPlant::ChorusPlant(true, true, false, true, true, true): return 8011;
- case ChorusPlant::ChorusPlant(true, true, false, true, true, false): return 8012;
- case ChorusPlant::ChorusPlant(true, true, false, true, false, true): return 8013;
- case ChorusPlant::ChorusPlant(true, true, false, true, false, false): return 8014;
- case ChorusPlant::ChorusPlant(true, true, false, false, true, true): return 8015;
- case ChorusPlant::ChorusPlant(true, true, false, false, true, false): return 8016;
- case ChorusPlant::ChorusPlant(true, true, false, false, false, true): return 8017;
- case ChorusPlant::ChorusPlant(true, true, false, false, false, false): return 8018;
- case ChorusPlant::ChorusPlant(true, false, true, true, true, true): return 8019;
- case ChorusPlant::ChorusPlant(true, false, true, true, true, false): return 8020;
- case ChorusPlant::ChorusPlant(true, false, true, true, false, true): return 8021;
- case ChorusPlant::ChorusPlant(true, false, true, true, false, false): return 8022;
- case ChorusPlant::ChorusPlant(true, false, true, false, true, true): return 8023;
- case ChorusPlant::ChorusPlant(true, false, true, false, true, false): return 8024;
- case ChorusPlant::ChorusPlant(true, false, true, false, false, true): return 8025;
- case ChorusPlant::ChorusPlant(true, false, true, false, false, false): return 8026;
- case ChorusPlant::ChorusPlant(true, false, false, true, true, true): return 8027;
- case ChorusPlant::ChorusPlant(true, false, false, true, true, false): return 8028;
- case ChorusPlant::ChorusPlant(true, false, false, true, false, true): return 8029;
- case ChorusPlant::ChorusPlant(true, false, false, true, false, false): return 8030;
- case ChorusPlant::ChorusPlant(true, false, false, false, true, true): return 8031;
- case ChorusPlant::ChorusPlant(true, false, false, false, true, false): return 8032;
- case ChorusPlant::ChorusPlant(true, false, false, false, false, true): return 8033;
- case ChorusPlant::ChorusPlant(true, false, false, false, false, false): return 8034;
- case ChorusPlant::ChorusPlant(false, true, true, true, true, true): return 8035;
- case ChorusPlant::ChorusPlant(false, true, true, true, true, false): return 8036;
- case ChorusPlant::ChorusPlant(false, true, true, true, false, true): return 8037;
- case ChorusPlant::ChorusPlant(false, true, true, true, false, false): return 8038;
- case ChorusPlant::ChorusPlant(false, true, true, false, true, true): return 8039;
- case ChorusPlant::ChorusPlant(false, true, true, false, true, false): return 8040;
- case ChorusPlant::ChorusPlant(false, true, true, false, false, true): return 8041;
- case ChorusPlant::ChorusPlant(false, true, true, false, false, false): return 8042;
- case ChorusPlant::ChorusPlant(false, true, false, true, true, true): return 8043;
- case ChorusPlant::ChorusPlant(false, true, false, true, true, false): return 8044;
- case ChorusPlant::ChorusPlant(false, true, false, true, false, true): return 8045;
- case ChorusPlant::ChorusPlant(false, true, false, true, false, false): return 8046;
- case ChorusPlant::ChorusPlant(false, true, false, false, true, true): return 8047;
- case ChorusPlant::ChorusPlant(false, true, false, false, true, false): return 8048;
- case ChorusPlant::ChorusPlant(false, true, false, false, false, true): return 8049;
- case ChorusPlant::ChorusPlant(false, true, false, false, false, false): return 8050;
- case ChorusPlant::ChorusPlant(false, false, true, true, true, true): return 8051;
- case ChorusPlant::ChorusPlant(false, false, true, true, true, false): return 8052;
- case ChorusPlant::ChorusPlant(false, false, true, true, false, true): return 8053;
- case ChorusPlant::ChorusPlant(false, false, true, true, false, false): return 8054;
- case ChorusPlant::ChorusPlant(false, false, true, false, true, true): return 8055;
- case ChorusPlant::ChorusPlant(false, false, true, false, true, false): return 8056;
- case ChorusPlant::ChorusPlant(false, false, true, false, false, true): return 8057;
- case ChorusPlant::ChorusPlant(false, false, true, false, false, false): return 8058;
- case ChorusPlant::ChorusPlant(false, false, false, true, true, true): return 8059;
- case ChorusPlant::ChorusPlant(false, false, false, true, true, false): return 8060;
- case ChorusPlant::ChorusPlant(false, false, false, true, false, true): return 8061;
- case ChorusPlant::ChorusPlant(false, false, false, true, false, false): return 8062;
- case ChorusPlant::ChorusPlant(false, false, false, false, true, true): return 8063;
- case ChorusPlant::ChorusPlant(false, false, false, false, true, false): return 8064;
- case ChorusPlant::ChorusPlant(false, false, false, false, false, true): return 8065;
- case ChorusPlant::ChorusPlant(false, false, false, false, false, false): return 8066;
- case Clay::Clay(): return 3441;
- case CoalBlock::CoalBlock(): return 6840;
- case CoalOre::CoalOre(): return 71;
- case CoarseDirt::CoarseDirt(): return 11;
- case Cobblestone::Cobblestone(): return 14;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Top): return 7312;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Bottom): return 7314;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double): return 7316;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3190;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3192;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3194;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3196;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3198;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3200;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3202;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3204;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3206;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3208;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3210;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3212;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3214;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3216;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3218;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3220;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3222;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3224;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3226;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3228;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3230;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3232;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3234;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3236;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3238;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3240;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3242;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3244;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3246;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3248;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3250;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3252;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3254;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3256;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3258;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3260;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3262;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3264;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3266;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3268;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5139;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5140;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5143;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5144;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5147;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5148;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5151;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5152;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5155;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5156;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5159;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5160;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5163;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5164;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5167;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5168;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5171;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5172;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5175;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5176;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5179;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5180;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5183;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5184;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5187;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5188;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5191;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5192;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5195;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5196;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5199;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5200;
- case Cobweb::Cobweb(): return 1040;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZM): return 4638;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZP): return 4639;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XM): return 4640;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XP): return 4641;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZM): return 4642;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZP): return 4643;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XM): return 4644;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XP): return 4645;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZM): return 4646;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZP): return 4647;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XM): return 4648;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XP): return 4649;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 5124;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 5125;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 5126;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 5127;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 5128;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 5129;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 5130;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 5131;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 5132;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 5133;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 5134;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 5135;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true): return 5635;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false): return 5636;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true): return 5637;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false): return 5638;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true): return 5639;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false): return 5640;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true): return 5641;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false): return 5642;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true): return 5643;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false): return 5644;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true): return 5645;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false): return 5646;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true): return 5647;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false): return 5648;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true): return 5649;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false): return 5650;
- case Conduit::Conduit(): return 8573;
- case CrackedStoneBricks::CrackedStoneBricks(): return 3985;
- case CraftingTable::CraftingTable(): return 3050;
- case CreeperHead::CreeperHead(0): return 5531;
- case CreeperHead::CreeperHead(1): return 5532;
- case CreeperHead::CreeperHead(2): return 5533;
- case CreeperHead::CreeperHead(3): return 5534;
- case CreeperHead::CreeperHead(4): return 5535;
- case CreeperHead::CreeperHead(5): return 5536;
- case CreeperHead::CreeperHead(6): return 5537;
- case CreeperHead::CreeperHead(7): return 5538;
- case CreeperHead::CreeperHead(8): return 5539;
- case CreeperHead::CreeperHead(9): return 5540;
- case CreeperHead::CreeperHead(10): return 5541;
- case CreeperHead::CreeperHead(11): return 5542;
- case CreeperHead::CreeperHead(12): return 5543;
- case CreeperHead::CreeperHead(13): return 5544;
- case CreeperHead::CreeperHead(14): return 5545;
- case CreeperHead::CreeperHead(15): return 5546;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZM): return 5527;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZP): return 5528;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XM): return 5529;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XP): return 5530;
- case CutRedSandstone::CutRedSandstone(): return 7176;
- case CutSandstone::CutSandstone(): return 247;
- case CyanBanner::CyanBanner(0): return 6998;
- case CyanBanner::CyanBanner(1): return 6999;
- case CyanBanner::CyanBanner(2): return 7000;
- case CyanBanner::CyanBanner(3): return 7001;
- case CyanBanner::CyanBanner(4): return 7002;
- case CyanBanner::CyanBanner(5): return 7003;
- case CyanBanner::CyanBanner(6): return 7004;
- case CyanBanner::CyanBanner(7): return 7005;
- case CyanBanner::CyanBanner(8): return 7006;
- case CyanBanner::CyanBanner(9): return 7007;
- case CyanBanner::CyanBanner(10): return 7008;
- case CyanBanner::CyanBanner(11): return 7009;
- case CyanBanner::CyanBanner(12): return 7010;
- case CyanBanner::CyanBanner(13): return 7011;
- case CyanBanner::CyanBanner(14): return 7012;
- case CyanBanner::CyanBanner(15): return 7013;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Head): return 892;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Foot): return 893;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Head): return 894;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Foot): return 895;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Head): return 896;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Foot): return 897;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Head): return 898;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Foot): return 899;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Head): return 900;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Foot): return 901;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Head): return 902;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Foot): return 903;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Head): return 904;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Foot): return 905;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Head): return 906;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Foot): return 907;
- case CyanCarpet::CyanCarpet(): return 6832;
- case CyanConcrete::CyanConcrete(): return 8386;
- case CyanConcretePowder::CyanConcretePowder(): return 8402;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8349;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8350;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8351;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8352;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8271;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8272;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8273;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8274;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8275;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8276;
- case CyanStainedGlass::CyanStainedGlass(): return 3586;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, true): return 6110;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, false): return 6111;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, true): return 6114;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, false): return 6115;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, true): return 6118;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, false): return 6119;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, true): return 6122;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, false): return 6123;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, true): return 6126;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, false): return 6127;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, true): return 6130;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, false): return 6131;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, true): return 6134;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, false): return 6135;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, true): return 6138;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, false): return 6139;
- case CyanTerracotta::CyanTerracotta(): return 5813;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7146;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7147;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XM): return 7148;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XP): return 7149;
- case CyanWool::CyanWool(): return 1092;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZM): return 5575;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZP): return 5576;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XM): return 5577;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XP): return 5578;
- case Dandelion::Dandelion(): return 1111;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5423;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5424;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5425;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5426;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5427;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5428;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5429;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5430;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5431;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5432;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5433;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5434;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5435;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5436;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5437;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5438;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5439;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5440;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5441;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5442;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5443;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5444;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5445;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5446;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 7933;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 7934;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 7935;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 7936;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 7937;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 7938;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 7939;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 7940;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 7941;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 7942;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 7943;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 7944;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 7945;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 7946;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 7947;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 7948;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 7949;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 7950;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 7951;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 7952;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 7953;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 7954;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 7955;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 7956;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 7957;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 7958;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 7959;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 7960;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 7961;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 7962;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 7963;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 7964;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 7965;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 7966;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 7967;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 7968;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 7969;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 7970;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 7971;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 7972;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 7973;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 7974;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 7975;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 7976;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 7977;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 7978;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 7979;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 7980;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 7981;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 7982;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 7983;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 7984;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 7985;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 7986;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 7987;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 7988;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 7989;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 7990;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 7991;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 7992;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 7993;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 7994;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 7995;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 7996;
- case DarkOakFence::DarkOakFence(true, true, true, true): return 7647;
- case DarkOakFence::DarkOakFence(true, true, true, false): return 7648;
- case DarkOakFence::DarkOakFence(true, true, false, true): return 7651;
- case DarkOakFence::DarkOakFence(true, true, false, false): return 7652;
- case DarkOakFence::DarkOakFence(true, false, true, true): return 7655;
- case DarkOakFence::DarkOakFence(true, false, true, false): return 7656;
- case DarkOakFence::DarkOakFence(true, false, false, true): return 7659;
- case DarkOakFence::DarkOakFence(true, false, false, false): return 7660;
- case DarkOakFence::DarkOakFence(false, true, true, true): return 7663;
- case DarkOakFence::DarkOakFence(false, true, true, false): return 7664;
- case DarkOakFence::DarkOakFence(false, true, false, true): return 7667;
- case DarkOakFence::DarkOakFence(false, true, false, false): return 7668;
- case DarkOakFence::DarkOakFence(false, false, true, true): return 7671;
- case DarkOakFence::DarkOakFence(false, false, true, false): return 7672;
- case DarkOakFence::DarkOakFence(false, false, false, true): return 7675;
- case DarkOakFence::DarkOakFence(false, false, false, false): return 7676;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7485;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7486;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7487;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7488;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7489;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7490;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7491;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7492;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7493;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7494;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7495;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7496;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7497;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7498;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7499;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7500;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7501;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7502;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7503;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7504;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7505;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7506;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7507;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7508;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7509;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7510;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7511;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7512;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7513;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7514;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7515;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7516;
- case DarkOakLeaves::DarkOakLeaves(1, true): return 214;
- case DarkOakLeaves::DarkOakLeaves(1, false): return 215;
- case DarkOakLeaves::DarkOakLeaves(2, true): return 216;
- case DarkOakLeaves::DarkOakLeaves(2, false): return 217;
- case DarkOakLeaves::DarkOakLeaves(3, true): return 218;
- case DarkOakLeaves::DarkOakLeaves(3, false): return 219;
- case DarkOakLeaves::DarkOakLeaves(4, true): return 220;
- case DarkOakLeaves::DarkOakLeaves(4, false): return 221;
- case DarkOakLeaves::DarkOakLeaves(5, true): return 222;
- case DarkOakLeaves::DarkOakLeaves(5, false): return 223;
- case DarkOakLeaves::DarkOakLeaves(6, true): return 224;
- case DarkOakLeaves::DarkOakLeaves(6, false): return 225;
- case DarkOakLeaves::DarkOakLeaves(7, true): return 226;
- case DarkOakLeaves::DarkOakLeaves(7, false): return 227;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::X): return 87;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Y): return 88;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Z): return 89;
- case DarkOakPlanks::DarkOakPlanks(): return 20;
- case DarkOakPressurePlate::DarkOakPressurePlate(true): return 3377;
- case DarkOakPressurePlate::DarkOakPressurePlate(false): return 3378;
- case DarkOakSapling::DarkOakSapling(0): return 31;
- case DarkOakSapling::DarkOakSapling(1): return 32;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Top): return 7288;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Bottom): return 7290;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Double): return 7292;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6413;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6415;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6417;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6419;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6421;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6423;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6425;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6427;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6429;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6431;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6433;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6435;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6437;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6439;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6441;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6443;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6445;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6447;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6449;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6451;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6453;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6455;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6457;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6459;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6461;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6463;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6465;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6467;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6469;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6471;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6473;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6475;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6477;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6479;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6481;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6483;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6485;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6487;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6489;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6491;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, true): return 3914;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, false): return 3916;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, true): return 3918;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, false): return 3920;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, true): return 3922;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, false): return 3924;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, true): return 3926;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, false): return 3928;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, true): return 3930;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, false): return 3932;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, true): return 3934;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, false): return 3936;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, true): return 3938;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, false): return 3940;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, true): return 3942;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, false): return 3944;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, true): return 3946;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, false): return 3948;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, true): return 3950;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, false): return 3952;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, true): return 3954;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, false): return 3956;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, true): return 3958;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, false): return 3960;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, true): return 3962;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, false): return 3964;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, true): return 3966;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, false): return 3968;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, true): return 3970;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, false): return 3972;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, true): return 3974;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, false): return 3976;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::X): return 123;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Y): return 124;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Z): return 125;
- case DarkPrismarine::DarkPrismarine(): return 6560;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Top): return 6814;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Bottom): return 6816;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Double): return 6818;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 6722;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 6724;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 6726;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 6728;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 6730;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 6732;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 6734;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 6736;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 6738;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 6740;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 6742;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 6744;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 6746;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 6748;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 6750;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 6752;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 6754;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 6756;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 6758;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 6760;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 6762;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 6764;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 6766;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 6768;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 6770;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 6772;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 6774;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 6776;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 6778;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 6780;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 6782;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 6784;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 6786;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 6788;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 6790;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 6792;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 6794;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 6796;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 6798;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 6800;
- case DaylightDetector::DaylightDetector(true, 0): return 5651;
- case DaylightDetector::DaylightDetector(true, 1): return 5652;
- case DaylightDetector::DaylightDetector(true, 2): return 5653;
- case DaylightDetector::DaylightDetector(true, 3): return 5654;
- case DaylightDetector::DaylightDetector(true, 4): return 5655;
- case DaylightDetector::DaylightDetector(true, 5): return 5656;
- case DaylightDetector::DaylightDetector(true, 6): return 5657;
- case DaylightDetector::DaylightDetector(true, 7): return 5658;
- case DaylightDetector::DaylightDetector(true, 8): return 5659;
- case DaylightDetector::DaylightDetector(true, 9): return 5660;
- case DaylightDetector::DaylightDetector(true, 10): return 5661;
- case DaylightDetector::DaylightDetector(true, 11): return 5662;
- case DaylightDetector::DaylightDetector(true, 12): return 5663;
- case DaylightDetector::DaylightDetector(true, 13): return 5664;
- case DaylightDetector::DaylightDetector(true, 14): return 5665;
- case DaylightDetector::DaylightDetector(true, 15): return 5666;
- case DaylightDetector::DaylightDetector(false, 0): return 5667;
- case DaylightDetector::DaylightDetector(false, 1): return 5668;
- case DaylightDetector::DaylightDetector(false, 2): return 5669;
- case DaylightDetector::DaylightDetector(false, 3): return 5670;
- case DaylightDetector::DaylightDetector(false, 4): return 5671;
- case DaylightDetector::DaylightDetector(false, 5): return 5672;
- case DaylightDetector::DaylightDetector(false, 6): return 5673;
- case DaylightDetector::DaylightDetector(false, 7): return 5674;
- case DaylightDetector::DaylightDetector(false, 8): return 5675;
- case DaylightDetector::DaylightDetector(false, 9): return 5676;
- case DaylightDetector::DaylightDetector(false, 10): return 5677;
- case DaylightDetector::DaylightDetector(false, 11): return 5678;
- case DaylightDetector::DaylightDetector(false, 12): return 5679;
- case DaylightDetector::DaylightDetector(false, 13): return 5680;
- case DaylightDetector::DaylightDetector(false, 14): return 5681;
- case DaylightDetector::DaylightDetector(false, 15): return 5682;
- case DeadBrainCoralBlock::DeadBrainCoralBlock(): return 8450;
- case DeadBrainCoralFan::DeadBrainCoralFan(): return 8547;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8473;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8475;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8477;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8479;
- case DeadBubbleCoralBlock::DeadBubbleCoralBlock(): return 8451;
- case DeadBubbleCoralFan::DeadBubbleCoralFan(): return 8549;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8481;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8483;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8485;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8487;
- case DeadBush::DeadBush(): return 1043;
- case DeadFireCoralBlock::DeadFireCoralBlock(): return 8452;
- case DeadFireCoralFan::DeadFireCoralFan(): return 8551;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8489;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8491;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8493;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8495;
- case DeadHornCoralBlock::DeadHornCoralBlock(): return 8453;
- case DeadHornCoralFan::DeadHornCoralFan(): return 8553;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8497;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8499;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8501;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8503;
- case DeadTubeCoralBlock::DeadTubeCoralBlock(): return 8449;
- case DeadTubeCoralFan::DeadTubeCoralFan(): return 8545;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8465;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8467;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8469;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8471;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::NorthSouth): return 1016;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::EastWest): return 1017;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingEast): return 1018;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingWest): return 1019;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingNorth): return 1020;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingSouth): return 1021;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::NorthSouth): return 1022;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::EastWest): return 1023;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingEast): return 1024;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingWest): return 1025;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingNorth): return 1026;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingSouth): return 1027;
- case DiamondBlock::DiamondBlock(): return 3049;
- case DiamondOre::DiamondOre(): return 3048;
- case Diorite::Diorite(): return 4;
- case Dirt::Dirt(): return 10;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, true): return 233;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, false): return 234;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, true): return 235;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, false): return 236;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, true): return 237;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, false): return 238;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, true): return 239;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, false): return 240;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, true): return 241;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, false): return 242;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, true): return 243;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, false): return 244;
- case DragonEgg::DragonEgg(): return 4635;
- case DragonHead::DragonHead(0): return 5551;
- case DragonHead::DragonHead(1): return 5552;
- case DragonHead::DragonHead(2): return 5553;
- case DragonHead::DragonHead(3): return 5554;
- case DragonHead::DragonHead(4): return 5555;
- case DragonHead::DragonHead(5): return 5556;
- case DragonHead::DragonHead(6): return 5557;
- case DragonHead::DragonHead(7): return 5558;
- case DragonHead::DragonHead(8): return 5559;
- case DragonHead::DragonHead(9): return 5560;
- case DragonHead::DragonHead(10): return 5561;
- case DragonHead::DragonHead(11): return 5562;
- case DragonHead::DragonHead(12): return 5563;
- case DragonHead::DragonHead(13): return 5564;
- case DragonHead::DragonHead(14): return 5565;
- case DragonHead::DragonHead(15): return 5566;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZM): return 5547;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZP): return 5548;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XM): return 5549;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XP): return 5550;
- case DriedKelpBlock::DriedKelpBlock(): return 8436;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, true): return 5792;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, false): return 5793;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, true): return 5794;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, false): return 5795;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, true): return 5796;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, false): return 5797;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, true): return 5798;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, false): return 5799;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, true): return 5800;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, false): return 5801;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, true): return 5802;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, false): return 5803;
- case EmeraldBlock::EmeraldBlock(): return 4883;
- case EmeraldOre::EmeraldOre(): return 4730;
- case EnchantingTable::EnchantingTable(): return 4612;
- case EndGateway::EndGateway(): return 8163;
- case EndPortal::EndPortal(): return 4625;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZM): return 4626;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZP): return 4627;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XM): return 4628;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XP): return 4629;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZM): return 4630;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZP): return 4631;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XM): return 4632;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XP): return 4633;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZM): return 7997;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_XP): return 7998;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZP): return 7999;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_XM): return 8000;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_YP): return 8001;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_YM): return 8002;
- case EndStone::EndStone(): return 4634;
- case EndStoneBricks::EndStoneBricks(): return 8157;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZM): return 4732;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZP): return 4734;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XM): return 4736;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XP): return 4738;
- case Farmland::Farmland(0): return 3059;
- case Farmland::Farmland(1): return 3060;
- case Farmland::Farmland(2): return 3061;
- case Farmland::Farmland(3): return 3062;
- case Farmland::Farmland(4): return 3063;
- case Farmland::Farmland(5): return 3064;
- case Farmland::Farmland(6): return 3065;
- case Farmland::Farmland(7): return 3066;
- case Fern::Fern(): return 1042;
- case Fire::Fire(0, true, true, true, true, true): return 1135;
- case Fire::Fire(0, true, true, true, true, false): return 1136;
- case Fire::Fire(0, true, true, true, false, true): return 1137;
- case Fire::Fire(0, true, true, true, false, false): return 1138;
- case Fire::Fire(0, true, true, false, true, true): return 1139;
- case Fire::Fire(0, true, true, false, true, false): return 1140;
- case Fire::Fire(0, true, true, false, false, true): return 1141;
- case Fire::Fire(0, true, true, false, false, false): return 1142;
- case Fire::Fire(0, true, false, true, true, true): return 1143;
- case Fire::Fire(0, true, false, true, true, false): return 1144;
- case Fire::Fire(0, true, false, true, false, true): return 1145;
- case Fire::Fire(0, true, false, true, false, false): return 1146;
- case Fire::Fire(0, true, false, false, true, true): return 1147;
- case Fire::Fire(0, true, false, false, true, false): return 1148;
- case Fire::Fire(0, true, false, false, false, true): return 1149;
- case Fire::Fire(0, true, false, false, false, false): return 1150;
- case Fire::Fire(0, false, true, true, true, true): return 1151;
- case Fire::Fire(0, false, true, true, true, false): return 1152;
- case Fire::Fire(0, false, true, true, false, true): return 1153;
- case Fire::Fire(0, false, true, true, false, false): return 1154;
- case Fire::Fire(0, false, true, false, true, true): return 1155;
- case Fire::Fire(0, false, true, false, true, false): return 1156;
- case Fire::Fire(0, false, true, false, false, true): return 1157;
- case Fire::Fire(0, false, true, false, false, false): return 1158;
- case Fire::Fire(0, false, false, true, true, true): return 1159;
- case Fire::Fire(0, false, false, true, true, false): return 1160;
- case Fire::Fire(0, false, false, true, false, true): return 1161;
- case Fire::Fire(0, false, false, true, false, false): return 1162;
- case Fire::Fire(0, false, false, false, true, true): return 1163;
- case Fire::Fire(0, false, false, false, true, false): return 1164;
- case Fire::Fire(0, false, false, false, false, true): return 1165;
- case Fire::Fire(0, false, false, false, false, false): return 1166;
- case Fire::Fire(1, true, true, true, true, true): return 1167;
- case Fire::Fire(1, true, true, true, true, false): return 1168;
- case Fire::Fire(1, true, true, true, false, true): return 1169;
- case Fire::Fire(1, true, true, true, false, false): return 1170;
- case Fire::Fire(1, true, true, false, true, true): return 1171;
- case Fire::Fire(1, true, true, false, true, false): return 1172;
- case Fire::Fire(1, true, true, false, false, true): return 1173;
- case Fire::Fire(1, true, true, false, false, false): return 1174;
- case Fire::Fire(1, true, false, true, true, true): return 1175;
- case Fire::Fire(1, true, false, true, true, false): return 1176;
- case Fire::Fire(1, true, false, true, false, true): return 1177;
- case Fire::Fire(1, true, false, true, false, false): return 1178;
- case Fire::Fire(1, true, false, false, true, true): return 1179;
- case Fire::Fire(1, true, false, false, true, false): return 1180;
- case Fire::Fire(1, true, false, false, false, true): return 1181;
- case Fire::Fire(1, true, false, false, false, false): return 1182;
- case Fire::Fire(1, false, true, true, true, true): return 1183;
- case Fire::Fire(1, false, true, true, true, false): return 1184;
- case Fire::Fire(1, false, true, true, false, true): return 1185;
- case Fire::Fire(1, false, true, true, false, false): return 1186;
- case Fire::Fire(1, false, true, false, true, true): return 1187;
- case Fire::Fire(1, false, true, false, true, false): return 1188;
- case Fire::Fire(1, false, true, false, false, true): return 1189;
- case Fire::Fire(1, false, true, false, false, false): return 1190;
- case Fire::Fire(1, false, false, true, true, true): return 1191;
- case Fire::Fire(1, false, false, true, true, false): return 1192;
- case Fire::Fire(1, false, false, true, false, true): return 1193;
- case Fire::Fire(1, false, false, true, false, false): return 1194;
- case Fire::Fire(1, false, false, false, true, true): return 1195;
- case Fire::Fire(1, false, false, false, true, false): return 1196;
- case Fire::Fire(1, false, false, false, false, true): return 1197;
- case Fire::Fire(1, false, false, false, false, false): return 1198;
- case Fire::Fire(2, true, true, true, true, true): return 1199;
- case Fire::Fire(2, true, true, true, true, false): return 1200;
- case Fire::Fire(2, true, true, true, false, true): return 1201;
- case Fire::Fire(2, true, true, true, false, false): return 1202;
- case Fire::Fire(2, true, true, false, true, true): return 1203;
- case Fire::Fire(2, true, true, false, true, false): return 1204;
- case Fire::Fire(2, true, true, false, false, true): return 1205;
- case Fire::Fire(2, true, true, false, false, false): return 1206;
- case Fire::Fire(2, true, false, true, true, true): return 1207;
- case Fire::Fire(2, true, false, true, true, false): return 1208;
- case Fire::Fire(2, true, false, true, false, true): return 1209;
- case Fire::Fire(2, true, false, true, false, false): return 1210;
- case Fire::Fire(2, true, false, false, true, true): return 1211;
- case Fire::Fire(2, true, false, false, true, false): return 1212;
- case Fire::Fire(2, true, false, false, false, true): return 1213;
- case Fire::Fire(2, true, false, false, false, false): return 1214;
- case Fire::Fire(2, false, true, true, true, true): return 1215;
- case Fire::Fire(2, false, true, true, true, false): return 1216;
- case Fire::Fire(2, false, true, true, false, true): return 1217;
- case Fire::Fire(2, false, true, true, false, false): return 1218;
- case Fire::Fire(2, false, true, false, true, true): return 1219;
- case Fire::Fire(2, false, true, false, true, false): return 1220;
- case Fire::Fire(2, false, true, false, false, true): return 1221;
- case Fire::Fire(2, false, true, false, false, false): return 1222;
- case Fire::Fire(2, false, false, true, true, true): return 1223;
- case Fire::Fire(2, false, false, true, true, false): return 1224;
- case Fire::Fire(2, false, false, true, false, true): return 1225;
- case Fire::Fire(2, false, false, true, false, false): return 1226;
- case Fire::Fire(2, false, false, false, true, true): return 1227;
- case Fire::Fire(2, false, false, false, true, false): return 1228;
- case Fire::Fire(2, false, false, false, false, true): return 1229;
- case Fire::Fire(2, false, false, false, false, false): return 1230;
- case Fire::Fire(3, true, true, true, true, true): return 1231;
- case Fire::Fire(3, true, true, true, true, false): return 1232;
- case Fire::Fire(3, true, true, true, false, true): return 1233;
- case Fire::Fire(3, true, true, true, false, false): return 1234;
- case Fire::Fire(3, true, true, false, true, true): return 1235;
- case Fire::Fire(3, true, true, false, true, false): return 1236;
- case Fire::Fire(3, true, true, false, false, true): return 1237;
- case Fire::Fire(3, true, true, false, false, false): return 1238;
- case Fire::Fire(3, true, false, true, true, true): return 1239;
- case Fire::Fire(3, true, false, true, true, false): return 1240;
- case Fire::Fire(3, true, false, true, false, true): return 1241;
- case Fire::Fire(3, true, false, true, false, false): return 1242;
- case Fire::Fire(3, true, false, false, true, true): return 1243;
- case Fire::Fire(3, true, false, false, true, false): return 1244;
- case Fire::Fire(3, true, false, false, false, true): return 1245;
- case Fire::Fire(3, true, false, false, false, false): return 1246;
- case Fire::Fire(3, false, true, true, true, true): return 1247;
- case Fire::Fire(3, false, true, true, true, false): return 1248;
- case Fire::Fire(3, false, true, true, false, true): return 1249;
- case Fire::Fire(3, false, true, true, false, false): return 1250;
- case Fire::Fire(3, false, true, false, true, true): return 1251;
- case Fire::Fire(3, false, true, false, true, false): return 1252;
- case Fire::Fire(3, false, true, false, false, true): return 1253;
- case Fire::Fire(3, false, true, false, false, false): return 1254;
- case Fire::Fire(3, false, false, true, true, true): return 1255;
- case Fire::Fire(3, false, false, true, true, false): return 1256;
- case Fire::Fire(3, false, false, true, false, true): return 1257;
- case Fire::Fire(3, false, false, true, false, false): return 1258;
- case Fire::Fire(3, false, false, false, true, true): return 1259;
- case Fire::Fire(3, false, false, false, true, false): return 1260;
- case Fire::Fire(3, false, false, false, false, true): return 1261;
- case Fire::Fire(3, false, false, false, false, false): return 1262;
- case Fire::Fire(4, true, true, true, true, true): return 1263;
- case Fire::Fire(4, true, true, true, true, false): return 1264;
- case Fire::Fire(4, true, true, true, false, true): return 1265;
- case Fire::Fire(4, true, true, true, false, false): return 1266;
- case Fire::Fire(4, true, true, false, true, true): return 1267;
- case Fire::Fire(4, true, true, false, true, false): return 1268;
- case Fire::Fire(4, true, true, false, false, true): return 1269;
- case Fire::Fire(4, true, true, false, false, false): return 1270;
- case Fire::Fire(4, true, false, true, true, true): return 1271;
- case Fire::Fire(4, true, false, true, true, false): return 1272;
- case Fire::Fire(4, true, false, true, false, true): return 1273;
- case Fire::Fire(4, true, false, true, false, false): return 1274;
- case Fire::Fire(4, true, false, false, true, true): return 1275;
- case Fire::Fire(4, true, false, false, true, false): return 1276;
- case Fire::Fire(4, true, false, false, false, true): return 1277;
- case Fire::Fire(4, true, false, false, false, false): return 1278;
- case Fire::Fire(4, false, true, true, true, true): return 1279;
- case Fire::Fire(4, false, true, true, true, false): return 1280;
- case Fire::Fire(4, false, true, true, false, true): return 1281;
- case Fire::Fire(4, false, true, true, false, false): return 1282;
- case Fire::Fire(4, false, true, false, true, true): return 1283;
- case Fire::Fire(4, false, true, false, true, false): return 1284;
- case Fire::Fire(4, false, true, false, false, true): return 1285;
- case Fire::Fire(4, false, true, false, false, false): return 1286;
- case Fire::Fire(4, false, false, true, true, true): return 1287;
- case Fire::Fire(4, false, false, true, true, false): return 1288;
- case Fire::Fire(4, false, false, true, false, true): return 1289;
- case Fire::Fire(4, false, false, true, false, false): return 1290;
- case Fire::Fire(4, false, false, false, true, true): return 1291;
- case Fire::Fire(4, false, false, false, true, false): return 1292;
- case Fire::Fire(4, false, false, false, false, true): return 1293;
- case Fire::Fire(4, false, false, false, false, false): return 1294;
- case Fire::Fire(5, true, true, true, true, true): return 1295;
- case Fire::Fire(5, true, true, true, true, false): return 1296;
- case Fire::Fire(5, true, true, true, false, true): return 1297;
- case Fire::Fire(5, true, true, true, false, false): return 1298;
- case Fire::Fire(5, true, true, false, true, true): return 1299;
- case Fire::Fire(5, true, true, false, true, false): return 1300;
- case Fire::Fire(5, true, true, false, false, true): return 1301;
- case Fire::Fire(5, true, true, false, false, false): return 1302;
- case Fire::Fire(5, true, false, true, true, true): return 1303;
- case Fire::Fire(5, true, false, true, true, false): return 1304;
- case Fire::Fire(5, true, false, true, false, true): return 1305;
- case Fire::Fire(5, true, false, true, false, false): return 1306;
- case Fire::Fire(5, true, false, false, true, true): return 1307;
- case Fire::Fire(5, true, false, false, true, false): return 1308;
- case Fire::Fire(5, true, false, false, false, true): return 1309;
- case Fire::Fire(5, true, false, false, false, false): return 1310;
- case Fire::Fire(5, false, true, true, true, true): return 1311;
- case Fire::Fire(5, false, true, true, true, false): return 1312;
- case Fire::Fire(5, false, true, true, false, true): return 1313;
- case Fire::Fire(5, false, true, true, false, false): return 1314;
- case Fire::Fire(5, false, true, false, true, true): return 1315;
- case Fire::Fire(5, false, true, false, true, false): return 1316;
- case Fire::Fire(5, false, true, false, false, true): return 1317;
- case Fire::Fire(5, false, true, false, false, false): return 1318;
- case Fire::Fire(5, false, false, true, true, true): return 1319;
- case Fire::Fire(5, false, false, true, true, false): return 1320;
- case Fire::Fire(5, false, false, true, false, true): return 1321;
- case Fire::Fire(5, false, false, true, false, false): return 1322;
- case Fire::Fire(5, false, false, false, true, true): return 1323;
- case Fire::Fire(5, false, false, false, true, false): return 1324;
- case Fire::Fire(5, false, false, false, false, true): return 1325;
- case Fire::Fire(5, false, false, false, false, false): return 1326;
- case Fire::Fire(6, true, true, true, true, true): return 1327;
- case Fire::Fire(6, true, true, true, true, false): return 1328;
- case Fire::Fire(6, true, true, true, false, true): return 1329;
- case Fire::Fire(6, true, true, true, false, false): return 1330;
- case Fire::Fire(6, true, true, false, true, true): return 1331;
- case Fire::Fire(6, true, true, false, true, false): return 1332;
- case Fire::Fire(6, true, true, false, false, true): return 1333;
- case Fire::Fire(6, true, true, false, false, false): return 1334;
- case Fire::Fire(6, true, false, true, true, true): return 1335;
- case Fire::Fire(6, true, false, true, true, false): return 1336;
- case Fire::Fire(6, true, false, true, false, true): return 1337;
- case Fire::Fire(6, true, false, true, false, false): return 1338;
- case Fire::Fire(6, true, false, false, true, true): return 1339;
- case Fire::Fire(6, true, false, false, true, false): return 1340;
- case Fire::Fire(6, true, false, false, false, true): return 1341;
- case Fire::Fire(6, true, false, false, false, false): return 1342;
- case Fire::Fire(6, false, true, true, true, true): return 1343;
- case Fire::Fire(6, false, true, true, true, false): return 1344;
- case Fire::Fire(6, false, true, true, false, true): return 1345;
- case Fire::Fire(6, false, true, true, false, false): return 1346;
- case Fire::Fire(6, false, true, false, true, true): return 1347;
- case Fire::Fire(6, false, true, false, true, false): return 1348;
- case Fire::Fire(6, false, true, false, false, true): return 1349;
- case Fire::Fire(6, false, true, false, false, false): return 1350;
- case Fire::Fire(6, false, false, true, true, true): return 1351;
- case Fire::Fire(6, false, false, true, true, false): return 1352;
- case Fire::Fire(6, false, false, true, false, true): return 1353;
- case Fire::Fire(6, false, false, true, false, false): return 1354;
- case Fire::Fire(6, false, false, false, true, true): return 1355;
- case Fire::Fire(6, false, false, false, true, false): return 1356;
- case Fire::Fire(6, false, false, false, false, true): return 1357;
- case Fire::Fire(6, false, false, false, false, false): return 1358;
- case Fire::Fire(7, true, true, true, true, true): return 1359;
- case Fire::Fire(7, true, true, true, true, false): return 1360;
- case Fire::Fire(7, true, true, true, false, true): return 1361;
- case Fire::Fire(7, true, true, true, false, false): return 1362;
- case Fire::Fire(7, true, true, false, true, true): return 1363;
- case Fire::Fire(7, true, true, false, true, false): return 1364;
- case Fire::Fire(7, true, true, false, false, true): return 1365;
- case Fire::Fire(7, true, true, false, false, false): return 1366;
- case Fire::Fire(7, true, false, true, true, true): return 1367;
- case Fire::Fire(7, true, false, true, true, false): return 1368;
- case Fire::Fire(7, true, false, true, false, true): return 1369;
- case Fire::Fire(7, true, false, true, false, false): return 1370;
- case Fire::Fire(7, true, false, false, true, true): return 1371;
- case Fire::Fire(7, true, false, false, true, false): return 1372;
- case Fire::Fire(7, true, false, false, false, true): return 1373;
- case Fire::Fire(7, true, false, false, false, false): return 1374;
- case Fire::Fire(7, false, true, true, true, true): return 1375;
- case Fire::Fire(7, false, true, true, true, false): return 1376;
- case Fire::Fire(7, false, true, true, false, true): return 1377;
- case Fire::Fire(7, false, true, true, false, false): return 1378;
- case Fire::Fire(7, false, true, false, true, true): return 1379;
- case Fire::Fire(7, false, true, false, true, false): return 1380;
- case Fire::Fire(7, false, true, false, false, true): return 1381;
- case Fire::Fire(7, false, true, false, false, false): return 1382;
- case Fire::Fire(7, false, false, true, true, true): return 1383;
- case Fire::Fire(7, false, false, true, true, false): return 1384;
- case Fire::Fire(7, false, false, true, false, true): return 1385;
- case Fire::Fire(7, false, false, true, false, false): return 1386;
- case Fire::Fire(7, false, false, false, true, true): return 1387;
- case Fire::Fire(7, false, false, false, true, false): return 1388;
- case Fire::Fire(7, false, false, false, false, true): return 1389;
- case Fire::Fire(7, false, false, false, false, false): return 1390;
- case Fire::Fire(8, true, true, true, true, true): return 1391;
- case Fire::Fire(8, true, true, true, true, false): return 1392;
- case Fire::Fire(8, true, true, true, false, true): return 1393;
- case Fire::Fire(8, true, true, true, false, false): return 1394;
- case Fire::Fire(8, true, true, false, true, true): return 1395;
- case Fire::Fire(8, true, true, false, true, false): return 1396;
- case Fire::Fire(8, true, true, false, false, true): return 1397;
- case Fire::Fire(8, true, true, false, false, false): return 1398;
- case Fire::Fire(8, true, false, true, true, true): return 1399;
- case Fire::Fire(8, true, false, true, true, false): return 1400;
- case Fire::Fire(8, true, false, true, false, true): return 1401;
- case Fire::Fire(8, true, false, true, false, false): return 1402;
- case Fire::Fire(8, true, false, false, true, true): return 1403;
- case Fire::Fire(8, true, false, false, true, false): return 1404;
- case Fire::Fire(8, true, false, false, false, true): return 1405;
- case Fire::Fire(8, true, false, false, false, false): return 1406;
- case Fire::Fire(8, false, true, true, true, true): return 1407;
- case Fire::Fire(8, false, true, true, true, false): return 1408;
- case Fire::Fire(8, false, true, true, false, true): return 1409;
- case Fire::Fire(8, false, true, true, false, false): return 1410;
- case Fire::Fire(8, false, true, false, true, true): return 1411;
- case Fire::Fire(8, false, true, false, true, false): return 1412;
- case Fire::Fire(8, false, true, false, false, true): return 1413;
- case Fire::Fire(8, false, true, false, false, false): return 1414;
- case Fire::Fire(8, false, false, true, true, true): return 1415;
- case Fire::Fire(8, false, false, true, true, false): return 1416;
- case Fire::Fire(8, false, false, true, false, true): return 1417;
- case Fire::Fire(8, false, false, true, false, false): return 1418;
- case Fire::Fire(8, false, false, false, true, true): return 1419;
- case Fire::Fire(8, false, false, false, true, false): return 1420;
- case Fire::Fire(8, false, false, false, false, true): return 1421;
- case Fire::Fire(8, false, false, false, false, false): return 1422;
- case Fire::Fire(9, true, true, true, true, true): return 1423;
- case Fire::Fire(9, true, true, true, true, false): return 1424;
- case Fire::Fire(9, true, true, true, false, true): return 1425;
- case Fire::Fire(9, true, true, true, false, false): return 1426;
- case Fire::Fire(9, true, true, false, true, true): return 1427;
- case Fire::Fire(9, true, true, false, true, false): return 1428;
- case Fire::Fire(9, true, true, false, false, true): return 1429;
- case Fire::Fire(9, true, true, false, false, false): return 1430;
- case Fire::Fire(9, true, false, true, true, true): return 1431;
- case Fire::Fire(9, true, false, true, true, false): return 1432;
- case Fire::Fire(9, true, false, true, false, true): return 1433;
- case Fire::Fire(9, true, false, true, false, false): return 1434;
- case Fire::Fire(9, true, false, false, true, true): return 1435;
- case Fire::Fire(9, true, false, false, true, false): return 1436;
- case Fire::Fire(9, true, false, false, false, true): return 1437;
- case Fire::Fire(9, true, false, false, false, false): return 1438;
- case Fire::Fire(9, false, true, true, true, true): return 1439;
- case Fire::Fire(9, false, true, true, true, false): return 1440;
- case Fire::Fire(9, false, true, true, false, true): return 1441;
- case Fire::Fire(9, false, true, true, false, false): return 1442;
- case Fire::Fire(9, false, true, false, true, true): return 1443;
- case Fire::Fire(9, false, true, false, true, false): return 1444;
- case Fire::Fire(9, false, true, false, false, true): return 1445;
- case Fire::Fire(9, false, true, false, false, false): return 1446;
- case Fire::Fire(9, false, false, true, true, true): return 1447;
- case Fire::Fire(9, false, false, true, true, false): return 1448;
- case Fire::Fire(9, false, false, true, false, true): return 1449;
- case Fire::Fire(9, false, false, true, false, false): return 1450;
- case Fire::Fire(9, false, false, false, true, true): return 1451;
- case Fire::Fire(9, false, false, false, true, false): return 1452;
- case Fire::Fire(9, false, false, false, false, true): return 1453;
- case Fire::Fire(9, false, false, false, false, false): return 1454;
- case Fire::Fire(10, true, true, true, true, true): return 1455;
- case Fire::Fire(10, true, true, true, true, false): return 1456;
- case Fire::Fire(10, true, true, true, false, true): return 1457;
- case Fire::Fire(10, true, true, true, false, false): return 1458;
- case Fire::Fire(10, true, true, false, true, true): return 1459;
- case Fire::Fire(10, true, true, false, true, false): return 1460;
- case Fire::Fire(10, true, true, false, false, true): return 1461;
- case Fire::Fire(10, true, true, false, false, false): return 1462;
- case Fire::Fire(10, true, false, true, true, true): return 1463;
- case Fire::Fire(10, true, false, true, true, false): return 1464;
- case Fire::Fire(10, true, false, true, false, true): return 1465;
- case Fire::Fire(10, true, false, true, false, false): return 1466;
- case Fire::Fire(10, true, false, false, true, true): return 1467;
- case Fire::Fire(10, true, false, false, true, false): return 1468;
- case Fire::Fire(10, true, false, false, false, true): return 1469;
- case Fire::Fire(10, true, false, false, false, false): return 1470;
- case Fire::Fire(10, false, true, true, true, true): return 1471;
- case Fire::Fire(10, false, true, true, true, false): return 1472;
- case Fire::Fire(10, false, true, true, false, true): return 1473;
- case Fire::Fire(10, false, true, true, false, false): return 1474;
- case Fire::Fire(10, false, true, false, true, true): return 1475;
- case Fire::Fire(10, false, true, false, true, false): return 1476;
- case Fire::Fire(10, false, true, false, false, true): return 1477;
- case Fire::Fire(10, false, true, false, false, false): return 1478;
- case Fire::Fire(10, false, false, true, true, true): return 1479;
- case Fire::Fire(10, false, false, true, true, false): return 1480;
- case Fire::Fire(10, false, false, true, false, true): return 1481;
- case Fire::Fire(10, false, false, true, false, false): return 1482;
- case Fire::Fire(10, false, false, false, true, true): return 1483;
- case Fire::Fire(10, false, false, false, true, false): return 1484;
- case Fire::Fire(10, false, false, false, false, true): return 1485;
- case Fire::Fire(10, false, false, false, false, false): return 1486;
- case Fire::Fire(11, true, true, true, true, true): return 1487;
- case Fire::Fire(11, true, true, true, true, false): return 1488;
- case Fire::Fire(11, true, true, true, false, true): return 1489;
- case Fire::Fire(11, true, true, true, false, false): return 1490;
- case Fire::Fire(11, true, true, false, true, true): return 1491;
- case Fire::Fire(11, true, true, false, true, false): return 1492;
- case Fire::Fire(11, true, true, false, false, true): return 1493;
- case Fire::Fire(11, true, true, false, false, false): return 1494;
- case Fire::Fire(11, true, false, true, true, true): return 1495;
- case Fire::Fire(11, true, false, true, true, false): return 1496;
- case Fire::Fire(11, true, false, true, false, true): return 1497;
- case Fire::Fire(11, true, false, true, false, false): return 1498;
- case Fire::Fire(11, true, false, false, true, true): return 1499;
- case Fire::Fire(11, true, false, false, true, false): return 1500;
- case Fire::Fire(11, true, false, false, false, true): return 1501;
- case Fire::Fire(11, true, false, false, false, false): return 1502;
- case Fire::Fire(11, false, true, true, true, true): return 1503;
- case Fire::Fire(11, false, true, true, true, false): return 1504;
- case Fire::Fire(11, false, true, true, false, true): return 1505;
- case Fire::Fire(11, false, true, true, false, false): return 1506;
- case Fire::Fire(11, false, true, false, true, true): return 1507;
- case Fire::Fire(11, false, true, false, true, false): return 1508;
- case Fire::Fire(11, false, true, false, false, true): return 1509;
- case Fire::Fire(11, false, true, false, false, false): return 1510;
- case Fire::Fire(11, false, false, true, true, true): return 1511;
- case Fire::Fire(11, false, false, true, true, false): return 1512;
- case Fire::Fire(11, false, false, true, false, true): return 1513;
- case Fire::Fire(11, false, false, true, false, false): return 1514;
- case Fire::Fire(11, false, false, false, true, true): return 1515;
- case Fire::Fire(11, false, false, false, true, false): return 1516;
- case Fire::Fire(11, false, false, false, false, true): return 1517;
- case Fire::Fire(11, false, false, false, false, false): return 1518;
- case Fire::Fire(12, true, true, true, true, true): return 1519;
- case Fire::Fire(12, true, true, true, true, false): return 1520;
- case Fire::Fire(12, true, true, true, false, true): return 1521;
- case Fire::Fire(12, true, true, true, false, false): return 1522;
- case Fire::Fire(12, true, true, false, true, true): return 1523;
- case Fire::Fire(12, true, true, false, true, false): return 1524;
- case Fire::Fire(12, true, true, false, false, true): return 1525;
- case Fire::Fire(12, true, true, false, false, false): return 1526;
- case Fire::Fire(12, true, false, true, true, true): return 1527;
- case Fire::Fire(12, true, false, true, true, false): return 1528;
- case Fire::Fire(12, true, false, true, false, true): return 1529;
- case Fire::Fire(12, true, false, true, false, false): return 1530;
- case Fire::Fire(12, true, false, false, true, true): return 1531;
- case Fire::Fire(12, true, false, false, true, false): return 1532;
- case Fire::Fire(12, true, false, false, false, true): return 1533;
- case Fire::Fire(12, true, false, false, false, false): return 1534;
- case Fire::Fire(12, false, true, true, true, true): return 1535;
- case Fire::Fire(12, false, true, true, true, false): return 1536;
- case Fire::Fire(12, false, true, true, false, true): return 1537;
- case Fire::Fire(12, false, true, true, false, false): return 1538;
- case Fire::Fire(12, false, true, false, true, true): return 1539;
- case Fire::Fire(12, false, true, false, true, false): return 1540;
- case Fire::Fire(12, false, true, false, false, true): return 1541;
- case Fire::Fire(12, false, true, false, false, false): return 1542;
- case Fire::Fire(12, false, false, true, true, true): return 1543;
- case Fire::Fire(12, false, false, true, true, false): return 1544;
- case Fire::Fire(12, false, false, true, false, true): return 1545;
- case Fire::Fire(12, false, false, true, false, false): return 1546;
- case Fire::Fire(12, false, false, false, true, true): return 1547;
- case Fire::Fire(12, false, false, false, true, false): return 1548;
- case Fire::Fire(12, false, false, false, false, true): return 1549;
- case Fire::Fire(12, false, false, false, false, false): return 1550;
- case Fire::Fire(13, true, true, true, true, true): return 1551;
- case Fire::Fire(13, true, true, true, true, false): return 1552;
- case Fire::Fire(13, true, true, true, false, true): return 1553;
- case Fire::Fire(13, true, true, true, false, false): return 1554;
- case Fire::Fire(13, true, true, false, true, true): return 1555;
- case Fire::Fire(13, true, true, false, true, false): return 1556;
- case Fire::Fire(13, true, true, false, false, true): return 1557;
- case Fire::Fire(13, true, true, false, false, false): return 1558;
- case Fire::Fire(13, true, false, true, true, true): return 1559;
- case Fire::Fire(13, true, false, true, true, false): return 1560;
- case Fire::Fire(13, true, false, true, false, true): return 1561;
- case Fire::Fire(13, true, false, true, false, false): return 1562;
- case Fire::Fire(13, true, false, false, true, true): return 1563;
- case Fire::Fire(13, true, false, false, true, false): return 1564;
- case Fire::Fire(13, true, false, false, false, true): return 1565;
- case Fire::Fire(13, true, false, false, false, false): return 1566;
- case Fire::Fire(13, false, true, true, true, true): return 1567;
- case Fire::Fire(13, false, true, true, true, false): return 1568;
- case Fire::Fire(13, false, true, true, false, true): return 1569;
- case Fire::Fire(13, false, true, true, false, false): return 1570;
- case Fire::Fire(13, false, true, false, true, true): return 1571;
- case Fire::Fire(13, false, true, false, true, false): return 1572;
- case Fire::Fire(13, false, true, false, false, true): return 1573;
- case Fire::Fire(13, false, true, false, false, false): return 1574;
- case Fire::Fire(13, false, false, true, true, true): return 1575;
- case Fire::Fire(13, false, false, true, true, false): return 1576;
- case Fire::Fire(13, false, false, true, false, true): return 1577;
- case Fire::Fire(13, false, false, true, false, false): return 1578;
- case Fire::Fire(13, false, false, false, true, true): return 1579;
- case Fire::Fire(13, false, false, false, true, false): return 1580;
- case Fire::Fire(13, false, false, false, false, true): return 1581;
- case Fire::Fire(13, false, false, false, false, false): return 1582;
- case Fire::Fire(14, true, true, true, true, true): return 1583;
- case Fire::Fire(14, true, true, true, true, false): return 1584;
- case Fire::Fire(14, true, true, true, false, true): return 1585;
- case Fire::Fire(14, true, true, true, false, false): return 1586;
- case Fire::Fire(14, true, true, false, true, true): return 1587;
- case Fire::Fire(14, true, true, false, true, false): return 1588;
- case Fire::Fire(14, true, true, false, false, true): return 1589;
- case Fire::Fire(14, true, true, false, false, false): return 1590;
- case Fire::Fire(14, true, false, true, true, true): return 1591;
- case Fire::Fire(14, true, false, true, true, false): return 1592;
- case Fire::Fire(14, true, false, true, false, true): return 1593;
- case Fire::Fire(14, true, false, true, false, false): return 1594;
- case Fire::Fire(14, true, false, false, true, true): return 1595;
- case Fire::Fire(14, true, false, false, true, false): return 1596;
- case Fire::Fire(14, true, false, false, false, true): return 1597;
- case Fire::Fire(14, true, false, false, false, false): return 1598;
- case Fire::Fire(14, false, true, true, true, true): return 1599;
- case Fire::Fire(14, false, true, true, true, false): return 1600;
- case Fire::Fire(14, false, true, true, false, true): return 1601;
- case Fire::Fire(14, false, true, true, false, false): return 1602;
- case Fire::Fire(14, false, true, false, true, true): return 1603;
- case Fire::Fire(14, false, true, false, true, false): return 1604;
- case Fire::Fire(14, false, true, false, false, true): return 1605;
- case Fire::Fire(14, false, true, false, false, false): return 1606;
- case Fire::Fire(14, false, false, true, true, true): return 1607;
- case Fire::Fire(14, false, false, true, true, false): return 1608;
- case Fire::Fire(14, false, false, true, false, true): return 1609;
- case Fire::Fire(14, false, false, true, false, false): return 1610;
- case Fire::Fire(14, false, false, false, true, true): return 1611;
- case Fire::Fire(14, false, false, false, true, false): return 1612;
- case Fire::Fire(14, false, false, false, false, true): return 1613;
- case Fire::Fire(14, false, false, false, false, false): return 1614;
- case Fire::Fire(15, true, true, true, true, true): return 1615;
- case Fire::Fire(15, true, true, true, true, false): return 1616;
- case Fire::Fire(15, true, true, true, false, true): return 1617;
- case Fire::Fire(15, true, true, true, false, false): return 1618;
- case Fire::Fire(15, true, true, false, true, true): return 1619;
- case Fire::Fire(15, true, true, false, true, false): return 1620;
- case Fire::Fire(15, true, true, false, false, true): return 1621;
- case Fire::Fire(15, true, true, false, false, false): return 1622;
- case Fire::Fire(15, true, false, true, true, true): return 1623;
- case Fire::Fire(15, true, false, true, true, false): return 1624;
- case Fire::Fire(15, true, false, true, false, true): return 1625;
- case Fire::Fire(15, true, false, true, false, false): return 1626;
- case Fire::Fire(15, true, false, false, true, true): return 1627;
- case Fire::Fire(15, true, false, false, true, false): return 1628;
- case Fire::Fire(15, true, false, false, false, true): return 1629;
- case Fire::Fire(15, true, false, false, false, false): return 1630;
- case Fire::Fire(15, false, true, true, true, true): return 1631;
- case Fire::Fire(15, false, true, true, true, false): return 1632;
- case Fire::Fire(15, false, true, true, false, true): return 1633;
- case Fire::Fire(15, false, true, true, false, false): return 1634;
- case Fire::Fire(15, false, true, false, true, true): return 1635;
- case Fire::Fire(15, false, true, false, true, false): return 1636;
- case Fire::Fire(15, false, true, false, false, true): return 1637;
- case Fire::Fire(15, false, true, false, false, false): return 1638;
- case Fire::Fire(15, false, false, true, true, true): return 1639;
- case Fire::Fire(15, false, false, true, true, false): return 1640;
- case Fire::Fire(15, false, false, true, false, true): return 1641;
- case Fire::Fire(15, false, false, true, false, false): return 1642;
- case Fire::Fire(15, false, false, false, true, true): return 1643;
- case Fire::Fire(15, false, false, false, true, false): return 1644;
- case Fire::Fire(15, false, false, false, false, true): return 1645;
- case Fire::Fire(15, false, false, false, false, false): return 1646;
- case FireCoral::FireCoral(): return 8462;
- case FireCoralBlock::FireCoralBlock(): return 8457;
- case FireCoralFan::FireCoralFan(): return 8561;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8529;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8531;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8533;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8535;
- case FlowerPot::FlowerPot(): return 5265;
- case FrostedIce::FrostedIce(0): return 8188;
- case FrostedIce::FrostedIce(1): return 8189;
- case FrostedIce::FrostedIce(2): return 8190;
- case FrostedIce::FrostedIce(3): return 8191;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, true): return 3067;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, false): return 3068;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, true): return 3069;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, false): return 3070;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, true): return 3071;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, false): return 3072;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, true): return 3073;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, false): return 3074;
- case Glass::Glass(): return 230;
- case GlassPane::GlassPane(true, true, true, true): return 4213;
- case GlassPane::GlassPane(true, true, true, false): return 4214;
- case GlassPane::GlassPane(true, true, false, true): return 4217;
- case GlassPane::GlassPane(true, true, false, false): return 4218;
- case GlassPane::GlassPane(true, false, true, true): return 4221;
- case GlassPane::GlassPane(true, false, true, false): return 4222;
- case GlassPane::GlassPane(true, false, false, true): return 4225;
- case GlassPane::GlassPane(true, false, false, false): return 4226;
- case GlassPane::GlassPane(false, true, true, true): return 4229;
- case GlassPane::GlassPane(false, true, true, false): return 4230;
- case GlassPane::GlassPane(false, true, false, true): return 4233;
- case GlassPane::GlassPane(false, true, false, false): return 4234;
- case GlassPane::GlassPane(false, false, true, true): return 4237;
- case GlassPane::GlassPane(false, false, true, false): return 4238;
- case GlassPane::GlassPane(false, false, false, true): return 4241;
- case GlassPane::GlassPane(false, false, false, false): return 4242;
- case Glowstone::Glowstone(): return 3495;
- case GoldBlock::GoldBlock(): return 1123;
- case GoldOre::GoldOre(): return 69;
- case Granite::Granite(): return 2;
- case Grass::Grass(): return 1041;
- case GrassBlock::GrassBlock(true): return 8;
- case GrassBlock::GrassBlock(false): return 9;
- case GrassPath::GrassPath(): return 8162;
- case Gravel::Gravel(): return 68;
- case GrayBanner::GrayBanner(0): return 6966;
- case GrayBanner::GrayBanner(1): return 6967;
- case GrayBanner::GrayBanner(2): return 6968;
- case GrayBanner::GrayBanner(3): return 6969;
- case GrayBanner::GrayBanner(4): return 6970;
- case GrayBanner::GrayBanner(5): return 6971;
- case GrayBanner::GrayBanner(6): return 6972;
- case GrayBanner::GrayBanner(7): return 6973;
- case GrayBanner::GrayBanner(8): return 6974;
- case GrayBanner::GrayBanner(9): return 6975;
- case GrayBanner::GrayBanner(10): return 6976;
- case GrayBanner::GrayBanner(11): return 6977;
- case GrayBanner::GrayBanner(12): return 6978;
- case GrayBanner::GrayBanner(13): return 6979;
- case GrayBanner::GrayBanner(14): return 6980;
- case GrayBanner::GrayBanner(15): return 6981;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Head): return 860;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Foot): return 861;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Head): return 862;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Foot): return 863;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Head): return 864;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Foot): return 865;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Head): return 866;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Foot): return 867;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Head): return 868;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Foot): return 869;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Head): return 870;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Foot): return 871;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Head): return 872;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Foot): return 873;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Head): return 874;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Foot): return 875;
- case GrayCarpet::GrayCarpet(): return 6830;
- case GrayConcrete::GrayConcrete(): return 8384;
- case GrayConcretePowder::GrayConcretePowder(): return 8400;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8341;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8342;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8343;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8344;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8259;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8260;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8261;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8262;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8263;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8264;
- case GrayStainedGlass::GrayStainedGlass(): return 3584;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, true): return 6046;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, false): return 6047;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, true): return 6050;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, false): return 6051;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, true): return 6054;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, false): return 6055;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, true): return 6058;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, false): return 6059;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, true): return 6062;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, false): return 6063;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, true): return 6066;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, false): return 6067;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, true): return 6070;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, false): return 6071;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, true): return 6074;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, false): return 6075;
- case GrayTerracotta::GrayTerracotta(): return 5811;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7138;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7139;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 7140;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 7141;
- case GrayWool::GrayWool(): return 1090;
- case GreenBanner::GreenBanner(0): return 7062;
- case GreenBanner::GreenBanner(1): return 7063;
- case GreenBanner::GreenBanner(2): return 7064;
- case GreenBanner::GreenBanner(3): return 7065;
- case GreenBanner::GreenBanner(4): return 7066;
- case GreenBanner::GreenBanner(5): return 7067;
- case GreenBanner::GreenBanner(6): return 7068;
- case GreenBanner::GreenBanner(7): return 7069;
- case GreenBanner::GreenBanner(8): return 7070;
- case GreenBanner::GreenBanner(9): return 7071;
- case GreenBanner::GreenBanner(10): return 7072;
- case GreenBanner::GreenBanner(11): return 7073;
- case GreenBanner::GreenBanner(12): return 7074;
- case GreenBanner::GreenBanner(13): return 7075;
- case GreenBanner::GreenBanner(14): return 7076;
- case GreenBanner::GreenBanner(15): return 7077;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Head): return 956;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Foot): return 957;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Head): return 958;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Foot): return 959;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Head): return 960;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Foot): return 961;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Head): return 962;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Foot): return 963;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Head): return 964;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Foot): return 965;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Head): return 966;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Foot): return 967;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Head): return 968;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Foot): return 969;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Head): return 970;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Foot): return 971;
- case GreenCarpet::GreenCarpet(): return 6836;
- case GreenConcrete::GreenConcrete(): return 8390;
- case GreenConcretePowder::GreenConcretePowder(): return 8406;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8365;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8366;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8367;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8368;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8295;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8296;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8297;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8298;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8299;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8300;
- case GreenStainedGlass::GreenStainedGlass(): return 3590;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, true): return 6238;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, false): return 6239;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, true): return 6242;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, false): return 6243;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, true): return 6246;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, false): return 6247;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, true): return 6250;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, false): return 6251;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, true): return 6254;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, false): return 6255;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, true): return 6258;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, false): return 6259;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, true): return 6262;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, false): return 6263;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, true): return 6266;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, false): return 6267;
- case GreenTerracotta::GreenTerracotta(): return 5817;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7162;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7163;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XM): return 7164;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XP): return 7165;
- case GreenWool::GreenWool(): return 1096;
- case HayBale::HayBale(HayBale::Axis::X): return 6820;
- case HayBale::HayBale(HayBale::Axis::Y): return 6821;
- case HayBale::HayBale(HayBale::Axis::Z): return 6822;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(0): return 5619;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(1): return 5620;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(2): return 5621;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(3): return 5622;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(4): return 5623;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(5): return 5624;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(6): return 5625;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(7): return 5626;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(8): return 5627;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(9): return 5628;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(10): return 5629;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(11): return 5630;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(12): return 5631;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(13): return 5632;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(14): return 5633;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(15): return 5634;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_YM): return 5685;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZM): return 5686;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZP): return 5687;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XM): return 5688;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XP): return 5689;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_YM): return 5690;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZM): return 5691;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZP): return 5692;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XM): return 5693;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XP): return 5694;
- case HornCoral::HornCoral(): return 8463;
- case HornCoralBlock::HornCoralBlock(): return 8458;
- case HornCoralFan::HornCoralFan(): return 8563;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8537;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8539;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8541;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8543;
- case Ice::Ice(): return 3423;
- case InfestedChiseledStoneBricks::InfestedChiseledStoneBricks(): return 3982;
- case InfestedCobblestone::InfestedCobblestone(): return 3978;
- case InfestedCrackedStoneBricks::InfestedCrackedStoneBricks(): return 3981;
- case InfestedMossyStoneBricks::InfestedMossyStoneBricks(): return 3980;
- case InfestedStone::InfestedStone(): return 3977;
- case InfestedStoneBricks::InfestedStoneBricks(): return 3979;
- case IronBars::IronBars(true, true, true, true): return 4181;
- case IronBars::IronBars(true, true, true, false): return 4182;
- case IronBars::IronBars(true, true, false, true): return 4185;
- case IronBars::IronBars(true, true, false, false): return 4186;
- case IronBars::IronBars(true, false, true, true): return 4189;
- case IronBars::IronBars(true, false, true, false): return 4190;
- case IronBars::IronBars(true, false, false, true): return 4193;
- case IronBars::IronBars(true, false, false, false): return 4194;
- case IronBars::IronBars(false, true, true, true): return 4197;
- case IronBars::IronBars(false, true, true, false): return 4198;
- case IronBars::IronBars(false, true, false, true): return 4201;
- case IronBars::IronBars(false, true, false, false): return 4202;
- case IronBars::IronBars(false, false, true, true): return 4205;
- case IronBars::IronBars(false, false, true, false): return 4206;
- case IronBars::IronBars(false, false, false, true): return 4209;
- case IronBars::IronBars(false, false, false, false): return 4210;
- case IronBlock::IronBlock(): return 1124;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3303;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3304;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3305;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3306;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3307;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3308;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3309;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3310;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3311;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3312;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3313;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3314;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3315;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3316;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3317;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3318;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3319;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3320;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3321;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3322;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3323;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3324;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3325;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3326;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3327;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3328;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3329;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3330;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3331;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3332;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3333;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3334;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3335;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3336;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3337;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3338;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3339;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3340;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3341;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3342;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3343;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3344;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3345;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3346;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3347;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3348;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3349;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3350;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3351;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3352;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3353;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3354;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3355;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3356;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3357;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3358;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3359;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3360;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3361;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3362;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3363;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3364;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3365;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3366;
- case IronOre::IronOre(): return 70;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, true): return 6495;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, false): return 6497;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, true): return 6499;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, false): return 6501;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, true): return 6503;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, false): return 6505;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, true): return 6507;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, false): return 6509;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, true): return 6511;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, false): return 6513;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, true): return 6515;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, false): return 6517;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, true): return 6519;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, false): return 6521;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, true): return 6523;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, false): return 6525;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, true): return 6527;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, false): return 6529;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, true): return 6531;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, false): return 6533;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, true): return 6535;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, false): return 6537;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, true): return 6539;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, false): return 6541;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, true): return 6543;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, false): return 6545;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, true): return 6547;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, false): return 6549;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, true): return 6551;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, false): return 6553;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, true): return 6555;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, false): return 6557;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZM): return 3502;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZP): return 3503;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XM): return 3504;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XP): return 3505;
- case Jukebox::Jukebox(true): return 3458;
- case Jukebox::Jukebox(false): return 3459;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5375;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5376;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5377;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5378;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5379;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5380;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5381;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5382;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5383;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5384;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5385;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5386;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5387;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5388;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5389;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5390;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5391;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5392;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5393;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5394;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5395;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5396;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5397;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5398;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 7805;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 7806;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 7807;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 7808;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 7809;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 7810;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 7811;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 7812;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 7813;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 7814;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 7815;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 7816;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 7817;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 7818;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 7819;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 7820;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 7821;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 7822;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 7823;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 7824;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 7825;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 7826;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 7827;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 7828;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 7829;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 7830;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 7831;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 7832;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 7833;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 7834;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 7835;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 7836;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 7837;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 7838;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 7839;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 7840;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 7841;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 7842;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 7843;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 7844;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 7845;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 7846;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 7847;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 7848;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 7849;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 7850;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 7851;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 7852;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 7853;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 7854;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 7855;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 7856;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 7857;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 7858;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 7859;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 7860;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 7861;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 7862;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 7863;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 7864;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 7865;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 7866;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 7867;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 7868;
- case JungleFence::JungleFence(true, true, true, true): return 7583;
- case JungleFence::JungleFence(true, true, true, false): return 7584;
- case JungleFence::JungleFence(true, true, false, true): return 7587;
- case JungleFence::JungleFence(true, true, false, false): return 7588;
- case JungleFence::JungleFence(true, false, true, true): return 7591;
- case JungleFence::JungleFence(true, false, true, false): return 7592;
- case JungleFence::JungleFence(true, false, false, true): return 7595;
- case JungleFence::JungleFence(true, false, false, false): return 7596;
- case JungleFence::JungleFence(false, true, true, true): return 7599;
- case JungleFence::JungleFence(false, true, true, false): return 7600;
- case JungleFence::JungleFence(false, true, false, true): return 7603;
- case JungleFence::JungleFence(false, true, false, false): return 7604;
- case JungleFence::JungleFence(false, false, true, true): return 7607;
- case JungleFence::JungleFence(false, false, true, false): return 7608;
- case JungleFence::JungleFence(false, false, false, true): return 7611;
- case JungleFence::JungleFence(false, false, false, false): return 7612;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7421;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7422;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7423;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7424;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7425;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7426;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7427;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7428;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7429;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7430;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7431;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7432;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7433;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7434;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7435;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7436;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7437;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7438;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7439;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7440;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7441;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7442;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7443;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7444;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7445;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7446;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7447;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7448;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7449;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7450;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7451;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7452;
- case JungleLeaves::JungleLeaves(1, true): return 186;
- case JungleLeaves::JungleLeaves(1, false): return 187;
- case JungleLeaves::JungleLeaves(2, true): return 188;
- case JungleLeaves::JungleLeaves(2, false): return 189;
- case JungleLeaves::JungleLeaves(3, true): return 190;
- case JungleLeaves::JungleLeaves(3, false): return 191;
- case JungleLeaves::JungleLeaves(4, true): return 192;
- case JungleLeaves::JungleLeaves(4, false): return 193;
- case JungleLeaves::JungleLeaves(5, true): return 194;
- case JungleLeaves::JungleLeaves(5, false): return 195;
- case JungleLeaves::JungleLeaves(6, true): return 196;
- case JungleLeaves::JungleLeaves(6, false): return 197;
- case JungleLeaves::JungleLeaves(7, true): return 198;
- case JungleLeaves::JungleLeaves(7, false): return 199;
- case JungleLog::JungleLog(JungleLog::Axis::X): return 81;
- case JungleLog::JungleLog(JungleLog::Axis::Y): return 82;
- case JungleLog::JungleLog(JungleLog::Axis::Z): return 83;
- case JunglePlanks::JunglePlanks(): return 18;
- case JunglePressurePlate::JunglePressurePlate(true): return 3373;
- case JunglePressurePlate::JunglePressurePlate(false): return 3374;
- case JungleSapling::JungleSapling(0): return 27;
- case JungleSapling::JungleSapling(1): return 28;
- case JungleSlab::JungleSlab(JungleSlab::Type::Top): return 7276;
- case JungleSlab::JungleSlab(JungleSlab::Type::Bottom): return 7278;
- case JungleSlab::JungleSlab(JungleSlab::Type::Double): return 7280;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5045;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5047;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5049;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5051;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5053;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5055;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5057;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5059;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5061;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5063;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5065;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5067;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5069;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5071;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5073;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5075;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5077;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5079;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5081;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5083;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5085;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5087;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5089;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5091;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5093;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5095;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5097;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5099;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5101;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5103;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5105;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5107;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5109;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5111;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5113;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5115;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5117;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5119;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5121;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5123;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, true): return 3786;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, false): return 3788;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, true): return 3790;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, false): return 3792;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, true): return 3794;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, false): return 3796;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, true): return 3798;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, false): return 3800;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, true): return 3802;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, false): return 3804;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, true): return 3806;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, false): return 3808;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, true): return 3810;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, false): return 3812;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, true): return 3814;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, false): return 3816;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, true): return 3818;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, false): return 3820;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, true): return 3822;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, false): return 3824;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, true): return 3826;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, false): return 3828;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, true): return 3830;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, false): return 3832;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, true): return 3834;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, false): return 3836;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, true): return 3838;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, false): return 3840;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, true): return 3842;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, false): return 3844;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, true): return 3846;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, false): return 3848;
- case JungleWood::JungleWood(JungleWood::Axis::X): return 117;
- case JungleWood::JungleWood(JungleWood::Axis::Y): return 118;
- case JungleWood::JungleWood(JungleWood::Axis::Z): return 119;
- case Kelp::Kelp(0): return 8409;
- case Kelp::Kelp(1): return 8410;
- case Kelp::Kelp(2): return 8411;
- case Kelp::Kelp(3): return 8412;
- case Kelp::Kelp(4): return 8413;
- case Kelp::Kelp(5): return 8414;
- case Kelp::Kelp(6): return 8415;
- case Kelp::Kelp(7): return 8416;
- case Kelp::Kelp(8): return 8417;
- case Kelp::Kelp(9): return 8418;
- case Kelp::Kelp(10): return 8419;
- case Kelp::Kelp(11): return 8420;
- case Kelp::Kelp(12): return 8421;
- case Kelp::Kelp(13): return 8422;
- case Kelp::Kelp(14): return 8423;
- case Kelp::Kelp(15): return 8424;
- case Kelp::Kelp(16): return 8425;
- case Kelp::Kelp(17): return 8426;
- case Kelp::Kelp(18): return 8427;
- case Kelp::Kelp(19): return 8428;
- case Kelp::Kelp(20): return 8429;
- case Kelp::Kelp(21): return 8430;
- case Kelp::Kelp(22): return 8431;
- case Kelp::Kelp(23): return 8432;
- case Kelp::Kelp(24): return 8433;
- case Kelp::Kelp(25): return 8434;
- case KelpPlant::KelpPlant(): return 8435;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZM): return 3172;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZP): return 3174;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_XM): return 3176;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_XP): return 3178;
- case LapisBlock::LapisBlock(): return 232;
- case LapisOre::LapisOre(): return 231;
- case LargeFern::LargeFern(LargeFern::Half::Upper): return 6852;
- case LargeFern::LargeFern(LargeFern::Half::Lower): return 6853;
- case Lava::Lava(0): return 50;
- case Lava::Lava(1): return 51;
- case Lava::Lava(2): return 52;
- case Lava::Lava(3): return 53;
- case Lava::Lava(4): return 54;
- case Lava::Lava(5): return 55;
- case Lava::Lava(6): return 56;
- case Lava::Lava(7): return 57;
- case Lava::Lava(8): return 58;
- case Lava::Lava(9): return 59;
- case Lava::Lava(10): return 60;
- case Lava::Lava(11): return 61;
- case Lava::Lava(12): return 62;
- case Lava::Lava(13): return 63;
- case Lava::Lava(14): return 64;
- case Lava::Lava(15): return 65;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3277;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3278;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3279;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3280;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3281;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3282;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3283;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3284;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3285;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3286;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3287;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3288;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3289;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3290;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3291;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3292;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3293;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3294;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3295;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3296;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3297;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3298;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3299;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3300;
- case LightBlueBanner::LightBlueBanner(0): return 6902;
- case LightBlueBanner::LightBlueBanner(1): return 6903;
- case LightBlueBanner::LightBlueBanner(2): return 6904;
- case LightBlueBanner::LightBlueBanner(3): return 6905;
- case LightBlueBanner::LightBlueBanner(4): return 6906;
- case LightBlueBanner::LightBlueBanner(5): return 6907;
- case LightBlueBanner::LightBlueBanner(6): return 6908;
- case LightBlueBanner::LightBlueBanner(7): return 6909;
- case LightBlueBanner::LightBlueBanner(8): return 6910;
- case LightBlueBanner::LightBlueBanner(9): return 6911;
- case LightBlueBanner::LightBlueBanner(10): return 6912;
- case LightBlueBanner::LightBlueBanner(11): return 6913;
- case LightBlueBanner::LightBlueBanner(12): return 6914;
- case LightBlueBanner::LightBlueBanner(13): return 6915;
- case LightBlueBanner::LightBlueBanner(14): return 6916;
- case LightBlueBanner::LightBlueBanner(15): return 6917;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Head): return 796;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Foot): return 797;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Head): return 798;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Foot): return 799;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Head): return 800;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Foot): return 801;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Head): return 802;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Foot): return 803;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Head): return 804;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Foot): return 805;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Head): return 806;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Foot): return 807;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Head): return 808;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Foot): return 809;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Head): return 810;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Foot): return 811;
- case LightBlueCarpet::LightBlueCarpet(): return 6826;
- case LightBlueConcrete::LightBlueConcrete(): return 8380;
- case LightBlueConcretePowder::LightBlueConcretePowder(): return 8396;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8325;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8326;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8327;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8328;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8235;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8236;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8237;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8238;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8239;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8240;
- case LightBlueStainedGlass::LightBlueStainedGlass(): return 3580;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, true): return 5918;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, false): return 5919;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, true): return 5922;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, false): return 5923;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, true): return 5926;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, false): return 5927;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, true): return 5930;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, false): return 5931;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, true): return 5934;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, false): return 5935;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, true): return 5938;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, false): return 5939;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, true): return 5942;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, false): return 5943;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, true): return 5946;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, false): return 5947;
- case LightBlueTerracotta::LightBlueTerracotta(): return 5807;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7122;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7123;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 7124;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 7125;
- case LightBlueWool::LightBlueWool(): return 1086;
- case LightGrayBanner::LightGrayBanner(0): return 6982;
- case LightGrayBanner::LightGrayBanner(1): return 6983;
- case LightGrayBanner::LightGrayBanner(2): return 6984;
- case LightGrayBanner::LightGrayBanner(3): return 6985;
- case LightGrayBanner::LightGrayBanner(4): return 6986;
- case LightGrayBanner::LightGrayBanner(5): return 6987;
- case LightGrayBanner::LightGrayBanner(6): return 6988;
- case LightGrayBanner::LightGrayBanner(7): return 6989;
- case LightGrayBanner::LightGrayBanner(8): return 6990;
- case LightGrayBanner::LightGrayBanner(9): return 6991;
- case LightGrayBanner::LightGrayBanner(10): return 6992;
- case LightGrayBanner::LightGrayBanner(11): return 6993;
- case LightGrayBanner::LightGrayBanner(12): return 6994;
- case LightGrayBanner::LightGrayBanner(13): return 6995;
- case LightGrayBanner::LightGrayBanner(14): return 6996;
- case LightGrayBanner::LightGrayBanner(15): return 6997;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Head): return 876;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Foot): return 877;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Head): return 878;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Foot): return 879;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Head): return 880;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Foot): return 881;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Head): return 882;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Foot): return 883;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Head): return 884;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Foot): return 885;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Head): return 886;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Foot): return 887;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Head): return 888;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Foot): return 889;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Head): return 890;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Foot): return 891;
- case LightGrayCarpet::LightGrayCarpet(): return 6831;
- case LightGrayConcrete::LightGrayConcrete(): return 8385;
- case LightGrayConcretePowder::LightGrayConcretePowder(): return 8401;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8345;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8346;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8347;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8348;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8265;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8266;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8267;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8268;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8269;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8270;
- case LightGrayStainedGlass::LightGrayStainedGlass(): return 3585;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, true): return 6078;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, false): return 6079;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, true): return 6082;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, false): return 6083;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, true): return 6086;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, false): return 6087;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, true): return 6090;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, false): return 6091;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, true): return 6094;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, false): return 6095;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, true): return 6098;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, false): return 6099;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, true): return 6102;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, false): return 6103;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, true): return 6106;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, false): return 6107;
- case LightGrayTerracotta::LightGrayTerracotta(): return 5812;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7142;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7143;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 7144;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 7145;
- case LightGrayWool::LightGrayWool(): return 1091;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(0): return 5603;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(1): return 5604;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(2): return 5605;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(3): return 5606;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(4): return 5607;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(5): return 5608;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(6): return 5609;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(7): return 5610;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(8): return 5611;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(9): return 5612;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(10): return 5613;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(11): return 5614;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(12): return 5615;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(13): return 5616;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(14): return 5617;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(15): return 5618;
- case Lilac::Lilac(Lilac::Half::Upper): return 6844;
- case Lilac::Lilac(Lilac::Half::Lower): return 6845;
- case LilyPad::LilyPad(): return 4494;
- case LimeBanner::LimeBanner(0): return 6934;
- case LimeBanner::LimeBanner(1): return 6935;
- case LimeBanner::LimeBanner(2): return 6936;
- case LimeBanner::LimeBanner(3): return 6937;
- case LimeBanner::LimeBanner(4): return 6938;
- case LimeBanner::LimeBanner(5): return 6939;
- case LimeBanner::LimeBanner(6): return 6940;
- case LimeBanner::LimeBanner(7): return 6941;
- case LimeBanner::LimeBanner(8): return 6942;
- case LimeBanner::LimeBanner(9): return 6943;
- case LimeBanner::LimeBanner(10): return 6944;
- case LimeBanner::LimeBanner(11): return 6945;
- case LimeBanner::LimeBanner(12): return 6946;
- case LimeBanner::LimeBanner(13): return 6947;
- case LimeBanner::LimeBanner(14): return 6948;
- case LimeBanner::LimeBanner(15): return 6949;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Head): return 828;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Foot): return 829;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Head): return 830;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Foot): return 831;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Head): return 832;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Foot): return 833;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Head): return 834;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Foot): return 835;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Head): return 836;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Foot): return 837;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Head): return 838;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Foot): return 839;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Head): return 840;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Foot): return 841;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Head): return 842;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Foot): return 843;
- case LimeCarpet::LimeCarpet(): return 6828;
- case LimeConcrete::LimeConcrete(): return 8382;
- case LimeConcretePowder::LimeConcretePowder(): return 8398;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8333;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8334;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8335;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8336;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8247;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8248;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8249;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8250;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8251;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8252;
- case LimeStainedGlass::LimeStainedGlass(): return 3582;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, true): return 5982;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, false): return 5983;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, true): return 5986;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, false): return 5987;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, true): return 5990;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, false): return 5991;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, true): return 5994;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, false): return 5995;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, true): return 5998;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, false): return 5999;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, true): return 6002;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, false): return 6003;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, true): return 6006;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, false): return 6007;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, true): return 6010;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, false): return 6011;
- case LimeTerracotta::LimeTerracotta(): return 5809;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7130;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7131;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XM): return 7132;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XP): return 7133;
- case LimeWool::LimeWool(): return 1088;
- case MagentaBanner::MagentaBanner(0): return 6886;
- case MagentaBanner::MagentaBanner(1): return 6887;
- case MagentaBanner::MagentaBanner(2): return 6888;
- case MagentaBanner::MagentaBanner(3): return 6889;
- case MagentaBanner::MagentaBanner(4): return 6890;
- case MagentaBanner::MagentaBanner(5): return 6891;
- case MagentaBanner::MagentaBanner(6): return 6892;
- case MagentaBanner::MagentaBanner(7): return 6893;
- case MagentaBanner::MagentaBanner(8): return 6894;
- case MagentaBanner::MagentaBanner(9): return 6895;
- case MagentaBanner::MagentaBanner(10): return 6896;
- case MagentaBanner::MagentaBanner(11): return 6897;
- case MagentaBanner::MagentaBanner(12): return 6898;
- case MagentaBanner::MagentaBanner(13): return 6899;
- case MagentaBanner::MagentaBanner(14): return 6900;
- case MagentaBanner::MagentaBanner(15): return 6901;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Head): return 780;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Foot): return 781;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Head): return 782;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Foot): return 783;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Head): return 784;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Foot): return 785;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Head): return 786;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Foot): return 787;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Head): return 788;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Foot): return 789;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Head): return 790;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Foot): return 791;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Head): return 792;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Foot): return 793;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Head): return 794;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Foot): return 795;
- case MagentaCarpet::MagentaCarpet(): return 6825;
- case MagentaConcrete::MagentaConcrete(): return 8379;
- case MagentaConcretePowder::MagentaConcretePowder(): return 8395;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8321;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8322;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8323;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8324;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8229;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8230;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8231;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8232;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8233;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8234;
- case MagentaStainedGlass::MagentaStainedGlass(): return 3579;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, true): return 5886;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, false): return 5887;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, true): return 5890;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, false): return 5891;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, true): return 5894;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, false): return 5895;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, true): return 5898;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, false): return 5899;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, true): return 5902;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, false): return 5903;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, true): return 5906;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, false): return 5907;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, true): return 5910;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, false): return 5911;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, true): return 5914;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, false): return 5915;
- case MagentaTerracotta::MagentaTerracotta(): return 5806;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7118;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7119;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XM): return 7120;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XP): return 7121;
- case MagentaWool::MagentaWool(): return 1085;
- case MagmaBlock::MagmaBlock(): return 8192;
- case Melon::Melon(): return 4243;
- case MelonStem::MelonStem(0): return 4260;
- case MelonStem::MelonStem(1): return 4261;
- case MelonStem::MelonStem(2): return 4262;
- case MelonStem::MelonStem(3): return 4263;
- case MelonStem::MelonStem(4): return 4264;
- case MelonStem::MelonStem(5): return 4265;
- case MelonStem::MelonStem(6): return 4266;
- case MelonStem::MelonStem(7): return 4267;
- case MossyCobblestone::MossyCobblestone(): return 1128;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5203;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5204;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5207;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5208;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5211;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5212;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5215;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5216;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5219;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5220;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5223;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5224;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5227;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5228;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5231;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5232;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5235;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5236;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5239;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5240;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5243;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5244;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5247;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5248;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5251;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5252;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5255;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5256;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5259;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5260;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5263;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5264;
- case MossyStoneBricks::MossyStoneBricks(): return 3984;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Normal): return 1099;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Sticky): return 1100;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Normal): return 1101;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Sticky): return 1102;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Normal): return 1103;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Sticky): return 1104;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Normal): return 1105;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Sticky): return 1106;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Normal): return 1107;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Sticky): return 1108;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Normal): return 1109;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Sticky): return 1110;
- case MushroomStem::MushroomStem(true, true, true, true, true, true): return 4115;
- case MushroomStem::MushroomStem(true, true, true, true, true, false): return 4116;
- case MushroomStem::MushroomStem(true, true, true, true, false, true): return 4117;
- case MushroomStem::MushroomStem(true, true, true, true, false, false): return 4118;
- case MushroomStem::MushroomStem(true, true, true, false, true, true): return 4119;
- case MushroomStem::MushroomStem(true, true, true, false, true, false): return 4120;
- case MushroomStem::MushroomStem(true, true, true, false, false, true): return 4121;
- case MushroomStem::MushroomStem(true, true, true, false, false, false): return 4122;
- case MushroomStem::MushroomStem(true, true, false, true, true, true): return 4123;
- case MushroomStem::MushroomStem(true, true, false, true, true, false): return 4124;
- case MushroomStem::MushroomStem(true, true, false, true, false, true): return 4125;
- case MushroomStem::MushroomStem(true, true, false, true, false, false): return 4126;
- case MushroomStem::MushroomStem(true, true, false, false, true, true): return 4127;
- case MushroomStem::MushroomStem(true, true, false, false, true, false): return 4128;
- case MushroomStem::MushroomStem(true, true, false, false, false, true): return 4129;
- case MushroomStem::MushroomStem(true, true, false, false, false, false): return 4130;
- case MushroomStem::MushroomStem(true, false, true, true, true, true): return 4131;
- case MushroomStem::MushroomStem(true, false, true, true, true, false): return 4132;
- case MushroomStem::MushroomStem(true, false, true, true, false, true): return 4133;
- case MushroomStem::MushroomStem(true, false, true, true, false, false): return 4134;
- case MushroomStem::MushroomStem(true, false, true, false, true, true): return 4135;
- case MushroomStem::MushroomStem(true, false, true, false, true, false): return 4136;
- case MushroomStem::MushroomStem(true, false, true, false, false, true): return 4137;
- case MushroomStem::MushroomStem(true, false, true, false, false, false): return 4138;
- case MushroomStem::MushroomStem(true, false, false, true, true, true): return 4139;
- case MushroomStem::MushroomStem(true, false, false, true, true, false): return 4140;
- case MushroomStem::MushroomStem(true, false, false, true, false, true): return 4141;
- case MushroomStem::MushroomStem(true, false, false, true, false, false): return 4142;
- case MushroomStem::MushroomStem(true, false, false, false, true, true): return 4143;
- case MushroomStem::MushroomStem(true, false, false, false, true, false): return 4144;
- case MushroomStem::MushroomStem(true, false, false, false, false, true): return 4145;
- case MushroomStem::MushroomStem(true, false, false, false, false, false): return 4146;
- case MushroomStem::MushroomStem(false, true, true, true, true, true): return 4147;
- case MushroomStem::MushroomStem(false, true, true, true, true, false): return 4148;
- case MushroomStem::MushroomStem(false, true, true, true, false, true): return 4149;
- case MushroomStem::MushroomStem(false, true, true, true, false, false): return 4150;
- case MushroomStem::MushroomStem(false, true, true, false, true, true): return 4151;
- case MushroomStem::MushroomStem(false, true, true, false, true, false): return 4152;
- case MushroomStem::MushroomStem(false, true, true, false, false, true): return 4153;
- case MushroomStem::MushroomStem(false, true, true, false, false, false): return 4154;
- case MushroomStem::MushroomStem(false, true, false, true, true, true): return 4155;
- case MushroomStem::MushroomStem(false, true, false, true, true, false): return 4156;
- case MushroomStem::MushroomStem(false, true, false, true, false, true): return 4157;
- case MushroomStem::MushroomStem(false, true, false, true, false, false): return 4158;
- case MushroomStem::MushroomStem(false, true, false, false, true, true): return 4159;
- case MushroomStem::MushroomStem(false, true, false, false, true, false): return 4160;
- case MushroomStem::MushroomStem(false, true, false, false, false, true): return 4161;
- case MushroomStem::MushroomStem(false, true, false, false, false, false): return 4162;
- case MushroomStem::MushroomStem(false, false, true, true, true, true): return 4163;
- case MushroomStem::MushroomStem(false, false, true, true, true, false): return 4164;
- case MushroomStem::MushroomStem(false, false, true, true, false, true): return 4165;
- case MushroomStem::MushroomStem(false, false, true, true, false, false): return 4166;
- case MushroomStem::MushroomStem(false, false, true, false, true, true): return 4167;
- case MushroomStem::MushroomStem(false, false, true, false, true, false): return 4168;
- case MushroomStem::MushroomStem(false, false, true, false, false, true): return 4169;
- case MushroomStem::MushroomStem(false, false, true, false, false, false): return 4170;
- case MushroomStem::MushroomStem(false, false, false, true, true, true): return 4171;
- case MushroomStem::MushroomStem(false, false, false, true, true, false): return 4172;
- case MushroomStem::MushroomStem(false, false, false, true, false, true): return 4173;
- case MushroomStem::MushroomStem(false, false, false, true, false, false): return 4174;
- case MushroomStem::MushroomStem(false, false, false, false, true, true): return 4175;
- case MushroomStem::MushroomStem(false, false, false, false, true, false): return 4176;
- case MushroomStem::MushroomStem(false, false, false, false, false, true): return 4177;
- case MushroomStem::MushroomStem(false, false, false, false, false, false): return 4178;
- case Mycelium::Mycelium(true): return 4492;
- case Mycelium::Mycelium(false): return 4493;
- case NetherBrickFence::NetherBrickFence(true, true, true, true): return 4498;
- case NetherBrickFence::NetherBrickFence(true, true, true, false): return 4499;
- case NetherBrickFence::NetherBrickFence(true, true, false, true): return 4502;
- case NetherBrickFence::NetherBrickFence(true, true, false, false): return 4503;
- case NetherBrickFence::NetherBrickFence(true, false, true, true): return 4506;
- case NetherBrickFence::NetherBrickFence(true, false, true, false): return 4507;
- case NetherBrickFence::NetherBrickFence(true, false, false, true): return 4510;
- case NetherBrickFence::NetherBrickFence(true, false, false, false): return 4511;
- case NetherBrickFence::NetherBrickFence(false, true, true, true): return 4514;
- case NetherBrickFence::NetherBrickFence(false, true, true, false): return 4515;
- case NetherBrickFence::NetherBrickFence(false, true, false, true): return 4518;
- case NetherBrickFence::NetherBrickFence(false, true, false, false): return 4519;
- case NetherBrickFence::NetherBrickFence(false, false, true, true): return 4522;
- case NetherBrickFence::NetherBrickFence(false, false, true, false): return 4523;
- case NetherBrickFence::NetherBrickFence(false, false, false, true): return 4526;
- case NetherBrickFence::NetherBrickFence(false, false, false, false): return 4527;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Top): return 7330;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Bottom): return 7332;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double): return 7334;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 4529;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 4531;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 4533;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 4535;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 4537;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 4539;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 4541;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 4543;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 4545;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 4547;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 4549;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 4551;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 4553;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 4555;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 4557;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 4559;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 4561;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 4563;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 4565;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 4567;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 4569;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 4571;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 4573;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 4575;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 4577;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 4579;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 4581;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 4583;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 4585;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 4587;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 4589;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 4591;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 4593;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 4595;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 4597;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 4599;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 4601;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 4603;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 4605;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 4607;
- case NetherBricks::NetherBricks(): return 4495;
- case NetherPortal::NetherPortal(NetherPortal::Axis::X): return 3496;
- case NetherPortal::NetherPortal(NetherPortal::Axis::Z): return 3497;
- case NetherQuartzOre::NetherQuartzOre(): return 5684;
- case NetherWart::NetherWart(0): return 4608;
- case NetherWart::NetherWart(1): return 4609;
- case NetherWart::NetherWart(2): return 4610;
- case NetherWart::NetherWart(3): return 4611;
- case NetherWartBlock::NetherWartBlock(): return 8193;
- case Netherrack::Netherrack(): return 3493;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, true): return 248;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, false): return 249;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, true): return 250;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, false): return 251;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, true): return 252;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, false): return 253;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, true): return 254;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, false): return 255;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, true): return 256;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, false): return 257;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, true): return 258;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, false): return 259;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, true): return 260;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, false): return 261;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, true): return 262;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, false): return 263;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, true): return 264;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, false): return 265;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, true): return 266;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, false): return 267;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, true): return 268;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, false): return 269;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, true): return 270;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, false): return 271;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, true): return 272;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, false): return 273;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, true): return 274;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, false): return 275;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, true): return 276;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, false): return 277;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, true): return 278;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, false): return 279;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, true): return 280;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, false): return 281;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, true): return 282;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, false): return 283;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, true): return 284;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, false): return 285;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, true): return 286;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, false): return 287;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, true): return 288;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, false): return 289;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, true): return 290;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, false): return 291;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, true): return 292;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, false): return 293;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, true): return 294;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, false): return 295;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, true): return 296;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, false): return 297;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, true): return 298;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, false): return 299;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, true): return 300;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, false): return 301;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, true): return 302;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, false): return 303;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, true): return 304;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, false): return 305;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, true): return 306;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, false): return 307;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, true): return 308;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, false): return 309;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, true): return 310;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, false): return 311;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, true): return 312;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, false): return 313;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, true): return 314;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, false): return 315;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, true): return 316;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, false): return 317;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, true): return 318;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, false): return 319;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, true): return 320;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, false): return 321;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, true): return 322;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, false): return 323;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, true): return 324;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, false): return 325;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, true): return 326;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, false): return 327;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, true): return 328;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, false): return 329;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, true): return 330;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, false): return 331;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, true): return 332;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, false): return 333;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, true): return 334;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, false): return 335;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, true): return 336;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, false): return 337;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, true): return 338;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, false): return 339;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, true): return 340;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, false): return 341;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, true): return 342;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, false): return 343;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, true): return 344;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, false): return 345;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, true): return 346;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, false): return 347;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, true): return 348;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, false): return 349;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, true): return 350;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, false): return 351;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, true): return 352;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, false): return 353;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, true): return 354;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, false): return 355;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, true): return 356;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, false): return 357;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, true): return 358;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, false): return 359;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, true): return 360;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, false): return 361;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, true): return 362;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, false): return 363;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, true): return 364;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, false): return 365;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, true): return 366;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, false): return 367;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, true): return 368;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, false): return 369;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, true): return 370;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, false): return 371;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, true): return 372;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, false): return 373;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, true): return 374;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, false): return 375;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, true): return 376;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, false): return 377;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, true): return 378;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, false): return 379;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, true): return 380;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, false): return 381;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, true): return 382;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, false): return 383;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, true): return 384;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, false): return 385;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, true): return 386;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, false): return 387;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, true): return 388;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, false): return 389;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, true): return 390;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, false): return 391;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, true): return 392;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, false): return 393;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, true): return 394;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, false): return 395;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, true): return 396;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, false): return 397;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, true): return 398;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, false): return 399;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, true): return 400;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, false): return 401;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, true): return 402;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, false): return 403;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, true): return 404;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, false): return 405;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, true): return 406;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, false): return 407;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, true): return 408;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, false): return 409;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, true): return 410;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, false): return 411;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, true): return 412;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, false): return 413;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, true): return 414;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, false): return 415;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, true): return 416;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, false): return 417;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, true): return 418;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, false): return 419;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, true): return 420;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, false): return 421;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, true): return 422;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, false): return 423;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, true): return 424;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, false): return 425;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, true): return 426;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, false): return 427;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, true): return 428;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, false): return 429;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, true): return 430;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, false): return 431;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, true): return 432;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, false): return 433;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, true): return 434;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, false): return 435;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, true): return 436;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, false): return 437;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, true): return 438;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, false): return 439;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, true): return 440;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, false): return 441;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, true): return 442;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, false): return 443;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, true): return 444;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, false): return 445;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, true): return 446;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, false): return 447;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, true): return 448;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, false): return 449;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, true): return 450;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, false): return 451;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, true): return 452;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, false): return 453;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, true): return 454;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, false): return 455;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, true): return 456;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, false): return 457;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, true): return 458;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, false): return 459;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, true): return 460;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, false): return 461;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, true): return 462;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, false): return 463;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, true): return 464;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, false): return 465;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, true): return 466;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, false): return 467;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, true): return 468;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, false): return 469;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, true): return 470;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, false): return 471;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, true): return 472;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, false): return 473;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, true): return 474;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, false): return 475;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, true): return 476;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, false): return 477;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, true): return 478;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, false): return 479;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, true): return 480;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, false): return 481;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, true): return 482;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, false): return 483;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, true): return 484;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, false): return 485;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, true): return 486;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, false): return 487;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, true): return 488;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, false): return 489;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, true): return 490;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, false): return 491;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, true): return 492;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, false): return 493;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, true): return 494;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, false): return 495;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, true): return 496;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, false): return 497;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, true): return 498;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, false): return 499;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, true): return 500;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, false): return 501;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, true): return 502;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, false): return 503;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, true): return 504;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, false): return 505;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, true): return 506;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, false): return 507;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, true): return 508;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, false): return 509;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, true): return 510;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, false): return 511;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, true): return 512;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, false): return 513;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, true): return 514;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, false): return 515;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, true): return 516;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, false): return 517;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, true): return 518;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, false): return 519;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, true): return 520;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, false): return 521;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, true): return 522;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, false): return 523;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, true): return 524;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, false): return 525;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, true): return 526;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, false): return 527;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, true): return 528;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, false): return 529;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, true): return 530;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, false): return 531;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, true): return 532;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, false): return 533;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, true): return 534;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, false): return 535;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, true): return 536;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, false): return 537;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, true): return 538;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, false): return 539;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, true): return 540;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, false): return 541;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, true): return 542;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, false): return 543;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, true): return 544;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, false): return 545;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, true): return 546;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, false): return 547;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, true): return 548;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, false): return 549;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, true): return 550;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, false): return 551;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, true): return 552;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, false): return 553;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, true): return 554;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, false): return 555;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, true): return 556;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, false): return 557;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, true): return 558;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, false): return 559;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, true): return 560;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, false): return 561;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, true): return 562;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, false): return 563;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, true): return 564;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, false): return 565;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, true): return 566;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, false): return 567;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, true): return 568;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, false): return 569;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, true): return 570;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, false): return 571;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, true): return 572;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, false): return 573;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, true): return 574;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, false): return 575;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, true): return 576;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, false): return 577;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, true): return 578;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, false): return 579;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, true): return 580;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, false): return 581;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, true): return 582;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, false): return 583;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, true): return 584;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, false): return 585;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, true): return 586;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, false): return 587;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, true): return 588;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, false): return 589;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, true): return 590;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, false): return 591;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, true): return 592;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, false): return 593;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, true): return 594;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, false): return 595;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, true): return 596;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, false): return 597;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, true): return 598;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, false): return 599;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, true): return 600;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, false): return 601;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, true): return 602;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, false): return 603;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, true): return 604;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, false): return 605;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, true): return 606;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, false): return 607;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, true): return 608;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, false): return 609;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, true): return 610;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, false): return 611;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, true): return 612;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, false): return 613;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, true): return 614;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, false): return 615;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, true): return 616;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, false): return 617;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, true): return 618;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, false): return 619;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, true): return 620;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, false): return 621;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, true): return 622;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, false): return 623;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, true): return 624;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, false): return 625;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, true): return 626;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, false): return 627;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, true): return 628;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, false): return 629;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, true): return 630;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, false): return 631;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, true): return 632;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, false): return 633;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, true): return 634;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, false): return 635;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, true): return 636;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, false): return 637;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, true): return 638;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, false): return 639;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, true): return 640;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, false): return 641;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, true): return 642;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, false): return 643;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, true): return 644;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, false): return 645;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, true): return 646;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, false): return 647;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, true): return 648;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, false): return 649;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, true): return 650;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, false): return 651;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, true): return 652;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, false): return 653;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, true): return 654;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, false): return 655;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, true): return 656;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, false): return 657;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, true): return 658;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, false): return 659;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, true): return 660;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, false): return 661;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, true): return 662;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, false): return 663;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, true): return 664;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, false): return 665;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, true): return 666;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, false): return 667;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, true): return 668;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, false): return 669;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, true): return 670;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, false): return 671;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, true): return 672;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, false): return 673;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, true): return 674;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, false): return 675;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, true): return 676;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, false): return 677;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, true): return 678;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, false): return 679;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, true): return 680;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, false): return 681;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, true): return 682;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, false): return 683;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, true): return 684;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, false): return 685;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, true): return 686;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, false): return 687;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, true): return 688;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, false): return 689;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, true): return 690;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, false): return 691;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, true): return 692;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, false): return 693;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, true): return 694;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, false): return 695;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, true): return 696;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, false): return 697;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, true): return 698;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, false): return 699;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, true): return 700;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, false): return 701;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, true): return 702;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, false): return 703;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, true): return 704;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, false): return 705;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, true): return 706;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, false): return 707;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, true): return 708;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, false): return 709;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, true): return 710;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, false): return 711;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, true): return 712;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, false): return 713;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, true): return 714;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, false): return 715;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, true): return 716;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, false): return 717;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, true): return 718;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, false): return 719;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, true): return 720;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, false): return 721;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, true): return 722;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, false): return 723;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, true): return 724;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, false): return 725;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, true): return 726;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, false): return 727;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, true): return 728;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, false): return 729;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, true): return 730;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, false): return 731;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, true): return 732;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, false): return 733;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, true): return 734;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, false): return 735;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, true): return 736;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, false): return 737;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, true): return 738;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, false): return 739;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, true): return 740;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, false): return 741;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, true): return 742;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, false): return 743;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, true): return 744;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, false): return 745;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, true): return 746;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, false): return 747;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5303;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5304;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5305;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5306;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5307;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5308;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5309;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5310;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5311;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5312;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5313;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5314;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5315;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5316;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5317;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5318;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5319;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5320;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5321;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5322;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5323;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5324;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5325;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5326;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3107;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3108;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3109;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3110;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3111;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3112;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3113;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3114;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3115;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3116;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3117;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3118;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3119;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3120;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3121;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3122;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3123;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3124;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3125;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3126;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3127;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3128;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3129;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3130;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3131;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3132;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3133;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3134;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3135;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3136;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3137;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3138;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3139;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3140;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3141;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3142;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3143;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3144;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3145;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3146;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3147;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3148;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3149;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3150;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3151;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3152;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3153;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3154;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3155;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3156;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3157;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3158;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3159;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3160;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3161;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3162;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3163;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3164;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3165;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3166;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3167;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3168;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3169;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3170;
- case OakFence::OakFence(true, true, true, true): return 3462;
- case OakFence::OakFence(true, true, true, false): return 3463;
- case OakFence::OakFence(true, true, false, true): return 3466;
- case OakFence::OakFence(true, true, false, false): return 3467;
- case OakFence::OakFence(true, false, true, true): return 3470;
- case OakFence::OakFence(true, false, true, false): return 3471;
- case OakFence::OakFence(true, false, false, true): return 3474;
- case OakFence::OakFence(true, false, false, false): return 3475;
- case OakFence::OakFence(false, true, true, true): return 3478;
- case OakFence::OakFence(false, true, true, false): return 3479;
- case OakFence::OakFence(false, true, false, true): return 3482;
- case OakFence::OakFence(false, true, false, false): return 3483;
- case OakFence::OakFence(false, false, true, true): return 3486;
- case OakFence::OakFence(false, false, true, false): return 3487;
- case OakFence::OakFence(false, false, false, true): return 3490;
- case OakFence::OakFence(false, false, false, false): return 3491;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 4300;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 4301;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 4302;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 4303;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 4304;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 4305;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 4306;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 4307;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 4308;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 4309;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 4310;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 4311;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 4312;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 4313;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 4314;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 4315;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 4316;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 4317;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 4318;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 4319;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 4320;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 4321;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 4322;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 4323;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 4324;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 4325;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 4326;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 4327;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 4328;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 4329;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 4330;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 4331;
- case OakLeaves::OakLeaves(1, true): return 144;
- case OakLeaves::OakLeaves(1, false): return 145;
- case OakLeaves::OakLeaves(2, true): return 146;
- case OakLeaves::OakLeaves(2, false): return 147;
- case OakLeaves::OakLeaves(3, true): return 148;
- case OakLeaves::OakLeaves(3, false): return 149;
- case OakLeaves::OakLeaves(4, true): return 150;
- case OakLeaves::OakLeaves(4, false): return 151;
- case OakLeaves::OakLeaves(5, true): return 152;
- case OakLeaves::OakLeaves(5, false): return 153;
- case OakLeaves::OakLeaves(6, true): return 154;
- case OakLeaves::OakLeaves(6, false): return 155;
- case OakLeaves::OakLeaves(7, true): return 156;
- case OakLeaves::OakLeaves(7, false): return 157;
- case OakLog::OakLog(OakLog::Axis::X): return 72;
- case OakLog::OakLog(OakLog::Axis::Y): return 73;
- case OakLog::OakLog(OakLog::Axis::Z): return 74;
- case OakPlanks::OakPlanks(): return 15;
- case OakPressurePlate::OakPressurePlate(true): return 3367;
- case OakPressurePlate::OakPressurePlate(false): return 3368;
- case OakSapling::OakSapling(0): return 21;
- case OakSapling::OakSapling(1): return 22;
- case OakSlab::OakSlab(OakSlab::Type::Top): return 7258;
- case OakSlab::OakSlab(OakSlab::Type::Bottom): return 7260;
- case OakSlab::OakSlab(OakSlab::Type::Double): return 7262;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1649;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1651;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1653;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1655;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1657;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1659;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1661;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1663;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1665;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1667;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1669;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1671;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1673;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1675;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1677;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1679;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1681;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1683;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1685;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1687;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1689;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1691;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1693;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1695;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1697;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1699;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1701;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1703;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1705;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1707;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1709;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1711;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1713;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1715;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1717;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1719;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1721;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1723;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1725;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1727;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, true): return 3594;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, false): return 3596;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, true): return 3598;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, false): return 3600;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, true): return 3602;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, false): return 3604;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, true): return 3606;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, false): return 3608;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, true): return 3610;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, false): return 3612;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, true): return 3614;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, false): return 3616;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, true): return 3618;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, false): return 3620;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, true): return 3622;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, false): return 3624;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, true): return 3626;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, false): return 3628;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, true): return 3630;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, false): return 3632;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, true): return 3634;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, false): return 3636;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, true): return 3638;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, false): return 3640;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, true): return 3642;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, false): return 3644;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, true): return 3646;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, false): return 3648;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, true): return 3650;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, false): return 3652;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, true): return 3654;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, false): return 3656;
- case OakWood::OakWood(OakWood::Axis::X): return 108;
- case OakWood::OakWood(OakWood::Axis::Y): return 109;
- case OakWood::OakWood(OakWood::Axis::Z): return 110;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, true): return 8199;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, false): return 8200;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XP, true): return 8201;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XP, false): return 8202;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, true): return 8203;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, false): return 8204;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XM, true): return 8205;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XM, false): return 8206;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YP, true): return 8207;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YP, false): return 8208;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YM, true): return 8209;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YM, false): return 8210;
- case Obsidian::Obsidian(): return 1129;
- case OrangeBanner::OrangeBanner(0): return 6870;
- case OrangeBanner::OrangeBanner(1): return 6871;
- case OrangeBanner::OrangeBanner(2): return 6872;
- case OrangeBanner::OrangeBanner(3): return 6873;
- case OrangeBanner::OrangeBanner(4): return 6874;
- case OrangeBanner::OrangeBanner(5): return 6875;
- case OrangeBanner::OrangeBanner(6): return 6876;
- case OrangeBanner::OrangeBanner(7): return 6877;
- case OrangeBanner::OrangeBanner(8): return 6878;
- case OrangeBanner::OrangeBanner(9): return 6879;
- case OrangeBanner::OrangeBanner(10): return 6880;
- case OrangeBanner::OrangeBanner(11): return 6881;
- case OrangeBanner::OrangeBanner(12): return 6882;
- case OrangeBanner::OrangeBanner(13): return 6883;
- case OrangeBanner::OrangeBanner(14): return 6884;
- case OrangeBanner::OrangeBanner(15): return 6885;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Head): return 764;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Foot): return 765;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Head): return 766;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Foot): return 767;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Head): return 768;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Foot): return 769;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Head): return 770;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Foot): return 771;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Head): return 772;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Foot): return 773;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Head): return 774;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Foot): return 775;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Head): return 776;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Foot): return 777;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Head): return 778;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Foot): return 779;
- case OrangeCarpet::OrangeCarpet(): return 6824;
- case OrangeConcrete::OrangeConcrete(): return 8378;
- case OrangeConcretePowder::OrangeConcretePowder(): return 8394;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8317;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8318;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8319;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8320;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8223;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8224;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8225;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8226;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8227;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8228;
- case OrangeStainedGlass::OrangeStainedGlass(): return 3578;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, true): return 5854;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, false): return 5855;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, true): return 5858;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, false): return 5859;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, true): return 5862;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, false): return 5863;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, true): return 5866;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, false): return 5867;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, true): return 5870;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, false): return 5871;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, true): return 5874;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, false): return 5875;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, true): return 5878;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, false): return 5879;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, true): return 5882;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, false): return 5883;
- case OrangeTerracotta::OrangeTerracotta(): return 5805;
- case OrangeTulip::OrangeTulip(): return 1117;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7114;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7115;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XM): return 7116;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XP): return 7117;
- case OrangeWool::OrangeWool(): return 1084;
- case OxeyeDaisy::OxeyeDaisy(): return 1120;
- case PackedIce::PackedIce(): return 6841;
- case Peony::Peony(Peony::Half::Upper): return 6848;
- case Peony::Peony(Peony::Half::Lower): return 6849;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Top): return 7306;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Bottom): return 7308;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double): return 7310;
- case PinkBanner::PinkBanner(0): return 6950;
- case PinkBanner::PinkBanner(1): return 6951;
- case PinkBanner::PinkBanner(2): return 6952;
- case PinkBanner::PinkBanner(3): return 6953;
- case PinkBanner::PinkBanner(4): return 6954;
- case PinkBanner::PinkBanner(5): return 6955;
- case PinkBanner::PinkBanner(6): return 6956;
- case PinkBanner::PinkBanner(7): return 6957;
- case PinkBanner::PinkBanner(8): return 6958;
- case PinkBanner::PinkBanner(9): return 6959;
- case PinkBanner::PinkBanner(10): return 6960;
- case PinkBanner::PinkBanner(11): return 6961;
- case PinkBanner::PinkBanner(12): return 6962;
- case PinkBanner::PinkBanner(13): return 6963;
- case PinkBanner::PinkBanner(14): return 6964;
- case PinkBanner::PinkBanner(15): return 6965;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Head): return 844;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Foot): return 845;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Head): return 846;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Foot): return 847;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Head): return 848;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Foot): return 849;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Head): return 850;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Foot): return 851;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Head): return 852;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Foot): return 853;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Head): return 854;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Foot): return 855;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Head): return 856;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Foot): return 857;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Head): return 858;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Foot): return 859;
- case PinkCarpet::PinkCarpet(): return 6829;
- case PinkConcrete::PinkConcrete(): return 8383;
- case PinkConcretePowder::PinkConcretePowder(): return 8399;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8337;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8338;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8339;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8340;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8253;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8254;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8255;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8256;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8257;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8258;
- case PinkStainedGlass::PinkStainedGlass(): return 3583;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, true): return 6014;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, false): return 6015;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, true): return 6018;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, false): return 6019;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, true): return 6022;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, false): return 6023;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, true): return 6026;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, false): return 6027;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, true): return 6030;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, false): return 6031;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, true): return 6034;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, false): return 6035;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, true): return 6038;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, false): return 6039;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, true): return 6042;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, false): return 6043;
- case PinkTerracotta::PinkTerracotta(): return 5810;
- case PinkTulip::PinkTulip(): return 1119;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7134;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7135;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XM): return 7136;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XP): return 7137;
- case PinkWool::PinkWool(): return 1089;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZM): return 1047;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_XP): return 1048;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZP): return 1049;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_XM): return 1050;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_YP): return 1051;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_YM): return 1052;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZM): return 1053;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_XP): return 1054;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZP): return 1055;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_XM): return 1056;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_YP): return 1057;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_YM): return 1058;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Normal): return 1059;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Sticky): return 1060;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Normal): return 1061;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Sticky): return 1062;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Normal): return 1063;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Sticky): return 1064;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Normal): return 1065;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Sticky): return 1066;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Normal): return 1067;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Sticky): return 1068;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Normal): return 1069;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Sticky): return 1070;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Normal): return 1071;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Sticky): return 1072;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Normal): return 1073;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Sticky): return 1074;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Normal): return 1075;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Sticky): return 1076;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Normal): return 1077;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Sticky): return 1078;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Normal): return 1079;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Sticky): return 1080;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Normal): return 1081;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Sticky): return 1082;
- case PlayerHead::PlayerHead(0): return 5511;
- case PlayerHead::PlayerHead(1): return 5512;
- case PlayerHead::PlayerHead(2): return 5513;
- case PlayerHead::PlayerHead(3): return 5514;
- case PlayerHead::PlayerHead(4): return 5515;
- case PlayerHead::PlayerHead(5): return 5516;
- case PlayerHead::PlayerHead(6): return 5517;
- case PlayerHead::PlayerHead(7): return 5518;
- case PlayerHead::PlayerHead(8): return 5519;
- case PlayerHead::PlayerHead(9): return 5520;
- case PlayerHead::PlayerHead(10): return 5521;
- case PlayerHead::PlayerHead(11): return 5522;
- case PlayerHead::PlayerHead(12): return 5523;
- case PlayerHead::PlayerHead(13): return 5524;
- case PlayerHead::PlayerHead(14): return 5525;
- case PlayerHead::PlayerHead(15): return 5526;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZM): return 5507;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZP): return 5508;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XM): return 5509;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XP): return 5510;
- case Podzol::Podzol(true): return 12;
- case Podzol::Podzol(false): return 13;
- case PolishedAndesite::PolishedAndesite(): return 7;
- case PolishedDiorite::PolishedDiorite(): return 5;
- case PolishedGranite::PolishedGranite(): return 3;
- case Poppy::Poppy(): return 1112;
- case Potatoes::Potatoes(0): return 5295;
- case Potatoes::Potatoes(1): return 5296;
- case Potatoes::Potatoes(2): return 5297;
- case Potatoes::Potatoes(3): return 5298;
- case Potatoes::Potatoes(4): return 5299;
- case Potatoes::Potatoes(5): return 5300;
- case Potatoes::Potatoes(6): return 5301;
- case Potatoes::Potatoes(7): return 5302;
- case PottedAcaciaSapling::PottedAcaciaSapling(): return 5270;
- case PottedAllium::PottedAllium(): return 5276;
- case PottedAzureBluet::PottedAzureBluet(): return 5277;
- case PottedBirchSapling::PottedBirchSapling(): return 5268;
- case PottedBlueOrchid::PottedBlueOrchid(): return 5275;
- case PottedBrownMushroom::PottedBrownMushroom(): return 5284;
- case PottedCactus::PottedCactus(): return 5286;
- case PottedDandelion::PottedDandelion(): return 5273;
- case PottedDarkOakSapling::PottedDarkOakSapling(): return 5271;
- case PottedDeadBush::PottedDeadBush(): return 5285;
- case PottedFern::PottedFern(): return 5272;
- case PottedJungleSapling::PottedJungleSapling(): return 5269;
- case PottedOakSapling::PottedOakSapling(): return 5266;
- case PottedOrangeTulip::PottedOrangeTulip(): return 5279;
- case PottedOxeyeDaisy::PottedOxeyeDaisy(): return 5282;
- case PottedPinkTulip::PottedPinkTulip(): return 5281;
- case PottedPoppy::PottedPoppy(): return 5274;
- case PottedRedMushroom::PottedRedMushroom(): return 5283;
- case PottedRedTulip::PottedRedTulip(): return 5278;
- case PottedSpruceSapling::PottedSpruceSapling(): return 5267;
- case PottedWhiteTulip::PottedWhiteTulip(): return 5280;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::NorthSouth): return 1004;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::EastWest): return 1005;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingEast): return 1006;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingWest): return 1007;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingNorth): return 1008;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingSouth): return 1009;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::NorthSouth): return 1010;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::EastWest): return 1011;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingEast): return 1012;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingWest): return 1013;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingNorth): return 1014;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingSouth): return 1015;
- case Prismarine::Prismarine(): return 6558;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Top): return 6808;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Bottom): return 6810;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Double): return 6812;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 6642;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 6644;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 6646;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 6648;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 6650;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 6652;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 6654;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 6656;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 6658;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 6660;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 6662;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 6664;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 6666;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 6668;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 6670;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 6672;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 6674;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 6676;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 6678;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 6680;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 6682;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 6684;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 6686;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 6688;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 6690;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 6692;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 6694;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 6696;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 6698;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 6700;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 6702;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 6704;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 6706;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 6708;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 6710;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 6712;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 6714;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 6716;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 6718;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 6720;
- case PrismarineBricks::PrismarineBricks(): return 6559;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Top): return 6802;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Bottom): return 6804;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Double): return 6806;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 6562;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 6564;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 6566;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 6568;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 6570;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 6572;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 6574;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 6576;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 6578;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 6580;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 6582;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 6584;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 6586;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 6588;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 6590;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 6592;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 6594;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 6596;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 6598;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 6600;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 6602;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 6604;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 6606;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 6608;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 6610;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 6612;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 6614;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 6616;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 6618;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 6620;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 6622;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 6624;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 6626;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 6628;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 6630;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 6632;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 6634;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 6636;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 6638;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 6640;
- case Pumpkin::Pumpkin(): return 3492;
- case PumpkinStem::PumpkinStem(0): return 4252;
- case PumpkinStem::PumpkinStem(1): return 4253;
- case PumpkinStem::PumpkinStem(2): return 4254;
- case PumpkinStem::PumpkinStem(3): return 4255;
- case PumpkinStem::PumpkinStem(4): return 4256;
- case PumpkinStem::PumpkinStem(5): return 4257;
- case PumpkinStem::PumpkinStem(6): return 4258;
- case PumpkinStem::PumpkinStem(7): return 4259;
- case PurpleBanner::PurpleBanner(0): return 7014;
- case PurpleBanner::PurpleBanner(1): return 7015;
- case PurpleBanner::PurpleBanner(2): return 7016;
- case PurpleBanner::PurpleBanner(3): return 7017;
- case PurpleBanner::PurpleBanner(4): return 7018;
- case PurpleBanner::PurpleBanner(5): return 7019;
- case PurpleBanner::PurpleBanner(6): return 7020;
- case PurpleBanner::PurpleBanner(7): return 7021;
- case PurpleBanner::PurpleBanner(8): return 7022;
- case PurpleBanner::PurpleBanner(9): return 7023;
- case PurpleBanner::PurpleBanner(10): return 7024;
- case PurpleBanner::PurpleBanner(11): return 7025;
- case PurpleBanner::PurpleBanner(12): return 7026;
- case PurpleBanner::PurpleBanner(13): return 7027;
- case PurpleBanner::PurpleBanner(14): return 7028;
- case PurpleBanner::PurpleBanner(15): return 7029;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Head): return 908;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Foot): return 909;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Head): return 910;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Foot): return 911;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Head): return 912;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Foot): return 913;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Head): return 914;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Foot): return 915;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Head): return 916;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Foot): return 917;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Head): return 918;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Foot): return 919;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Head): return 920;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Foot): return 921;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Head): return 922;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Foot): return 923;
- case PurpleCarpet::PurpleCarpet(): return 6833;
- case PurpleConcrete::PurpleConcrete(): return 8387;
- case PurpleConcretePowder::PurpleConcretePowder(): return 8403;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8353;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8354;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8355;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8356;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8277;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8278;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8279;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8280;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8281;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8282;
- case PurpleStainedGlass::PurpleStainedGlass(): return 3587;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, true): return 6142;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, false): return 6143;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, true): return 6146;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, false): return 6147;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, true): return 6150;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, false): return 6151;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, true): return 6154;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, false): return 6155;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, true): return 6158;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, false): return 6159;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, true): return 6162;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, false): return 6163;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, true): return 6166;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, false): return 6167;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, true): return 6170;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, false): return 6171;
- case PurpleTerracotta::PurpleTerracotta(): return 5814;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7150;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7151;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XM): return 7152;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XP): return 7153;
- case PurpleWool::PurpleWool(): return 1093;
- case PurpurBlock::PurpurBlock(): return 8073;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::X): return 8074;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Y): return 8075;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Z): return 8076;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Top): return 7348;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Bottom): return 7350;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Double): return 7352;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8078;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8080;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8082;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8084;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8086;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8088;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8090;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8092;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8094;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8096;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8098;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8100;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8102;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8104;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8106;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8108;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8110;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8112;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8114;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8116;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8118;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8120;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8122;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8124;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8126;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8128;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8130;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8132;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8134;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8136;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8138;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8140;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8142;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8144;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8146;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8148;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8150;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8152;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8154;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8156;
- case QuartzBlock::QuartzBlock(): return 5695;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::X): return 5697;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Y): return 5698;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Z): return 5699;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Top): return 7336;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Bottom): return 7338;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Double): return 7340;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 5701;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 5703;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 5705;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 5707;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 5709;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 5711;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 5713;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 5715;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 5717;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 5719;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 5721;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 5723;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 5725;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 5727;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 5729;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 5731;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 5733;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 5735;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 5737;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 5739;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 5741;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 5743;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 5745;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 5747;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 5749;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 5751;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 5753;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 5755;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 5757;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 5759;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 5761;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 5763;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 5765;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 5767;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 5769;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 5771;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 5773;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 5775;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 5777;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 5779;
- case Rail::Rail(Rail::Shape::NorthSouth): return 3179;
- case Rail::Rail(Rail::Shape::EastWest): return 3180;
- case Rail::Rail(Rail::Shape::AscendingEast): return 3181;
- case Rail::Rail(Rail::Shape::AscendingWest): return 3182;
- case Rail::Rail(Rail::Shape::AscendingNorth): return 3183;
- case Rail::Rail(Rail::Shape::AscendingSouth): return 3184;
- case Rail::Rail(Rail::Shape::SouthEast): return 3185;
- case Rail::Rail(Rail::Shape::SouthWest): return 3186;
- case Rail::Rail(Rail::Shape::NorthWest): return 3187;
- case Rail::Rail(Rail::Shape::NorthEast): return 3188;
- case RedBanner::RedBanner(0): return 7078;
- case RedBanner::RedBanner(1): return 7079;
- case RedBanner::RedBanner(2): return 7080;
- case RedBanner::RedBanner(3): return 7081;
- case RedBanner::RedBanner(4): return 7082;
- case RedBanner::RedBanner(5): return 7083;
- case RedBanner::RedBanner(6): return 7084;
- case RedBanner::RedBanner(7): return 7085;
- case RedBanner::RedBanner(8): return 7086;
- case RedBanner::RedBanner(9): return 7087;
- case RedBanner::RedBanner(10): return 7088;
- case RedBanner::RedBanner(11): return 7089;
- case RedBanner::RedBanner(12): return 7090;
- case RedBanner::RedBanner(13): return 7091;
- case RedBanner::RedBanner(14): return 7092;
- case RedBanner::RedBanner(15): return 7093;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Head): return 972;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Foot): return 973;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Head): return 974;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Foot): return 975;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Head): return 976;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Foot): return 977;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Head): return 978;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Foot): return 979;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Head): return 980;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Foot): return 981;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Head): return 982;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Foot): return 983;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Head): return 984;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Foot): return 985;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Head): return 986;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Foot): return 987;
- case RedCarpet::RedCarpet(): return 6837;
- case RedConcrete::RedConcrete(): return 8391;
- case RedConcretePowder::RedConcretePowder(): return 8407;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8369;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8370;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8371;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8372;
- case RedMushroom::RedMushroom(): return 1122;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, true): return 4051;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, false): return 4052;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, true): return 4053;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, false): return 4054;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, true): return 4055;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, false): return 4056;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, true): return 4057;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, false): return 4058;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, true): return 4059;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, false): return 4060;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, true): return 4061;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, false): return 4062;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, true): return 4063;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, false): return 4064;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, true): return 4065;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, false): return 4066;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, true): return 4067;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, false): return 4068;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, true): return 4069;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, false): return 4070;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, true): return 4071;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, false): return 4072;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, true): return 4073;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, false): return 4074;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, true): return 4075;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, false): return 4076;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, true): return 4077;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, false): return 4078;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, true): return 4079;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, false): return 4080;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, true): return 4081;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, false): return 4082;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, true): return 4083;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, false): return 4084;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, true): return 4085;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, false): return 4086;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, true): return 4087;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, false): return 4088;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, true): return 4089;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, false): return 4090;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, true): return 4091;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, false): return 4092;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, true): return 4093;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, false): return 4094;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, true): return 4095;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, false): return 4096;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, true): return 4097;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, false): return 4098;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, true): return 4099;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, false): return 4100;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, true): return 4101;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, false): return 4102;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, true): return 4103;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, false): return 4104;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, true): return 4105;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, false): return 4106;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, true): return 4107;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, false): return 4108;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, true): return 4109;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, false): return 4110;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, true): return 4111;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, false): return 4112;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, true): return 4113;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false): return 4114;
- case RedNetherBricks::RedNetherBricks(): return 8194;
- case RedSand::RedSand(): return 67;
- case RedSandstone::RedSandstone(): return 7174;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Top): return 7342;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Bottom): return 7344;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Double): return 7346;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7178;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7180;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7182;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7184;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7186;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7188;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7190;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7192;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7194;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7196;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7198;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7200;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7202;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7204;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7206;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7208;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7210;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7212;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7214;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7216;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7218;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7220;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7222;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7224;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7226;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7228;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7230;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7232;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7234;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7236;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7238;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7240;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7242;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7244;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7246;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7248;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7250;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7252;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7254;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7256;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8301;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8302;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8303;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8304;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8305;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8306;
- case RedStainedGlass::RedStainedGlass(): return 3591;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, true, true): return 6270;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, true, false): return 6271;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, false, true): return 6274;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, false, false): return 6275;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, true, true): return 6278;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, true, false): return 6279;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, false, true): return 6282;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, false, false): return 6283;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, true, true): return 6286;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, true, false): return 6287;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, false, true): return 6290;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, false, false): return 6291;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, true, true): return 6294;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, true, false): return 6295;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, false, true): return 6298;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, false, false): return 6299;
- case RedTerracotta::RedTerracotta(): return 5818;
- case RedTulip::RedTulip(): return 1116;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7166;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7167;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XM): return 7168;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XP): return 7169;
- case RedWool::RedWool(): return 1097;
- case RedstoneBlock::RedstoneBlock(): return 5683;
- case RedstoneLamp::RedstoneLamp(true): return 4636;
- case RedstoneLamp::RedstoneLamp(false): return 4637;
- case RedstoneOre::RedstoneOre(true): return 3379;
- case RedstoneOre::RedstoneOre(false): return 3380;
- case RedstoneTorch::RedstoneTorch(true): return 3381;
- case RedstoneTorch::RedstoneTorch(false): return 3382;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, true): return 3383;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, false): return 3384;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, true): return 3385;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, false): return 3386;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, true): return 3387;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, false): return 3388;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, true): return 3389;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, false): return 3390;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1752;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1753;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 1754;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1755;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1756;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 1757;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 1758;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 1759;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 1760;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1761;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1762;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 1763;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1764;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1765;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 1766;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 1767;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 1768;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 1769;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1770;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1771;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 1772;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1773;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1774;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 1775;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 1776;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 1777;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 1778;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1779;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1780;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 1781;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1782;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1783;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 1784;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 1785;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 1786;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 1787;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1788;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1789;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 1790;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1791;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1792;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 1793;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 1794;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 1795;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 1796;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1797;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1798;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 1799;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1800;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1801;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 1802;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 1803;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 1804;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 1805;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1806;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1807;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 1808;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1809;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1810;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 1811;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 1812;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 1813;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 1814;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1815;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1816;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 1817;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1818;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1819;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 1820;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 1821;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 1822;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 1823;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1824;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1825;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 1826;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1827;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1828;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 1829;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 1830;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 1831;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 1832;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1833;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1834;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 1835;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1836;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1837;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 1838;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 1839;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 1840;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 1841;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1842;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1843;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 1844;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1845;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1846;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 1847;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 1848;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 1849;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 1850;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1851;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1852;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 1853;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1854;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1855;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 1856;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 1857;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 1858;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 1859;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1860;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1861;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 1862;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1863;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1864;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 1865;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 1866;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 1867;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 1868;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1869;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1870;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 1871;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1872;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1873;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 1874;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 1875;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 1876;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 1877;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1878;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1879;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 1880;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1881;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1882;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 1883;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 1884;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 1885;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 1886;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1887;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1888;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 1889;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1890;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1891;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 1892;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 1893;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 1894;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 1895;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1896;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1897;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 1898;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1899;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1900;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 1901;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 1902;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 1903;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 1904;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1905;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1906;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 1907;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1908;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1909;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 1910;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 1911;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 1912;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 1913;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1914;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1915;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 1916;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1917;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1918;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 1919;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 1920;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 1921;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 1922;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1923;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1924;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 1925;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1926;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1927;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 1928;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 1929;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 1930;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 1931;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1932;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1933;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 1934;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1935;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1936;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 1937;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 1938;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 1939;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 1940;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1941;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1942;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 1943;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1944;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1945;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 1946;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 1947;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 1948;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 1949;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1950;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1951;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 1952;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1953;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1954;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 1955;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 1956;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 1957;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 1958;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1959;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1960;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 1961;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1962;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1963;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 1964;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 1965;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 1966;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 1967;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1968;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1969;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 1970;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1971;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1972;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 1973;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 1974;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 1975;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 1976;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1977;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1978;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 1979;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1980;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1981;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 1982;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 1983;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 1984;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 1985;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1986;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1987;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 1988;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1989;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1990;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 1991;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 1992;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 1993;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 1994;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1995;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1996;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 1997;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1998;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1999;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2000;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2001;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2002;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2003;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2004;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2005;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2006;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2007;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2008;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2009;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2010;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2011;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2012;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2013;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2014;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2015;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2016;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2017;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2018;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2019;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2020;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2021;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2022;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2023;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2024;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2025;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2026;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2027;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2028;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2029;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2030;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2031;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2032;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2033;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2034;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2035;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2036;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2037;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2038;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2039;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2040;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2041;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2042;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2043;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2044;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2045;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2046;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2047;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2048;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2049;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2050;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2051;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2052;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2053;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2054;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2055;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2056;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2057;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2058;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2059;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2060;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2061;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2062;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2063;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2064;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2065;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2066;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2067;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2068;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2069;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2070;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2071;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2072;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2073;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2074;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2075;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2076;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2077;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2078;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2079;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2080;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2081;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2082;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2083;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2084;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2085;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2086;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2087;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2088;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2089;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2090;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2091;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2092;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2093;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2094;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2095;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2096;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2097;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2098;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2099;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2100;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2101;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2102;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2103;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2104;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2105;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2106;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2107;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2108;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2109;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2110;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2111;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2112;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2113;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2114;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2115;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2116;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2117;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2118;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2119;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2120;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2121;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2122;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2123;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2124;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2125;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2126;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2127;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2128;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2129;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2130;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2131;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2132;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2133;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2134;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2135;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2136;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2137;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2138;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2139;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2140;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2141;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2142;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2143;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2144;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2145;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2146;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2147;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2148;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2149;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2150;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2151;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2152;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2153;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2154;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2155;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2156;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2157;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2158;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2159;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2160;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2161;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2162;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2163;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2164;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2165;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2166;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2167;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2168;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2169;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2170;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2171;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2172;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2173;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2174;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2175;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2176;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2177;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2178;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2179;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2180;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2181;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2182;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2183;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2184;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2185;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2186;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2187;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2188;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2189;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2190;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2191;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2192;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2193;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2194;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2195;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2196;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2197;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2198;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2199;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2200;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2201;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2202;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2203;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2204;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2205;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2206;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2207;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2208;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2209;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2210;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2211;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2212;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2213;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2214;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2215;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2216;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2217;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2218;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2219;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2220;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2221;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2222;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2223;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2224;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2225;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2226;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2227;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2228;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2229;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2230;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2231;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2232;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2233;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2234;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2235;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2236;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2237;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2238;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2239;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2240;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2241;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2242;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2243;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2244;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2245;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2246;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2247;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2248;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2249;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2250;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2251;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2252;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2253;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2254;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2255;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2256;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2257;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2258;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2259;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2260;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2261;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2262;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2263;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2264;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2265;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2266;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2267;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2268;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2269;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2270;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2271;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2272;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2273;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2274;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2275;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2276;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2277;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2278;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2279;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2280;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2281;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2282;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2283;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2284;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2285;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2286;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2287;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2288;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2289;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2290;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2291;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2292;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2293;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2294;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2295;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2296;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2297;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2298;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2299;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2300;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2301;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2302;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2303;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2304;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2305;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2306;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2307;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2308;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2309;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2310;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2311;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2312;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2313;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2314;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2315;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2316;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2317;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2318;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2319;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2320;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2321;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2322;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2323;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2324;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2325;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2326;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2327;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2328;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2329;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2330;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2331;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2332;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2333;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2334;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2335;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2336;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2337;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2338;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2339;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2340;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2341;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2342;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2343;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2344;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2345;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2346;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2347;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2348;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2349;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2350;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2351;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2352;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2353;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2354;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2355;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2356;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2357;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2358;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2359;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2360;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2361;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2362;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2363;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2364;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2365;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2366;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2367;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2368;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2369;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2370;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2371;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2372;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2373;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2374;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2375;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2376;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2377;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2378;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2379;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2380;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2381;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2382;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2383;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2384;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2385;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2386;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2387;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2388;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2389;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2390;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2391;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2392;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2393;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2394;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2395;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2396;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2397;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2398;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2399;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2400;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2401;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2402;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2403;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2404;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2405;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2406;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2407;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2408;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2409;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2410;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2411;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2412;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2413;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2414;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2415;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2416;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2417;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2418;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2419;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2420;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2421;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2422;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2423;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2424;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2425;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2426;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2427;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2428;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2429;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2430;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2431;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2432;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2433;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2434;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2435;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2436;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2437;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2438;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2439;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2440;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2441;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2442;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2443;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2444;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2445;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2446;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2447;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2448;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2449;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2450;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2451;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2452;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2453;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2454;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2455;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2456;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2457;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2458;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2459;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2460;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2461;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2462;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2463;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2464;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2465;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2466;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2467;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2468;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2469;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2470;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2471;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2472;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2473;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2474;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2475;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2476;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2477;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2478;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2479;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2480;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2481;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2482;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2483;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2484;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2485;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2486;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2487;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2488;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2489;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2490;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2491;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2492;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2493;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2494;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2495;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2496;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2497;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2498;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2499;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2500;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2501;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2502;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2503;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2504;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2505;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2506;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2507;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2508;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2509;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2510;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2511;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2512;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2513;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2514;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2515;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2516;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2517;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2518;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2519;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2520;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2521;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2522;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2523;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2524;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2525;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2526;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2527;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2528;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2529;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2530;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2531;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2532;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2533;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2534;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2535;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2536;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2537;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2538;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2539;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2540;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2541;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2542;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2543;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2544;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2545;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2546;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2547;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2548;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2549;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2550;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2551;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2552;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2553;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2554;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2555;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2556;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2557;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2558;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2559;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2560;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2561;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2562;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2563;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2564;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2565;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2566;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2567;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2568;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2569;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2570;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2571;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2572;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2573;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2574;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2575;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2576;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2577;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2578;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2579;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2580;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2581;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2582;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2583;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2584;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2585;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2586;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2587;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2588;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2589;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2590;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2591;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2592;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2593;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2594;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2595;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2596;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2597;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2598;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2599;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2600;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2601;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2602;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2603;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2604;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2605;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2606;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2607;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2608;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2609;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2610;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2611;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2612;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2613;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2614;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2615;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2616;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2617;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2618;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2619;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2620;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2621;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2622;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2623;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2624;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2625;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2626;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2627;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2628;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2629;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2630;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2631;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2632;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2633;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2634;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2635;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2636;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2637;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2638;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2639;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2640;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2641;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2642;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2643;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2644;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2645;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2646;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2647;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2648;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2649;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2650;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2651;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2652;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2653;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2654;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2655;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2656;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2657;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2658;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2659;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2660;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2661;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2662;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2663;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2664;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2665;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2666;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2667;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2668;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2669;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2670;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2671;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2672;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2673;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2674;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2675;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2676;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2677;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2678;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2679;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2680;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2681;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2682;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2683;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2684;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2685;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2686;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2687;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2688;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2689;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2690;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2691;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2692;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2693;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2694;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2695;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2696;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2697;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2698;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2699;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2700;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2701;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2702;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2703;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2704;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2705;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2706;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2707;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2708;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2709;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2710;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2711;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2712;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2713;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2714;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2715;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2716;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2717;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2718;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2719;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2720;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2721;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2722;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2723;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2724;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2725;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2726;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2727;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2728;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2729;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2730;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2731;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2732;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2733;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2734;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2735;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2736;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2737;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2738;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2739;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2740;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2741;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2742;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2743;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2744;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2745;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2746;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2747;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2748;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2749;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2750;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2751;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2752;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2753;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2754;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2755;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2756;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2757;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2758;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2759;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2760;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2761;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2762;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2763;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2764;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2765;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2766;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2767;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2768;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2769;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2770;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2771;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2772;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2773;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2774;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2775;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2776;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2777;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2778;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2779;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2780;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2781;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2782;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2783;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2784;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2785;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2786;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2787;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2788;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2789;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2790;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2791;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2792;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2793;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2794;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2795;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2796;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2797;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2798;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2799;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2800;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2801;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2802;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2803;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2804;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2805;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2806;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2807;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2808;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2809;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2810;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2811;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2812;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2813;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2814;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2815;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2816;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2817;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2818;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2819;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2820;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2821;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2822;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2823;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2824;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2825;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2826;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2827;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2828;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2829;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2830;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2831;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2832;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2833;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2834;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2835;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2836;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2837;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2838;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2839;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2840;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2841;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2842;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2843;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2844;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2845;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2846;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2847;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2848;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2849;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2850;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2851;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2852;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2853;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2854;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2855;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2856;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2857;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2858;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2859;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2860;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2861;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2862;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2863;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2864;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2865;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2866;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2867;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2868;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2869;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2870;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2871;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2872;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2873;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2874;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2875;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2876;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2877;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2878;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2879;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2880;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2881;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2882;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2883;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2884;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2885;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2886;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2887;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2888;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2889;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2890;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2891;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2892;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2893;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2894;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2895;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2896;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2897;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2898;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2899;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2900;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2901;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2902;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2903;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2904;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2905;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2906;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2907;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2908;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2909;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2910;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2911;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2912;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2913;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2914;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2915;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2916;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2917;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2918;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2919;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2920;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2921;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2922;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2923;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2924;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2925;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2926;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2927;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2928;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2929;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2930;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2931;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2932;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2933;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2934;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2935;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2936;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2937;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2938;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2939;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2940;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2941;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2942;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2943;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2944;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2945;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2946;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2947;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2948;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2949;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2950;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2951;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2952;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2953;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2954;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2955;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2956;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2957;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2958;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2959;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2960;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2961;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2962;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2963;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2964;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2965;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2966;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2967;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2968;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2969;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2970;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2971;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2972;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2973;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2974;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2975;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2976;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2977;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2978;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2979;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2980;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2981;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2982;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2983;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2984;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2985;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2986;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2987;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2988;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2989;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2990;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2991;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2992;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2993;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2994;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2995;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2996;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2997;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2998;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2999;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3000;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3001;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3002;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3003;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3004;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3005;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3006;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3007;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3008;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3009;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3010;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3011;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3012;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3013;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3014;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3015;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3016;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3017;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3018;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3019;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3020;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3021;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3022;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3023;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3024;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3025;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3026;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3027;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3028;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3029;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3030;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3031;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3032;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3033;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3034;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3035;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3036;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3037;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3038;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3039;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3040;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3041;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3042;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3043;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3044;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3045;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3046;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3047;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, true): return 3513;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, false): return 3514;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, true): return 3515;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, false): return 3516;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, true): return 3517;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, false): return 3518;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, true): return 3519;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, false): return 3520;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, true): return 3521;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, false): return 3522;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, true): return 3523;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, false): return 3524;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, true): return 3525;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, false): return 3526;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, true): return 3527;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, false): return 3528;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, true): return 3529;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, false): return 3530;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, true): return 3531;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, false): return 3532;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, true): return 3533;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, false): return 3534;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, true): return 3535;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, false): return 3536;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, true): return 3537;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, false): return 3538;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, true): return 3539;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, false): return 3540;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, true): return 3541;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, false): return 3542;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, true): return 3543;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, false): return 3544;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, true): return 3545;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, false): return 3546;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, true): return 3547;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, false): return 3548;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, true): return 3549;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, false): return 3550;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, true): return 3551;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, false): return 3552;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, true): return 3553;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, false): return 3554;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, true): return 3555;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, false): return 3556;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, true): return 3557;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, false): return 3558;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, true): return 3559;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, false): return 3560;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, true): return 3561;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, false): return 3562;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, true): return 3563;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, false): return 3564;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, true): return 3565;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, false): return 3566;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, true): return 3567;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, false): return 3568;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, true): return 3569;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, false): return 3570;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, true): return 3571;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, false): return 3572;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, true): return 3573;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, false): return 3574;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, true): return 3575;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, false): return 3576;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 8164;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 8165;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 8166;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 8167;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 8168;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 8169;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 8170;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 8171;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 8172;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 8173;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 8174;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 8175;
- case RoseBush::RoseBush(RoseBush::Half::Upper): return 6846;
- case RoseBush::RoseBush(RoseBush::Half::Lower): return 6847;
- case Sand::Sand(): return 66;
- case Sandstone::Sandstone(): return 245;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Top): return 7300;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Bottom): return 7302;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Double): return 7304;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 4651;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 4653;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 4655;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 4657;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 4659;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 4661;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 4663;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 4665;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 4667;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 4669;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 4671;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 4673;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 4675;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 4677;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 4679;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 4681;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 4683;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 4685;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 4687;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 4689;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 4691;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 4693;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 4695;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 4697;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 4699;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 4701;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 4703;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 4705;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 4707;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 4709;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 4711;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 4713;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 4715;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 4717;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 4719;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 4721;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 4723;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 4725;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 4727;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 4729;
- case SeaLantern::SeaLantern(): return 6819;
- case SeaPickle::SeaPickle(1): return 8565;
- case SeaPickle::SeaPickle(2): return 8567;
- case SeaPickle::SeaPickle(3): return 8569;
- case SeaPickle::SeaPickle(4): return 8571;
- case Seagrass::Seagrass(): return 1044;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8211;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8212;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8213;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8214;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8215;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8216;
- case OakSign::OakSign(0): return 3076;
- case OakSign::OakSign(1): return 3078;
- case OakSign::OakSign(2): return 3080;
- case OakSign::OakSign(3): return 3082;
- case OakSign::OakSign(4): return 3084;
- case OakSign::OakSign(5): return 3086;
- case OakSign::OakSign(6): return 3088;
- case OakSign::OakSign(7): return 3090;
- case OakSign::OakSign(8): return 3092;
- case OakSign::OakSign(9): return 3094;
- case OakSign::OakSign(10): return 3096;
- case OakSign::OakSign(11): return 3098;
- case OakSign::OakSign(12): return 3100;
- case OakSign::OakSign(13): return 3102;
- case OakSign::OakSign(14): return 3104;
- case OakSign::OakSign(15): return 3106;
- case SkeletonSkull::SkeletonSkull(0): return 5451;
- case SkeletonSkull::SkeletonSkull(1): return 5452;
- case SkeletonSkull::SkeletonSkull(2): return 5453;
- case SkeletonSkull::SkeletonSkull(3): return 5454;
- case SkeletonSkull::SkeletonSkull(4): return 5455;
- case SkeletonSkull::SkeletonSkull(5): return 5456;
- case SkeletonSkull::SkeletonSkull(6): return 5457;
- case SkeletonSkull::SkeletonSkull(7): return 5458;
- case SkeletonSkull::SkeletonSkull(8): return 5459;
- case SkeletonSkull::SkeletonSkull(9): return 5460;
- case SkeletonSkull::SkeletonSkull(10): return 5461;
- case SkeletonSkull::SkeletonSkull(11): return 5462;
- case SkeletonSkull::SkeletonSkull(12): return 5463;
- case SkeletonSkull::SkeletonSkull(13): return 5464;
- case SkeletonSkull::SkeletonSkull(14): return 5465;
- case SkeletonSkull::SkeletonSkull(15): return 5466;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 5447;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 5448;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 5449;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 5450;
- case SlimeBlock::SlimeBlock(): return 6492;
- case SmoothQuartz::SmoothQuartz(): return 7355;
- case SmoothRedSandstone::SmoothRedSandstone(): return 7356;
- case SmoothSandstone::SmoothSandstone(): return 7354;
- case SmoothStone::SmoothStone(): return 7353;
- case Snow::Snow(1): return 3415;
- case Snow::Snow(2): return 3416;
- case Snow::Snow(3): return 3417;
- case Snow::Snow(4): return 3418;
- case Snow::Snow(5): return 3419;
- case Snow::Snow(6): return 3420;
- case Snow::Snow(7): return 3421;
- case Snow::Snow(8): return 3422;
- case SnowBlock::SnowBlock(): return 3424;
- case SoulSand::SoulSand(): return 3494;
- case Spawner::Spawner(): return 1647;
- case Sponge::Sponge(): return 228;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5327;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5328;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5329;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5330;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5331;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5332;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5333;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5334;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5335;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5336;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5337;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5338;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5339;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5340;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5341;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5342;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5343;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5344;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5345;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5346;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5347;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5348;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5349;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5350;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 7677;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 7678;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 7679;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 7680;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 7681;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 7682;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 7683;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 7684;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 7685;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 7686;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 7687;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 7688;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 7689;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 7690;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 7691;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 7692;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 7693;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 7694;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 7695;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 7696;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 7697;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 7698;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 7699;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 7700;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 7701;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 7702;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 7703;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 7704;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 7705;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 7706;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 7707;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 7708;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 7709;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 7710;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 7711;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 7712;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 7713;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 7714;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 7715;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 7716;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 7717;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 7718;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 7719;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 7720;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 7721;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 7722;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 7723;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 7724;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 7725;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 7726;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 7727;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 7728;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 7729;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 7730;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 7731;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 7732;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 7733;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 7734;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 7735;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 7736;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 7737;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 7738;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 7739;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 7740;
- case SpruceFence::SpruceFence(true, true, true, true): return 7519;
- case SpruceFence::SpruceFence(true, true, true, false): return 7520;
- case SpruceFence::SpruceFence(true, true, false, true): return 7523;
- case SpruceFence::SpruceFence(true, true, false, false): return 7524;
- case SpruceFence::SpruceFence(true, false, true, true): return 7527;
- case SpruceFence::SpruceFence(true, false, true, false): return 7528;
- case SpruceFence::SpruceFence(true, false, false, true): return 7531;
- case SpruceFence::SpruceFence(true, false, false, false): return 7532;
- case SpruceFence::SpruceFence(false, true, true, true): return 7535;
- case SpruceFence::SpruceFence(false, true, true, false): return 7536;
- case SpruceFence::SpruceFence(false, true, false, true): return 7539;
- case SpruceFence::SpruceFence(false, true, false, false): return 7540;
- case SpruceFence::SpruceFence(false, false, true, true): return 7543;
- case SpruceFence::SpruceFence(false, false, true, false): return 7544;
- case SpruceFence::SpruceFence(false, false, false, true): return 7547;
- case SpruceFence::SpruceFence(false, false, false, false): return 7548;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7357;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7358;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7359;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7360;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7361;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7362;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7363;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7364;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7365;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7366;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7367;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7368;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7369;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7370;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7371;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7372;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7373;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7374;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7375;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7376;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7377;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7378;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7379;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7380;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7381;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7382;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7383;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7384;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7385;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7386;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7387;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7388;
- case SpruceLeaves::SpruceLeaves(1, true): return 158;
- case SpruceLeaves::SpruceLeaves(1, false): return 159;
- case SpruceLeaves::SpruceLeaves(2, true): return 160;
- case SpruceLeaves::SpruceLeaves(2, false): return 161;
- case SpruceLeaves::SpruceLeaves(3, true): return 162;
- case SpruceLeaves::SpruceLeaves(3, false): return 163;
- case SpruceLeaves::SpruceLeaves(4, true): return 164;
- case SpruceLeaves::SpruceLeaves(4, false): return 165;
- case SpruceLeaves::SpruceLeaves(5, true): return 166;
- case SpruceLeaves::SpruceLeaves(5, false): return 167;
- case SpruceLeaves::SpruceLeaves(6, true): return 168;
- case SpruceLeaves::SpruceLeaves(6, false): return 169;
- case SpruceLeaves::SpruceLeaves(7, true): return 170;
- case SpruceLeaves::SpruceLeaves(7, false): return 171;
- case SpruceLog::SpruceLog(SpruceLog::Axis::X): return 75;
- case SpruceLog::SpruceLog(SpruceLog::Axis::Y): return 76;
- case SpruceLog::SpruceLog(SpruceLog::Axis::Z): return 77;
- case SprucePlanks::SprucePlanks(): return 16;
- case SprucePressurePlate::SprucePressurePlate(true): return 3369;
- case SprucePressurePlate::SprucePressurePlate(false): return 3370;
- case SpruceSapling::SpruceSapling(0): return 23;
- case SpruceSapling::SpruceSapling(1): return 24;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Top): return 7264;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Bottom): return 7266;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Double): return 7268;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 4885;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 4887;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 4889;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 4891;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 4893;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 4895;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 4897;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 4899;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 4901;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 4903;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 4905;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 4907;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 4909;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 4911;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 4913;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 4915;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 4917;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 4919;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 4921;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 4923;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 4925;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 4927;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 4929;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 4931;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 4933;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 4935;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 4937;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 4939;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 4941;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 4943;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 4945;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 4947;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 4949;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 4951;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 4953;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 4955;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 4957;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 4959;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 4961;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 4963;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, true): return 3658;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, false): return 3660;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, true): return 3662;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, false): return 3664;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, true): return 3666;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, false): return 3668;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, true): return 3670;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, false): return 3672;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, true): return 3674;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, false): return 3676;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, true): return 3678;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, false): return 3680;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, true): return 3682;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, false): return 3684;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, true): return 3686;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, false): return 3688;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, true): return 3690;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, false): return 3692;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, true): return 3694;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, false): return 3696;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, true): return 3698;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, false): return 3700;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, true): return 3702;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, false): return 3704;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, true): return 3706;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, false): return 3708;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, true): return 3710;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, false): return 3712;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, true): return 3714;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, false): return 3716;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, true): return 3718;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, false): return 3720;
- case SpruceWood::SpruceWood(SpruceWood::Axis::X): return 111;
- case SpruceWood::SpruceWood(SpruceWood::Axis::Y): return 112;
- case SpruceWood::SpruceWood(SpruceWood::Axis::Z): return 113;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZM): return 1028;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XP): return 1029;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZP): return 1030;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XM): return 1031;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YP): return 1032;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YM): return 1033;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZM): return 1034;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XP): return 1035;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZP): return 1036;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XM): return 1037;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YP): return 1038;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YM): return 1039;
- case Stone::Stone(): return 1;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Top): return 7324;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Bottom): return 7326;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double): return 7328;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4413;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4415;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4417;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4419;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4421;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4423;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4425;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4427;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4429;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4431;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4433;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4435;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4437;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4439;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4441;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4443;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4445;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4447;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4449;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4451;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4453;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4455;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4457;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4459;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4461;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4463;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4465;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4467;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4469;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4471;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4473;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4475;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4477;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4479;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4481;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4483;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4485;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4487;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4489;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4491;
- case StoneBricks::StoneBricks(): return 3983;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3391;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3392;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3393;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3394;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3395;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3396;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3397;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3398;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3399;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3400;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3401;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3402;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3403;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3404;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3405;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3406;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3407;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3408;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3409;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3410;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3411;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3412;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3413;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3414;
- case StonePressurePlate::StonePressurePlate(true): return 3301;
- case StonePressurePlate::StonePressurePlate(false): return 3302;
- case StoneSlab::StoneSlab(StoneSlab::Type::Top): return 7294;
- case StoneSlab::StoneSlab(StoneSlab::Type::Bottom): return 7296;
- case StoneSlab::StoneSlab(StoneSlab::Type::Double): return 7298;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::X): return 99;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Y): return 100;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Z): return 101;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::X): return 138;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Y): return 139;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Z): return 140;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::X): return 93;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Y): return 94;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Z): return 95;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::X): return 132;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Y): return 133;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Z): return 134;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::X): return 102;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Y): return 103;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Z): return 104;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::X): return 141;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Y): return 142;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Z): return 143;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::X): return 96;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Y): return 97;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Z): return 98;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::X): return 135;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Y): return 136;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Z): return 137;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::X): return 105;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Y): return 106;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Z): return 107;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::X): return 126;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Y): return 127;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Z): return 128;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::X): return 90;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Y): return 91;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Z): return 92;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::X): return 129;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Y): return 130;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Z): return 131;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Save): return 8578;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Load): return 8579;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Corner): return 8580;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Data): return 8581;
- case StructureVoid::StructureVoid(): return 8198;
- case SugarCane::SugarCane(0): return 3442;
- case SugarCane::SugarCane(1): return 3443;
- case SugarCane::SugarCane(2): return 3444;
- case SugarCane::SugarCane(3): return 3445;
- case SugarCane::SugarCane(4): return 3446;
- case SugarCane::SugarCane(5): return 3447;
- case SugarCane::SugarCane(6): return 3448;
- case SugarCane::SugarCane(7): return 3449;
- case SugarCane::SugarCane(8): return 3450;
- case SugarCane::SugarCane(9): return 3451;
- case SugarCane::SugarCane(10): return 3452;
- case SugarCane::SugarCane(11): return 3453;
- case SugarCane::SugarCane(12): return 3454;
- case SugarCane::SugarCane(13): return 3455;
- case SugarCane::SugarCane(14): return 3456;
- case SugarCane::SugarCane(15): return 3457;
- case Sunflower::Sunflower(Sunflower::Half::Upper): return 6842;
- case Sunflower::Sunflower(Sunflower::Half::Lower): return 6843;
- case TNT::TNT(true): return 1126;
- case TNT::TNT(false): return 1126;
- case TallGrass::TallGrass(TallGrass::Half::Upper): return 6850;
- case TallGrass::TallGrass(TallGrass::Half::Lower): return 6851;
- case TallSeagrass::TallSeagrass(TallSeagrass::Half::Upper): return 1045;
- case TallSeagrass::TallSeagrass(TallSeagrass::Half::Lower): return 1046;
- case Terracotta::Terracotta(): return 6839;
- case Torch::Torch(): return 1130;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Single): return 5580;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Left): return 5582;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Right): return 5584;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Single): return 5586;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Left): return 5588;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Right): return 5590;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Single): return 5592;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Left): return 5594;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Right): return 5596;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Single): return 5598;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Left): return 5600;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Right): return 5602;
- case Tripwire::Tripwire(true, true, true, true, true, true, true): return 4755;
- case Tripwire::Tripwire(true, true, true, true, true, true, false): return 4756;
- case Tripwire::Tripwire(true, true, true, true, true, false, true): return 4757;
- case Tripwire::Tripwire(true, true, true, true, true, false, false): return 4758;
- case Tripwire::Tripwire(true, true, true, true, false, true, true): return 4759;
- case Tripwire::Tripwire(true, true, true, true, false, true, false): return 4760;
- case Tripwire::Tripwire(true, true, true, true, false, false, true): return 4761;
- case Tripwire::Tripwire(true, true, true, true, false, false, false): return 4762;
- case Tripwire::Tripwire(true, true, true, false, true, true, true): return 4763;
- case Tripwire::Tripwire(true, true, true, false, true, true, false): return 4764;
- case Tripwire::Tripwire(true, true, true, false, true, false, true): return 4765;
- case Tripwire::Tripwire(true, true, true, false, true, false, false): return 4766;
- case Tripwire::Tripwire(true, true, true, false, false, true, true): return 4767;
- case Tripwire::Tripwire(true, true, true, false, false, true, false): return 4768;
- case Tripwire::Tripwire(true, true, true, false, false, false, true): return 4769;
- case Tripwire::Tripwire(true, true, true, false, false, false, false): return 4770;
- case Tripwire::Tripwire(true, true, false, true, true, true, true): return 4771;
- case Tripwire::Tripwire(true, true, false, true, true, true, false): return 4772;
- case Tripwire::Tripwire(true, true, false, true, true, false, true): return 4773;
- case Tripwire::Tripwire(true, true, false, true, true, false, false): return 4774;
- case Tripwire::Tripwire(true, true, false, true, false, true, true): return 4775;
- case Tripwire::Tripwire(true, true, false, true, false, true, false): return 4776;
- case Tripwire::Tripwire(true, true, false, true, false, false, true): return 4777;
- case Tripwire::Tripwire(true, true, false, true, false, false, false): return 4778;
- case Tripwire::Tripwire(true, true, false, false, true, true, true): return 4779;
- case Tripwire::Tripwire(true, true, false, false, true, true, false): return 4780;
- case Tripwire::Tripwire(true, true, false, false, true, false, true): return 4781;
- case Tripwire::Tripwire(true, true, false, false, true, false, false): return 4782;
- case Tripwire::Tripwire(true, true, false, false, false, true, true): return 4783;
- case Tripwire::Tripwire(true, true, false, false, false, true, false): return 4784;
- case Tripwire::Tripwire(true, true, false, false, false, false, true): return 4785;
- case Tripwire::Tripwire(true, true, false, false, false, false, false): return 4786;
- case Tripwire::Tripwire(true, false, true, true, true, true, true): return 4787;
- case Tripwire::Tripwire(true, false, true, true, true, true, false): return 4788;
- case Tripwire::Tripwire(true, false, true, true, true, false, true): return 4789;
- case Tripwire::Tripwire(true, false, true, true, true, false, false): return 4790;
- case Tripwire::Tripwire(true, false, true, true, false, true, true): return 4791;
- case Tripwire::Tripwire(true, false, true, true, false, true, false): return 4792;
- case Tripwire::Tripwire(true, false, true, true, false, false, true): return 4793;
- case Tripwire::Tripwire(true, false, true, true, false, false, false): return 4794;
- case Tripwire::Tripwire(true, false, true, false, true, true, true): return 4795;
- case Tripwire::Tripwire(true, false, true, false, true, true, false): return 4796;
- case Tripwire::Tripwire(true, false, true, false, true, false, true): return 4797;
- case Tripwire::Tripwire(true, false, true, false, true, false, false): return 4798;
- case Tripwire::Tripwire(true, false, true, false, false, true, true): return 4799;
- case Tripwire::Tripwire(true, false, true, false, false, true, false): return 4800;
- case Tripwire::Tripwire(true, false, true, false, false, false, true): return 4801;
- case Tripwire::Tripwire(true, false, true, false, false, false, false): return 4802;
- case Tripwire::Tripwire(true, false, false, true, true, true, true): return 4803;
- case Tripwire::Tripwire(true, false, false, true, true, true, false): return 4804;
- case Tripwire::Tripwire(true, false, false, true, true, false, true): return 4805;
- case Tripwire::Tripwire(true, false, false, true, true, false, false): return 4806;
- case Tripwire::Tripwire(true, false, false, true, false, true, true): return 4807;
- case Tripwire::Tripwire(true, false, false, true, false, true, false): return 4808;
- case Tripwire::Tripwire(true, false, false, true, false, false, true): return 4809;
- case Tripwire::Tripwire(true, false, false, true, false, false, false): return 4810;
- case Tripwire::Tripwire(true, false, false, false, true, true, true): return 4811;
- case Tripwire::Tripwire(true, false, false, false, true, true, false): return 4812;
- case Tripwire::Tripwire(true, false, false, false, true, false, true): return 4813;
- case Tripwire::Tripwire(true, false, false, false, true, false, false): return 4814;
- case Tripwire::Tripwire(true, false, false, false, false, true, true): return 4815;
- case Tripwire::Tripwire(true, false, false, false, false, true, false): return 4816;
- case Tripwire::Tripwire(true, false, false, false, false, false, true): return 4817;
- case Tripwire::Tripwire(true, false, false, false, false, false, false): return 4818;
- case Tripwire::Tripwire(false, true, true, true, true, true, true): return 4819;
- case Tripwire::Tripwire(false, true, true, true, true, true, false): return 4820;
- case Tripwire::Tripwire(false, true, true, true, true, false, true): return 4821;
- case Tripwire::Tripwire(false, true, true, true, true, false, false): return 4822;
- case Tripwire::Tripwire(false, true, true, true, false, true, true): return 4823;
- case Tripwire::Tripwire(false, true, true, true, false, true, false): return 4824;
- case Tripwire::Tripwire(false, true, true, true, false, false, true): return 4825;
- case Tripwire::Tripwire(false, true, true, true, false, false, false): return 4826;
- case Tripwire::Tripwire(false, true, true, false, true, true, true): return 4827;
- case Tripwire::Tripwire(false, true, true, false, true, true, false): return 4828;
- case Tripwire::Tripwire(false, true, true, false, true, false, true): return 4829;
- case Tripwire::Tripwire(false, true, true, false, true, false, false): return 4830;
- case Tripwire::Tripwire(false, true, true, false, false, true, true): return 4831;
- case Tripwire::Tripwire(false, true, true, false, false, true, false): return 4832;
- case Tripwire::Tripwire(false, true, true, false, false, false, true): return 4833;
- case Tripwire::Tripwire(false, true, true, false, false, false, false): return 4834;
- case Tripwire::Tripwire(false, true, false, true, true, true, true): return 4835;
- case Tripwire::Tripwire(false, true, false, true, true, true, false): return 4836;
- case Tripwire::Tripwire(false, true, false, true, true, false, true): return 4837;
- case Tripwire::Tripwire(false, true, false, true, true, false, false): return 4838;
- case Tripwire::Tripwire(false, true, false, true, false, true, true): return 4839;
- case Tripwire::Tripwire(false, true, false, true, false, true, false): return 4840;
- case Tripwire::Tripwire(false, true, false, true, false, false, true): return 4841;
- case Tripwire::Tripwire(false, true, false, true, false, false, false): return 4842;
- case Tripwire::Tripwire(false, true, false, false, true, true, true): return 4843;
- case Tripwire::Tripwire(false, true, false, false, true, true, false): return 4844;
- case Tripwire::Tripwire(false, true, false, false, true, false, true): return 4845;
- case Tripwire::Tripwire(false, true, false, false, true, false, false): return 4846;
- case Tripwire::Tripwire(false, true, false, false, false, true, true): return 4847;
- case Tripwire::Tripwire(false, true, false, false, false, true, false): return 4848;
- case Tripwire::Tripwire(false, true, false, false, false, false, true): return 4849;
- case Tripwire::Tripwire(false, true, false, false, false, false, false): return 4850;
- case Tripwire::Tripwire(false, false, true, true, true, true, true): return 4851;
- case Tripwire::Tripwire(false, false, true, true, true, true, false): return 4852;
- case Tripwire::Tripwire(false, false, true, true, true, false, true): return 4853;
- case Tripwire::Tripwire(false, false, true, true, true, false, false): return 4854;
- case Tripwire::Tripwire(false, false, true, true, false, true, true): return 4855;
- case Tripwire::Tripwire(false, false, true, true, false, true, false): return 4856;
- case Tripwire::Tripwire(false, false, true, true, false, false, true): return 4857;
- case Tripwire::Tripwire(false, false, true, true, false, false, false): return 4858;
- case Tripwire::Tripwire(false, false, true, false, true, true, true): return 4859;
- case Tripwire::Tripwire(false, false, true, false, true, true, false): return 4860;
- case Tripwire::Tripwire(false, false, true, false, true, false, true): return 4861;
- case Tripwire::Tripwire(false, false, true, false, true, false, false): return 4862;
- case Tripwire::Tripwire(false, false, true, false, false, true, true): return 4863;
- case Tripwire::Tripwire(false, false, true, false, false, true, false): return 4864;
- case Tripwire::Tripwire(false, false, true, false, false, false, true): return 4865;
- case Tripwire::Tripwire(false, false, true, false, false, false, false): return 4866;
- case Tripwire::Tripwire(false, false, false, true, true, true, true): return 4867;
- case Tripwire::Tripwire(false, false, false, true, true, true, false): return 4868;
- case Tripwire::Tripwire(false, false, false, true, true, false, true): return 4869;
- case Tripwire::Tripwire(false, false, false, true, true, false, false): return 4870;
- case Tripwire::Tripwire(false, false, false, true, false, true, true): return 4871;
- case Tripwire::Tripwire(false, false, false, true, false, true, false): return 4872;
- case Tripwire::Tripwire(false, false, false, true, false, false, true): return 4873;
- case Tripwire::Tripwire(false, false, false, true, false, false, false): return 4874;
- case Tripwire::Tripwire(false, false, false, false, true, true, true): return 4875;
- case Tripwire::Tripwire(false, false, false, false, true, true, false): return 4876;
- case Tripwire::Tripwire(false, false, false, false, true, false, true): return 4877;
- case Tripwire::Tripwire(false, false, false, false, true, false, false): return 4878;
- case Tripwire::Tripwire(false, false, false, false, false, true, true): return 4879;
- case Tripwire::Tripwire(false, false, false, false, false, true, false): return 4880;
- case Tripwire::Tripwire(false, false, false, false, false, false, true): return 4881;
- case Tripwire::Tripwire(false, false, false, false, false, false, false): return 4882;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, true): return 4739;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, false): return 4740;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, true): return 4741;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, false): return 4742;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, true): return 4743;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, false): return 4744;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, true): return 4745;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, false): return 4746;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, true): return 4747;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, false): return 4748;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, true): return 4749;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, false): return 4750;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, true): return 4751;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, false): return 4752;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, true): return 4753;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, false): return 4754;
- case TubeCoral::TubeCoral(): return 8459;
- case TubeCoralBlock::TubeCoralBlock(): return 8454;
- case TubeCoralFan::TubeCoralFan(): return 8555;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8505;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8507;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8509;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8511;
- case TurtleEgg::TurtleEgg(1, 0): return 8437;
- case TurtleEgg::TurtleEgg(1, 1): return 8438;
- case TurtleEgg::TurtleEgg(1, 2): return 8439;
- case TurtleEgg::TurtleEgg(2, 0): return 8440;
- case TurtleEgg::TurtleEgg(2, 1): return 8441;
- case TurtleEgg::TurtleEgg(2, 2): return 8442;
- case TurtleEgg::TurtleEgg(3, 0): return 8443;
- case TurtleEgg::TurtleEgg(3, 1): return 8444;
- case TurtleEgg::TurtleEgg(3, 2): return 8445;
- case TurtleEgg::TurtleEgg(4, 0): return 8446;
- case TurtleEgg::TurtleEgg(4, 1): return 8447;
- case TurtleEgg::TurtleEgg(4, 2): return 8448;
- case Vine::Vine(true, true, true, true, true): return 4268;
- case Vine::Vine(true, true, true, true, false): return 4269;
- case Vine::Vine(true, true, true, false, true): return 4270;
- case Vine::Vine(true, true, true, false, false): return 4271;
- case Vine::Vine(true, true, false, true, true): return 4272;
- case Vine::Vine(true, true, false, true, false): return 4273;
- case Vine::Vine(true, true, false, false, true): return 4274;
- case Vine::Vine(true, true, false, false, false): return 4275;
- case Vine::Vine(true, false, true, true, true): return 4276;
- case Vine::Vine(true, false, true, true, false): return 4277;
- case Vine::Vine(true, false, true, false, true): return 4278;
- case Vine::Vine(true, false, true, false, false): return 4279;
- case Vine::Vine(true, false, false, true, true): return 4280;
- case Vine::Vine(true, false, false, true, false): return 4281;
- case Vine::Vine(true, false, false, false, true): return 4282;
- case Vine::Vine(true, false, false, false, false): return 4283;
- case Vine::Vine(false, true, true, true, true): return 4284;
- case Vine::Vine(false, true, true, true, false): return 4285;
- case Vine::Vine(false, true, true, false, true): return 4286;
- case Vine::Vine(false, true, true, false, false): return 4287;
- case Vine::Vine(false, true, false, true, true): return 4288;
- case Vine::Vine(false, true, false, true, false): return 4289;
- case Vine::Vine(false, true, false, false, true): return 4290;
- case Vine::Vine(false, true, false, false, false): return 4291;
- case Vine::Vine(false, false, true, true, true): return 4292;
- case Vine::Vine(false, false, true, true, false): return 4293;
- case Vine::Vine(false, false, true, false, true): return 4294;
- case Vine::Vine(false, false, true, false, false): return 4295;
- case Vine::Vine(false, false, false, true, true): return 4296;
- case Vine::Vine(false, false, false, true, false): return 4297;
- case Vine::Vine(false, false, false, false, true): return 4298;
- case Vine::Vine(false, false, false, false, false): return 4299;
- case VoidAir::VoidAir(): return 8574;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZM): return 3270;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZP): return 3272;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XM): return 3274;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XP): return 3276;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZM): return 1131;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZP): return 1132;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XM): return 1133;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XP): return 1134;
- case Water::Water(0): return 34;
- case Water::Water(1): return 35;
- case Water::Water(2): return 36;
- case Water::Water(3): return 37;
- case Water::Water(4): return 38;
- case Water::Water(5): return 39;
- case Water::Water(6): return 40;
- case Water::Water(7): return 41;
- case Water::Water(8): return 42;
- case Water::Water(9): return 43;
- case Water::Water(10): return 44;
- case Water::Water(11): return 45;
- case Water::Water(12): return 46;
- case Water::Water(13): return 47;
- case Water::Water(14): return 48;
- case Water::Water(15): return 49;
- case WetSponge::WetSponge(): return 229;
- case Wheat::Wheat(0): return 3051;
- case Wheat::Wheat(1): return 3052;
- case Wheat::Wheat(2): return 3053;
- case Wheat::Wheat(3): return 3054;
- case Wheat::Wheat(4): return 3055;
- case Wheat::Wheat(5): return 3056;
- case Wheat::Wheat(6): return 3057;
- case Wheat::Wheat(7): return 3058;
- case WhiteBanner::WhiteBanner(0): return 6854;
- case WhiteBanner::WhiteBanner(1): return 6855;
- case WhiteBanner::WhiteBanner(2): return 6856;
- case WhiteBanner::WhiteBanner(3): return 6857;
- case WhiteBanner::WhiteBanner(4): return 6858;
- case WhiteBanner::WhiteBanner(5): return 6859;
- case WhiteBanner::WhiteBanner(6): return 6860;
- case WhiteBanner::WhiteBanner(7): return 6861;
- case WhiteBanner::WhiteBanner(8): return 6862;
- case WhiteBanner::WhiteBanner(9): return 6863;
- case WhiteBanner::WhiteBanner(10): return 6864;
- case WhiteBanner::WhiteBanner(11): return 6865;
- case WhiteBanner::WhiteBanner(12): return 6866;
- case WhiteBanner::WhiteBanner(13): return 6867;
- case WhiteBanner::WhiteBanner(14): return 6868;
- case WhiteBanner::WhiteBanner(15): return 6869;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Head): return 748;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Foot): return 749;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Head): return 750;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Foot): return 751;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Head): return 752;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Foot): return 753;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Head): return 754;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Foot): return 755;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Head): return 756;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Foot): return 757;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Head): return 758;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Foot): return 759;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Head): return 760;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Foot): return 761;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Head): return 762;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Foot): return 763;
- case WhiteCarpet::WhiteCarpet(): return 6823;
- case WhiteConcrete::WhiteConcrete(): return 8377;
- case WhiteConcretePowder::WhiteConcretePowder(): return 8393;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8313;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8314;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8315;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8316;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8217;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8218;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8219;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8220;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8221;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8222;
- case WhiteStainedGlass::WhiteStainedGlass(): return 3577;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, true): return 5822;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, false): return 5823;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, true): return 5826;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, false): return 5827;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, true): return 5830;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, false): return 5831;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, true): return 5834;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, false): return 5835;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, true): return 5838;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, false): return 5839;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, true): return 5842;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, false): return 5843;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, true): return 5846;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, false): return 5847;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, true): return 5850;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, false): return 5851;
- case WhiteTerracotta::WhiteTerracotta(): return 5804;
- case WhiteTulip::WhiteTulip(): return 1118;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7110;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7111;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XM): return 7112;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XP): return 7113;
- case WhiteWool::WhiteWool(): return 1083;
- case WitherSkeletonSkull::WitherSkeletonSkull(0): return 5471;
- case WitherSkeletonSkull::WitherSkeletonSkull(1): return 5472;
- case WitherSkeletonSkull::WitherSkeletonSkull(2): return 5473;
- case WitherSkeletonSkull::WitherSkeletonSkull(3): return 5474;
- case WitherSkeletonSkull::WitherSkeletonSkull(4): return 5475;
- case WitherSkeletonSkull::WitherSkeletonSkull(5): return 5476;
- case WitherSkeletonSkull::WitherSkeletonSkull(6): return 5477;
- case WitherSkeletonSkull::WitherSkeletonSkull(7): return 5478;
- case WitherSkeletonSkull::WitherSkeletonSkull(8): return 5479;
- case WitherSkeletonSkull::WitherSkeletonSkull(9): return 5480;
- case WitherSkeletonSkull::WitherSkeletonSkull(10): return 5481;
- case WitherSkeletonSkull::WitherSkeletonSkull(11): return 5482;
- case WitherSkeletonSkull::WitherSkeletonSkull(12): return 5483;
- case WitherSkeletonSkull::WitherSkeletonSkull(13): return 5484;
- case WitherSkeletonSkull::WitherSkeletonSkull(14): return 5485;
- case WitherSkeletonSkull::WitherSkeletonSkull(15): return 5486;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 5467;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 5468;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 5469;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 5470;
- case YellowBanner::YellowBanner(0): return 6918;
- case YellowBanner::YellowBanner(1): return 6919;
- case YellowBanner::YellowBanner(2): return 6920;
- case YellowBanner::YellowBanner(3): return 6921;
- case YellowBanner::YellowBanner(4): return 6922;
- case YellowBanner::YellowBanner(5): return 6923;
- case YellowBanner::YellowBanner(6): return 6924;
- case YellowBanner::YellowBanner(7): return 6925;
- case YellowBanner::YellowBanner(8): return 6926;
- case YellowBanner::YellowBanner(9): return 6927;
- case YellowBanner::YellowBanner(10): return 6928;
- case YellowBanner::YellowBanner(11): return 6929;
- case YellowBanner::YellowBanner(12): return 6930;
- case YellowBanner::YellowBanner(13): return 6931;
- case YellowBanner::YellowBanner(14): return 6932;
- case YellowBanner::YellowBanner(15): return 6933;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Head): return 812;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Foot): return 813;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Head): return 814;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Foot): return 815;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Head): return 816;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Foot): return 817;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Head): return 818;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Foot): return 819;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Head): return 820;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Foot): return 821;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Head): return 822;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Foot): return 823;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Head): return 824;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Foot): return 825;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Head): return 826;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Foot): return 827;
- case YellowCarpet::YellowCarpet(): return 6827;
- case YellowConcrete::YellowConcrete(): return 8381;
- case YellowConcretePowder::YellowConcretePowder(): return 8397;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8329;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8330;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8331;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8332;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8241;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8242;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8243;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8244;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8245;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8246;
- case YellowStainedGlass::YellowStainedGlass(): return 3581;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, true): return 5950;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, false): return 5951;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, true): return 5954;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, false): return 5955;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, true): return 5958;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, false): return 5959;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, true): return 5962;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, false): return 5963;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, true): return 5966;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, false): return 5967;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, true): return 5970;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, false): return 5971;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, true): return 5974;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, false): return 5975;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, true): return 5978;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, false): return 5979;
- case YellowTerracotta::YellowTerracotta(): return 5808;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7126;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7127;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XM): return 7128;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XP): return 7129;
- case YellowWool::YellowWool(): return 1087;
- case ZombieHead::ZombieHead(0): return 5491;
- case ZombieHead::ZombieHead(1): return 5492;
- case ZombieHead::ZombieHead(2): return 5493;
- case ZombieHead::ZombieHead(3): return 5494;
- case ZombieHead::ZombieHead(4): return 5495;
- case ZombieHead::ZombieHead(5): return 5496;
- case ZombieHead::ZombieHead(6): return 5497;
- case ZombieHead::ZombieHead(7): return 5498;
- case ZombieHead::ZombieHead(8): return 5499;
- case ZombieHead::ZombieHead(9): return 5500;
- case ZombieHead::ZombieHead(10): return 5501;
- case ZombieHead::ZombieHead(11): return 5502;
- case ZombieHead::ZombieHead(12): return 5503;
- case ZombieHead::ZombieHead(13): return 5504;
- case ZombieHead::ZombieHead(14): return 5505;
- case ZombieHead::ZombieHead(15): return 5506;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZM): return 5487;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZP): return 5488;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XM): return 5489;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XP): return 5490;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5399;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5400;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5401;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5402;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5403;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5404;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5405;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5406;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5407;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5408;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5409;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5410;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5411;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5412;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5413;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5414;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5415;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5416;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5417;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5418;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5419;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5420;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5421;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5422;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 7869;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 7870;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 7871;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 7872;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 7873;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 7874;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 7875;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 7876;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 7877;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 7878;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 7879;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 7880;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 7881;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 7882;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 7883;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 7884;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 7885;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 7886;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 7887;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 7888;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 7889;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 7890;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 7891;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 7892;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 7893;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 7894;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 7895;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 7896;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 7897;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 7898;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 7899;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 7900;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 7901;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 7902;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 7903;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 7904;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 7905;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 7906;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 7907;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 7908;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 7909;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 7910;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 7911;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 7912;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 7913;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 7914;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 7915;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 7916;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 7917;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 7918;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 7919;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 7920;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 7921;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 7922;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 7923;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 7924;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 7925;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 7926;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 7927;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 7928;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 7929;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 7930;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 7931;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 7932;
+ case AcaciaFence::AcaciaFence(true, true, true, true).ID: return 7615;
+ case AcaciaFence::AcaciaFence(true, true, true, false).ID: return 7616;
+ case AcaciaFence::AcaciaFence(true, true, false, true).ID: return 7619;
+ case AcaciaFence::AcaciaFence(true, true, false, false).ID: return 7620;
+ case AcaciaFence::AcaciaFence(true, false, true, true).ID: return 7623;
+ case AcaciaFence::AcaciaFence(true, false, true, false).ID: return 7624;
+ case AcaciaFence::AcaciaFence(true, false, false, true).ID: return 7627;
+ case AcaciaFence::AcaciaFence(true, false, false, false).ID: return 7628;
+ case AcaciaFence::AcaciaFence(false, true, true, true).ID: return 7631;
+ case AcaciaFence::AcaciaFence(false, true, true, false).ID: return 7632;
+ case AcaciaFence::AcaciaFence(false, true, false, true).ID: return 7635;
+ case AcaciaFence::AcaciaFence(false, true, false, false).ID: return 7636;
+ case AcaciaFence::AcaciaFence(false, false, true, true).ID: return 7639;
+ case AcaciaFence::AcaciaFence(false, false, true, false).ID: return 7640;
+ case AcaciaFence::AcaciaFence(false, false, false, true).ID: return 7643;
+ case AcaciaFence::AcaciaFence(false, false, false, false).ID: return 7644;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7453;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7454;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7455;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7456;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7457;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7458;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7459;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7460;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7461;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7462;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7463;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7464;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7465;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7466;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7467;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7468;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7469;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7470;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7471;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7472;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7473;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7474;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7475;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7476;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7477;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7478;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7479;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7480;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7481;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7482;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7483;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7484;
+ case AcaciaLeaves::AcaciaLeaves(1, true).ID: return 200;
+ case AcaciaLeaves::AcaciaLeaves(1, false).ID: return 201;
+ case AcaciaLeaves::AcaciaLeaves(2, true).ID: return 202;
+ case AcaciaLeaves::AcaciaLeaves(2, false).ID: return 203;
+ case AcaciaLeaves::AcaciaLeaves(3, true).ID: return 204;
+ case AcaciaLeaves::AcaciaLeaves(3, false).ID: return 205;
+ case AcaciaLeaves::AcaciaLeaves(4, true).ID: return 206;
+ case AcaciaLeaves::AcaciaLeaves(4, false).ID: return 207;
+ case AcaciaLeaves::AcaciaLeaves(5, true).ID: return 208;
+ case AcaciaLeaves::AcaciaLeaves(5, false).ID: return 209;
+ case AcaciaLeaves::AcaciaLeaves(6, true).ID: return 210;
+ case AcaciaLeaves::AcaciaLeaves(6, false).ID: return 211;
+ case AcaciaLeaves::AcaciaLeaves(7, true).ID: return 212;
+ case AcaciaLeaves::AcaciaLeaves(7, false).ID: return 213;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::X).ID: return 84;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Y).ID: return 85;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Z).ID: return 86;
+ case AcaciaPlanks::AcaciaPlanks().ID: return 19;
+ case AcaciaPressurePlate::AcaciaPressurePlate(true).ID: return 3375;
+ case AcaciaPressurePlate::AcaciaPressurePlate(false).ID: return 3376;
+ case AcaciaSapling::AcaciaSapling(0).ID: return 29;
+ case AcaciaSapling::AcaciaSapling(1).ID: return 30;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Top).ID: return 7282;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Bottom).ID: return 7284;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Double).ID: return 7286;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6333;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6335;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6337;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6339;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6341;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6343;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6345;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6347;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6349;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6351;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6353;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6355;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6357;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6359;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6361;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6363;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6365;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6367;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6369;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6371;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6373;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6375;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6377;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6379;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6381;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6383;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6385;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6387;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6389;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6391;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6393;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6395;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6397;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6399;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6401;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6403;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6405;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6407;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6409;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6411;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, true).ID: return 3850;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, false).ID: return 3852;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, true).ID: return 3854;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, false).ID: return 3856;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 3858;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 3860;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 3862;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 3864;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, true).ID: return 3866;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, false).ID: return 3868;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, true).ID: return 3870;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, false).ID: return 3872;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 3874;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 3876;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 3878;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 3880;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, true).ID: return 3882;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, false).ID: return 3884;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, true).ID: return 3886;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, false).ID: return 3888;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 3890;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 3892;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 3894;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 3896;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, true).ID: return 3898;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, false).ID: return 3900;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, true).ID: return 3902;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, false).ID: return 3904;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 3906;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 3908;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 3910;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 3912;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::X).ID: return 120;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Y).ID: return 121;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Z).ID: return 122;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::NorthSouth).ID: return 5780;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::EastWest).ID: return 5781;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingEast).ID: return 5782;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingWest).ID: return 5783;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingNorth).ID: return 5784;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingSouth).ID: return 5785;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::NorthSouth).ID: return 5786;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::EastWest).ID: return 5787;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingEast).ID: return 5788;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingWest).ID: return 5789;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingNorth).ID: return 5790;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingSouth).ID: return 5791;
+ case Air::Air().ID: return -0;
+ case Allium::Allium().ID: return 1114;
+ case Andesite::Andesite().ID: return 6;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZM).ID: return 5567;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZP).ID: return 5568;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_XM).ID: return 5569;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_XP).ID: return 5570;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZM).ID: return 4248;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZP).ID: return 4249;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XM).ID: return 4250;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XP).ID: return 4251;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZM).ID: return 4244;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZP).ID: return 4245;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XM).ID: return 4246;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XP).ID: return 4247;
+ case AzureBluet::AzureBluet().ID: return 1115;
+ case Barrier::Barrier().ID: return 6493;
+ case Beacon::Beacon().ID: return 5136;
+ case Bedrock::Bedrock().ID: return 33;
+ case Beetroots::Beetroots(0).ID: return 8158;
+ case Beetroots::Beetroots(1).ID: return 8159;
+ case Beetroots::Beetroots(2).ID: return 8160;
+ case Beetroots::Beetroots(3).ID: return 8161;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5351;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5352;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5353;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5354;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5355;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5356;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5357;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5358;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5359;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5360;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5361;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5362;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5363;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5364;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5365;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5366;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5367;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5368;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5369;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5370;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5371;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5372;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5373;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5374;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 7741;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 7742;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 7743;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 7744;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 7745;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 7746;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 7747;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 7748;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 7749;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 7750;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 7751;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 7752;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 7753;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 7754;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 7755;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 7756;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 7757;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 7758;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 7759;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 7760;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 7761;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 7762;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 7763;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 7764;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 7765;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 7766;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 7767;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 7768;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 7769;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 7770;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 7771;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 7772;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 7773;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 7774;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 7775;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 7776;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 7777;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 7778;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 7779;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 7780;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 7781;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 7782;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 7783;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 7784;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 7785;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 7786;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 7787;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 7788;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 7789;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 7790;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 7791;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 7792;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 7793;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 7794;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 7795;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 7796;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 7797;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 7798;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 7799;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 7800;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 7801;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 7802;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 7803;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 7804;
+ case BirchFence::BirchFence(true, true, true, true).ID: return 7551;
+ case BirchFence::BirchFence(true, true, true, false).ID: return 7552;
+ case BirchFence::BirchFence(true, true, false, true).ID: return 7555;
+ case BirchFence::BirchFence(true, true, false, false).ID: return 7556;
+ case BirchFence::BirchFence(true, false, true, true).ID: return 7559;
+ case BirchFence::BirchFence(true, false, true, false).ID: return 7560;
+ case BirchFence::BirchFence(true, false, false, true).ID: return 7563;
+ case BirchFence::BirchFence(true, false, false, false).ID: return 7564;
+ case BirchFence::BirchFence(false, true, true, true).ID: return 7567;
+ case BirchFence::BirchFence(false, true, true, false).ID: return 7568;
+ case BirchFence::BirchFence(false, true, false, true).ID: return 7571;
+ case BirchFence::BirchFence(false, true, false, false).ID: return 7572;
+ case BirchFence::BirchFence(false, false, true, true).ID: return 7575;
+ case BirchFence::BirchFence(false, false, true, false).ID: return 7576;
+ case BirchFence::BirchFence(false, false, false, true).ID: return 7579;
+ case BirchFence::BirchFence(false, false, false, false).ID: return 7580;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7389;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7390;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7391;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7392;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7393;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7394;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7395;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7396;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7397;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7398;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7399;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7400;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7401;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7402;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7403;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7404;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7405;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7406;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7407;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7408;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7409;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7410;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7411;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7412;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7413;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7414;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7415;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7416;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7417;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7418;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7419;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7420;
+ case BirchLeaves::BirchLeaves(1, true).ID: return 172;
+ case BirchLeaves::BirchLeaves(1, false).ID: return 173;
+ case BirchLeaves::BirchLeaves(2, true).ID: return 174;
+ case BirchLeaves::BirchLeaves(2, false).ID: return 175;
+ case BirchLeaves::BirchLeaves(3, true).ID: return 176;
+ case BirchLeaves::BirchLeaves(3, false).ID: return 177;
+ case BirchLeaves::BirchLeaves(4, true).ID: return 178;
+ case BirchLeaves::BirchLeaves(4, false).ID: return 179;
+ case BirchLeaves::BirchLeaves(5, true).ID: return 180;
+ case BirchLeaves::BirchLeaves(5, false).ID: return 181;
+ case BirchLeaves::BirchLeaves(6, true).ID: return 182;
+ case BirchLeaves::BirchLeaves(6, false).ID: return 183;
+ case BirchLeaves::BirchLeaves(7, true).ID: return 184;
+ case BirchLeaves::BirchLeaves(7, false).ID: return 185;
+ case BirchLog::BirchLog(BirchLog::Axis::X).ID: return 78;
+ case BirchLog::BirchLog(BirchLog::Axis::Y).ID: return 79;
+ case BirchLog::BirchLog(BirchLog::Axis::Z).ID: return 80;
+ case BirchPlanks::BirchPlanks().ID: return 17;
+ case BirchPressurePlate::BirchPressurePlate(true).ID: return 3371;
+ case BirchPressurePlate::BirchPressurePlate(false).ID: return 3372;
+ case BirchSapling::BirchSapling(0).ID: return 25;
+ case BirchSapling::BirchSapling(1).ID: return 26;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Top).ID: return 7270;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Bottom).ID: return 7272;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Double).ID: return 7274;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 4965;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 4967;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 4969;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 4971;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 4973;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 4975;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 4977;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 4979;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 4981;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 4983;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 4985;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 4987;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 4989;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 4991;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 4993;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 4995;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 4997;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 4999;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5001;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5003;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5005;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5007;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5009;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5011;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5013;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5015;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5017;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5019;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5021;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5023;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5025;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5027;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5029;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5031;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5033;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5035;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5037;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5039;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5041;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5043;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, true).ID: return 3722;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, false).ID: return 3724;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, true).ID: return 3726;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, false).ID: return 3728;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, true).ID: return 3730;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, false).ID: return 3732;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, true).ID: return 3734;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, false).ID: return 3736;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, true).ID: return 3738;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, false).ID: return 3740;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, true).ID: return 3742;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, false).ID: return 3744;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, true).ID: return 3746;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, false).ID: return 3748;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, true).ID: return 3750;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, false).ID: return 3752;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, true).ID: return 3754;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, false).ID: return 3756;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, true).ID: return 3758;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, false).ID: return 3760;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, true).ID: return 3762;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, false).ID: return 3764;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, true).ID: return 3766;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, false).ID: return 3768;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, true).ID: return 3770;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, false).ID: return 3772;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, true).ID: return 3774;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, false).ID: return 3776;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, true).ID: return 3778;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, false).ID: return 3780;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, true).ID: return 3782;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, false).ID: return 3784;
+ case BirchWood::BirchWood(BirchWood::Axis::X).ID: return 114;
+ case BirchWood::BirchWood(BirchWood::Axis::Y).ID: return 115;
+ case BirchWood::BirchWood(BirchWood::Axis::Z).ID: return 116;
+ case BlackBanner::BlackBanner(0).ID: return 7094;
+ case BlackBanner::BlackBanner(1).ID: return 7095;
+ case BlackBanner::BlackBanner(2).ID: return 7096;
+ case BlackBanner::BlackBanner(3).ID: return 7097;
+ case BlackBanner::BlackBanner(4).ID: return 7098;
+ case BlackBanner::BlackBanner(5).ID: return 7099;
+ case BlackBanner::BlackBanner(6).ID: return 7100;
+ case BlackBanner::BlackBanner(7).ID: return 7101;
+ case BlackBanner::BlackBanner(8).ID: return 7102;
+ case BlackBanner::BlackBanner(9).ID: return 7103;
+ case BlackBanner::BlackBanner(10).ID: return 7104;
+ case BlackBanner::BlackBanner(11).ID: return 7105;
+ case BlackBanner::BlackBanner(12).ID: return 7106;
+ case BlackBanner::BlackBanner(13).ID: return 7107;
+ case BlackBanner::BlackBanner(14).ID: return 7108;
+ case BlackBanner::BlackBanner(15).ID: return 7109;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Head).ID: return 988;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Foot).ID: return 989;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Head).ID: return 990;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Foot).ID: return 991;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Head).ID: return 992;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Foot).ID: return 993;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Head).ID: return 994;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Foot).ID: return 995;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Head).ID: return 996;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Foot).ID: return 997;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Head).ID: return 998;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Foot).ID: return 999;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Head).ID: return 1000;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Foot).ID: return 1001;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Head).ID: return 1002;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Foot).ID: return 1003;
+ case BlackCarpet::BlackCarpet().ID: return 6838;
+ case BlackConcrete::BlackConcrete().ID: return 8392;
+ case BlackConcretePowder::BlackConcretePowder().ID: return 8408;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8373;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8374;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8375;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8376;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8307;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8308;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8309;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8310;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8311;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8312;
+ case BlackStainedGlass::BlackStainedGlass().ID: return 3592;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, true).ID: return 6302;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, false).ID: return 6303;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, true).ID: return 6306;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, false).ID: return 6307;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, true).ID: return 6310;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, false).ID: return 6311;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, true).ID: return 6314;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, false).ID: return 6315;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, true).ID: return 6318;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, false).ID: return 6319;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, true).ID: return 6322;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, false).ID: return 6323;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, true).ID: return 6326;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, false).ID: return 6327;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, true).ID: return 6330;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, false).ID: return 6331;
+ case BlackTerracotta::BlackTerracotta().ID: return 5819;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7170;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7171;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7172;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7173;
+ case BlackWool::BlackWool().ID: return 1098;
+ case BlueBanner::BlueBanner(0).ID: return 7030;
+ case BlueBanner::BlueBanner(1).ID: return 7031;
+ case BlueBanner::BlueBanner(2).ID: return 7032;
+ case BlueBanner::BlueBanner(3).ID: return 7033;
+ case BlueBanner::BlueBanner(4).ID: return 7034;
+ case BlueBanner::BlueBanner(5).ID: return 7035;
+ case BlueBanner::BlueBanner(6).ID: return 7036;
+ case BlueBanner::BlueBanner(7).ID: return 7037;
+ case BlueBanner::BlueBanner(8).ID: return 7038;
+ case BlueBanner::BlueBanner(9).ID: return 7039;
+ case BlueBanner::BlueBanner(10).ID: return 7040;
+ case BlueBanner::BlueBanner(11).ID: return 7041;
+ case BlueBanner::BlueBanner(12).ID: return 7042;
+ case BlueBanner::BlueBanner(13).ID: return 7043;
+ case BlueBanner::BlueBanner(14).ID: return 7044;
+ case BlueBanner::BlueBanner(15).ID: return 7045;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Head).ID: return 924;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Foot).ID: return 925;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Head).ID: return 926;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Foot).ID: return 927;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Head).ID: return 928;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Foot).ID: return 929;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Head).ID: return 930;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Foot).ID: return 931;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Head).ID: return 932;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Foot).ID: return 933;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Head).ID: return 934;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Foot).ID: return 935;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Head).ID: return 936;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Foot).ID: return 937;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Head).ID: return 938;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Foot).ID: return 939;
+ case BlueCarpet::BlueCarpet().ID: return 6834;
+ case BlueConcrete::BlueConcrete().ID: return 8388;
+ case BlueConcretePowder::BlueConcretePowder().ID: return 8404;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8357;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8358;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8359;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8360;
+ case BlueIce::BlueIce().ID: return 8572;
+ case BlueOrchid::BlueOrchid().ID: return 1113;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8283;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8284;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8285;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8286;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8287;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8288;
+ case BlueStainedGlass::BlueStainedGlass().ID: return 3588;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, true).ID: return 6174;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, false).ID: return 6175;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, true).ID: return 6178;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, false).ID: return 6179;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, true).ID: return 6182;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, false).ID: return 6183;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, true).ID: return 6186;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, false).ID: return 6187;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, true).ID: return 6190;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, false).ID: return 6191;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, true).ID: return 6194;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, false).ID: return 6195;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, true).ID: return 6198;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, false).ID: return 6199;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, true).ID: return 6202;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, false).ID: return 6203;
+ case BlueTerracotta::BlueTerracotta().ID: return 5815;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7154;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7155;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7156;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7157;
+ case BlueWool::BlueWool().ID: return 1094;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::X).ID: return 8195;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::Y).ID: return 8196;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::Z).ID: return 8197;
+ case Bookshelf::Bookshelf().ID: return 1127;
+ case BrainCoral::BrainCoral().ID: return 8460;
+ case BrainCoralBlock::BrainCoralBlock().ID: return 8455;
+ case BrainCoralFan::BrainCoralFan().ID: return 8557;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8513;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8515;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8517;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8519;
+ case BrewingStand::BrewingStand(true, true, true).ID: return 4613;
+ case BrewingStand::BrewingStand(true, true, false).ID: return 4614;
+ case BrewingStand::BrewingStand(true, false, true).ID: return 4615;
+ case BrewingStand::BrewingStand(true, false, false).ID: return 4616;
+ case BrewingStand::BrewingStand(false, true, true).ID: return 4617;
+ case BrewingStand::BrewingStand(false, true, false).ID: return 4618;
+ case BrewingStand::BrewingStand(false, false, true).ID: return 4619;
+ case BrewingStand::BrewingStand(false, false, false).ID: return 4620;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Top).ID: return 7318;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Bottom).ID: return 7320;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Double).ID: return 7322;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4333;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4335;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4337;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4339;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4341;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4343;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4345;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4347;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4349;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4351;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4353;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4355;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4357;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4359;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4361;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4363;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4365;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4367;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4369;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4371;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4373;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4375;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4377;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4379;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4381;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4383;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4385;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4387;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4389;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4391;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4393;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4395;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4397;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4399;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4401;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4403;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4405;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4407;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4409;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4411;
+ case Bricks::Bricks().ID: return 1125;
+ case BrownBanner::BrownBanner(0).ID: return 7046;
+ case BrownBanner::BrownBanner(1).ID: return 7047;
+ case BrownBanner::BrownBanner(2).ID: return 7048;
+ case BrownBanner::BrownBanner(3).ID: return 7049;
+ case BrownBanner::BrownBanner(4).ID: return 7050;
+ case BrownBanner::BrownBanner(5).ID: return 7051;
+ case BrownBanner::BrownBanner(6).ID: return 7052;
+ case BrownBanner::BrownBanner(7).ID: return 7053;
+ case BrownBanner::BrownBanner(8).ID: return 7054;
+ case BrownBanner::BrownBanner(9).ID: return 7055;
+ case BrownBanner::BrownBanner(10).ID: return 7056;
+ case BrownBanner::BrownBanner(11).ID: return 7057;
+ case BrownBanner::BrownBanner(12).ID: return 7058;
+ case BrownBanner::BrownBanner(13).ID: return 7059;
+ case BrownBanner::BrownBanner(14).ID: return 7060;
+ case BrownBanner::BrownBanner(15).ID: return 7061;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Head).ID: return 940;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Foot).ID: return 941;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Head).ID: return 942;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Foot).ID: return 943;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Head).ID: return 944;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Foot).ID: return 945;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Head).ID: return 946;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Foot).ID: return 947;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Head).ID: return 948;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Foot).ID: return 949;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Head).ID: return 950;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Foot).ID: return 951;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Head).ID: return 952;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Foot).ID: return 953;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Head).ID: return 954;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Foot).ID: return 955;
+ case BrownCarpet::BrownCarpet().ID: return 6835;
+ case BrownConcrete::BrownConcrete().ID: return 8389;
+ case BrownConcretePowder::BrownConcretePowder().ID: return 8405;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8361;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8362;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8363;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8364;
+ case BrownMushroom::BrownMushroom().ID: return 1121;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, true).ID: return 3987;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, false).ID: return 3988;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, true).ID: return 3989;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, false).ID: return 3990;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, true).ID: return 3991;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, false).ID: return 3992;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, true).ID: return 3993;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, false).ID: return 3994;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, true).ID: return 3995;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, false).ID: return 3996;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, true).ID: return 3997;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, false).ID: return 3998;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, true).ID: return 3999;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, false).ID: return 4000;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, true).ID: return 4001;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, false).ID: return 4002;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, true).ID: return 4003;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, false).ID: return 4004;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, true).ID: return 4005;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, false).ID: return 4006;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, true).ID: return 4007;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, false).ID: return 4008;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, true).ID: return 4009;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, false).ID: return 4010;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, true).ID: return 4011;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, false).ID: return 4012;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, true).ID: return 4013;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, false).ID: return 4014;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, true).ID: return 4015;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, false).ID: return 4016;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, true).ID: return 4017;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, false).ID: return 4018;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, true).ID: return 4019;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, false).ID: return 4020;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, true).ID: return 4021;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, false).ID: return 4022;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, true).ID: return 4023;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, false).ID: return 4024;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, true).ID: return 4025;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, false).ID: return 4026;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, true).ID: return 4027;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, false).ID: return 4028;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, true).ID: return 4029;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, false).ID: return 4030;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, true).ID: return 4031;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, false).ID: return 4032;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, true).ID: return 4033;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, false).ID: return 4034;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, true).ID: return 4035;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, false).ID: return 4036;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, true).ID: return 4037;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, false).ID: return 4038;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, true).ID: return 4039;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, false).ID: return 4040;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, true).ID: return 4041;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, false).ID: return 4042;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, true).ID: return 4043;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, false).ID: return 4044;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, true).ID: return 4045;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, false).ID: return 4046;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, true).ID: return 4047;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, false).ID: return 4048;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, true).ID: return 4049;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false).ID: return 4050;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8289;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8290;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8291;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8292;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8293;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8294;
+ case BrownStainedGlass::BrownStainedGlass().ID: return 3589;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, true).ID: return 6206;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, false).ID: return 6207;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, true).ID: return 6210;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, false).ID: return 6211;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, true).ID: return 6214;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, false).ID: return 6215;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, true).ID: return 6218;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, false).ID: return 6219;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, true).ID: return 6222;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, false).ID: return 6223;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, true).ID: return 6226;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, false).ID: return 6227;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, true).ID: return 6230;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, false).ID: return 6231;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, true).ID: return 6234;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, false).ID: return 6235;
+ case BrownTerracotta::BrownTerracotta().ID: return 5816;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7158;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7159;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7160;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7161;
+ case BrownWool::BrownWool().ID: return 1095;
+ case BubbleColumn::BubbleColumn(true).ID: return 8576;
+ case BubbleColumn::BubbleColumn(false).ID: return 8577;
+ case BubbleCoral::BubbleCoral().ID: return 8461;
+ case BubbleCoralBlock::BubbleCoralBlock().ID: return 8456;
+ case BubbleCoralFan::BubbleCoralFan().ID: return 8559;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8521;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8523;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8525;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8527;
+ case Cactus::Cactus(0).ID: return 3425;
+ case Cactus::Cactus(1).ID: return 3426;
+ case Cactus::Cactus(2).ID: return 3427;
+ case Cactus::Cactus(3).ID: return 3428;
+ case Cactus::Cactus(4).ID: return 3429;
+ case Cactus::Cactus(5).ID: return 3430;
+ case Cactus::Cactus(6).ID: return 3431;
+ case Cactus::Cactus(7).ID: return 3432;
+ case Cactus::Cactus(8).ID: return 3433;
+ case Cactus::Cactus(9).ID: return 3434;
+ case Cactus::Cactus(10).ID: return 3435;
+ case Cactus::Cactus(11).ID: return 3436;
+ case Cactus::Cactus(12).ID: return 3437;
+ case Cactus::Cactus(13).ID: return 3438;
+ case Cactus::Cactus(14).ID: return 3439;
+ case Cactus::Cactus(15).ID: return 3440;
+ case Cake::Cake(0).ID: return 3506;
+ case Cake::Cake(1).ID: return 3507;
+ case Cake::Cake(2).ID: return 3508;
+ case Cake::Cake(3).ID: return 3509;
+ case Cake::Cake(4).ID: return 3510;
+ case Cake::Cake(5).ID: return 3511;
+ case Cake::Cake(6).ID: return 3512;
+ case Carrots::Carrots(0).ID: return 5287;
+ case Carrots::Carrots(1).ID: return 5288;
+ case Carrots::Carrots(2).ID: return 5289;
+ case Carrots::Carrots(3).ID: return 5290;
+ case Carrots::Carrots(4).ID: return 5291;
+ case Carrots::Carrots(5).ID: return 5292;
+ case Carrots::Carrots(6).ID: return 5293;
+ case Carrots::Carrots(7).ID: return 5294;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZM).ID: return 3498;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZP).ID: return 3499;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XM).ID: return 3500;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XP).ID: return 3501;
+ case Cauldron::Cauldron(0).ID: return 4621;
+ case Cauldron::Cauldron(1).ID: return 4622;
+ case Cauldron::Cauldron(2).ID: return 4623;
+ case Cauldron::Cauldron(3).ID: return 4624;
+ case CaveAir::CaveAir().ID: return 8575;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 8176;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 8177;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 8178;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 8179;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 8180;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 8181;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 8182;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 8183;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 8184;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 8185;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 8186;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 8187;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Single).ID: return 1729;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Left).ID: return 1731;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Right).ID: return 1733;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Single).ID: return 1735;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Left).ID: return 1737;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Right).ID: return 1739;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Single).ID: return 1741;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Left).ID: return 1743;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Right).ID: return 1745;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Single).ID: return 1747;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Left).ID: return 1749;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Right).ID: return 1751;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZM).ID: return 5571;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZP).ID: return 5572;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XM).ID: return 5573;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XP).ID: return 5574;
+ case ChiseledQuartzBlock::ChiseledQuartzBlock().ID: return 5696;
+ case ChiseledRedSandstone::ChiseledRedSandstone().ID: return 7175;
+ case ChiseledSandstone::ChiseledSandstone().ID: return 246;
+ case ChiseledStoneBricks::ChiseledStoneBricks().ID: return 3986;
+ case ChorusFlower::ChorusFlower(0).ID: return 8067;
+ case ChorusFlower::ChorusFlower(1).ID: return 8068;
+ case ChorusFlower::ChorusFlower(2).ID: return 8069;
+ case ChorusFlower::ChorusFlower(3).ID: return 8070;
+ case ChorusFlower::ChorusFlower(4).ID: return 8071;
+ case ChorusFlower::ChorusFlower(5).ID: return 8072;
+ case ChorusPlant::ChorusPlant(true, true, true, true, true, true).ID: return 8003;
+ case ChorusPlant::ChorusPlant(true, true, true, true, true, false).ID: return 8004;
+ case ChorusPlant::ChorusPlant(true, true, true, true, false, true).ID: return 8005;
+ case ChorusPlant::ChorusPlant(true, true, true, true, false, false).ID: return 8006;
+ case ChorusPlant::ChorusPlant(true, true, true, false, true, true).ID: return 8007;
+ case ChorusPlant::ChorusPlant(true, true, true, false, true, false).ID: return 8008;
+ case ChorusPlant::ChorusPlant(true, true, true, false, false, true).ID: return 8009;
+ case ChorusPlant::ChorusPlant(true, true, true, false, false, false).ID: return 8010;
+ case ChorusPlant::ChorusPlant(true, true, false, true, true, true).ID: return 8011;
+ case ChorusPlant::ChorusPlant(true, true, false, true, true, false).ID: return 8012;
+ case ChorusPlant::ChorusPlant(true, true, false, true, false, true).ID: return 8013;
+ case ChorusPlant::ChorusPlant(true, true, false, true, false, false).ID: return 8014;
+ case ChorusPlant::ChorusPlant(true, true, false, false, true, true).ID: return 8015;
+ case ChorusPlant::ChorusPlant(true, true, false, false, true, false).ID: return 8016;
+ case ChorusPlant::ChorusPlant(true, true, false, false, false, true).ID: return 8017;
+ case ChorusPlant::ChorusPlant(true, true, false, false, false, false).ID: return 8018;
+ case ChorusPlant::ChorusPlant(true, false, true, true, true, true).ID: return 8019;
+ case ChorusPlant::ChorusPlant(true, false, true, true, true, false).ID: return 8020;
+ case ChorusPlant::ChorusPlant(true, false, true, true, false, true).ID: return 8021;
+ case ChorusPlant::ChorusPlant(true, false, true, true, false, false).ID: return 8022;
+ case ChorusPlant::ChorusPlant(true, false, true, false, true, true).ID: return 8023;
+ case ChorusPlant::ChorusPlant(true, false, true, false, true, false).ID: return 8024;
+ case ChorusPlant::ChorusPlant(true, false, true, false, false, true).ID: return 8025;
+ case ChorusPlant::ChorusPlant(true, false, true, false, false, false).ID: return 8026;
+ case ChorusPlant::ChorusPlant(true, false, false, true, true, true).ID: return 8027;
+ case ChorusPlant::ChorusPlant(true, false, false, true, true, false).ID: return 8028;
+ case ChorusPlant::ChorusPlant(true, false, false, true, false, true).ID: return 8029;
+ case ChorusPlant::ChorusPlant(true, false, false, true, false, false).ID: return 8030;
+ case ChorusPlant::ChorusPlant(true, false, false, false, true, true).ID: return 8031;
+ case ChorusPlant::ChorusPlant(true, false, false, false, true, false).ID: return 8032;
+ case ChorusPlant::ChorusPlant(true, false, false, false, false, true).ID: return 8033;
+ case ChorusPlant::ChorusPlant(true, false, false, false, false, false).ID: return 8034;
+ case ChorusPlant::ChorusPlant(false, true, true, true, true, true).ID: return 8035;
+ case ChorusPlant::ChorusPlant(false, true, true, true, true, false).ID: return 8036;
+ case ChorusPlant::ChorusPlant(false, true, true, true, false, true).ID: return 8037;
+ case ChorusPlant::ChorusPlant(false, true, true, true, false, false).ID: return 8038;
+ case ChorusPlant::ChorusPlant(false, true, true, false, true, true).ID: return 8039;
+ case ChorusPlant::ChorusPlant(false, true, true, false, true, false).ID: return 8040;
+ case ChorusPlant::ChorusPlant(false, true, true, false, false, true).ID: return 8041;
+ case ChorusPlant::ChorusPlant(false, true, true, false, false, false).ID: return 8042;
+ case ChorusPlant::ChorusPlant(false, true, false, true, true, true).ID: return 8043;
+ case ChorusPlant::ChorusPlant(false, true, false, true, true, false).ID: return 8044;
+ case ChorusPlant::ChorusPlant(false, true, false, true, false, true).ID: return 8045;
+ case ChorusPlant::ChorusPlant(false, true, false, true, false, false).ID: return 8046;
+ case ChorusPlant::ChorusPlant(false, true, false, false, true, true).ID: return 8047;
+ case ChorusPlant::ChorusPlant(false, true, false, false, true, false).ID: return 8048;
+ case ChorusPlant::ChorusPlant(false, true, false, false, false, true).ID: return 8049;
+ case ChorusPlant::ChorusPlant(false, true, false, false, false, false).ID: return 8050;
+ case ChorusPlant::ChorusPlant(false, false, true, true, true, true).ID: return 8051;
+ case ChorusPlant::ChorusPlant(false, false, true, true, true, false).ID: return 8052;
+ case ChorusPlant::ChorusPlant(false, false, true, true, false, true).ID: return 8053;
+ case ChorusPlant::ChorusPlant(false, false, true, true, false, false).ID: return 8054;
+ case ChorusPlant::ChorusPlant(false, false, true, false, true, true).ID: return 8055;
+ case ChorusPlant::ChorusPlant(false, false, true, false, true, false).ID: return 8056;
+ case ChorusPlant::ChorusPlant(false, false, true, false, false, true).ID: return 8057;
+ case ChorusPlant::ChorusPlant(false, false, true, false, false, false).ID: return 8058;
+ case ChorusPlant::ChorusPlant(false, false, false, true, true, true).ID: return 8059;
+ case ChorusPlant::ChorusPlant(false, false, false, true, true, false).ID: return 8060;
+ case ChorusPlant::ChorusPlant(false, false, false, true, false, true).ID: return 8061;
+ case ChorusPlant::ChorusPlant(false, false, false, true, false, false).ID: return 8062;
+ case ChorusPlant::ChorusPlant(false, false, false, false, true, true).ID: return 8063;
+ case ChorusPlant::ChorusPlant(false, false, false, false, true, false).ID: return 8064;
+ case ChorusPlant::ChorusPlant(false, false, false, false, false, true).ID: return 8065;
+ case ChorusPlant::ChorusPlant(false, false, false, false, false, false).ID: return 8066;
+ case Clay::Clay().ID: return 3441;
+ case CoalBlock::CoalBlock().ID: return 6840;
+ case CoalOre::CoalOre().ID: return 71;
+ case CoarseDirt::CoarseDirt().ID: return 11;
+ case Cobblestone::Cobblestone().ID: return 14;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Top).ID: return 7312;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Bottom).ID: return 7314;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double).ID: return 7316;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3190;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3192;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3194;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3196;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3198;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3200;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3202;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3204;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3206;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3208;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3210;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3212;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3214;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3216;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3218;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3220;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3222;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3224;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3226;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3228;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3230;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3232;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3234;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3236;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3238;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3240;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3242;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3244;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3246;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3248;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3250;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3252;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3254;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3256;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3258;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3260;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3262;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3264;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3266;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3268;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5139;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5140;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5143;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5144;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5147;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5148;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5151;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5152;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5155;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5156;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5159;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5160;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5163;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5164;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5167;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5168;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5171;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5172;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5175;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5176;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5179;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5180;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5183;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5184;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5187;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5188;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5191;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5192;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5195;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5196;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5199;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5200;
+ case Cobweb::Cobweb().ID: return 1040;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZM).ID: return 4638;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZP).ID: return 4639;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XM).ID: return 4640;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XP).ID: return 4641;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZM).ID: return 4642;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZP).ID: return 4643;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XM).ID: return 4644;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XP).ID: return 4645;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZM).ID: return 4646;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZP).ID: return 4647;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XM).ID: return 4648;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XP).ID: return 4649;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 5124;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 5125;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 5126;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 5127;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 5128;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 5129;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 5130;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 5131;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 5132;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 5133;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 5134;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 5135;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true).ID: return 5635;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false).ID: return 5636;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true).ID: return 5637;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false).ID: return 5638;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true).ID: return 5639;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false).ID: return 5640;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true).ID: return 5641;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false).ID: return 5642;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true).ID: return 5643;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false).ID: return 5644;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true).ID: return 5645;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false).ID: return 5646;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true).ID: return 5647;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false).ID: return 5648;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true).ID: return 5649;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false).ID: return 5650;
+ case Conduit::Conduit().ID: return 8573;
+ case CrackedStoneBricks::CrackedStoneBricks().ID: return 3985;
+ case CraftingTable::CraftingTable().ID: return 3050;
+ case CreeperHead::CreeperHead(0).ID: return 5531;
+ case CreeperHead::CreeperHead(1).ID: return 5532;
+ case CreeperHead::CreeperHead(2).ID: return 5533;
+ case CreeperHead::CreeperHead(3).ID: return 5534;
+ case CreeperHead::CreeperHead(4).ID: return 5535;
+ case CreeperHead::CreeperHead(5).ID: return 5536;
+ case CreeperHead::CreeperHead(6).ID: return 5537;
+ case CreeperHead::CreeperHead(7).ID: return 5538;
+ case CreeperHead::CreeperHead(8).ID: return 5539;
+ case CreeperHead::CreeperHead(9).ID: return 5540;
+ case CreeperHead::CreeperHead(10).ID: return 5541;
+ case CreeperHead::CreeperHead(11).ID: return 5542;
+ case CreeperHead::CreeperHead(12).ID: return 5543;
+ case CreeperHead::CreeperHead(13).ID: return 5544;
+ case CreeperHead::CreeperHead(14).ID: return 5545;
+ case CreeperHead::CreeperHead(15).ID: return 5546;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 5527;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 5528;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 5529;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 5530;
+ case CutRedSandstone::CutRedSandstone().ID: return 7176;
+ case CutSandstone::CutSandstone().ID: return 247;
+ case CyanBanner::CyanBanner(0).ID: return 6998;
+ case CyanBanner::CyanBanner(1).ID: return 6999;
+ case CyanBanner::CyanBanner(2).ID: return 7000;
+ case CyanBanner::CyanBanner(3).ID: return 7001;
+ case CyanBanner::CyanBanner(4).ID: return 7002;
+ case CyanBanner::CyanBanner(5).ID: return 7003;
+ case CyanBanner::CyanBanner(6).ID: return 7004;
+ case CyanBanner::CyanBanner(7).ID: return 7005;
+ case CyanBanner::CyanBanner(8).ID: return 7006;
+ case CyanBanner::CyanBanner(9).ID: return 7007;
+ case CyanBanner::CyanBanner(10).ID: return 7008;
+ case CyanBanner::CyanBanner(11).ID: return 7009;
+ case CyanBanner::CyanBanner(12).ID: return 7010;
+ case CyanBanner::CyanBanner(13).ID: return 7011;
+ case CyanBanner::CyanBanner(14).ID: return 7012;
+ case CyanBanner::CyanBanner(15).ID: return 7013;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Head).ID: return 892;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Foot).ID: return 893;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Head).ID: return 894;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Foot).ID: return 895;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Head).ID: return 896;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Foot).ID: return 897;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Head).ID: return 898;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Foot).ID: return 899;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Head).ID: return 900;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Foot).ID: return 901;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Head).ID: return 902;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Foot).ID: return 903;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Head).ID: return 904;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Foot).ID: return 905;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Head).ID: return 906;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Foot).ID: return 907;
+ case CyanCarpet::CyanCarpet().ID: return 6832;
+ case CyanConcrete::CyanConcrete().ID: return 8386;
+ case CyanConcretePowder::CyanConcretePowder().ID: return 8402;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8349;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8350;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8351;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8352;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8271;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8272;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8273;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8274;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8275;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8276;
+ case CyanStainedGlass::CyanStainedGlass().ID: return 3586;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, true).ID: return 6110;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, false).ID: return 6111;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, true).ID: return 6114;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, false).ID: return 6115;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, true).ID: return 6118;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, false).ID: return 6119;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, true).ID: return 6122;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, false).ID: return 6123;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, true).ID: return 6126;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, false).ID: return 6127;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, true).ID: return 6130;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, false).ID: return 6131;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, true).ID: return 6134;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, false).ID: return 6135;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, true).ID: return 6138;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, false).ID: return 6139;
+ case CyanTerracotta::CyanTerracotta().ID: return 5813;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7146;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7147;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7148;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7149;
+ case CyanWool::CyanWool().ID: return 1092;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZM).ID: return 5575;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZP).ID: return 5576;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XM).ID: return 5577;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XP).ID: return 5578;
+ case Dandelion::Dandelion().ID: return 1111;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5423;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5424;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5425;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5426;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5427;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5428;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5429;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5430;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5431;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5432;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5433;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5434;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5435;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5436;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5437;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5438;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5439;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5440;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5441;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5442;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5443;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5444;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5445;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5446;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 7933;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 7934;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 7935;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 7936;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 7937;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 7938;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 7939;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 7940;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 7941;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 7942;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 7943;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 7944;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 7945;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 7946;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 7947;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 7948;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 7949;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 7950;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 7951;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 7952;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 7953;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 7954;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 7955;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 7956;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 7957;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 7958;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 7959;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 7960;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 7961;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 7962;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 7963;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 7964;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 7965;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 7966;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 7967;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 7968;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 7969;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 7970;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 7971;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 7972;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 7973;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 7974;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 7975;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 7976;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 7977;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 7978;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 7979;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 7980;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 7981;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 7982;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 7983;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 7984;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 7985;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 7986;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 7987;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 7988;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 7989;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 7990;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 7991;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 7992;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 7993;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 7994;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 7995;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 7996;
+ case DarkOakFence::DarkOakFence(true, true, true, true).ID: return 7647;
+ case DarkOakFence::DarkOakFence(true, true, true, false).ID: return 7648;
+ case DarkOakFence::DarkOakFence(true, true, false, true).ID: return 7651;
+ case DarkOakFence::DarkOakFence(true, true, false, false).ID: return 7652;
+ case DarkOakFence::DarkOakFence(true, false, true, true).ID: return 7655;
+ case DarkOakFence::DarkOakFence(true, false, true, false).ID: return 7656;
+ case DarkOakFence::DarkOakFence(true, false, false, true).ID: return 7659;
+ case DarkOakFence::DarkOakFence(true, false, false, false).ID: return 7660;
+ case DarkOakFence::DarkOakFence(false, true, true, true).ID: return 7663;
+ case DarkOakFence::DarkOakFence(false, true, true, false).ID: return 7664;
+ case DarkOakFence::DarkOakFence(false, true, false, true).ID: return 7667;
+ case DarkOakFence::DarkOakFence(false, true, false, false).ID: return 7668;
+ case DarkOakFence::DarkOakFence(false, false, true, true).ID: return 7671;
+ case DarkOakFence::DarkOakFence(false, false, true, false).ID: return 7672;
+ case DarkOakFence::DarkOakFence(false, false, false, true).ID: return 7675;
+ case DarkOakFence::DarkOakFence(false, false, false, false).ID: return 7676;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7485;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7486;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7487;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7488;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7489;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7490;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7491;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7492;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7493;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7494;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7495;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7496;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7497;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7498;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7499;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7500;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7501;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7502;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7503;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7504;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7505;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7506;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7507;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7508;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7509;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7510;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7511;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7512;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7513;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7514;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7515;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7516;
+ case DarkOakLeaves::DarkOakLeaves(1, true).ID: return 214;
+ case DarkOakLeaves::DarkOakLeaves(1, false).ID: return 215;
+ case DarkOakLeaves::DarkOakLeaves(2, true).ID: return 216;
+ case DarkOakLeaves::DarkOakLeaves(2, false).ID: return 217;
+ case DarkOakLeaves::DarkOakLeaves(3, true).ID: return 218;
+ case DarkOakLeaves::DarkOakLeaves(3, false).ID: return 219;
+ case DarkOakLeaves::DarkOakLeaves(4, true).ID: return 220;
+ case DarkOakLeaves::DarkOakLeaves(4, false).ID: return 221;
+ case DarkOakLeaves::DarkOakLeaves(5, true).ID: return 222;
+ case DarkOakLeaves::DarkOakLeaves(5, false).ID: return 223;
+ case DarkOakLeaves::DarkOakLeaves(6, true).ID: return 224;
+ case DarkOakLeaves::DarkOakLeaves(6, false).ID: return 225;
+ case DarkOakLeaves::DarkOakLeaves(7, true).ID: return 226;
+ case DarkOakLeaves::DarkOakLeaves(7, false).ID: return 227;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::X).ID: return 87;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Y).ID: return 88;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Z).ID: return 89;
+ case DarkOakPlanks::DarkOakPlanks().ID: return 20;
+ case DarkOakPressurePlate::DarkOakPressurePlate(true).ID: return 3377;
+ case DarkOakPressurePlate::DarkOakPressurePlate(false).ID: return 3378;
+ case DarkOakSapling::DarkOakSapling(0).ID: return 31;
+ case DarkOakSapling::DarkOakSapling(1).ID: return 32;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Top).ID: return 7288;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Bottom).ID: return 7290;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Double).ID: return 7292;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6413;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6415;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6417;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6419;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6421;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6423;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6425;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6427;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6429;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6431;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6433;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6435;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6437;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6439;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6441;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6443;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6445;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6447;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6449;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6451;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6453;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6455;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6457;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6459;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6461;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6463;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6465;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6467;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6469;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6471;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6473;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6475;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6477;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6479;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6481;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6483;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6485;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6487;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6489;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6491;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, true).ID: return 3914;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, false).ID: return 3916;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, true).ID: return 3918;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, false).ID: return 3920;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 3922;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 3924;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 3926;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 3928;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, true).ID: return 3930;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, false).ID: return 3932;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, true).ID: return 3934;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, false).ID: return 3936;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 3938;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 3940;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 3942;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 3944;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, true).ID: return 3946;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, false).ID: return 3948;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, true).ID: return 3950;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, false).ID: return 3952;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 3954;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 3956;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 3958;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 3960;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, true).ID: return 3962;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, false).ID: return 3964;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, true).ID: return 3966;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, false).ID: return 3968;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 3970;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 3972;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 3974;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 3976;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::X).ID: return 123;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Y).ID: return 124;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Z).ID: return 125;
+ case DarkPrismarine::DarkPrismarine().ID: return 6560;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Top).ID: return 6814;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Bottom).ID: return 6816;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Double).ID: return 6818;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 6722;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6724;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 6726;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6728;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 6730;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 6732;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6734;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 6736;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6738;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 6740;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 6742;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6744;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 6746;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6748;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 6750;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 6752;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6754;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 6756;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6758;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 6760;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 6762;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6764;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 6766;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6768;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 6770;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 6772;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6774;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 6776;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6778;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 6780;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 6782;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6784;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 6786;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6788;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 6790;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 6792;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6794;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 6796;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6798;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 6800;
+ case DaylightDetector::DaylightDetector(true, 0).ID: return 5651;
+ case DaylightDetector::DaylightDetector(true, 1).ID: return 5652;
+ case DaylightDetector::DaylightDetector(true, 2).ID: return 5653;
+ case DaylightDetector::DaylightDetector(true, 3).ID: return 5654;
+ case DaylightDetector::DaylightDetector(true, 4).ID: return 5655;
+ case DaylightDetector::DaylightDetector(true, 5).ID: return 5656;
+ case DaylightDetector::DaylightDetector(true, 6).ID: return 5657;
+ case DaylightDetector::DaylightDetector(true, 7).ID: return 5658;
+ case DaylightDetector::DaylightDetector(true, 8).ID: return 5659;
+ case DaylightDetector::DaylightDetector(true, 9).ID: return 5660;
+ case DaylightDetector::DaylightDetector(true, 10).ID: return 5661;
+ case DaylightDetector::DaylightDetector(true, 11).ID: return 5662;
+ case DaylightDetector::DaylightDetector(true, 12).ID: return 5663;
+ case DaylightDetector::DaylightDetector(true, 13).ID: return 5664;
+ case DaylightDetector::DaylightDetector(true, 14).ID: return 5665;
+ case DaylightDetector::DaylightDetector(true, 15).ID: return 5666;
+ case DaylightDetector::DaylightDetector(false, 0).ID: return 5667;
+ case DaylightDetector::DaylightDetector(false, 1).ID: return 5668;
+ case DaylightDetector::DaylightDetector(false, 2).ID: return 5669;
+ case DaylightDetector::DaylightDetector(false, 3).ID: return 5670;
+ case DaylightDetector::DaylightDetector(false, 4).ID: return 5671;
+ case DaylightDetector::DaylightDetector(false, 5).ID: return 5672;
+ case DaylightDetector::DaylightDetector(false, 6).ID: return 5673;
+ case DaylightDetector::DaylightDetector(false, 7).ID: return 5674;
+ case DaylightDetector::DaylightDetector(false, 8).ID: return 5675;
+ case DaylightDetector::DaylightDetector(false, 9).ID: return 5676;
+ case DaylightDetector::DaylightDetector(false, 10).ID: return 5677;
+ case DaylightDetector::DaylightDetector(false, 11).ID: return 5678;
+ case DaylightDetector::DaylightDetector(false, 12).ID: return 5679;
+ case DaylightDetector::DaylightDetector(false, 13).ID: return 5680;
+ case DaylightDetector::DaylightDetector(false, 14).ID: return 5681;
+ case DaylightDetector::DaylightDetector(false, 15).ID: return 5682;
+ case DeadBrainCoralBlock::DeadBrainCoralBlock().ID: return 8450;
+ case DeadBrainCoralFan::DeadBrainCoralFan().ID: return 8547;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8473;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8475;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8477;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8479;
+ case DeadBubbleCoralBlock::DeadBubbleCoralBlock().ID: return 8451;
+ case DeadBubbleCoralFan::DeadBubbleCoralFan().ID: return 8549;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8481;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8483;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8485;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8487;
+ case DeadBush::DeadBush().ID: return 1043;
+ case DeadFireCoralBlock::DeadFireCoralBlock().ID: return 8452;
+ case DeadFireCoralFan::DeadFireCoralFan().ID: return 8551;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8489;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8491;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8493;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8495;
+ case DeadHornCoralBlock::DeadHornCoralBlock().ID: return 8453;
+ case DeadHornCoralFan::DeadHornCoralFan().ID: return 8553;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8497;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8499;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8501;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8503;
+ case DeadTubeCoralBlock::DeadTubeCoralBlock().ID: return 8449;
+ case DeadTubeCoralFan::DeadTubeCoralFan().ID: return 8545;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8465;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8467;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8469;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8471;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::NorthSouth).ID: return 1016;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::EastWest).ID: return 1017;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingEast).ID: return 1018;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingWest).ID: return 1019;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingNorth).ID: return 1020;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingSouth).ID: return 1021;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::NorthSouth).ID: return 1022;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::EastWest).ID: return 1023;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingEast).ID: return 1024;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingWest).ID: return 1025;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingNorth).ID: return 1026;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingSouth).ID: return 1027;
+ case DiamondBlock::DiamondBlock().ID: return 3049;
+ case DiamondOre::DiamondOre().ID: return 3048;
+ case Diorite::Diorite().ID: return 4;
+ case Dirt::Dirt().ID: return 10;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, true).ID: return 233;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, false).ID: return 234;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, true).ID: return 235;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, false).ID: return 236;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, true).ID: return 237;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, false).ID: return 238;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, true).ID: return 239;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, false).ID: return 240;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, true).ID: return 241;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, false).ID: return 242;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, true).ID: return 243;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, false).ID: return 244;
+ case DragonEgg::DragonEgg().ID: return 4635;
+ case DragonHead::DragonHead(0).ID: return 5551;
+ case DragonHead::DragonHead(1).ID: return 5552;
+ case DragonHead::DragonHead(2).ID: return 5553;
+ case DragonHead::DragonHead(3).ID: return 5554;
+ case DragonHead::DragonHead(4).ID: return 5555;
+ case DragonHead::DragonHead(5).ID: return 5556;
+ case DragonHead::DragonHead(6).ID: return 5557;
+ case DragonHead::DragonHead(7).ID: return 5558;
+ case DragonHead::DragonHead(8).ID: return 5559;
+ case DragonHead::DragonHead(9).ID: return 5560;
+ case DragonHead::DragonHead(10).ID: return 5561;
+ case DragonHead::DragonHead(11).ID: return 5562;
+ case DragonHead::DragonHead(12).ID: return 5563;
+ case DragonHead::DragonHead(13).ID: return 5564;
+ case DragonHead::DragonHead(14).ID: return 5565;
+ case DragonHead::DragonHead(15).ID: return 5566;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 5547;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 5548;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 5549;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 5550;
+ case DriedKelpBlock::DriedKelpBlock().ID: return 8436;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, true).ID: return 5792;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, false).ID: return 5793;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, true).ID: return 5794;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, false).ID: return 5795;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, true).ID: return 5796;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, false).ID: return 5797;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, true).ID: return 5798;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, false).ID: return 5799;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, true).ID: return 5800;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, false).ID: return 5801;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, true).ID: return 5802;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, false).ID: return 5803;
+ case EmeraldBlock::EmeraldBlock().ID: return 4883;
+ case EmeraldOre::EmeraldOre().ID: return 4730;
+ case EnchantingTable::EnchantingTable().ID: return 4612;
+ case EndGateway::EndGateway().ID: return 8163;
+ case EndPortal::EndPortal().ID: return 4625;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZM).ID: return 4626;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZP).ID: return 4627;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XM).ID: return 4628;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XP).ID: return 4629;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZM).ID: return 4630;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZP).ID: return 4631;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XM).ID: return 4632;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XP).ID: return 4633;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZM).ID: return 7997;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_XP).ID: return 7998;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZP).ID: return 7999;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_XM).ID: return 8000;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_YP).ID: return 8001;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_YM).ID: return 8002;
+ case EndStone::EndStone().ID: return 4634;
+ case EndStoneBricks::EndStoneBricks().ID: return 8157;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZM).ID: return 4732;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZP).ID: return 4734;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XM).ID: return 4736;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XP).ID: return 4738;
+ case Farmland::Farmland(0).ID: return 3059;
+ case Farmland::Farmland(1).ID: return 3060;
+ case Farmland::Farmland(2).ID: return 3061;
+ case Farmland::Farmland(3).ID: return 3062;
+ case Farmland::Farmland(4).ID: return 3063;
+ case Farmland::Farmland(5).ID: return 3064;
+ case Farmland::Farmland(6).ID: return 3065;
+ case Farmland::Farmland(7).ID: return 3066;
+ case Fern::Fern().ID: return 1042;
+ case Fire::Fire(0, true, true, true, true, true).ID: return 1135;
+ case Fire::Fire(0, true, true, true, true, false).ID: return 1136;
+ case Fire::Fire(0, true, true, true, false, true).ID: return 1137;
+ case Fire::Fire(0, true, true, true, false, false).ID: return 1138;
+ case Fire::Fire(0, true, true, false, true, true).ID: return 1139;
+ case Fire::Fire(0, true, true, false, true, false).ID: return 1140;
+ case Fire::Fire(0, true, true, false, false, true).ID: return 1141;
+ case Fire::Fire(0, true, true, false, false, false).ID: return 1142;
+ case Fire::Fire(0, true, false, true, true, true).ID: return 1143;
+ case Fire::Fire(0, true, false, true, true, false).ID: return 1144;
+ case Fire::Fire(0, true, false, true, false, true).ID: return 1145;
+ case Fire::Fire(0, true, false, true, false, false).ID: return 1146;
+ case Fire::Fire(0, true, false, false, true, true).ID: return 1147;
+ case Fire::Fire(0, true, false, false, true, false).ID: return 1148;
+ case Fire::Fire(0, true, false, false, false, true).ID: return 1149;
+ case Fire::Fire(0, true, false, false, false, false).ID: return 1150;
+ case Fire::Fire(0, false, true, true, true, true).ID: return 1151;
+ case Fire::Fire(0, false, true, true, true, false).ID: return 1152;
+ case Fire::Fire(0, false, true, true, false, true).ID: return 1153;
+ case Fire::Fire(0, false, true, true, false, false).ID: return 1154;
+ case Fire::Fire(0, false, true, false, true, true).ID: return 1155;
+ case Fire::Fire(0, false, true, false, true, false).ID: return 1156;
+ case Fire::Fire(0, false, true, false, false, true).ID: return 1157;
+ case Fire::Fire(0, false, true, false, false, false).ID: return 1158;
+ case Fire::Fire(0, false, false, true, true, true).ID: return 1159;
+ case Fire::Fire(0, false, false, true, true, false).ID: return 1160;
+ case Fire::Fire(0, false, false, true, false, true).ID: return 1161;
+ case Fire::Fire(0, false, false, true, false, false).ID: return 1162;
+ case Fire::Fire(0, false, false, false, true, true).ID: return 1163;
+ case Fire::Fire(0, false, false, false, true, false).ID: return 1164;
+ case Fire::Fire(0, false, false, false, false, true).ID: return 1165;
+ case Fire::Fire(0, false, false, false, false, false).ID: return 1166;
+ case Fire::Fire(1, true, true, true, true, true).ID: return 1167;
+ case Fire::Fire(1, true, true, true, true, false).ID: return 1168;
+ case Fire::Fire(1, true, true, true, false, true).ID: return 1169;
+ case Fire::Fire(1, true, true, true, false, false).ID: return 1170;
+ case Fire::Fire(1, true, true, false, true, true).ID: return 1171;
+ case Fire::Fire(1, true, true, false, true, false).ID: return 1172;
+ case Fire::Fire(1, true, true, false, false, true).ID: return 1173;
+ case Fire::Fire(1, true, true, false, false, false).ID: return 1174;
+ case Fire::Fire(1, true, false, true, true, true).ID: return 1175;
+ case Fire::Fire(1, true, false, true, true, false).ID: return 1176;
+ case Fire::Fire(1, true, false, true, false, true).ID: return 1177;
+ case Fire::Fire(1, true, false, true, false, false).ID: return 1178;
+ case Fire::Fire(1, true, false, false, true, true).ID: return 1179;
+ case Fire::Fire(1, true, false, false, true, false).ID: return 1180;
+ case Fire::Fire(1, true, false, false, false, true).ID: return 1181;
+ case Fire::Fire(1, true, false, false, false, false).ID: return 1182;
+ case Fire::Fire(1, false, true, true, true, true).ID: return 1183;
+ case Fire::Fire(1, false, true, true, true, false).ID: return 1184;
+ case Fire::Fire(1, false, true, true, false, true).ID: return 1185;
+ case Fire::Fire(1, false, true, true, false, false).ID: return 1186;
+ case Fire::Fire(1, false, true, false, true, true).ID: return 1187;
+ case Fire::Fire(1, false, true, false, true, false).ID: return 1188;
+ case Fire::Fire(1, false, true, false, false, true).ID: return 1189;
+ case Fire::Fire(1, false, true, false, false, false).ID: return 1190;
+ case Fire::Fire(1, false, false, true, true, true).ID: return 1191;
+ case Fire::Fire(1, false, false, true, true, false).ID: return 1192;
+ case Fire::Fire(1, false, false, true, false, true).ID: return 1193;
+ case Fire::Fire(1, false, false, true, false, false).ID: return 1194;
+ case Fire::Fire(1, false, false, false, true, true).ID: return 1195;
+ case Fire::Fire(1, false, false, false, true, false).ID: return 1196;
+ case Fire::Fire(1, false, false, false, false, true).ID: return 1197;
+ case Fire::Fire(1, false, false, false, false, false).ID: return 1198;
+ case Fire::Fire(2, true, true, true, true, true).ID: return 1199;
+ case Fire::Fire(2, true, true, true, true, false).ID: return 1200;
+ case Fire::Fire(2, true, true, true, false, true).ID: return 1201;
+ case Fire::Fire(2, true, true, true, false, false).ID: return 1202;
+ case Fire::Fire(2, true, true, false, true, true).ID: return 1203;
+ case Fire::Fire(2, true, true, false, true, false).ID: return 1204;
+ case Fire::Fire(2, true, true, false, false, true).ID: return 1205;
+ case Fire::Fire(2, true, true, false, false, false).ID: return 1206;
+ case Fire::Fire(2, true, false, true, true, true).ID: return 1207;
+ case Fire::Fire(2, true, false, true, true, false).ID: return 1208;
+ case Fire::Fire(2, true, false, true, false, true).ID: return 1209;
+ case Fire::Fire(2, true, false, true, false, false).ID: return 1210;
+ case Fire::Fire(2, true, false, false, true, true).ID: return 1211;
+ case Fire::Fire(2, true, false, false, true, false).ID: return 1212;
+ case Fire::Fire(2, true, false, false, false, true).ID: return 1213;
+ case Fire::Fire(2, true, false, false, false, false).ID: return 1214;
+ case Fire::Fire(2, false, true, true, true, true).ID: return 1215;
+ case Fire::Fire(2, false, true, true, true, false).ID: return 1216;
+ case Fire::Fire(2, false, true, true, false, true).ID: return 1217;
+ case Fire::Fire(2, false, true, true, false, false).ID: return 1218;
+ case Fire::Fire(2, false, true, false, true, true).ID: return 1219;
+ case Fire::Fire(2, false, true, false, true, false).ID: return 1220;
+ case Fire::Fire(2, false, true, false, false, true).ID: return 1221;
+ case Fire::Fire(2, false, true, false, false, false).ID: return 1222;
+ case Fire::Fire(2, false, false, true, true, true).ID: return 1223;
+ case Fire::Fire(2, false, false, true, true, false).ID: return 1224;
+ case Fire::Fire(2, false, false, true, false, true).ID: return 1225;
+ case Fire::Fire(2, false, false, true, false, false).ID: return 1226;
+ case Fire::Fire(2, false, false, false, true, true).ID: return 1227;
+ case Fire::Fire(2, false, false, false, true, false).ID: return 1228;
+ case Fire::Fire(2, false, false, false, false, true).ID: return 1229;
+ case Fire::Fire(2, false, false, false, false, false).ID: return 1230;
+ case Fire::Fire(3, true, true, true, true, true).ID: return 1231;
+ case Fire::Fire(3, true, true, true, true, false).ID: return 1232;
+ case Fire::Fire(3, true, true, true, false, true).ID: return 1233;
+ case Fire::Fire(3, true, true, true, false, false).ID: return 1234;
+ case Fire::Fire(3, true, true, false, true, true).ID: return 1235;
+ case Fire::Fire(3, true, true, false, true, false).ID: return 1236;
+ case Fire::Fire(3, true, true, false, false, true).ID: return 1237;
+ case Fire::Fire(3, true, true, false, false, false).ID: return 1238;
+ case Fire::Fire(3, true, false, true, true, true).ID: return 1239;
+ case Fire::Fire(3, true, false, true, true, false).ID: return 1240;
+ case Fire::Fire(3, true, false, true, false, true).ID: return 1241;
+ case Fire::Fire(3, true, false, true, false, false).ID: return 1242;
+ case Fire::Fire(3, true, false, false, true, true).ID: return 1243;
+ case Fire::Fire(3, true, false, false, true, false).ID: return 1244;
+ case Fire::Fire(3, true, false, false, false, true).ID: return 1245;
+ case Fire::Fire(3, true, false, false, false, false).ID: return 1246;
+ case Fire::Fire(3, false, true, true, true, true).ID: return 1247;
+ case Fire::Fire(3, false, true, true, true, false).ID: return 1248;
+ case Fire::Fire(3, false, true, true, false, true).ID: return 1249;
+ case Fire::Fire(3, false, true, true, false, false).ID: return 1250;
+ case Fire::Fire(3, false, true, false, true, true).ID: return 1251;
+ case Fire::Fire(3, false, true, false, true, false).ID: return 1252;
+ case Fire::Fire(3, false, true, false, false, true).ID: return 1253;
+ case Fire::Fire(3, false, true, false, false, false).ID: return 1254;
+ case Fire::Fire(3, false, false, true, true, true).ID: return 1255;
+ case Fire::Fire(3, false, false, true, true, false).ID: return 1256;
+ case Fire::Fire(3, false, false, true, false, true).ID: return 1257;
+ case Fire::Fire(3, false, false, true, false, false).ID: return 1258;
+ case Fire::Fire(3, false, false, false, true, true).ID: return 1259;
+ case Fire::Fire(3, false, false, false, true, false).ID: return 1260;
+ case Fire::Fire(3, false, false, false, false, true).ID: return 1261;
+ case Fire::Fire(3, false, false, false, false, false).ID: return 1262;
+ case Fire::Fire(4, true, true, true, true, true).ID: return 1263;
+ case Fire::Fire(4, true, true, true, true, false).ID: return 1264;
+ case Fire::Fire(4, true, true, true, false, true).ID: return 1265;
+ case Fire::Fire(4, true, true, true, false, false).ID: return 1266;
+ case Fire::Fire(4, true, true, false, true, true).ID: return 1267;
+ case Fire::Fire(4, true, true, false, true, false).ID: return 1268;
+ case Fire::Fire(4, true, true, false, false, true).ID: return 1269;
+ case Fire::Fire(4, true, true, false, false, false).ID: return 1270;
+ case Fire::Fire(4, true, false, true, true, true).ID: return 1271;
+ case Fire::Fire(4, true, false, true, true, false).ID: return 1272;
+ case Fire::Fire(4, true, false, true, false, true).ID: return 1273;
+ case Fire::Fire(4, true, false, true, false, false).ID: return 1274;
+ case Fire::Fire(4, true, false, false, true, true).ID: return 1275;
+ case Fire::Fire(4, true, false, false, true, false).ID: return 1276;
+ case Fire::Fire(4, true, false, false, false, true).ID: return 1277;
+ case Fire::Fire(4, true, false, false, false, false).ID: return 1278;
+ case Fire::Fire(4, false, true, true, true, true).ID: return 1279;
+ case Fire::Fire(4, false, true, true, true, false).ID: return 1280;
+ case Fire::Fire(4, false, true, true, false, true).ID: return 1281;
+ case Fire::Fire(4, false, true, true, false, false).ID: return 1282;
+ case Fire::Fire(4, false, true, false, true, true).ID: return 1283;
+ case Fire::Fire(4, false, true, false, true, false).ID: return 1284;
+ case Fire::Fire(4, false, true, false, false, true).ID: return 1285;
+ case Fire::Fire(4, false, true, false, false, false).ID: return 1286;
+ case Fire::Fire(4, false, false, true, true, true).ID: return 1287;
+ case Fire::Fire(4, false, false, true, true, false).ID: return 1288;
+ case Fire::Fire(4, false, false, true, false, true).ID: return 1289;
+ case Fire::Fire(4, false, false, true, false, false).ID: return 1290;
+ case Fire::Fire(4, false, false, false, true, true).ID: return 1291;
+ case Fire::Fire(4, false, false, false, true, false).ID: return 1292;
+ case Fire::Fire(4, false, false, false, false, true).ID: return 1293;
+ case Fire::Fire(4, false, false, false, false, false).ID: return 1294;
+ case Fire::Fire(5, true, true, true, true, true).ID: return 1295;
+ case Fire::Fire(5, true, true, true, true, false).ID: return 1296;
+ case Fire::Fire(5, true, true, true, false, true).ID: return 1297;
+ case Fire::Fire(5, true, true, true, false, false).ID: return 1298;
+ case Fire::Fire(5, true, true, false, true, true).ID: return 1299;
+ case Fire::Fire(5, true, true, false, true, false).ID: return 1300;
+ case Fire::Fire(5, true, true, false, false, true).ID: return 1301;
+ case Fire::Fire(5, true, true, false, false, false).ID: return 1302;
+ case Fire::Fire(5, true, false, true, true, true).ID: return 1303;
+ case Fire::Fire(5, true, false, true, true, false).ID: return 1304;
+ case Fire::Fire(5, true, false, true, false, true).ID: return 1305;
+ case Fire::Fire(5, true, false, true, false, false).ID: return 1306;
+ case Fire::Fire(5, true, false, false, true, true).ID: return 1307;
+ case Fire::Fire(5, true, false, false, true, false).ID: return 1308;
+ case Fire::Fire(5, true, false, false, false, true).ID: return 1309;
+ case Fire::Fire(5, true, false, false, false, false).ID: return 1310;
+ case Fire::Fire(5, false, true, true, true, true).ID: return 1311;
+ case Fire::Fire(5, false, true, true, true, false).ID: return 1312;
+ case Fire::Fire(5, false, true, true, false, true).ID: return 1313;
+ case Fire::Fire(5, false, true, true, false, false).ID: return 1314;
+ case Fire::Fire(5, false, true, false, true, true).ID: return 1315;
+ case Fire::Fire(5, false, true, false, true, false).ID: return 1316;
+ case Fire::Fire(5, false, true, false, false, true).ID: return 1317;
+ case Fire::Fire(5, false, true, false, false, false).ID: return 1318;
+ case Fire::Fire(5, false, false, true, true, true).ID: return 1319;
+ case Fire::Fire(5, false, false, true, true, false).ID: return 1320;
+ case Fire::Fire(5, false, false, true, false, true).ID: return 1321;
+ case Fire::Fire(5, false, false, true, false, false).ID: return 1322;
+ case Fire::Fire(5, false, false, false, true, true).ID: return 1323;
+ case Fire::Fire(5, false, false, false, true, false).ID: return 1324;
+ case Fire::Fire(5, false, false, false, false, true).ID: return 1325;
+ case Fire::Fire(5, false, false, false, false, false).ID: return 1326;
+ case Fire::Fire(6, true, true, true, true, true).ID: return 1327;
+ case Fire::Fire(6, true, true, true, true, false).ID: return 1328;
+ case Fire::Fire(6, true, true, true, false, true).ID: return 1329;
+ case Fire::Fire(6, true, true, true, false, false).ID: return 1330;
+ case Fire::Fire(6, true, true, false, true, true).ID: return 1331;
+ case Fire::Fire(6, true, true, false, true, false).ID: return 1332;
+ case Fire::Fire(6, true, true, false, false, true).ID: return 1333;
+ case Fire::Fire(6, true, true, false, false, false).ID: return 1334;
+ case Fire::Fire(6, true, false, true, true, true).ID: return 1335;
+ case Fire::Fire(6, true, false, true, true, false).ID: return 1336;
+ case Fire::Fire(6, true, false, true, false, true).ID: return 1337;
+ case Fire::Fire(6, true, false, true, false, false).ID: return 1338;
+ case Fire::Fire(6, true, false, false, true, true).ID: return 1339;
+ case Fire::Fire(6, true, false, false, true, false).ID: return 1340;
+ case Fire::Fire(6, true, false, false, false, true).ID: return 1341;
+ case Fire::Fire(6, true, false, false, false, false).ID: return 1342;
+ case Fire::Fire(6, false, true, true, true, true).ID: return 1343;
+ case Fire::Fire(6, false, true, true, true, false).ID: return 1344;
+ case Fire::Fire(6, false, true, true, false, true).ID: return 1345;
+ case Fire::Fire(6, false, true, true, false, false).ID: return 1346;
+ case Fire::Fire(6, false, true, false, true, true).ID: return 1347;
+ case Fire::Fire(6, false, true, false, true, false).ID: return 1348;
+ case Fire::Fire(6, false, true, false, false, true).ID: return 1349;
+ case Fire::Fire(6, false, true, false, false, false).ID: return 1350;
+ case Fire::Fire(6, false, false, true, true, true).ID: return 1351;
+ case Fire::Fire(6, false, false, true, true, false).ID: return 1352;
+ case Fire::Fire(6, false, false, true, false, true).ID: return 1353;
+ case Fire::Fire(6, false, false, true, false, false).ID: return 1354;
+ case Fire::Fire(6, false, false, false, true, true).ID: return 1355;
+ case Fire::Fire(6, false, false, false, true, false).ID: return 1356;
+ case Fire::Fire(6, false, false, false, false, true).ID: return 1357;
+ case Fire::Fire(6, false, false, false, false, false).ID: return 1358;
+ case Fire::Fire(7, true, true, true, true, true).ID: return 1359;
+ case Fire::Fire(7, true, true, true, true, false).ID: return 1360;
+ case Fire::Fire(7, true, true, true, false, true).ID: return 1361;
+ case Fire::Fire(7, true, true, true, false, false).ID: return 1362;
+ case Fire::Fire(7, true, true, false, true, true).ID: return 1363;
+ case Fire::Fire(7, true, true, false, true, false).ID: return 1364;
+ case Fire::Fire(7, true, true, false, false, true).ID: return 1365;
+ case Fire::Fire(7, true, true, false, false, false).ID: return 1366;
+ case Fire::Fire(7, true, false, true, true, true).ID: return 1367;
+ case Fire::Fire(7, true, false, true, true, false).ID: return 1368;
+ case Fire::Fire(7, true, false, true, false, true).ID: return 1369;
+ case Fire::Fire(7, true, false, true, false, false).ID: return 1370;
+ case Fire::Fire(7, true, false, false, true, true).ID: return 1371;
+ case Fire::Fire(7, true, false, false, true, false).ID: return 1372;
+ case Fire::Fire(7, true, false, false, false, true).ID: return 1373;
+ case Fire::Fire(7, true, false, false, false, false).ID: return 1374;
+ case Fire::Fire(7, false, true, true, true, true).ID: return 1375;
+ case Fire::Fire(7, false, true, true, true, false).ID: return 1376;
+ case Fire::Fire(7, false, true, true, false, true).ID: return 1377;
+ case Fire::Fire(7, false, true, true, false, false).ID: return 1378;
+ case Fire::Fire(7, false, true, false, true, true).ID: return 1379;
+ case Fire::Fire(7, false, true, false, true, false).ID: return 1380;
+ case Fire::Fire(7, false, true, false, false, true).ID: return 1381;
+ case Fire::Fire(7, false, true, false, false, false).ID: return 1382;
+ case Fire::Fire(7, false, false, true, true, true).ID: return 1383;
+ case Fire::Fire(7, false, false, true, true, false).ID: return 1384;
+ case Fire::Fire(7, false, false, true, false, true).ID: return 1385;
+ case Fire::Fire(7, false, false, true, false, false).ID: return 1386;
+ case Fire::Fire(7, false, false, false, true, true).ID: return 1387;
+ case Fire::Fire(7, false, false, false, true, false).ID: return 1388;
+ case Fire::Fire(7, false, false, false, false, true).ID: return 1389;
+ case Fire::Fire(7, false, false, false, false, false).ID: return 1390;
+ case Fire::Fire(8, true, true, true, true, true).ID: return 1391;
+ case Fire::Fire(8, true, true, true, true, false).ID: return 1392;
+ case Fire::Fire(8, true, true, true, false, true).ID: return 1393;
+ case Fire::Fire(8, true, true, true, false, false).ID: return 1394;
+ case Fire::Fire(8, true, true, false, true, true).ID: return 1395;
+ case Fire::Fire(8, true, true, false, true, false).ID: return 1396;
+ case Fire::Fire(8, true, true, false, false, true).ID: return 1397;
+ case Fire::Fire(8, true, true, false, false, false).ID: return 1398;
+ case Fire::Fire(8, true, false, true, true, true).ID: return 1399;
+ case Fire::Fire(8, true, false, true, true, false).ID: return 1400;
+ case Fire::Fire(8, true, false, true, false, true).ID: return 1401;
+ case Fire::Fire(8, true, false, true, false, false).ID: return 1402;
+ case Fire::Fire(8, true, false, false, true, true).ID: return 1403;
+ case Fire::Fire(8, true, false, false, true, false).ID: return 1404;
+ case Fire::Fire(8, true, false, false, false, true).ID: return 1405;
+ case Fire::Fire(8, true, false, false, false, false).ID: return 1406;
+ case Fire::Fire(8, false, true, true, true, true).ID: return 1407;
+ case Fire::Fire(8, false, true, true, true, false).ID: return 1408;
+ case Fire::Fire(8, false, true, true, false, true).ID: return 1409;
+ case Fire::Fire(8, false, true, true, false, false).ID: return 1410;
+ case Fire::Fire(8, false, true, false, true, true).ID: return 1411;
+ case Fire::Fire(8, false, true, false, true, false).ID: return 1412;
+ case Fire::Fire(8, false, true, false, false, true).ID: return 1413;
+ case Fire::Fire(8, false, true, false, false, false).ID: return 1414;
+ case Fire::Fire(8, false, false, true, true, true).ID: return 1415;
+ case Fire::Fire(8, false, false, true, true, false).ID: return 1416;
+ case Fire::Fire(8, false, false, true, false, true).ID: return 1417;
+ case Fire::Fire(8, false, false, true, false, false).ID: return 1418;
+ case Fire::Fire(8, false, false, false, true, true).ID: return 1419;
+ case Fire::Fire(8, false, false, false, true, false).ID: return 1420;
+ case Fire::Fire(8, false, false, false, false, true).ID: return 1421;
+ case Fire::Fire(8, false, false, false, false, false).ID: return 1422;
+ case Fire::Fire(9, true, true, true, true, true).ID: return 1423;
+ case Fire::Fire(9, true, true, true, true, false).ID: return 1424;
+ case Fire::Fire(9, true, true, true, false, true).ID: return 1425;
+ case Fire::Fire(9, true, true, true, false, false).ID: return 1426;
+ case Fire::Fire(9, true, true, false, true, true).ID: return 1427;
+ case Fire::Fire(9, true, true, false, true, false).ID: return 1428;
+ case Fire::Fire(9, true, true, false, false, true).ID: return 1429;
+ case Fire::Fire(9, true, true, false, false, false).ID: return 1430;
+ case Fire::Fire(9, true, false, true, true, true).ID: return 1431;
+ case Fire::Fire(9, true, false, true, true, false).ID: return 1432;
+ case Fire::Fire(9, true, false, true, false, true).ID: return 1433;
+ case Fire::Fire(9, true, false, true, false, false).ID: return 1434;
+ case Fire::Fire(9, true, false, false, true, true).ID: return 1435;
+ case Fire::Fire(9, true, false, false, true, false).ID: return 1436;
+ case Fire::Fire(9, true, false, false, false, true).ID: return 1437;
+ case Fire::Fire(9, true, false, false, false, false).ID: return 1438;
+ case Fire::Fire(9, false, true, true, true, true).ID: return 1439;
+ case Fire::Fire(9, false, true, true, true, false).ID: return 1440;
+ case Fire::Fire(9, false, true, true, false, true).ID: return 1441;
+ case Fire::Fire(9, false, true, true, false, false).ID: return 1442;
+ case Fire::Fire(9, false, true, false, true, true).ID: return 1443;
+ case Fire::Fire(9, false, true, false, true, false).ID: return 1444;
+ case Fire::Fire(9, false, true, false, false, true).ID: return 1445;
+ case Fire::Fire(9, false, true, false, false, false).ID: return 1446;
+ case Fire::Fire(9, false, false, true, true, true).ID: return 1447;
+ case Fire::Fire(9, false, false, true, true, false).ID: return 1448;
+ case Fire::Fire(9, false, false, true, false, true).ID: return 1449;
+ case Fire::Fire(9, false, false, true, false, false).ID: return 1450;
+ case Fire::Fire(9, false, false, false, true, true).ID: return 1451;
+ case Fire::Fire(9, false, false, false, true, false).ID: return 1452;
+ case Fire::Fire(9, false, false, false, false, true).ID: return 1453;
+ case Fire::Fire(9, false, false, false, false, false).ID: return 1454;
+ case Fire::Fire(10, true, true, true, true, true).ID: return 1455;
+ case Fire::Fire(10, true, true, true, true, false).ID: return 1456;
+ case Fire::Fire(10, true, true, true, false, true).ID: return 1457;
+ case Fire::Fire(10, true, true, true, false, false).ID: return 1458;
+ case Fire::Fire(10, true, true, false, true, true).ID: return 1459;
+ case Fire::Fire(10, true, true, false, true, false).ID: return 1460;
+ case Fire::Fire(10, true, true, false, false, true).ID: return 1461;
+ case Fire::Fire(10, true, true, false, false, false).ID: return 1462;
+ case Fire::Fire(10, true, false, true, true, true).ID: return 1463;
+ case Fire::Fire(10, true, false, true, true, false).ID: return 1464;
+ case Fire::Fire(10, true, false, true, false, true).ID: return 1465;
+ case Fire::Fire(10, true, false, true, false, false).ID: return 1466;
+ case Fire::Fire(10, true, false, false, true, true).ID: return 1467;
+ case Fire::Fire(10, true, false, false, true, false).ID: return 1468;
+ case Fire::Fire(10, true, false, false, false, true).ID: return 1469;
+ case Fire::Fire(10, true, false, false, false, false).ID: return 1470;
+ case Fire::Fire(10, false, true, true, true, true).ID: return 1471;
+ case Fire::Fire(10, false, true, true, true, false).ID: return 1472;
+ case Fire::Fire(10, false, true, true, false, true).ID: return 1473;
+ case Fire::Fire(10, false, true, true, false, false).ID: return 1474;
+ case Fire::Fire(10, false, true, false, true, true).ID: return 1475;
+ case Fire::Fire(10, false, true, false, true, false).ID: return 1476;
+ case Fire::Fire(10, false, true, false, false, true).ID: return 1477;
+ case Fire::Fire(10, false, true, false, false, false).ID: return 1478;
+ case Fire::Fire(10, false, false, true, true, true).ID: return 1479;
+ case Fire::Fire(10, false, false, true, true, false).ID: return 1480;
+ case Fire::Fire(10, false, false, true, false, true).ID: return 1481;
+ case Fire::Fire(10, false, false, true, false, false).ID: return 1482;
+ case Fire::Fire(10, false, false, false, true, true).ID: return 1483;
+ case Fire::Fire(10, false, false, false, true, false).ID: return 1484;
+ case Fire::Fire(10, false, false, false, false, true).ID: return 1485;
+ case Fire::Fire(10, false, false, false, false, false).ID: return 1486;
+ case Fire::Fire(11, true, true, true, true, true).ID: return 1487;
+ case Fire::Fire(11, true, true, true, true, false).ID: return 1488;
+ case Fire::Fire(11, true, true, true, false, true).ID: return 1489;
+ case Fire::Fire(11, true, true, true, false, false).ID: return 1490;
+ case Fire::Fire(11, true, true, false, true, true).ID: return 1491;
+ case Fire::Fire(11, true, true, false, true, false).ID: return 1492;
+ case Fire::Fire(11, true, true, false, false, true).ID: return 1493;
+ case Fire::Fire(11, true, true, false, false, false).ID: return 1494;
+ case Fire::Fire(11, true, false, true, true, true).ID: return 1495;
+ case Fire::Fire(11, true, false, true, true, false).ID: return 1496;
+ case Fire::Fire(11, true, false, true, false, true).ID: return 1497;
+ case Fire::Fire(11, true, false, true, false, false).ID: return 1498;
+ case Fire::Fire(11, true, false, false, true, true).ID: return 1499;
+ case Fire::Fire(11, true, false, false, true, false).ID: return 1500;
+ case Fire::Fire(11, true, false, false, false, true).ID: return 1501;
+ case Fire::Fire(11, true, false, false, false, false).ID: return 1502;
+ case Fire::Fire(11, false, true, true, true, true).ID: return 1503;
+ case Fire::Fire(11, false, true, true, true, false).ID: return 1504;
+ case Fire::Fire(11, false, true, true, false, true).ID: return 1505;
+ case Fire::Fire(11, false, true, true, false, false).ID: return 1506;
+ case Fire::Fire(11, false, true, false, true, true).ID: return 1507;
+ case Fire::Fire(11, false, true, false, true, false).ID: return 1508;
+ case Fire::Fire(11, false, true, false, false, true).ID: return 1509;
+ case Fire::Fire(11, false, true, false, false, false).ID: return 1510;
+ case Fire::Fire(11, false, false, true, true, true).ID: return 1511;
+ case Fire::Fire(11, false, false, true, true, false).ID: return 1512;
+ case Fire::Fire(11, false, false, true, false, true).ID: return 1513;
+ case Fire::Fire(11, false, false, true, false, false).ID: return 1514;
+ case Fire::Fire(11, false, false, false, true, true).ID: return 1515;
+ case Fire::Fire(11, false, false, false, true, false).ID: return 1516;
+ case Fire::Fire(11, false, false, false, false, true).ID: return 1517;
+ case Fire::Fire(11, false, false, false, false, false).ID: return 1518;
+ case Fire::Fire(12, true, true, true, true, true).ID: return 1519;
+ case Fire::Fire(12, true, true, true, true, false).ID: return 1520;
+ case Fire::Fire(12, true, true, true, false, true).ID: return 1521;
+ case Fire::Fire(12, true, true, true, false, false).ID: return 1522;
+ case Fire::Fire(12, true, true, false, true, true).ID: return 1523;
+ case Fire::Fire(12, true, true, false, true, false).ID: return 1524;
+ case Fire::Fire(12, true, true, false, false, true).ID: return 1525;
+ case Fire::Fire(12, true, true, false, false, false).ID: return 1526;
+ case Fire::Fire(12, true, false, true, true, true).ID: return 1527;
+ case Fire::Fire(12, true, false, true, true, false).ID: return 1528;
+ case Fire::Fire(12, true, false, true, false, true).ID: return 1529;
+ case Fire::Fire(12, true, false, true, false, false).ID: return 1530;
+ case Fire::Fire(12, true, false, false, true, true).ID: return 1531;
+ case Fire::Fire(12, true, false, false, true, false).ID: return 1532;
+ case Fire::Fire(12, true, false, false, false, true).ID: return 1533;
+ case Fire::Fire(12, true, false, false, false, false).ID: return 1534;
+ case Fire::Fire(12, false, true, true, true, true).ID: return 1535;
+ case Fire::Fire(12, false, true, true, true, false).ID: return 1536;
+ case Fire::Fire(12, false, true, true, false, true).ID: return 1537;
+ case Fire::Fire(12, false, true, true, false, false).ID: return 1538;
+ case Fire::Fire(12, false, true, false, true, true).ID: return 1539;
+ case Fire::Fire(12, false, true, false, true, false).ID: return 1540;
+ case Fire::Fire(12, false, true, false, false, true).ID: return 1541;
+ case Fire::Fire(12, false, true, false, false, false).ID: return 1542;
+ case Fire::Fire(12, false, false, true, true, true).ID: return 1543;
+ case Fire::Fire(12, false, false, true, true, false).ID: return 1544;
+ case Fire::Fire(12, false, false, true, false, true).ID: return 1545;
+ case Fire::Fire(12, false, false, true, false, false).ID: return 1546;
+ case Fire::Fire(12, false, false, false, true, true).ID: return 1547;
+ case Fire::Fire(12, false, false, false, true, false).ID: return 1548;
+ case Fire::Fire(12, false, false, false, false, true).ID: return 1549;
+ case Fire::Fire(12, false, false, false, false, false).ID: return 1550;
+ case Fire::Fire(13, true, true, true, true, true).ID: return 1551;
+ case Fire::Fire(13, true, true, true, true, false).ID: return 1552;
+ case Fire::Fire(13, true, true, true, false, true).ID: return 1553;
+ case Fire::Fire(13, true, true, true, false, false).ID: return 1554;
+ case Fire::Fire(13, true, true, false, true, true).ID: return 1555;
+ case Fire::Fire(13, true, true, false, true, false).ID: return 1556;
+ case Fire::Fire(13, true, true, false, false, true).ID: return 1557;
+ case Fire::Fire(13, true, true, false, false, false).ID: return 1558;
+ case Fire::Fire(13, true, false, true, true, true).ID: return 1559;
+ case Fire::Fire(13, true, false, true, true, false).ID: return 1560;
+ case Fire::Fire(13, true, false, true, false, true).ID: return 1561;
+ case Fire::Fire(13, true, false, true, false, false).ID: return 1562;
+ case Fire::Fire(13, true, false, false, true, true).ID: return 1563;
+ case Fire::Fire(13, true, false, false, true, false).ID: return 1564;
+ case Fire::Fire(13, true, false, false, false, true).ID: return 1565;
+ case Fire::Fire(13, true, false, false, false, false).ID: return 1566;
+ case Fire::Fire(13, false, true, true, true, true).ID: return 1567;
+ case Fire::Fire(13, false, true, true, true, false).ID: return 1568;
+ case Fire::Fire(13, false, true, true, false, true).ID: return 1569;
+ case Fire::Fire(13, false, true, true, false, false).ID: return 1570;
+ case Fire::Fire(13, false, true, false, true, true).ID: return 1571;
+ case Fire::Fire(13, false, true, false, true, false).ID: return 1572;
+ case Fire::Fire(13, false, true, false, false, true).ID: return 1573;
+ case Fire::Fire(13, false, true, false, false, false).ID: return 1574;
+ case Fire::Fire(13, false, false, true, true, true).ID: return 1575;
+ case Fire::Fire(13, false, false, true, true, false).ID: return 1576;
+ case Fire::Fire(13, false, false, true, false, true).ID: return 1577;
+ case Fire::Fire(13, false, false, true, false, false).ID: return 1578;
+ case Fire::Fire(13, false, false, false, true, true).ID: return 1579;
+ case Fire::Fire(13, false, false, false, true, false).ID: return 1580;
+ case Fire::Fire(13, false, false, false, false, true).ID: return 1581;
+ case Fire::Fire(13, false, false, false, false, false).ID: return 1582;
+ case Fire::Fire(14, true, true, true, true, true).ID: return 1583;
+ case Fire::Fire(14, true, true, true, true, false).ID: return 1584;
+ case Fire::Fire(14, true, true, true, false, true).ID: return 1585;
+ case Fire::Fire(14, true, true, true, false, false).ID: return 1586;
+ case Fire::Fire(14, true, true, false, true, true).ID: return 1587;
+ case Fire::Fire(14, true, true, false, true, false).ID: return 1588;
+ case Fire::Fire(14, true, true, false, false, true).ID: return 1589;
+ case Fire::Fire(14, true, true, false, false, false).ID: return 1590;
+ case Fire::Fire(14, true, false, true, true, true).ID: return 1591;
+ case Fire::Fire(14, true, false, true, true, false).ID: return 1592;
+ case Fire::Fire(14, true, false, true, false, true).ID: return 1593;
+ case Fire::Fire(14, true, false, true, false, false).ID: return 1594;
+ case Fire::Fire(14, true, false, false, true, true).ID: return 1595;
+ case Fire::Fire(14, true, false, false, true, false).ID: return 1596;
+ case Fire::Fire(14, true, false, false, false, true).ID: return 1597;
+ case Fire::Fire(14, true, false, false, false, false).ID: return 1598;
+ case Fire::Fire(14, false, true, true, true, true).ID: return 1599;
+ case Fire::Fire(14, false, true, true, true, false).ID: return 1600;
+ case Fire::Fire(14, false, true, true, false, true).ID: return 1601;
+ case Fire::Fire(14, false, true, true, false, false).ID: return 1602;
+ case Fire::Fire(14, false, true, false, true, true).ID: return 1603;
+ case Fire::Fire(14, false, true, false, true, false).ID: return 1604;
+ case Fire::Fire(14, false, true, false, false, true).ID: return 1605;
+ case Fire::Fire(14, false, true, false, false, false).ID: return 1606;
+ case Fire::Fire(14, false, false, true, true, true).ID: return 1607;
+ case Fire::Fire(14, false, false, true, true, false).ID: return 1608;
+ case Fire::Fire(14, false, false, true, false, true).ID: return 1609;
+ case Fire::Fire(14, false, false, true, false, false).ID: return 1610;
+ case Fire::Fire(14, false, false, false, true, true).ID: return 1611;
+ case Fire::Fire(14, false, false, false, true, false).ID: return 1612;
+ case Fire::Fire(14, false, false, false, false, true).ID: return 1613;
+ case Fire::Fire(14, false, false, false, false, false).ID: return 1614;
+ case Fire::Fire(15, true, true, true, true, true).ID: return 1615;
+ case Fire::Fire(15, true, true, true, true, false).ID: return 1616;
+ case Fire::Fire(15, true, true, true, false, true).ID: return 1617;
+ case Fire::Fire(15, true, true, true, false, false).ID: return 1618;
+ case Fire::Fire(15, true, true, false, true, true).ID: return 1619;
+ case Fire::Fire(15, true, true, false, true, false).ID: return 1620;
+ case Fire::Fire(15, true, true, false, false, true).ID: return 1621;
+ case Fire::Fire(15, true, true, false, false, false).ID: return 1622;
+ case Fire::Fire(15, true, false, true, true, true).ID: return 1623;
+ case Fire::Fire(15, true, false, true, true, false).ID: return 1624;
+ case Fire::Fire(15, true, false, true, false, true).ID: return 1625;
+ case Fire::Fire(15, true, false, true, false, false).ID: return 1626;
+ case Fire::Fire(15, true, false, false, true, true).ID: return 1627;
+ case Fire::Fire(15, true, false, false, true, false).ID: return 1628;
+ case Fire::Fire(15, true, false, false, false, true).ID: return 1629;
+ case Fire::Fire(15, true, false, false, false, false).ID: return 1630;
+ case Fire::Fire(15, false, true, true, true, true).ID: return 1631;
+ case Fire::Fire(15, false, true, true, true, false).ID: return 1632;
+ case Fire::Fire(15, false, true, true, false, true).ID: return 1633;
+ case Fire::Fire(15, false, true, true, false, false).ID: return 1634;
+ case Fire::Fire(15, false, true, false, true, true).ID: return 1635;
+ case Fire::Fire(15, false, true, false, true, false).ID: return 1636;
+ case Fire::Fire(15, false, true, false, false, true).ID: return 1637;
+ case Fire::Fire(15, false, true, false, false, false).ID: return 1638;
+ case Fire::Fire(15, false, false, true, true, true).ID: return 1639;
+ case Fire::Fire(15, false, false, true, true, false).ID: return 1640;
+ case Fire::Fire(15, false, false, true, false, true).ID: return 1641;
+ case Fire::Fire(15, false, false, true, false, false).ID: return 1642;
+ case Fire::Fire(15, false, false, false, true, true).ID: return 1643;
+ case Fire::Fire(15, false, false, false, true, false).ID: return 1644;
+ case Fire::Fire(15, false, false, false, false, true).ID: return 1645;
+ case Fire::Fire(15, false, false, false, false, false).ID: return 1646;
+ case FireCoral::FireCoral().ID: return 8462;
+ case FireCoralBlock::FireCoralBlock().ID: return 8457;
+ case FireCoralFan::FireCoralFan().ID: return 8561;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8529;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8531;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8533;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8535;
+ case FlowerPot::FlowerPot().ID: return 5265;
+ case FrostedIce::FrostedIce(0).ID: return 8188;
+ case FrostedIce::FrostedIce(1).ID: return 8189;
+ case FrostedIce::FrostedIce(2).ID: return 8190;
+ case FrostedIce::FrostedIce(3).ID: return 8191;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, true).ID: return 3067;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, false).ID: return 3068;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, true).ID: return 3069;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, false).ID: return 3070;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, true).ID: return 3071;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, false).ID: return 3072;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, true).ID: return 3073;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, false).ID: return 3074;
+ case Glass::Glass().ID: return 230;
+ case GlassPane::GlassPane(true, true, true, true).ID: return 4213;
+ case GlassPane::GlassPane(true, true, true, false).ID: return 4214;
+ case GlassPane::GlassPane(true, true, false, true).ID: return 4217;
+ case GlassPane::GlassPane(true, true, false, false).ID: return 4218;
+ case GlassPane::GlassPane(true, false, true, true).ID: return 4221;
+ case GlassPane::GlassPane(true, false, true, false).ID: return 4222;
+ case GlassPane::GlassPane(true, false, false, true).ID: return 4225;
+ case GlassPane::GlassPane(true, false, false, false).ID: return 4226;
+ case GlassPane::GlassPane(false, true, true, true).ID: return 4229;
+ case GlassPane::GlassPane(false, true, true, false).ID: return 4230;
+ case GlassPane::GlassPane(false, true, false, true).ID: return 4233;
+ case GlassPane::GlassPane(false, true, false, false).ID: return 4234;
+ case GlassPane::GlassPane(false, false, true, true).ID: return 4237;
+ case GlassPane::GlassPane(false, false, true, false).ID: return 4238;
+ case GlassPane::GlassPane(false, false, false, true).ID: return 4241;
+ case GlassPane::GlassPane(false, false, false, false).ID: return 4242;
+ case Glowstone::Glowstone().ID: return 3495;
+ case GoldBlock::GoldBlock().ID: return 1123;
+ case GoldOre::GoldOre().ID: return 69;
+ case Granite::Granite().ID: return 2;
+ case Grass::Grass().ID: return 1041;
+ case GrassBlock::GrassBlock(true).ID: return 8;
+ case GrassBlock::GrassBlock(false).ID: return 9;
+ case GrassPath::GrassPath().ID: return 8162;
+ case Gravel::Gravel().ID: return 68;
+ case GrayBanner::GrayBanner(0).ID: return 6966;
+ case GrayBanner::GrayBanner(1).ID: return 6967;
+ case GrayBanner::GrayBanner(2).ID: return 6968;
+ case GrayBanner::GrayBanner(3).ID: return 6969;
+ case GrayBanner::GrayBanner(4).ID: return 6970;
+ case GrayBanner::GrayBanner(5).ID: return 6971;
+ case GrayBanner::GrayBanner(6).ID: return 6972;
+ case GrayBanner::GrayBanner(7).ID: return 6973;
+ case GrayBanner::GrayBanner(8).ID: return 6974;
+ case GrayBanner::GrayBanner(9).ID: return 6975;
+ case GrayBanner::GrayBanner(10).ID: return 6976;
+ case GrayBanner::GrayBanner(11).ID: return 6977;
+ case GrayBanner::GrayBanner(12).ID: return 6978;
+ case GrayBanner::GrayBanner(13).ID: return 6979;
+ case GrayBanner::GrayBanner(14).ID: return 6980;
+ case GrayBanner::GrayBanner(15).ID: return 6981;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Head).ID: return 860;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Foot).ID: return 861;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Head).ID: return 862;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Foot).ID: return 863;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Head).ID: return 864;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Foot).ID: return 865;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Head).ID: return 866;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Foot).ID: return 867;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Head).ID: return 868;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Foot).ID: return 869;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Head).ID: return 870;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Foot).ID: return 871;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Head).ID: return 872;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Foot).ID: return 873;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Head).ID: return 874;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Foot).ID: return 875;
+ case GrayCarpet::GrayCarpet().ID: return 6830;
+ case GrayConcrete::GrayConcrete().ID: return 8384;
+ case GrayConcretePowder::GrayConcretePowder().ID: return 8400;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8341;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8342;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8343;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8344;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8259;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8260;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8261;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8262;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8263;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8264;
+ case GrayStainedGlass::GrayStainedGlass().ID: return 3584;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, true).ID: return 6046;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, false).ID: return 6047;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, true).ID: return 6050;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, false).ID: return 6051;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, true).ID: return 6054;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, false).ID: return 6055;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, true).ID: return 6058;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, false).ID: return 6059;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, true).ID: return 6062;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, false).ID: return 6063;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, true).ID: return 6066;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, false).ID: return 6067;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, true).ID: return 6070;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, false).ID: return 6071;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, true).ID: return 6074;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, false).ID: return 6075;
+ case GrayTerracotta::GrayTerracotta().ID: return 5811;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7138;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7139;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7140;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7141;
+ case GrayWool::GrayWool().ID: return 1090;
+ case GreenBanner::GreenBanner(0).ID: return 7062;
+ case GreenBanner::GreenBanner(1).ID: return 7063;
+ case GreenBanner::GreenBanner(2).ID: return 7064;
+ case GreenBanner::GreenBanner(3).ID: return 7065;
+ case GreenBanner::GreenBanner(4).ID: return 7066;
+ case GreenBanner::GreenBanner(5).ID: return 7067;
+ case GreenBanner::GreenBanner(6).ID: return 7068;
+ case GreenBanner::GreenBanner(7).ID: return 7069;
+ case GreenBanner::GreenBanner(8).ID: return 7070;
+ case GreenBanner::GreenBanner(9).ID: return 7071;
+ case GreenBanner::GreenBanner(10).ID: return 7072;
+ case GreenBanner::GreenBanner(11).ID: return 7073;
+ case GreenBanner::GreenBanner(12).ID: return 7074;
+ case GreenBanner::GreenBanner(13).ID: return 7075;
+ case GreenBanner::GreenBanner(14).ID: return 7076;
+ case GreenBanner::GreenBanner(15).ID: return 7077;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Head).ID: return 956;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Foot).ID: return 957;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Head).ID: return 958;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Foot).ID: return 959;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Head).ID: return 960;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Foot).ID: return 961;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Head).ID: return 962;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Foot).ID: return 963;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Head).ID: return 964;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Foot).ID: return 965;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Head).ID: return 966;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Foot).ID: return 967;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Head).ID: return 968;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Foot).ID: return 969;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Head).ID: return 970;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Foot).ID: return 971;
+ case GreenCarpet::GreenCarpet().ID: return 6836;
+ case GreenConcrete::GreenConcrete().ID: return 8390;
+ case GreenConcretePowder::GreenConcretePowder().ID: return 8406;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8365;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8366;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8367;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8368;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8295;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8296;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8297;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8298;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8299;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8300;
+ case GreenStainedGlass::GreenStainedGlass().ID: return 3590;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, true).ID: return 6238;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, false).ID: return 6239;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, true).ID: return 6242;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, false).ID: return 6243;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, true).ID: return 6246;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, false).ID: return 6247;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, true).ID: return 6250;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, false).ID: return 6251;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, true).ID: return 6254;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, false).ID: return 6255;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, true).ID: return 6258;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, false).ID: return 6259;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, true).ID: return 6262;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, false).ID: return 6263;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, true).ID: return 6266;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, false).ID: return 6267;
+ case GreenTerracotta::GreenTerracotta().ID: return 5817;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7162;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7163;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7164;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7165;
+ case GreenWool::GreenWool().ID: return 1096;
+ case HayBale::HayBale(HayBale::Axis::X).ID: return 6820;
+ case HayBale::HayBale(HayBale::Axis::Y).ID: return 6821;
+ case HayBale::HayBale(HayBale::Axis::Z).ID: return 6822;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(0).ID: return 5619;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(1).ID: return 5620;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(2).ID: return 5621;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(3).ID: return 5622;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(4).ID: return 5623;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(5).ID: return 5624;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(6).ID: return 5625;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(7).ID: return 5626;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(8).ID: return 5627;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(9).ID: return 5628;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(10).ID: return 5629;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(11).ID: return 5630;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(12).ID: return 5631;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(13).ID: return 5632;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(14).ID: return 5633;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(15).ID: return 5634;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_YM).ID: return 5685;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZM).ID: return 5686;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZP).ID: return 5687;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XM).ID: return 5688;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XP).ID: return 5689;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_YM).ID: return 5690;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZM).ID: return 5691;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZP).ID: return 5692;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XM).ID: return 5693;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XP).ID: return 5694;
+ case HornCoral::HornCoral().ID: return 8463;
+ case HornCoralBlock::HornCoralBlock().ID: return 8458;
+ case HornCoralFan::HornCoralFan().ID: return 8563;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8537;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8539;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8541;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8543;
+ case Ice::Ice().ID: return 3423;
+ case InfestedChiseledStoneBricks::InfestedChiseledStoneBricks().ID: return 3982;
+ case InfestedCobblestone::InfestedCobblestone().ID: return 3978;
+ case InfestedCrackedStoneBricks::InfestedCrackedStoneBricks().ID: return 3981;
+ case InfestedMossyStoneBricks::InfestedMossyStoneBricks().ID: return 3980;
+ case InfestedStone::InfestedStone().ID: return 3977;
+ case InfestedStoneBricks::InfestedStoneBricks().ID: return 3979;
+ case IronBars::IronBars(true, true, true, true).ID: return 4181;
+ case IronBars::IronBars(true, true, true, false).ID: return 4182;
+ case IronBars::IronBars(true, true, false, true).ID: return 4185;
+ case IronBars::IronBars(true, true, false, false).ID: return 4186;
+ case IronBars::IronBars(true, false, true, true).ID: return 4189;
+ case IronBars::IronBars(true, false, true, false).ID: return 4190;
+ case IronBars::IronBars(true, false, false, true).ID: return 4193;
+ case IronBars::IronBars(true, false, false, false).ID: return 4194;
+ case IronBars::IronBars(false, true, true, true).ID: return 4197;
+ case IronBars::IronBars(false, true, true, false).ID: return 4198;
+ case IronBars::IronBars(false, true, false, true).ID: return 4201;
+ case IronBars::IronBars(false, true, false, false).ID: return 4202;
+ case IronBars::IronBars(false, false, true, true).ID: return 4205;
+ case IronBars::IronBars(false, false, true, false).ID: return 4206;
+ case IronBars::IronBars(false, false, false, true).ID: return 4209;
+ case IronBars::IronBars(false, false, false, false).ID: return 4210;
+ case IronBlock::IronBlock().ID: return 1124;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3303;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3304;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3305;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3306;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3307;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3308;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3309;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3310;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3311;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3312;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3313;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3314;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3315;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3316;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3317;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3318;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3319;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3320;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3321;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3322;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3323;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3324;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3325;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3326;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3327;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3328;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3329;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3330;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3331;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3332;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3333;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3334;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3335;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3336;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3337;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3338;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3339;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3340;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3341;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3342;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3343;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3344;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3345;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3346;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3347;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3348;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3349;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3350;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3351;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3352;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3353;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3354;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3355;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3356;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3357;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3358;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3359;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3360;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3361;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3362;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3363;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3364;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3365;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3366;
+ case IronOre::IronOre().ID: return 70;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, true).ID: return 6495;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, false).ID: return 6497;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, true).ID: return 6499;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, false).ID: return 6501;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, true).ID: return 6503;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, false).ID: return 6505;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, true).ID: return 6507;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, false).ID: return 6509;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, true).ID: return 6511;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, false).ID: return 6513;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, true).ID: return 6515;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, false).ID: return 6517;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, true).ID: return 6519;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, false).ID: return 6521;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, true).ID: return 6523;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, false).ID: return 6525;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, true).ID: return 6527;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, false).ID: return 6529;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, true).ID: return 6531;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, false).ID: return 6533;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, true).ID: return 6535;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, false).ID: return 6537;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, true).ID: return 6539;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, false).ID: return 6541;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, true).ID: return 6543;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, false).ID: return 6545;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, true).ID: return 6547;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, false).ID: return 6549;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, true).ID: return 6551;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, false).ID: return 6553;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, true).ID: return 6555;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, false).ID: return 6557;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZM).ID: return 3502;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZP).ID: return 3503;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XM).ID: return 3504;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XP).ID: return 3505;
+ case Jukebox::Jukebox(true).ID: return 3458;
+ case Jukebox::Jukebox(false).ID: return 3459;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5375;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5376;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5377;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5378;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5379;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5380;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5381;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5382;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5383;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5384;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5385;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5386;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5387;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5388;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5389;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5390;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5391;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5392;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5393;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5394;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5395;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5396;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5397;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5398;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 7805;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 7806;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 7807;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 7808;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 7809;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 7810;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 7811;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 7812;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 7813;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 7814;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 7815;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 7816;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 7817;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 7818;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 7819;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 7820;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 7821;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 7822;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 7823;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 7824;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 7825;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 7826;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 7827;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 7828;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 7829;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 7830;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 7831;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 7832;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 7833;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 7834;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 7835;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 7836;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 7837;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 7838;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 7839;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 7840;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 7841;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 7842;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 7843;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 7844;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 7845;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 7846;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 7847;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 7848;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 7849;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 7850;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 7851;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 7852;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 7853;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 7854;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 7855;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 7856;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 7857;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 7858;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 7859;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 7860;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 7861;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 7862;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 7863;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 7864;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 7865;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 7866;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 7867;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 7868;
+ case JungleFence::JungleFence(true, true, true, true).ID: return 7583;
+ case JungleFence::JungleFence(true, true, true, false).ID: return 7584;
+ case JungleFence::JungleFence(true, true, false, true).ID: return 7587;
+ case JungleFence::JungleFence(true, true, false, false).ID: return 7588;
+ case JungleFence::JungleFence(true, false, true, true).ID: return 7591;
+ case JungleFence::JungleFence(true, false, true, false).ID: return 7592;
+ case JungleFence::JungleFence(true, false, false, true).ID: return 7595;
+ case JungleFence::JungleFence(true, false, false, false).ID: return 7596;
+ case JungleFence::JungleFence(false, true, true, true).ID: return 7599;
+ case JungleFence::JungleFence(false, true, true, false).ID: return 7600;
+ case JungleFence::JungleFence(false, true, false, true).ID: return 7603;
+ case JungleFence::JungleFence(false, true, false, false).ID: return 7604;
+ case JungleFence::JungleFence(false, false, true, true).ID: return 7607;
+ case JungleFence::JungleFence(false, false, true, false).ID: return 7608;
+ case JungleFence::JungleFence(false, false, false, true).ID: return 7611;
+ case JungleFence::JungleFence(false, false, false, false).ID: return 7612;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7421;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7422;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7423;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7424;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7425;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7426;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7427;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7428;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7429;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7430;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7431;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7432;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7433;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7434;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7435;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7436;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7437;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7438;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7439;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7440;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7441;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7442;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7443;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7444;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7445;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7446;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7447;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7448;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7449;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7450;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7451;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7452;
+ case JungleLeaves::JungleLeaves(1, true).ID: return 186;
+ case JungleLeaves::JungleLeaves(1, false).ID: return 187;
+ case JungleLeaves::JungleLeaves(2, true).ID: return 188;
+ case JungleLeaves::JungleLeaves(2, false).ID: return 189;
+ case JungleLeaves::JungleLeaves(3, true).ID: return 190;
+ case JungleLeaves::JungleLeaves(3, false).ID: return 191;
+ case JungleLeaves::JungleLeaves(4, true).ID: return 192;
+ case JungleLeaves::JungleLeaves(4, false).ID: return 193;
+ case JungleLeaves::JungleLeaves(5, true).ID: return 194;
+ case JungleLeaves::JungleLeaves(5, false).ID: return 195;
+ case JungleLeaves::JungleLeaves(6, true).ID: return 196;
+ case JungleLeaves::JungleLeaves(6, false).ID: return 197;
+ case JungleLeaves::JungleLeaves(7, true).ID: return 198;
+ case JungleLeaves::JungleLeaves(7, false).ID: return 199;
+ case JungleLog::JungleLog(JungleLog::Axis::X).ID: return 81;
+ case JungleLog::JungleLog(JungleLog::Axis::Y).ID: return 82;
+ case JungleLog::JungleLog(JungleLog::Axis::Z).ID: return 83;
+ case JunglePlanks::JunglePlanks().ID: return 18;
+ case JunglePressurePlate::JunglePressurePlate(true).ID: return 3373;
+ case JunglePressurePlate::JunglePressurePlate(false).ID: return 3374;
+ case JungleSapling::JungleSapling(0).ID: return 27;
+ case JungleSapling::JungleSapling(1).ID: return 28;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Top).ID: return 7276;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Bottom).ID: return 7278;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Double).ID: return 7280;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5045;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5047;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5049;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5051;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5053;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5055;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5057;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5059;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5061;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5063;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5065;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5067;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5069;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5071;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5073;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5075;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5077;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5079;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5081;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5083;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5085;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5087;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5089;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5091;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5093;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5095;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5097;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5099;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5101;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5103;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5105;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5107;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5109;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5111;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5113;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5115;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5117;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5119;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5121;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5123;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, true).ID: return 3786;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, false).ID: return 3788;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, true).ID: return 3790;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, false).ID: return 3792;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, true).ID: return 3794;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, false).ID: return 3796;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, true).ID: return 3798;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, false).ID: return 3800;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, true).ID: return 3802;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, false).ID: return 3804;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, true).ID: return 3806;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, false).ID: return 3808;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, true).ID: return 3810;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, false).ID: return 3812;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, true).ID: return 3814;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, false).ID: return 3816;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, true).ID: return 3818;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, false).ID: return 3820;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, true).ID: return 3822;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, false).ID: return 3824;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, true).ID: return 3826;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, false).ID: return 3828;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, true).ID: return 3830;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, false).ID: return 3832;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, true).ID: return 3834;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, false).ID: return 3836;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, true).ID: return 3838;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, false).ID: return 3840;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, true).ID: return 3842;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, false).ID: return 3844;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, true).ID: return 3846;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, false).ID: return 3848;
+ case JungleWood::JungleWood(JungleWood::Axis::X).ID: return 117;
+ case JungleWood::JungleWood(JungleWood::Axis::Y).ID: return 118;
+ case JungleWood::JungleWood(JungleWood::Axis::Z).ID: return 119;
+ case Kelp::Kelp(0).ID: return 8409;
+ case Kelp::Kelp(1).ID: return 8410;
+ case Kelp::Kelp(2).ID: return 8411;
+ case Kelp::Kelp(3).ID: return 8412;
+ case Kelp::Kelp(4).ID: return 8413;
+ case Kelp::Kelp(5).ID: return 8414;
+ case Kelp::Kelp(6).ID: return 8415;
+ case Kelp::Kelp(7).ID: return 8416;
+ case Kelp::Kelp(8).ID: return 8417;
+ case Kelp::Kelp(9).ID: return 8418;
+ case Kelp::Kelp(10).ID: return 8419;
+ case Kelp::Kelp(11).ID: return 8420;
+ case Kelp::Kelp(12).ID: return 8421;
+ case Kelp::Kelp(13).ID: return 8422;
+ case Kelp::Kelp(14).ID: return 8423;
+ case Kelp::Kelp(15).ID: return 8424;
+ case Kelp::Kelp(16).ID: return 8425;
+ case Kelp::Kelp(17).ID: return 8426;
+ case Kelp::Kelp(18).ID: return 8427;
+ case Kelp::Kelp(19).ID: return 8428;
+ case Kelp::Kelp(20).ID: return 8429;
+ case Kelp::Kelp(21).ID: return 8430;
+ case Kelp::Kelp(22).ID: return 8431;
+ case Kelp::Kelp(23).ID: return 8432;
+ case Kelp::Kelp(24).ID: return 8433;
+ case Kelp::Kelp(25).ID: return 8434;
+ case KelpPlant::KelpPlant().ID: return 8435;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZM).ID: return 3172;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZP).ID: return 3174;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_XM).ID: return 3176;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_XP).ID: return 3178;
+ case LapisBlock::LapisBlock().ID: return 232;
+ case LapisOre::LapisOre().ID: return 231;
+ case LargeFern::LargeFern(LargeFern::Half::Upper).ID: return 6852;
+ case LargeFern::LargeFern(LargeFern::Half::Lower).ID: return 6853;
+ case Lava::Lava(0).ID: return 50;
+ case Lava::Lava(1).ID: return 51;
+ case Lava::Lava(2).ID: return 52;
+ case Lava::Lava(3).ID: return 53;
+ case Lava::Lava(4).ID: return 54;
+ case Lava::Lava(5).ID: return 55;
+ case Lava::Lava(6).ID: return 56;
+ case Lava::Lava(7).ID: return 57;
+ case Lava::Lava(8).ID: return 58;
+ case Lava::Lava(9).ID: return 59;
+ case Lava::Lava(10).ID: return 60;
+ case Lava::Lava(11).ID: return 61;
+ case Lava::Lava(12).ID: return 62;
+ case Lava::Lava(13).ID: return 63;
+ case Lava::Lava(14).ID: return 64;
+ case Lava::Lava(15).ID: return 65;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3277;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3278;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3279;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3280;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 3281;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 3282;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 3283;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 3284;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3285;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3286;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3287;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3288;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 3289;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 3290;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 3291;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 3292;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3293;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3294;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3295;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3296;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 3297;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 3298;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 3299;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 3300;
+ case LightBlueBanner::LightBlueBanner(0).ID: return 6902;
+ case LightBlueBanner::LightBlueBanner(1).ID: return 6903;
+ case LightBlueBanner::LightBlueBanner(2).ID: return 6904;
+ case LightBlueBanner::LightBlueBanner(3).ID: return 6905;
+ case LightBlueBanner::LightBlueBanner(4).ID: return 6906;
+ case LightBlueBanner::LightBlueBanner(5).ID: return 6907;
+ case LightBlueBanner::LightBlueBanner(6).ID: return 6908;
+ case LightBlueBanner::LightBlueBanner(7).ID: return 6909;
+ case LightBlueBanner::LightBlueBanner(8).ID: return 6910;
+ case LightBlueBanner::LightBlueBanner(9).ID: return 6911;
+ case LightBlueBanner::LightBlueBanner(10).ID: return 6912;
+ case LightBlueBanner::LightBlueBanner(11).ID: return 6913;
+ case LightBlueBanner::LightBlueBanner(12).ID: return 6914;
+ case LightBlueBanner::LightBlueBanner(13).ID: return 6915;
+ case LightBlueBanner::LightBlueBanner(14).ID: return 6916;
+ case LightBlueBanner::LightBlueBanner(15).ID: return 6917;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Head).ID: return 796;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Foot).ID: return 797;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Head).ID: return 798;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Foot).ID: return 799;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Head).ID: return 800;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Foot).ID: return 801;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Head).ID: return 802;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Foot).ID: return 803;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Head).ID: return 804;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Foot).ID: return 805;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Head).ID: return 806;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Foot).ID: return 807;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Head).ID: return 808;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Foot).ID: return 809;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Head).ID: return 810;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Foot).ID: return 811;
+ case LightBlueCarpet::LightBlueCarpet().ID: return 6826;
+ case LightBlueConcrete::LightBlueConcrete().ID: return 8380;
+ case LightBlueConcretePowder::LightBlueConcretePowder().ID: return 8396;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8325;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8326;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8327;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8328;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8235;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8236;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8237;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8238;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8239;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8240;
+ case LightBlueStainedGlass::LightBlueStainedGlass().ID: return 3580;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, true).ID: return 5918;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, false).ID: return 5919;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, true).ID: return 5922;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, false).ID: return 5923;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, true).ID: return 5926;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, false).ID: return 5927;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, true).ID: return 5930;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, false).ID: return 5931;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, true).ID: return 5934;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, false).ID: return 5935;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, true).ID: return 5938;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, false).ID: return 5939;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, true).ID: return 5942;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, false).ID: return 5943;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, true).ID: return 5946;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, false).ID: return 5947;
+ case LightBlueTerracotta::LightBlueTerracotta().ID: return 5807;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7122;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7123;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7124;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7125;
+ case LightBlueWool::LightBlueWool().ID: return 1086;
+ case LightGrayBanner::LightGrayBanner(0).ID: return 6982;
+ case LightGrayBanner::LightGrayBanner(1).ID: return 6983;
+ case LightGrayBanner::LightGrayBanner(2).ID: return 6984;
+ case LightGrayBanner::LightGrayBanner(3).ID: return 6985;
+ case LightGrayBanner::LightGrayBanner(4).ID: return 6986;
+ case LightGrayBanner::LightGrayBanner(5).ID: return 6987;
+ case LightGrayBanner::LightGrayBanner(6).ID: return 6988;
+ case LightGrayBanner::LightGrayBanner(7).ID: return 6989;
+ case LightGrayBanner::LightGrayBanner(8).ID: return 6990;
+ case LightGrayBanner::LightGrayBanner(9).ID: return 6991;
+ case LightGrayBanner::LightGrayBanner(10).ID: return 6992;
+ case LightGrayBanner::LightGrayBanner(11).ID: return 6993;
+ case LightGrayBanner::LightGrayBanner(12).ID: return 6994;
+ case LightGrayBanner::LightGrayBanner(13).ID: return 6995;
+ case LightGrayBanner::LightGrayBanner(14).ID: return 6996;
+ case LightGrayBanner::LightGrayBanner(15).ID: return 6997;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Head).ID: return 876;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Foot).ID: return 877;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Head).ID: return 878;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Foot).ID: return 879;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Head).ID: return 880;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Foot).ID: return 881;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Head).ID: return 882;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Foot).ID: return 883;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Head).ID: return 884;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Foot).ID: return 885;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Head).ID: return 886;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Foot).ID: return 887;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Head).ID: return 888;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Foot).ID: return 889;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Head).ID: return 890;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Foot).ID: return 891;
+ case LightGrayCarpet::LightGrayCarpet().ID: return 6831;
+ case LightGrayConcrete::LightGrayConcrete().ID: return 8385;
+ case LightGrayConcretePowder::LightGrayConcretePowder().ID: return 8401;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8345;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8346;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8347;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8348;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8265;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8266;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8267;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8268;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8269;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8270;
+ case LightGrayStainedGlass::LightGrayStainedGlass().ID: return 3585;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, true).ID: return 6078;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, false).ID: return 6079;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, true).ID: return 6082;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, false).ID: return 6083;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, true).ID: return 6086;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, false).ID: return 6087;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, true).ID: return 6090;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, false).ID: return 6091;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, true).ID: return 6094;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, false).ID: return 6095;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, true).ID: return 6098;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, false).ID: return 6099;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, true).ID: return 6102;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, false).ID: return 6103;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, true).ID: return 6106;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, false).ID: return 6107;
+ case LightGrayTerracotta::LightGrayTerracotta().ID: return 5812;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7142;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7143;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7144;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7145;
+ case LightGrayWool::LightGrayWool().ID: return 1091;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(0).ID: return 5603;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(1).ID: return 5604;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(2).ID: return 5605;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(3).ID: return 5606;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(4).ID: return 5607;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(5).ID: return 5608;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(6).ID: return 5609;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(7).ID: return 5610;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(8).ID: return 5611;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(9).ID: return 5612;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(10).ID: return 5613;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(11).ID: return 5614;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(12).ID: return 5615;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(13).ID: return 5616;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(14).ID: return 5617;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(15).ID: return 5618;
+ case Lilac::Lilac(Lilac::Half::Upper).ID: return 6844;
+ case Lilac::Lilac(Lilac::Half::Lower).ID: return 6845;
+ case LilyPad::LilyPad().ID: return 4494;
+ case LimeBanner::LimeBanner(0).ID: return 6934;
+ case LimeBanner::LimeBanner(1).ID: return 6935;
+ case LimeBanner::LimeBanner(2).ID: return 6936;
+ case LimeBanner::LimeBanner(3).ID: return 6937;
+ case LimeBanner::LimeBanner(4).ID: return 6938;
+ case LimeBanner::LimeBanner(5).ID: return 6939;
+ case LimeBanner::LimeBanner(6).ID: return 6940;
+ case LimeBanner::LimeBanner(7).ID: return 6941;
+ case LimeBanner::LimeBanner(8).ID: return 6942;
+ case LimeBanner::LimeBanner(9).ID: return 6943;
+ case LimeBanner::LimeBanner(10).ID: return 6944;
+ case LimeBanner::LimeBanner(11).ID: return 6945;
+ case LimeBanner::LimeBanner(12).ID: return 6946;
+ case LimeBanner::LimeBanner(13).ID: return 6947;
+ case LimeBanner::LimeBanner(14).ID: return 6948;
+ case LimeBanner::LimeBanner(15).ID: return 6949;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Head).ID: return 828;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Foot).ID: return 829;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Head).ID: return 830;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Foot).ID: return 831;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Head).ID: return 832;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Foot).ID: return 833;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Head).ID: return 834;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Foot).ID: return 835;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Head).ID: return 836;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Foot).ID: return 837;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Head).ID: return 838;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Foot).ID: return 839;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Head).ID: return 840;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Foot).ID: return 841;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Head).ID: return 842;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Foot).ID: return 843;
+ case LimeCarpet::LimeCarpet().ID: return 6828;
+ case LimeConcrete::LimeConcrete().ID: return 8382;
+ case LimeConcretePowder::LimeConcretePowder().ID: return 8398;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8333;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8334;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8335;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8336;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8247;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8248;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8249;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8250;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8251;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8252;
+ case LimeStainedGlass::LimeStainedGlass().ID: return 3582;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, true).ID: return 5982;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, false).ID: return 5983;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, true).ID: return 5986;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, false).ID: return 5987;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, true).ID: return 5990;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, false).ID: return 5991;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, true).ID: return 5994;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, false).ID: return 5995;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, true).ID: return 5998;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, false).ID: return 5999;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, true).ID: return 6002;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, false).ID: return 6003;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, true).ID: return 6006;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, false).ID: return 6007;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, true).ID: return 6010;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, false).ID: return 6011;
+ case LimeTerracotta::LimeTerracotta().ID: return 5809;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7130;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7131;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7132;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7133;
+ case LimeWool::LimeWool().ID: return 1088;
+ case MagentaBanner::MagentaBanner(0).ID: return 6886;
+ case MagentaBanner::MagentaBanner(1).ID: return 6887;
+ case MagentaBanner::MagentaBanner(2).ID: return 6888;
+ case MagentaBanner::MagentaBanner(3).ID: return 6889;
+ case MagentaBanner::MagentaBanner(4).ID: return 6890;
+ case MagentaBanner::MagentaBanner(5).ID: return 6891;
+ case MagentaBanner::MagentaBanner(6).ID: return 6892;
+ case MagentaBanner::MagentaBanner(7).ID: return 6893;
+ case MagentaBanner::MagentaBanner(8).ID: return 6894;
+ case MagentaBanner::MagentaBanner(9).ID: return 6895;
+ case MagentaBanner::MagentaBanner(10).ID: return 6896;
+ case MagentaBanner::MagentaBanner(11).ID: return 6897;
+ case MagentaBanner::MagentaBanner(12).ID: return 6898;
+ case MagentaBanner::MagentaBanner(13).ID: return 6899;
+ case MagentaBanner::MagentaBanner(14).ID: return 6900;
+ case MagentaBanner::MagentaBanner(15).ID: return 6901;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Head).ID: return 780;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Foot).ID: return 781;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Head).ID: return 782;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Foot).ID: return 783;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Head).ID: return 784;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Foot).ID: return 785;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Head).ID: return 786;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Foot).ID: return 787;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Head).ID: return 788;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Foot).ID: return 789;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Head).ID: return 790;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Foot).ID: return 791;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Head).ID: return 792;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Foot).ID: return 793;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Head).ID: return 794;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Foot).ID: return 795;
+ case MagentaCarpet::MagentaCarpet().ID: return 6825;
+ case MagentaConcrete::MagentaConcrete().ID: return 8379;
+ case MagentaConcretePowder::MagentaConcretePowder().ID: return 8395;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8321;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8322;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8323;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8324;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8229;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8230;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8231;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8232;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8233;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8234;
+ case MagentaStainedGlass::MagentaStainedGlass().ID: return 3579;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, true).ID: return 5886;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, false).ID: return 5887;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, true).ID: return 5890;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, false).ID: return 5891;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, true).ID: return 5894;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, false).ID: return 5895;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, true).ID: return 5898;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, false).ID: return 5899;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, true).ID: return 5902;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, false).ID: return 5903;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, true).ID: return 5906;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, false).ID: return 5907;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, true).ID: return 5910;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, false).ID: return 5911;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, true).ID: return 5914;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, false).ID: return 5915;
+ case MagentaTerracotta::MagentaTerracotta().ID: return 5806;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7118;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7119;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7120;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7121;
+ case MagentaWool::MagentaWool().ID: return 1085;
+ case MagmaBlock::MagmaBlock().ID: return 8192;
+ case Melon::Melon().ID: return 4243;
+ case MelonStem::MelonStem(0).ID: return 4260;
+ case MelonStem::MelonStem(1).ID: return 4261;
+ case MelonStem::MelonStem(2).ID: return 4262;
+ case MelonStem::MelonStem(3).ID: return 4263;
+ case MelonStem::MelonStem(4).ID: return 4264;
+ case MelonStem::MelonStem(5).ID: return 4265;
+ case MelonStem::MelonStem(6).ID: return 4266;
+ case MelonStem::MelonStem(7).ID: return 4267;
+ case MossyCobblestone::MossyCobblestone().ID: return 1128;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5203;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5204;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5207;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5208;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5211;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5212;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5215;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5216;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5219;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5220;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5223;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5224;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5227;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5228;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5231;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5232;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5235;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5236;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5239;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5240;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5243;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5244;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5247;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5248;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5251;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5252;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5255;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5256;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5259;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5260;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5263;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5264;
+ case MossyStoneBricks::MossyStoneBricks().ID: return 3984;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Normal).ID: return 1099;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Sticky).ID: return 1100;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Normal).ID: return 1101;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Sticky).ID: return 1102;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Normal).ID: return 1103;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Sticky).ID: return 1104;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Normal).ID: return 1105;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Sticky).ID: return 1106;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Normal).ID: return 1107;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Sticky).ID: return 1108;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Normal).ID: return 1109;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Sticky).ID: return 1110;
+ case MushroomStem::MushroomStem(true, true, true, true, true, true).ID: return 4115;
+ case MushroomStem::MushroomStem(true, true, true, true, true, false).ID: return 4116;
+ case MushroomStem::MushroomStem(true, true, true, true, false, true).ID: return 4117;
+ case MushroomStem::MushroomStem(true, true, true, true, false, false).ID: return 4118;
+ case MushroomStem::MushroomStem(true, true, true, false, true, true).ID: return 4119;
+ case MushroomStem::MushroomStem(true, true, true, false, true, false).ID: return 4120;
+ case MushroomStem::MushroomStem(true, true, true, false, false, true).ID: return 4121;
+ case MushroomStem::MushroomStem(true, true, true, false, false, false).ID: return 4122;
+ case MushroomStem::MushroomStem(true, true, false, true, true, true).ID: return 4123;
+ case MushroomStem::MushroomStem(true, true, false, true, true, false).ID: return 4124;
+ case MushroomStem::MushroomStem(true, true, false, true, false, true).ID: return 4125;
+ case MushroomStem::MushroomStem(true, true, false, true, false, false).ID: return 4126;
+ case MushroomStem::MushroomStem(true, true, false, false, true, true).ID: return 4127;
+ case MushroomStem::MushroomStem(true, true, false, false, true, false).ID: return 4128;
+ case MushroomStem::MushroomStem(true, true, false, false, false, true).ID: return 4129;
+ case MushroomStem::MushroomStem(true, true, false, false, false, false).ID: return 4130;
+ case MushroomStem::MushroomStem(true, false, true, true, true, true).ID: return 4131;
+ case MushroomStem::MushroomStem(true, false, true, true, true, false).ID: return 4132;
+ case MushroomStem::MushroomStem(true, false, true, true, false, true).ID: return 4133;
+ case MushroomStem::MushroomStem(true, false, true, true, false, false).ID: return 4134;
+ case MushroomStem::MushroomStem(true, false, true, false, true, true).ID: return 4135;
+ case MushroomStem::MushroomStem(true, false, true, false, true, false).ID: return 4136;
+ case MushroomStem::MushroomStem(true, false, true, false, false, true).ID: return 4137;
+ case MushroomStem::MushroomStem(true, false, true, false, false, false).ID: return 4138;
+ case MushroomStem::MushroomStem(true, false, false, true, true, true).ID: return 4139;
+ case MushroomStem::MushroomStem(true, false, false, true, true, false).ID: return 4140;
+ case MushroomStem::MushroomStem(true, false, false, true, false, true).ID: return 4141;
+ case MushroomStem::MushroomStem(true, false, false, true, false, false).ID: return 4142;
+ case MushroomStem::MushroomStem(true, false, false, false, true, true).ID: return 4143;
+ case MushroomStem::MushroomStem(true, false, false, false, true, false).ID: return 4144;
+ case MushroomStem::MushroomStem(true, false, false, false, false, true).ID: return 4145;
+ case MushroomStem::MushroomStem(true, false, false, false, false, false).ID: return 4146;
+ case MushroomStem::MushroomStem(false, true, true, true, true, true).ID: return 4147;
+ case MushroomStem::MushroomStem(false, true, true, true, true, false).ID: return 4148;
+ case MushroomStem::MushroomStem(false, true, true, true, false, true).ID: return 4149;
+ case MushroomStem::MushroomStem(false, true, true, true, false, false).ID: return 4150;
+ case MushroomStem::MushroomStem(false, true, true, false, true, true).ID: return 4151;
+ case MushroomStem::MushroomStem(false, true, true, false, true, false).ID: return 4152;
+ case MushroomStem::MushroomStem(false, true, true, false, false, true).ID: return 4153;
+ case MushroomStem::MushroomStem(false, true, true, false, false, false).ID: return 4154;
+ case MushroomStem::MushroomStem(false, true, false, true, true, true).ID: return 4155;
+ case MushroomStem::MushroomStem(false, true, false, true, true, false).ID: return 4156;
+ case MushroomStem::MushroomStem(false, true, false, true, false, true).ID: return 4157;
+ case MushroomStem::MushroomStem(false, true, false, true, false, false).ID: return 4158;
+ case MushroomStem::MushroomStem(false, true, false, false, true, true).ID: return 4159;
+ case MushroomStem::MushroomStem(false, true, false, false, true, false).ID: return 4160;
+ case MushroomStem::MushroomStem(false, true, false, false, false, true).ID: return 4161;
+ case MushroomStem::MushroomStem(false, true, false, false, false, false).ID: return 4162;
+ case MushroomStem::MushroomStem(false, false, true, true, true, true).ID: return 4163;
+ case MushroomStem::MushroomStem(false, false, true, true, true, false).ID: return 4164;
+ case MushroomStem::MushroomStem(false, false, true, true, false, true).ID: return 4165;
+ case MushroomStem::MushroomStem(false, false, true, true, false, false).ID: return 4166;
+ case MushroomStem::MushroomStem(false, false, true, false, true, true).ID: return 4167;
+ case MushroomStem::MushroomStem(false, false, true, false, true, false).ID: return 4168;
+ case MushroomStem::MushroomStem(false, false, true, false, false, true).ID: return 4169;
+ case MushroomStem::MushroomStem(false, false, true, false, false, false).ID: return 4170;
+ case MushroomStem::MushroomStem(false, false, false, true, true, true).ID: return 4171;
+ case MushroomStem::MushroomStem(false, false, false, true, true, false).ID: return 4172;
+ case MushroomStem::MushroomStem(false, false, false, true, false, true).ID: return 4173;
+ case MushroomStem::MushroomStem(false, false, false, true, false, false).ID: return 4174;
+ case MushroomStem::MushroomStem(false, false, false, false, true, true).ID: return 4175;
+ case MushroomStem::MushroomStem(false, false, false, false, true, false).ID: return 4176;
+ case MushroomStem::MushroomStem(false, false, false, false, false, true).ID: return 4177;
+ case MushroomStem::MushroomStem(false, false, false, false, false, false).ID: return 4178;
+ case Mycelium::Mycelium(true).ID: return 4492;
+ case Mycelium::Mycelium(false).ID: return 4493;
+ case NetherBrickFence::NetherBrickFence(true, true, true, true).ID: return 4498;
+ case NetherBrickFence::NetherBrickFence(true, true, true, false).ID: return 4499;
+ case NetherBrickFence::NetherBrickFence(true, true, false, true).ID: return 4502;
+ case NetherBrickFence::NetherBrickFence(true, true, false, false).ID: return 4503;
+ case NetherBrickFence::NetherBrickFence(true, false, true, true).ID: return 4506;
+ case NetherBrickFence::NetherBrickFence(true, false, true, false).ID: return 4507;
+ case NetherBrickFence::NetherBrickFence(true, false, false, true).ID: return 4510;
+ case NetherBrickFence::NetherBrickFence(true, false, false, false).ID: return 4511;
+ case NetherBrickFence::NetherBrickFence(false, true, true, true).ID: return 4514;
+ case NetherBrickFence::NetherBrickFence(false, true, true, false).ID: return 4515;
+ case NetherBrickFence::NetherBrickFence(false, true, false, true).ID: return 4518;
+ case NetherBrickFence::NetherBrickFence(false, true, false, false).ID: return 4519;
+ case NetherBrickFence::NetherBrickFence(false, false, true, true).ID: return 4522;
+ case NetherBrickFence::NetherBrickFence(false, false, true, false).ID: return 4523;
+ case NetherBrickFence::NetherBrickFence(false, false, false, true).ID: return 4526;
+ case NetherBrickFence::NetherBrickFence(false, false, false, false).ID: return 4527;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Top).ID: return 7330;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Bottom).ID: return 7332;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double).ID: return 7334;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 4529;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 4531;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 4533;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 4535;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 4537;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 4539;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 4541;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 4543;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 4545;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 4547;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 4549;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 4551;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 4553;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 4555;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 4557;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 4559;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 4561;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 4563;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 4565;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 4567;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 4569;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 4571;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 4573;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 4575;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 4577;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 4579;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 4581;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 4583;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 4585;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 4587;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 4589;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 4591;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 4593;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 4595;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 4597;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 4599;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 4601;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 4603;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 4605;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 4607;
+ case NetherBricks::NetherBricks().ID: return 4495;
+ case NetherPortal::NetherPortal(NetherPortal::Axis::X).ID: return 3496;
+ case NetherPortal::NetherPortal(NetherPortal::Axis::Z).ID: return 3497;
+ case NetherQuartzOre::NetherQuartzOre().ID: return 5684;
+ case NetherWart::NetherWart(0).ID: return 4608;
+ case NetherWart::NetherWart(1).ID: return 4609;
+ case NetherWart::NetherWart(2).ID: return 4610;
+ case NetherWart::NetherWart(3).ID: return 4611;
+ case NetherWartBlock::NetherWartBlock().ID: return 8193;
+ case Netherrack::Netherrack().ID: return 3493;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, true).ID: return 248;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, false).ID: return 249;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, true).ID: return 250;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, false).ID: return 251;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, true).ID: return 252;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, false).ID: return 253;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, true).ID: return 254;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, false).ID: return 255;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, true).ID: return 256;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, false).ID: return 257;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, true).ID: return 258;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, false).ID: return 259;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, true).ID: return 260;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, false).ID: return 261;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, true).ID: return 262;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, false).ID: return 263;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, true).ID: return 264;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, false).ID: return 265;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, true).ID: return 266;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, false).ID: return 267;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, true).ID: return 268;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, false).ID: return 269;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, true).ID: return 270;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, false).ID: return 271;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, true).ID: return 272;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, false).ID: return 273;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, true).ID: return 274;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, false).ID: return 275;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, true).ID: return 276;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, false).ID: return 277;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, true).ID: return 278;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, false).ID: return 279;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, true).ID: return 280;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, false).ID: return 281;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, true).ID: return 282;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, false).ID: return 283;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, true).ID: return 284;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, false).ID: return 285;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, true).ID: return 286;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, false).ID: return 287;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, true).ID: return 288;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, false).ID: return 289;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, true).ID: return 290;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, false).ID: return 291;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, true).ID: return 292;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, false).ID: return 293;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, true).ID: return 294;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, false).ID: return 295;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, true).ID: return 296;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, false).ID: return 297;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, true).ID: return 298;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, false).ID: return 299;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, true).ID: return 300;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, false).ID: return 301;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, true).ID: return 302;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, false).ID: return 303;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, true).ID: return 304;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, false).ID: return 305;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, true).ID: return 306;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, false).ID: return 307;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, true).ID: return 308;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, false).ID: return 309;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, true).ID: return 310;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, false).ID: return 311;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, true).ID: return 312;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, false).ID: return 313;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, true).ID: return 314;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, false).ID: return 315;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, true).ID: return 316;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, false).ID: return 317;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, true).ID: return 318;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, false).ID: return 319;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, true).ID: return 320;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, false).ID: return 321;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, true).ID: return 322;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, false).ID: return 323;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, true).ID: return 324;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, false).ID: return 325;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, true).ID: return 326;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, false).ID: return 327;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, true).ID: return 328;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, false).ID: return 329;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, true).ID: return 330;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, false).ID: return 331;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, true).ID: return 332;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, false).ID: return 333;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, true).ID: return 334;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, false).ID: return 335;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, true).ID: return 336;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, false).ID: return 337;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, true).ID: return 338;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, false).ID: return 339;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, true).ID: return 340;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, false).ID: return 341;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, true).ID: return 342;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, false).ID: return 343;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, true).ID: return 344;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, false).ID: return 345;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, true).ID: return 346;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, false).ID: return 347;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, true).ID: return 348;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, false).ID: return 349;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, true).ID: return 350;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, false).ID: return 351;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, true).ID: return 352;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, false).ID: return 353;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, true).ID: return 354;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, false).ID: return 355;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, true).ID: return 356;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, false).ID: return 357;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, true).ID: return 358;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, false).ID: return 359;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, true).ID: return 360;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, false).ID: return 361;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, true).ID: return 362;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, false).ID: return 363;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, true).ID: return 364;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, false).ID: return 365;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, true).ID: return 366;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, false).ID: return 367;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, true).ID: return 368;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, false).ID: return 369;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, true).ID: return 370;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, false).ID: return 371;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, true).ID: return 372;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, false).ID: return 373;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, true).ID: return 374;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, false).ID: return 375;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, true).ID: return 376;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, false).ID: return 377;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, true).ID: return 378;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, false).ID: return 379;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, true).ID: return 380;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, false).ID: return 381;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, true).ID: return 382;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, false).ID: return 383;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, true).ID: return 384;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, false).ID: return 385;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, true).ID: return 386;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, false).ID: return 387;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, true).ID: return 388;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, false).ID: return 389;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, true).ID: return 390;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, false).ID: return 391;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, true).ID: return 392;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, false).ID: return 393;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, true).ID: return 394;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, false).ID: return 395;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, true).ID: return 396;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, false).ID: return 397;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, true).ID: return 398;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, false).ID: return 399;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, true).ID: return 400;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, false).ID: return 401;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, true).ID: return 402;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, false).ID: return 403;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, true).ID: return 404;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, false).ID: return 405;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, true).ID: return 406;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, false).ID: return 407;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, true).ID: return 408;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, false).ID: return 409;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, true).ID: return 410;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, false).ID: return 411;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, true).ID: return 412;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, false).ID: return 413;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, true).ID: return 414;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, false).ID: return 415;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, true).ID: return 416;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, false).ID: return 417;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, true).ID: return 418;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, false).ID: return 419;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, true).ID: return 420;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, false).ID: return 421;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, true).ID: return 422;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, false).ID: return 423;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, true).ID: return 424;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, false).ID: return 425;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, true).ID: return 426;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, false).ID: return 427;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, true).ID: return 428;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, false).ID: return 429;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, true).ID: return 430;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, false).ID: return 431;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, true).ID: return 432;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, false).ID: return 433;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, true).ID: return 434;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, false).ID: return 435;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, true).ID: return 436;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, false).ID: return 437;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, true).ID: return 438;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, false).ID: return 439;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, true).ID: return 440;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, false).ID: return 441;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, true).ID: return 442;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, false).ID: return 443;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, true).ID: return 444;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, false).ID: return 445;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, true).ID: return 446;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, false).ID: return 447;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, true).ID: return 448;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, false).ID: return 449;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, true).ID: return 450;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, false).ID: return 451;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, true).ID: return 452;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, false).ID: return 453;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, true).ID: return 454;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, false).ID: return 455;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, true).ID: return 456;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, false).ID: return 457;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, true).ID: return 458;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, false).ID: return 459;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, true).ID: return 460;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, false).ID: return 461;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, true).ID: return 462;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, false).ID: return 463;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, true).ID: return 464;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, false).ID: return 465;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, true).ID: return 466;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, false).ID: return 467;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, true).ID: return 468;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, false).ID: return 469;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, true).ID: return 470;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, false).ID: return 471;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, true).ID: return 472;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, false).ID: return 473;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, true).ID: return 474;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, false).ID: return 475;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, true).ID: return 476;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, false).ID: return 477;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, true).ID: return 478;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, false).ID: return 479;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, true).ID: return 480;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, false).ID: return 481;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, true).ID: return 482;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, false).ID: return 483;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, true).ID: return 484;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, false).ID: return 485;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, true).ID: return 486;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, false).ID: return 487;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, true).ID: return 488;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, false).ID: return 489;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, true).ID: return 490;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, false).ID: return 491;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, true).ID: return 492;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, false).ID: return 493;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, true).ID: return 494;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, false).ID: return 495;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, true).ID: return 496;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, false).ID: return 497;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, true).ID: return 498;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, false).ID: return 499;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, true).ID: return 500;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, false).ID: return 501;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, true).ID: return 502;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, false).ID: return 503;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, true).ID: return 504;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, false).ID: return 505;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, true).ID: return 506;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, false).ID: return 507;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, true).ID: return 508;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, false).ID: return 509;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, true).ID: return 510;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, false).ID: return 511;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, true).ID: return 512;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, false).ID: return 513;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, true).ID: return 514;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, false).ID: return 515;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, true).ID: return 516;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, false).ID: return 517;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, true).ID: return 518;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, false).ID: return 519;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, true).ID: return 520;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, false).ID: return 521;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, true).ID: return 522;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, false).ID: return 523;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, true).ID: return 524;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, false).ID: return 525;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, true).ID: return 526;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, false).ID: return 527;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, true).ID: return 528;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, false).ID: return 529;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, true).ID: return 530;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, false).ID: return 531;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, true).ID: return 532;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, false).ID: return 533;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, true).ID: return 534;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, false).ID: return 535;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, true).ID: return 536;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, false).ID: return 537;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, true).ID: return 538;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, false).ID: return 539;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, true).ID: return 540;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, false).ID: return 541;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, true).ID: return 542;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, false).ID: return 543;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, true).ID: return 544;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, false).ID: return 545;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, true).ID: return 546;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, false).ID: return 547;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, true).ID: return 548;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, false).ID: return 549;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, true).ID: return 550;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, false).ID: return 551;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, true).ID: return 552;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, false).ID: return 553;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, true).ID: return 554;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, false).ID: return 555;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, true).ID: return 556;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, false).ID: return 557;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, true).ID: return 558;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, false).ID: return 559;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, true).ID: return 560;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, false).ID: return 561;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, true).ID: return 562;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, false).ID: return 563;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, true).ID: return 564;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, false).ID: return 565;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, true).ID: return 566;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, false).ID: return 567;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, true).ID: return 568;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, false).ID: return 569;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, true).ID: return 570;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, false).ID: return 571;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, true).ID: return 572;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, false).ID: return 573;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, true).ID: return 574;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, false).ID: return 575;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, true).ID: return 576;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, false).ID: return 577;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, true).ID: return 578;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, false).ID: return 579;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, true).ID: return 580;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, false).ID: return 581;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, true).ID: return 582;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, false).ID: return 583;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, true).ID: return 584;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, false).ID: return 585;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, true).ID: return 586;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, false).ID: return 587;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, true).ID: return 588;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, false).ID: return 589;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, true).ID: return 590;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, false).ID: return 591;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, true).ID: return 592;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, false).ID: return 593;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, true).ID: return 594;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, false).ID: return 595;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, true).ID: return 596;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, false).ID: return 597;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, true).ID: return 598;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, false).ID: return 599;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, true).ID: return 600;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, false).ID: return 601;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, true).ID: return 602;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, false).ID: return 603;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, true).ID: return 604;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, false).ID: return 605;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, true).ID: return 606;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, false).ID: return 607;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, true).ID: return 608;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, false).ID: return 609;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, true).ID: return 610;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, false).ID: return 611;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, true).ID: return 612;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, false).ID: return 613;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, true).ID: return 614;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, false).ID: return 615;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, true).ID: return 616;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, false).ID: return 617;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, true).ID: return 618;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, false).ID: return 619;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, true).ID: return 620;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, false).ID: return 621;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, true).ID: return 622;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, false).ID: return 623;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, true).ID: return 624;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, false).ID: return 625;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, true).ID: return 626;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, false).ID: return 627;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, true).ID: return 628;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, false).ID: return 629;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, true).ID: return 630;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, false).ID: return 631;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, true).ID: return 632;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, false).ID: return 633;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, true).ID: return 634;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, false).ID: return 635;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, true).ID: return 636;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, false).ID: return 637;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, true).ID: return 638;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, false).ID: return 639;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, true).ID: return 640;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, false).ID: return 641;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, true).ID: return 642;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, false).ID: return 643;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, true).ID: return 644;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, false).ID: return 645;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, true).ID: return 646;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, false).ID: return 647;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, true).ID: return 648;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, false).ID: return 649;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, true).ID: return 650;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, false).ID: return 651;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, true).ID: return 652;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, false).ID: return 653;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, true).ID: return 654;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, false).ID: return 655;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, true).ID: return 656;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, false).ID: return 657;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, true).ID: return 658;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, false).ID: return 659;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, true).ID: return 660;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, false).ID: return 661;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, true).ID: return 662;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, false).ID: return 663;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, true).ID: return 664;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, false).ID: return 665;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, true).ID: return 666;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, false).ID: return 667;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, true).ID: return 668;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, false).ID: return 669;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, true).ID: return 670;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, false).ID: return 671;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, true).ID: return 672;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, false).ID: return 673;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, true).ID: return 674;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, false).ID: return 675;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, true).ID: return 676;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, false).ID: return 677;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, true).ID: return 678;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, false).ID: return 679;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, true).ID: return 680;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, false).ID: return 681;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, true).ID: return 682;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, false).ID: return 683;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, true).ID: return 684;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, false).ID: return 685;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, true).ID: return 686;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, false).ID: return 687;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, true).ID: return 688;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, false).ID: return 689;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, true).ID: return 690;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, false).ID: return 691;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, true).ID: return 692;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, false).ID: return 693;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, true).ID: return 694;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, false).ID: return 695;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, true).ID: return 696;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, false).ID: return 697;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, true).ID: return 698;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, false).ID: return 699;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, true).ID: return 700;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, false).ID: return 701;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, true).ID: return 702;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, false).ID: return 703;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, true).ID: return 704;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, false).ID: return 705;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, true).ID: return 706;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, false).ID: return 707;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, true).ID: return 708;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, false).ID: return 709;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, true).ID: return 710;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, false).ID: return 711;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, true).ID: return 712;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, false).ID: return 713;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, true).ID: return 714;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, false).ID: return 715;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, true).ID: return 716;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, false).ID: return 717;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, true).ID: return 718;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, false).ID: return 719;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, true).ID: return 720;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, false).ID: return 721;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, true).ID: return 722;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, false).ID: return 723;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, true).ID: return 724;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, false).ID: return 725;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, true).ID: return 726;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, false).ID: return 727;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, true).ID: return 728;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, false).ID: return 729;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, true).ID: return 730;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, false).ID: return 731;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, true).ID: return 732;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, false).ID: return 733;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, true).ID: return 734;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, false).ID: return 735;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, true).ID: return 736;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, false).ID: return 737;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, true).ID: return 738;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, false).ID: return 739;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, true).ID: return 740;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, false).ID: return 741;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, true).ID: return 742;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, false).ID: return 743;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, true).ID: return 744;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, false).ID: return 745;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, true).ID: return 746;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, false).ID: return 747;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5303;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5304;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5305;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5306;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5307;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5308;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5309;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5310;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5311;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5312;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5313;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5314;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5315;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5316;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5317;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5318;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5319;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5320;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5321;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5322;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5323;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5324;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5325;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5326;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3107;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3108;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3109;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3110;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3111;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3112;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3113;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3114;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3115;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3116;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3117;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3118;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3119;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3120;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3121;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3122;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3123;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3124;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3125;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3126;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3127;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3128;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3129;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3130;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3131;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3132;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3133;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3134;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3135;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3136;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3137;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3138;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3139;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3140;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3141;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3142;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3143;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3144;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3145;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3146;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3147;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3148;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3149;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3150;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3151;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3152;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3153;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3154;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3155;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3156;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3157;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3158;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3159;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3160;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3161;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3162;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3163;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3164;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3165;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3166;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3167;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3168;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3169;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3170;
+ case OakFence::OakFence(true, true, true, true).ID: return 3462;
+ case OakFence::OakFence(true, true, true, false).ID: return 3463;
+ case OakFence::OakFence(true, true, false, true).ID: return 3466;
+ case OakFence::OakFence(true, true, false, false).ID: return 3467;
+ case OakFence::OakFence(true, false, true, true).ID: return 3470;
+ case OakFence::OakFence(true, false, true, false).ID: return 3471;
+ case OakFence::OakFence(true, false, false, true).ID: return 3474;
+ case OakFence::OakFence(true, false, false, false).ID: return 3475;
+ case OakFence::OakFence(false, true, true, true).ID: return 3478;
+ case OakFence::OakFence(false, true, true, false).ID: return 3479;
+ case OakFence::OakFence(false, true, false, true).ID: return 3482;
+ case OakFence::OakFence(false, true, false, false).ID: return 3483;
+ case OakFence::OakFence(false, false, true, true).ID: return 3486;
+ case OakFence::OakFence(false, false, true, false).ID: return 3487;
+ case OakFence::OakFence(false, false, false, true).ID: return 3490;
+ case OakFence::OakFence(false, false, false, false).ID: return 3491;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 4300;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 4301;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 4302;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 4303;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 4304;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 4305;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 4306;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 4307;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 4308;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 4309;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 4310;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 4311;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 4312;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 4313;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 4314;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 4315;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 4316;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 4317;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 4318;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 4319;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 4320;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 4321;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 4322;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 4323;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 4324;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 4325;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 4326;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 4327;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 4328;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 4329;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 4330;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 4331;
+ case OakLeaves::OakLeaves(1, true).ID: return 144;
+ case OakLeaves::OakLeaves(1, false).ID: return 145;
+ case OakLeaves::OakLeaves(2, true).ID: return 146;
+ case OakLeaves::OakLeaves(2, false).ID: return 147;
+ case OakLeaves::OakLeaves(3, true).ID: return 148;
+ case OakLeaves::OakLeaves(3, false).ID: return 149;
+ case OakLeaves::OakLeaves(4, true).ID: return 150;
+ case OakLeaves::OakLeaves(4, false).ID: return 151;
+ case OakLeaves::OakLeaves(5, true).ID: return 152;
+ case OakLeaves::OakLeaves(5, false).ID: return 153;
+ case OakLeaves::OakLeaves(6, true).ID: return 154;
+ case OakLeaves::OakLeaves(6, false).ID: return 155;
+ case OakLeaves::OakLeaves(7, true).ID: return 156;
+ case OakLeaves::OakLeaves(7, false).ID: return 157;
+ case OakLog::OakLog(OakLog::Axis::X).ID: return 72;
+ case OakLog::OakLog(OakLog::Axis::Y).ID: return 73;
+ case OakLog::OakLog(OakLog::Axis::Z).ID: return 74;
+ case OakPlanks::OakPlanks().ID: return 15;
+ case OakPressurePlate::OakPressurePlate(true).ID: return 3367;
+ case OakPressurePlate::OakPressurePlate(false).ID: return 3368;
+ case OakSapling::OakSapling(0).ID: return 21;
+ case OakSapling::OakSapling(1).ID: return 22;
+ case OakSlab::OakSlab(OakSlab::Type::Top).ID: return 7258;
+ case OakSlab::OakSlab(OakSlab::Type::Bottom).ID: return 7260;
+ case OakSlab::OakSlab(OakSlab::Type::Double).ID: return 7262;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1649;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1651;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1653;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1655;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1657;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1659;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1661;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1663;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1665;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1667;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1669;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1671;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1673;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1675;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1677;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1679;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1681;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1683;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1685;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1687;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1689;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1691;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1693;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1695;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1697;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1699;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1701;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1703;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1705;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1707;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1709;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1711;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1713;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1715;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1717;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1719;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1721;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1723;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1725;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1727;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, true).ID: return 3594;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, false).ID: return 3596;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, true).ID: return 3598;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, false).ID: return 3600;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, true).ID: return 3602;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, false).ID: return 3604;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, true).ID: return 3606;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, false).ID: return 3608;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, true).ID: return 3610;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, false).ID: return 3612;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, true).ID: return 3614;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, false).ID: return 3616;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, true).ID: return 3618;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, false).ID: return 3620;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, true).ID: return 3622;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, false).ID: return 3624;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, true).ID: return 3626;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, false).ID: return 3628;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, true).ID: return 3630;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, false).ID: return 3632;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, true).ID: return 3634;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, false).ID: return 3636;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, true).ID: return 3638;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, false).ID: return 3640;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, true).ID: return 3642;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, false).ID: return 3644;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, true).ID: return 3646;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, false).ID: return 3648;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, true).ID: return 3650;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, false).ID: return 3652;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, true).ID: return 3654;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, false).ID: return 3656;
+ case OakWood::OakWood(OakWood::Axis::X).ID: return 108;
+ case OakWood::OakWood(OakWood::Axis::Y).ID: return 109;
+ case OakWood::OakWood(OakWood::Axis::Z).ID: return 110;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, true).ID: return 8199;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, false).ID: return 8200;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XP, true).ID: return 8201;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XP, false).ID: return 8202;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, true).ID: return 8203;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, false).ID: return 8204;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XM, true).ID: return 8205;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XM, false).ID: return 8206;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YP, true).ID: return 8207;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YP, false).ID: return 8208;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YM, true).ID: return 8209;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YM, false).ID: return 8210;
+ case Obsidian::Obsidian().ID: return 1129;
+ case OrangeBanner::OrangeBanner(0).ID: return 6870;
+ case OrangeBanner::OrangeBanner(1).ID: return 6871;
+ case OrangeBanner::OrangeBanner(2).ID: return 6872;
+ case OrangeBanner::OrangeBanner(3).ID: return 6873;
+ case OrangeBanner::OrangeBanner(4).ID: return 6874;
+ case OrangeBanner::OrangeBanner(5).ID: return 6875;
+ case OrangeBanner::OrangeBanner(6).ID: return 6876;
+ case OrangeBanner::OrangeBanner(7).ID: return 6877;
+ case OrangeBanner::OrangeBanner(8).ID: return 6878;
+ case OrangeBanner::OrangeBanner(9).ID: return 6879;
+ case OrangeBanner::OrangeBanner(10).ID: return 6880;
+ case OrangeBanner::OrangeBanner(11).ID: return 6881;
+ case OrangeBanner::OrangeBanner(12).ID: return 6882;
+ case OrangeBanner::OrangeBanner(13).ID: return 6883;
+ case OrangeBanner::OrangeBanner(14).ID: return 6884;
+ case OrangeBanner::OrangeBanner(15).ID: return 6885;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Head).ID: return 764;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Foot).ID: return 765;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Head).ID: return 766;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Foot).ID: return 767;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Head).ID: return 768;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Foot).ID: return 769;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Head).ID: return 770;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Foot).ID: return 771;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Head).ID: return 772;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Foot).ID: return 773;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Head).ID: return 774;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Foot).ID: return 775;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Head).ID: return 776;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Foot).ID: return 777;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Head).ID: return 778;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Foot).ID: return 779;
+ case OrangeCarpet::OrangeCarpet().ID: return 6824;
+ case OrangeConcrete::OrangeConcrete().ID: return 8378;
+ case OrangeConcretePowder::OrangeConcretePowder().ID: return 8394;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8317;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8318;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8319;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8320;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8223;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8224;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8225;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8226;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8227;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8228;
+ case OrangeStainedGlass::OrangeStainedGlass().ID: return 3578;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, true).ID: return 5854;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, false).ID: return 5855;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, true).ID: return 5858;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, false).ID: return 5859;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, true).ID: return 5862;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, false).ID: return 5863;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, true).ID: return 5866;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, false).ID: return 5867;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, true).ID: return 5870;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, false).ID: return 5871;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, true).ID: return 5874;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, false).ID: return 5875;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, true).ID: return 5878;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, false).ID: return 5879;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, true).ID: return 5882;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, false).ID: return 5883;
+ case OrangeTerracotta::OrangeTerracotta().ID: return 5805;
+ case OrangeTulip::OrangeTulip().ID: return 1117;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7114;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7115;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7116;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7117;
+ case OrangeWool::OrangeWool().ID: return 1084;
+ case OxeyeDaisy::OxeyeDaisy().ID: return 1120;
+ case PackedIce::PackedIce().ID: return 6841;
+ case Peony::Peony(Peony::Half::Upper).ID: return 6848;
+ case Peony::Peony(Peony::Half::Lower).ID: return 6849;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Top).ID: return 7306;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Bottom).ID: return 7308;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double).ID: return 7310;
+ case PinkBanner::PinkBanner(0).ID: return 6950;
+ case PinkBanner::PinkBanner(1).ID: return 6951;
+ case PinkBanner::PinkBanner(2).ID: return 6952;
+ case PinkBanner::PinkBanner(3).ID: return 6953;
+ case PinkBanner::PinkBanner(4).ID: return 6954;
+ case PinkBanner::PinkBanner(5).ID: return 6955;
+ case PinkBanner::PinkBanner(6).ID: return 6956;
+ case PinkBanner::PinkBanner(7).ID: return 6957;
+ case PinkBanner::PinkBanner(8).ID: return 6958;
+ case PinkBanner::PinkBanner(9).ID: return 6959;
+ case PinkBanner::PinkBanner(10).ID: return 6960;
+ case PinkBanner::PinkBanner(11).ID: return 6961;
+ case PinkBanner::PinkBanner(12).ID: return 6962;
+ case PinkBanner::PinkBanner(13).ID: return 6963;
+ case PinkBanner::PinkBanner(14).ID: return 6964;
+ case PinkBanner::PinkBanner(15).ID: return 6965;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Head).ID: return 844;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Foot).ID: return 845;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Head).ID: return 846;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Foot).ID: return 847;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Head).ID: return 848;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Foot).ID: return 849;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Head).ID: return 850;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Foot).ID: return 851;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Head).ID: return 852;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Foot).ID: return 853;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Head).ID: return 854;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Foot).ID: return 855;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Head).ID: return 856;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Foot).ID: return 857;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Head).ID: return 858;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Foot).ID: return 859;
+ case PinkCarpet::PinkCarpet().ID: return 6829;
+ case PinkConcrete::PinkConcrete().ID: return 8383;
+ case PinkConcretePowder::PinkConcretePowder().ID: return 8399;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8337;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8338;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8339;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8340;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8253;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8254;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8255;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8256;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8257;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8258;
+ case PinkStainedGlass::PinkStainedGlass().ID: return 3583;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, true).ID: return 6014;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, false).ID: return 6015;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, true).ID: return 6018;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, false).ID: return 6019;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, true).ID: return 6022;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, false).ID: return 6023;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, true).ID: return 6026;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, false).ID: return 6027;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, true).ID: return 6030;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, false).ID: return 6031;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, true).ID: return 6034;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, false).ID: return 6035;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, true).ID: return 6038;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, false).ID: return 6039;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, true).ID: return 6042;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, false).ID: return 6043;
+ case PinkTerracotta::PinkTerracotta().ID: return 5810;
+ case PinkTulip::PinkTulip().ID: return 1119;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7134;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7135;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7136;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7137;
+ case PinkWool::PinkWool().ID: return 1089;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZM).ID: return 1047;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_XP).ID: return 1048;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZP).ID: return 1049;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_XM).ID: return 1050;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_YP).ID: return 1051;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_YM).ID: return 1052;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZM).ID: return 1053;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_XP).ID: return 1054;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZP).ID: return 1055;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_XM).ID: return 1056;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_YP).ID: return 1057;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_YM).ID: return 1058;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Normal).ID: return 1059;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Sticky).ID: return 1060;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Normal).ID: return 1061;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Sticky).ID: return 1062;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Normal).ID: return 1063;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Sticky).ID: return 1064;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Normal).ID: return 1065;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Sticky).ID: return 1066;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Normal).ID: return 1067;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Sticky).ID: return 1068;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Normal).ID: return 1069;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Sticky).ID: return 1070;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Normal).ID: return 1071;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Sticky).ID: return 1072;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Normal).ID: return 1073;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Sticky).ID: return 1074;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Normal).ID: return 1075;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Sticky).ID: return 1076;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Normal).ID: return 1077;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Sticky).ID: return 1078;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Normal).ID: return 1079;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Sticky).ID: return 1080;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Normal).ID: return 1081;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Sticky).ID: return 1082;
+ case PlayerHead::PlayerHead(0).ID: return 5511;
+ case PlayerHead::PlayerHead(1).ID: return 5512;
+ case PlayerHead::PlayerHead(2).ID: return 5513;
+ case PlayerHead::PlayerHead(3).ID: return 5514;
+ case PlayerHead::PlayerHead(4).ID: return 5515;
+ case PlayerHead::PlayerHead(5).ID: return 5516;
+ case PlayerHead::PlayerHead(6).ID: return 5517;
+ case PlayerHead::PlayerHead(7).ID: return 5518;
+ case PlayerHead::PlayerHead(8).ID: return 5519;
+ case PlayerHead::PlayerHead(9).ID: return 5520;
+ case PlayerHead::PlayerHead(10).ID: return 5521;
+ case PlayerHead::PlayerHead(11).ID: return 5522;
+ case PlayerHead::PlayerHead(12).ID: return 5523;
+ case PlayerHead::PlayerHead(13).ID: return 5524;
+ case PlayerHead::PlayerHead(14).ID: return 5525;
+ case PlayerHead::PlayerHead(15).ID: return 5526;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 5507;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 5508;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 5509;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 5510;
+ case Podzol::Podzol(true).ID: return 12;
+ case Podzol::Podzol(false).ID: return 13;
+ case PolishedAndesite::PolishedAndesite().ID: return 7;
+ case PolishedDiorite::PolishedDiorite().ID: return 5;
+ case PolishedGranite::PolishedGranite().ID: return 3;
+ case Poppy::Poppy().ID: return 1112;
+ case Potatoes::Potatoes(0).ID: return 5295;
+ case Potatoes::Potatoes(1).ID: return 5296;
+ case Potatoes::Potatoes(2).ID: return 5297;
+ case Potatoes::Potatoes(3).ID: return 5298;
+ case Potatoes::Potatoes(4).ID: return 5299;
+ case Potatoes::Potatoes(5).ID: return 5300;
+ case Potatoes::Potatoes(6).ID: return 5301;
+ case Potatoes::Potatoes(7).ID: return 5302;
+ case PottedAcaciaSapling::PottedAcaciaSapling().ID: return 5270;
+ case PottedAllium::PottedAllium().ID: return 5276;
+ case PottedAzureBluet::PottedAzureBluet().ID: return 5277;
+ case PottedBirchSapling::PottedBirchSapling().ID: return 5268;
+ case PottedBlueOrchid::PottedBlueOrchid().ID: return 5275;
+ case PottedBrownMushroom::PottedBrownMushroom().ID: return 5284;
+ case PottedCactus::PottedCactus().ID: return 5286;
+ case PottedDandelion::PottedDandelion().ID: return 5273;
+ case PottedDarkOakSapling::PottedDarkOakSapling().ID: return 5271;
+ case PottedDeadBush::PottedDeadBush().ID: return 5285;
+ case PottedFern::PottedFern().ID: return 5272;
+ case PottedJungleSapling::PottedJungleSapling().ID: return 5269;
+ case PottedOakSapling::PottedOakSapling().ID: return 5266;
+ case PottedOrangeTulip::PottedOrangeTulip().ID: return 5279;
+ case PottedOxeyeDaisy::PottedOxeyeDaisy().ID: return 5282;
+ case PottedPinkTulip::PottedPinkTulip().ID: return 5281;
+ case PottedPoppy::PottedPoppy().ID: return 5274;
+ case PottedRedMushroom::PottedRedMushroom().ID: return 5283;
+ case PottedRedTulip::PottedRedTulip().ID: return 5278;
+ case PottedSpruceSapling::PottedSpruceSapling().ID: return 5267;
+ case PottedWhiteTulip::PottedWhiteTulip().ID: return 5280;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::NorthSouth).ID: return 1004;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::EastWest).ID: return 1005;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingEast).ID: return 1006;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingWest).ID: return 1007;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingNorth).ID: return 1008;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingSouth).ID: return 1009;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::NorthSouth).ID: return 1010;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::EastWest).ID: return 1011;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingEast).ID: return 1012;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingWest).ID: return 1013;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingNorth).ID: return 1014;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingSouth).ID: return 1015;
+ case Prismarine::Prismarine().ID: return 6558;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Top).ID: return 6808;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Bottom).ID: return 6810;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Double).ID: return 6812;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 6642;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6644;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 6646;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6648;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 6650;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 6652;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6654;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 6656;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6658;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 6660;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 6662;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6664;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 6666;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6668;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 6670;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 6672;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6674;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 6676;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6678;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 6680;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 6682;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6684;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 6686;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6688;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 6690;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 6692;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6694;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 6696;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6698;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 6700;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 6702;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6704;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 6706;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6708;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 6710;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 6712;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6714;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 6716;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6718;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 6720;
+ case PrismarineBricks::PrismarineBricks().ID: return 6559;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Top).ID: return 6802;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Bottom).ID: return 6804;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Double).ID: return 6806;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 6562;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 6564;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 6566;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 6568;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 6570;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 6572;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 6574;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 6576;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 6578;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 6580;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 6582;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 6584;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 6586;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 6588;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 6590;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 6592;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 6594;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 6596;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 6598;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 6600;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 6602;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 6604;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 6606;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 6608;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 6610;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 6612;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 6614;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 6616;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 6618;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 6620;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 6622;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 6624;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 6626;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 6628;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 6630;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 6632;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 6634;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 6636;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 6638;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 6640;
+ case Pumpkin::Pumpkin().ID: return 3492;
+ case PumpkinStem::PumpkinStem(0).ID: return 4252;
+ case PumpkinStem::PumpkinStem(1).ID: return 4253;
+ case PumpkinStem::PumpkinStem(2).ID: return 4254;
+ case PumpkinStem::PumpkinStem(3).ID: return 4255;
+ case PumpkinStem::PumpkinStem(4).ID: return 4256;
+ case PumpkinStem::PumpkinStem(5).ID: return 4257;
+ case PumpkinStem::PumpkinStem(6).ID: return 4258;
+ case PumpkinStem::PumpkinStem(7).ID: return 4259;
+ case PurpleBanner::PurpleBanner(0).ID: return 7014;
+ case PurpleBanner::PurpleBanner(1).ID: return 7015;
+ case PurpleBanner::PurpleBanner(2).ID: return 7016;
+ case PurpleBanner::PurpleBanner(3).ID: return 7017;
+ case PurpleBanner::PurpleBanner(4).ID: return 7018;
+ case PurpleBanner::PurpleBanner(5).ID: return 7019;
+ case PurpleBanner::PurpleBanner(6).ID: return 7020;
+ case PurpleBanner::PurpleBanner(7).ID: return 7021;
+ case PurpleBanner::PurpleBanner(8).ID: return 7022;
+ case PurpleBanner::PurpleBanner(9).ID: return 7023;
+ case PurpleBanner::PurpleBanner(10).ID: return 7024;
+ case PurpleBanner::PurpleBanner(11).ID: return 7025;
+ case PurpleBanner::PurpleBanner(12).ID: return 7026;
+ case PurpleBanner::PurpleBanner(13).ID: return 7027;
+ case PurpleBanner::PurpleBanner(14).ID: return 7028;
+ case PurpleBanner::PurpleBanner(15).ID: return 7029;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Head).ID: return 908;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Foot).ID: return 909;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Head).ID: return 910;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Foot).ID: return 911;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Head).ID: return 912;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Foot).ID: return 913;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Head).ID: return 914;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Foot).ID: return 915;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Head).ID: return 916;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Foot).ID: return 917;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Head).ID: return 918;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Foot).ID: return 919;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Head).ID: return 920;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Foot).ID: return 921;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Head).ID: return 922;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Foot).ID: return 923;
+ case PurpleCarpet::PurpleCarpet().ID: return 6833;
+ case PurpleConcrete::PurpleConcrete().ID: return 8387;
+ case PurpleConcretePowder::PurpleConcretePowder().ID: return 8403;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8353;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8354;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8355;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8356;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8277;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8278;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8279;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8280;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8281;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8282;
+ case PurpleStainedGlass::PurpleStainedGlass().ID: return 3587;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, true).ID: return 6142;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, false).ID: return 6143;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, true).ID: return 6146;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, false).ID: return 6147;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, true).ID: return 6150;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, false).ID: return 6151;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, true).ID: return 6154;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, false).ID: return 6155;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, true).ID: return 6158;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, false).ID: return 6159;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, true).ID: return 6162;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, false).ID: return 6163;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, true).ID: return 6166;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, false).ID: return 6167;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, true).ID: return 6170;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, false).ID: return 6171;
+ case PurpleTerracotta::PurpleTerracotta().ID: return 5814;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7150;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7151;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7152;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7153;
+ case PurpleWool::PurpleWool().ID: return 1093;
+ case PurpurBlock::PurpurBlock().ID: return 8073;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::X).ID: return 8074;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Y).ID: return 8075;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Z).ID: return 8076;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Top).ID: return 7348;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Bottom).ID: return 7350;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Double).ID: return 7352;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8078;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8080;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8082;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8084;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8086;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8088;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8090;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8092;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8094;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8096;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8098;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8100;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8102;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8104;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8106;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8108;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8110;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8112;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8114;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8116;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8118;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8120;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8122;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8124;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8126;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8128;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8130;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8132;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8134;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8136;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8138;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8140;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8142;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8144;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8146;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8148;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8150;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8152;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8154;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8156;
+ case QuartzBlock::QuartzBlock().ID: return 5695;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::X).ID: return 5697;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Y).ID: return 5698;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Z).ID: return 5699;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Top).ID: return 7336;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Bottom).ID: return 7338;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Double).ID: return 7340;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 5701;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 5703;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 5705;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 5707;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 5709;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 5711;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 5713;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 5715;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 5717;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 5719;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 5721;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 5723;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 5725;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 5727;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 5729;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 5731;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 5733;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 5735;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 5737;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 5739;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 5741;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 5743;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 5745;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 5747;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 5749;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 5751;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 5753;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 5755;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 5757;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 5759;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 5761;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 5763;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 5765;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 5767;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 5769;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 5771;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 5773;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 5775;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 5777;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 5779;
+ case Rail::Rail(Rail::Shape::NorthSouth).ID: return 3179;
+ case Rail::Rail(Rail::Shape::EastWest).ID: return 3180;
+ case Rail::Rail(Rail::Shape::AscendingEast).ID: return 3181;
+ case Rail::Rail(Rail::Shape::AscendingWest).ID: return 3182;
+ case Rail::Rail(Rail::Shape::AscendingNorth).ID: return 3183;
+ case Rail::Rail(Rail::Shape::AscendingSouth).ID: return 3184;
+ case Rail::Rail(Rail::Shape::SouthEast).ID: return 3185;
+ case Rail::Rail(Rail::Shape::SouthWest).ID: return 3186;
+ case Rail::Rail(Rail::Shape::NorthWest).ID: return 3187;
+ case Rail::Rail(Rail::Shape::NorthEast).ID: return 3188;
+ case RedBanner::RedBanner(0).ID: return 7078;
+ case RedBanner::RedBanner(1).ID: return 7079;
+ case RedBanner::RedBanner(2).ID: return 7080;
+ case RedBanner::RedBanner(3).ID: return 7081;
+ case RedBanner::RedBanner(4).ID: return 7082;
+ case RedBanner::RedBanner(5).ID: return 7083;
+ case RedBanner::RedBanner(6).ID: return 7084;
+ case RedBanner::RedBanner(7).ID: return 7085;
+ case RedBanner::RedBanner(8).ID: return 7086;
+ case RedBanner::RedBanner(9).ID: return 7087;
+ case RedBanner::RedBanner(10).ID: return 7088;
+ case RedBanner::RedBanner(11).ID: return 7089;
+ case RedBanner::RedBanner(12).ID: return 7090;
+ case RedBanner::RedBanner(13).ID: return 7091;
+ case RedBanner::RedBanner(14).ID: return 7092;
+ case RedBanner::RedBanner(15).ID: return 7093;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Head).ID: return 972;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Foot).ID: return 973;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Head).ID: return 974;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Foot).ID: return 975;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Head).ID: return 976;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Foot).ID: return 977;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Head).ID: return 978;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Foot).ID: return 979;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Head).ID: return 980;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Foot).ID: return 981;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Head).ID: return 982;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Foot).ID: return 983;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Head).ID: return 984;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Foot).ID: return 985;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Head).ID: return 986;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Foot).ID: return 987;
+ case RedCarpet::RedCarpet().ID: return 6837;
+ case RedConcrete::RedConcrete().ID: return 8391;
+ case RedConcretePowder::RedConcretePowder().ID: return 8407;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8369;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8370;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8371;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8372;
+ case RedMushroom::RedMushroom().ID: return 1122;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, true).ID: return 4051;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, false).ID: return 4052;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, true).ID: return 4053;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, false).ID: return 4054;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, true).ID: return 4055;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, false).ID: return 4056;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, true).ID: return 4057;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, false).ID: return 4058;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, true).ID: return 4059;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, false).ID: return 4060;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, true).ID: return 4061;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, false).ID: return 4062;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, true).ID: return 4063;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, false).ID: return 4064;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, true).ID: return 4065;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, false).ID: return 4066;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, true).ID: return 4067;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, false).ID: return 4068;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, true).ID: return 4069;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, false).ID: return 4070;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, true).ID: return 4071;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, false).ID: return 4072;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, true).ID: return 4073;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, false).ID: return 4074;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, true).ID: return 4075;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, false).ID: return 4076;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, true).ID: return 4077;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, false).ID: return 4078;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, true).ID: return 4079;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, false).ID: return 4080;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, true).ID: return 4081;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, false).ID: return 4082;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, true).ID: return 4083;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, false).ID: return 4084;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, true).ID: return 4085;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, false).ID: return 4086;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, true).ID: return 4087;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, false).ID: return 4088;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, true).ID: return 4089;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, false).ID: return 4090;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, true).ID: return 4091;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, false).ID: return 4092;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, true).ID: return 4093;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, false).ID: return 4094;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, true).ID: return 4095;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, false).ID: return 4096;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, true).ID: return 4097;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, false).ID: return 4098;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, true).ID: return 4099;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, false).ID: return 4100;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, true).ID: return 4101;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, false).ID: return 4102;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, true).ID: return 4103;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, false).ID: return 4104;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, true).ID: return 4105;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, false).ID: return 4106;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, true).ID: return 4107;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, false).ID: return 4108;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, true).ID: return 4109;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, false).ID: return 4110;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, true).ID: return 4111;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, false).ID: return 4112;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, true).ID: return 4113;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false).ID: return 4114;
+ case RedNetherBricks::RedNetherBricks().ID: return 8194;
+ case RedSand::RedSand().ID: return 67;
+ case RedSandstone::RedSandstone().ID: return 7174;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Top).ID: return 7342;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Bottom).ID: return 7344;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Double).ID: return 7346;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7178;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7180;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7182;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7184;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7186;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7188;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7190;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7192;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7194;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7196;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7198;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7200;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7202;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7204;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7206;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7208;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7210;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7212;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7214;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7216;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7218;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7220;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7222;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7224;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7226;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7228;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7230;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7232;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7234;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7236;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7238;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7240;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7242;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7244;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7246;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7248;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7250;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7252;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7254;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7256;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8301;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8302;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8303;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8304;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8305;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8306;
+ case RedStainedGlass::RedStainedGlass().ID: return 3591;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, true, true).ID: return 6270;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, true, false).ID: return 6271;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, false, true).ID: return 6274;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, false, false).ID: return 6275;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, true, true).ID: return 6278;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, true, false).ID: return 6279;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, false, true).ID: return 6282;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, false, false).ID: return 6283;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, true, true).ID: return 6286;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, true, false).ID: return 6287;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, false, true).ID: return 6290;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, false, false).ID: return 6291;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, true, true).ID: return 6294;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, true, false).ID: return 6295;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, false, true).ID: return 6298;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, false, false).ID: return 6299;
+ case RedTerracotta::RedTerracotta().ID: return 5818;
+ case RedTulip::RedTulip().ID: return 1116;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7166;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7167;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7168;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7169;
+ case RedWool::RedWool().ID: return 1097;
+ case RedstoneBlock::RedstoneBlock().ID: return 5683;
+ case RedstoneLamp::RedstoneLamp(true).ID: return 4636;
+ case RedstoneLamp::RedstoneLamp(false).ID: return 4637;
+ case RedstoneOre::RedstoneOre(true).ID: return 3379;
+ case RedstoneOre::RedstoneOre(false).ID: return 3380;
+ case RedstoneTorch::RedstoneTorch(true).ID: return 3381;
+ case RedstoneTorch::RedstoneTorch(false).ID: return 3382;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, true).ID: return 3383;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, false).ID: return 3384;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, true).ID: return 3385;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, false).ID: return 3386;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, true).ID: return 3387;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, false).ID: return 3388;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, true).ID: return 3389;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, false).ID: return 3390;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1752;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1753;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1754;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1755;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1756;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1757;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1758;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1759;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1760;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1761;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1762;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1763;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1764;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1765;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1766;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1767;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1768;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1769;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1770;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1771;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1772;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1773;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1774;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1775;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1776;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1777;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1778;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1779;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1780;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1781;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1782;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1783;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1784;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1785;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1786;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1787;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1788;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1789;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1790;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1791;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1792;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1793;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1794;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1795;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1796;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1797;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1798;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1799;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1800;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1801;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1802;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1803;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1804;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1805;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1806;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1807;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1808;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1809;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1810;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1811;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1812;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1813;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1814;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1815;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1816;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1817;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1818;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1819;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1820;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1821;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1822;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1823;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1824;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1825;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1826;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1827;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1828;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1829;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1830;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1831;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1832;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1833;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1834;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1835;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1836;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1837;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1838;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1839;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1840;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1841;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1842;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1843;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1844;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1845;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1846;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1847;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1848;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1849;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1850;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1851;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1852;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1853;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1854;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1855;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1856;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1857;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1858;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1859;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1860;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1861;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1862;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1863;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1864;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1865;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1866;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1867;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1868;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1869;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1870;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1871;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1872;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1873;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1874;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1875;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1876;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1877;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1878;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1879;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1880;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1881;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1882;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1883;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1884;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1885;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1886;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1887;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1888;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1889;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1890;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1891;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1892;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1893;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1894;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1895;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1896;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1897;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1898;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1899;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1900;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1901;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1902;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1903;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1904;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1905;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1906;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1907;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1908;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1909;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1910;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1911;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1912;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1913;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1914;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1915;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1916;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1917;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1918;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1919;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1920;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1921;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1922;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1923;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1924;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1925;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1926;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1927;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1928;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1929;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1930;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1931;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1932;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1933;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1934;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1935;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1936;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1937;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1938;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1939;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1940;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1941;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1942;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1943;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1944;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1945;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1946;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1947;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1948;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1949;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1950;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1951;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1952;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1953;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1954;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1955;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1956;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1957;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1958;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1959;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1960;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1961;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1962;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1963;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1964;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1965;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1966;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1967;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1968;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1969;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1970;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1971;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1972;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1973;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1974;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1975;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1976;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1977;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1978;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1979;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1980;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1981;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1982;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1983;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1984;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1985;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1986;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1987;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1988;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1989;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1990;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1991;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1992;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1993;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1994;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1995;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1996;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1997;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1998;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1999;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2000;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2001;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2002;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2003;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2004;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2005;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2006;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2007;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2008;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2009;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2010;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2011;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2012;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2013;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2014;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2015;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2016;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2017;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2018;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2019;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2020;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2021;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2022;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2023;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2024;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2025;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2026;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2027;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2028;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2029;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2030;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2031;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2032;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2033;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2034;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2035;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2036;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2037;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2038;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2039;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2040;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2041;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2042;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2043;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2044;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2045;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2046;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2047;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2048;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2049;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2050;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2051;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2052;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2053;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2054;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2055;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2056;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2057;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2058;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2059;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2060;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2061;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2062;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2063;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2064;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2065;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2066;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2067;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2068;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2069;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2070;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2071;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2072;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2073;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2074;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2075;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2076;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2077;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2078;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2079;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2080;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2081;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2082;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2083;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2084;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2085;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2086;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2087;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2088;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2089;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2090;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2091;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2092;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2093;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2094;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2095;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2096;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2097;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2098;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2099;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2100;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2101;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2102;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2103;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2104;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2105;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2106;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2107;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2108;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2109;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2110;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2111;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2112;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2113;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2114;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2115;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2116;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2117;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2118;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2119;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2120;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2121;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2122;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2123;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2124;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2125;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2126;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2127;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2128;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2129;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2130;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2131;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2132;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2133;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2134;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2135;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2136;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2137;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2138;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2139;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2140;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2141;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2142;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2143;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2144;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2145;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2146;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2147;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2148;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2149;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2150;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2151;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2152;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2153;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2154;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2155;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2156;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2157;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2158;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2159;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2160;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2161;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2162;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2163;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2164;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2165;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2166;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2167;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2168;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2169;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2170;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2171;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2172;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2173;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2174;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2175;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2176;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2177;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2178;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2179;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2180;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2181;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2182;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2183;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2184;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2185;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2186;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2187;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2188;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2189;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2190;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2191;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2192;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2193;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2194;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2195;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2196;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2197;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2198;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2199;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2200;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2201;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2202;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2203;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2204;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2205;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2206;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2207;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2208;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2209;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2210;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2211;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2212;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2213;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2214;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2215;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2216;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2217;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2218;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2219;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2220;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2221;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2222;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2223;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2224;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2225;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2226;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2227;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2228;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2229;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2230;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2231;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2232;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2233;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2234;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2235;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2236;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2237;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2238;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2239;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2240;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2241;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2242;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2243;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2244;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2245;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2246;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2247;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2248;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2249;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2250;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2251;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2252;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2253;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2254;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2255;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2256;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2257;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2258;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2259;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2260;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2261;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2262;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2263;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2264;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2265;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2266;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2267;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2268;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2269;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2270;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2271;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2272;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2273;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2274;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2275;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2276;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2277;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2278;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2279;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2280;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2281;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2282;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2283;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2284;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2285;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2286;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2287;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2288;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2289;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2290;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2291;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2292;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2293;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2294;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2295;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2296;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2297;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2298;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2299;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2300;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2301;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2302;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2303;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2304;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2305;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2306;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2307;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2308;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2309;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2310;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2311;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2312;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2313;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2314;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2315;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2316;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2317;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2318;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2319;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2320;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2321;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2322;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2323;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2324;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2325;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2326;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2327;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2328;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2329;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2330;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2331;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2332;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2333;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2334;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2335;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2336;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2337;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2338;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2339;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2340;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2341;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2342;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2343;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2344;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2345;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2346;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2347;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2348;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2349;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2350;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2351;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2352;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2353;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2354;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2355;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2356;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2357;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2358;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2359;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2360;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2361;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2362;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2363;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2364;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2365;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2366;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2367;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2368;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2369;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2370;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2371;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2372;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2373;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2374;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2375;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2376;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2377;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2378;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2379;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2380;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2381;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2382;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2383;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2384;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2385;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2386;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2387;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2388;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2389;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2390;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2391;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2392;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2393;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2394;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2395;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2396;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2397;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2398;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2399;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2400;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2401;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2402;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2403;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2404;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2405;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2406;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2407;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2408;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2409;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2410;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2411;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2412;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2413;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2414;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2415;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2416;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2417;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2418;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2419;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2420;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2421;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2422;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2423;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2424;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2425;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2426;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2427;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2428;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2429;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2430;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2431;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2432;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2433;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2434;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2435;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2436;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2437;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2438;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2439;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2440;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2441;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2442;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2443;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2444;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2445;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2446;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2447;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2448;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2449;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2450;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2451;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2452;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2453;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2454;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2455;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2456;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2457;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2458;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2459;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2460;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2461;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2462;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2463;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2464;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2465;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2466;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2467;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2468;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2469;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2470;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2471;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2472;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2473;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2474;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2475;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2476;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2477;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2478;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2479;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2480;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2481;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2482;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2483;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2484;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2485;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2486;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2487;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2488;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2489;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2490;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2491;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2492;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2493;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2494;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2495;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2496;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2497;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2498;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2499;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2500;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2501;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2502;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2503;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2504;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2505;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2506;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2507;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2508;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2509;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2510;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2511;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2512;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2513;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2514;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2515;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2516;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2517;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2518;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2519;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2520;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2521;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2522;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2523;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2524;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2525;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2526;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2527;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2528;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2529;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2530;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2531;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2532;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2533;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2534;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2535;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2536;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2537;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2538;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2539;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2540;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2541;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2542;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2543;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2544;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2545;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2546;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2547;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2548;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2549;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2550;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2551;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2552;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2553;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2554;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2555;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2556;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2557;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2558;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2559;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2560;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2561;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2562;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2563;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2564;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2565;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2566;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2567;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2568;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2569;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2570;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2571;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2572;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2573;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2574;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2575;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2576;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2577;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2578;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2579;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2580;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2581;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2582;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2583;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2584;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2585;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2586;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2587;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2588;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2589;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2590;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2591;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2592;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2593;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2594;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2595;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2596;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2597;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2598;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2599;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2600;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2601;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2602;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2603;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2604;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2605;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2606;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2607;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2608;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2609;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2610;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2611;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2612;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2613;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2614;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2615;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2616;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2617;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2618;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2619;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2620;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2621;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2622;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2623;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2624;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2625;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2626;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2627;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2628;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2629;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2630;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2631;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2632;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2633;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2634;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2635;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2636;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2637;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2638;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2639;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2640;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2641;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2642;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2643;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2644;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2645;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2646;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2647;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2648;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2649;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2650;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2651;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2652;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2653;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2654;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2655;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2656;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2657;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2658;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2659;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2660;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2661;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2662;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2663;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2664;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2665;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2666;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2667;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2668;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2669;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2670;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2671;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2672;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2673;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2674;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2675;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2676;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2677;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2678;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2679;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2680;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2681;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2682;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2683;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2684;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2685;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2686;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2687;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2688;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2689;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2690;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2691;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2692;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2693;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2694;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2695;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2696;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2697;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2698;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2699;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2700;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2701;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2702;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2703;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2704;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2705;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2706;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2707;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2708;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2709;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2710;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2711;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2712;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2713;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2714;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2715;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2716;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2717;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2718;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2719;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2720;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2721;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2722;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2723;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2724;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2725;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2726;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2727;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2728;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2729;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2730;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2731;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2732;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2733;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2734;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2735;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2736;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2737;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2738;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2739;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2740;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2741;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2742;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2743;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2744;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2745;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2746;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2747;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2748;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2749;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2750;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2751;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2752;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2753;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2754;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2755;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2756;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2757;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2758;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2759;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2760;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2761;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2762;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2763;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2764;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2765;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2766;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2767;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2768;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2769;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2770;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2771;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2772;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2773;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2774;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2775;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2776;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2777;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2778;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2779;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2780;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2781;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2782;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2783;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2784;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2785;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2786;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2787;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2788;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2789;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2790;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2791;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2792;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2793;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2794;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2795;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2796;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2797;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2798;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2799;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2800;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2801;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2802;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2803;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2804;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2805;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2806;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2807;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2808;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2809;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2810;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2811;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2812;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2813;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2814;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2815;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2816;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2817;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2818;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2819;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2820;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2821;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2822;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2823;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2824;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2825;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2826;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2827;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2828;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2829;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2830;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2831;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2832;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2833;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2834;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2835;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2836;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2837;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2838;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2839;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2840;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2841;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2842;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2843;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2844;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2845;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2846;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2847;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2848;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2849;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2850;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2851;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2852;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2853;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2854;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2855;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2856;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2857;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2858;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2859;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2860;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2861;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2862;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2863;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2864;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2865;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2866;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2867;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2868;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2869;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2870;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2871;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2872;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2873;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2874;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2875;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2876;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2877;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2878;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2879;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2880;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2881;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2882;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2883;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2884;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2885;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2886;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2887;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2888;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2889;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2890;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2891;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2892;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2893;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2894;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2895;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2896;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2897;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2898;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2899;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2900;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2901;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2902;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2903;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2904;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2905;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2906;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2907;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2908;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2909;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2910;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2911;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2912;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2913;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2914;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2915;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2916;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2917;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2918;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2919;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2920;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2921;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2922;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2923;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2924;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2925;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2926;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2927;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2928;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2929;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2930;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2931;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2932;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2933;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2934;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2935;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2936;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2937;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2938;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2939;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2940;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2941;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2942;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2943;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2944;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2945;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2946;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2947;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2948;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2949;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2950;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2951;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2952;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2953;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2954;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2955;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2956;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2957;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2958;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2959;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2960;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2961;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2962;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2963;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2964;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2965;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2966;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2967;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2968;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2969;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2970;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2971;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2972;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2973;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2974;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2975;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2976;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2977;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2978;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2979;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2980;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2981;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2982;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2983;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2984;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2985;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2986;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2987;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2988;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2989;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2990;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2991;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2992;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2993;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2994;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2995;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2996;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2997;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2998;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2999;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3000;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3001;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3002;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3003;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3004;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3005;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3006;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3007;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3008;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3009;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3010;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3011;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3012;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3013;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3014;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3015;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3016;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3017;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3018;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3019;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3020;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3021;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3022;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3023;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3024;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3025;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3026;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3027;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3028;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3029;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3030;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3031;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3032;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3033;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3034;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3035;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3036;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3037;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3038;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3039;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3040;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3041;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3042;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3043;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3044;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3045;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3046;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3047;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 3513;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 3514;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 3515;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 3516;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 3517;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 3518;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 3519;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 3520;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 3521;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 3522;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 3523;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 3524;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 3525;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 3526;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 3527;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 3528;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 3529;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 3530;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 3531;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 3532;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 3533;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 3534;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 3535;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 3536;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 3537;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 3538;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 3539;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 3540;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 3541;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 3542;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 3543;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 3544;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 3545;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 3546;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 3547;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 3548;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 3549;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 3550;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 3551;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 3552;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 3553;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 3554;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 3555;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 3556;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 3557;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 3558;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 3559;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 3560;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 3561;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 3562;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 3563;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 3564;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 3565;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 3566;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 3567;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 3568;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 3569;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 3570;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 3571;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 3572;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 3573;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 3574;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 3575;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 3576;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 8164;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 8165;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 8166;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 8167;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 8168;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 8169;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 8170;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 8171;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 8172;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 8173;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 8174;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 8175;
+ case RoseBush::RoseBush(RoseBush::Half::Upper).ID: return 6846;
+ case RoseBush::RoseBush(RoseBush::Half::Lower).ID: return 6847;
+ case Sand::Sand().ID: return 66;
+ case Sandstone::Sandstone().ID: return 245;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Top).ID: return 7300;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Bottom).ID: return 7302;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Double).ID: return 7304;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 4651;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 4653;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 4655;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 4657;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 4659;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 4661;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 4663;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 4665;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 4667;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 4669;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 4671;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 4673;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 4675;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 4677;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 4679;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 4681;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 4683;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 4685;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 4687;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 4689;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 4691;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 4693;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 4695;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 4697;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 4699;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 4701;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 4703;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 4705;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 4707;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 4709;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 4711;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 4713;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 4715;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 4717;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 4719;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 4721;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 4723;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 4725;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 4727;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 4729;
+ case SeaLantern::SeaLantern().ID: return 6819;
+ case SeaPickle::SeaPickle(1).ID: return 8565;
+ case SeaPickle::SeaPickle(2).ID: return 8567;
+ case SeaPickle::SeaPickle(3).ID: return 8569;
+ case SeaPickle::SeaPickle(4).ID: return 8571;
+ case Seagrass::Seagrass().ID: return 1044;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8211;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8212;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8213;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8214;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8215;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8216;
+ case OakSign::OakSign(0).ID: return 3076;
+ case OakSign::OakSign(1).ID: return 3078;
+ case OakSign::OakSign(2).ID: return 3080;
+ case OakSign::OakSign(3).ID: return 3082;
+ case OakSign::OakSign(4).ID: return 3084;
+ case OakSign::OakSign(5).ID: return 3086;
+ case OakSign::OakSign(6).ID: return 3088;
+ case OakSign::OakSign(7).ID: return 3090;
+ case OakSign::OakSign(8).ID: return 3092;
+ case OakSign::OakSign(9).ID: return 3094;
+ case OakSign::OakSign(10).ID: return 3096;
+ case OakSign::OakSign(11).ID: return 3098;
+ case OakSign::OakSign(12).ID: return 3100;
+ case OakSign::OakSign(13).ID: return 3102;
+ case OakSign::OakSign(14).ID: return 3104;
+ case OakSign::OakSign(15).ID: return 3106;
+ case SkeletonSkull::SkeletonSkull(0).ID: return 5451;
+ case SkeletonSkull::SkeletonSkull(1).ID: return 5452;
+ case SkeletonSkull::SkeletonSkull(2).ID: return 5453;
+ case SkeletonSkull::SkeletonSkull(3).ID: return 5454;
+ case SkeletonSkull::SkeletonSkull(4).ID: return 5455;
+ case SkeletonSkull::SkeletonSkull(5).ID: return 5456;
+ case SkeletonSkull::SkeletonSkull(6).ID: return 5457;
+ case SkeletonSkull::SkeletonSkull(7).ID: return 5458;
+ case SkeletonSkull::SkeletonSkull(8).ID: return 5459;
+ case SkeletonSkull::SkeletonSkull(9).ID: return 5460;
+ case SkeletonSkull::SkeletonSkull(10).ID: return 5461;
+ case SkeletonSkull::SkeletonSkull(11).ID: return 5462;
+ case SkeletonSkull::SkeletonSkull(12).ID: return 5463;
+ case SkeletonSkull::SkeletonSkull(13).ID: return 5464;
+ case SkeletonSkull::SkeletonSkull(14).ID: return 5465;
+ case SkeletonSkull::SkeletonSkull(15).ID: return 5466;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM).ID: return 5447;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP).ID: return 5448;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XM).ID: return 5449;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XP).ID: return 5450;
+ case SlimeBlock::SlimeBlock().ID: return 6492;
+ case SmoothQuartz::SmoothQuartz().ID: return 7355;
+ case SmoothRedSandstone::SmoothRedSandstone().ID: return 7356;
+ case SmoothSandstone::SmoothSandstone().ID: return 7354;
+ case SmoothStone::SmoothStone().ID: return 7353;
+ case Snow::Snow(1).ID: return 3415;
+ case Snow::Snow(2).ID: return 3416;
+ case Snow::Snow(3).ID: return 3417;
+ case Snow::Snow(4).ID: return 3418;
+ case Snow::Snow(5).ID: return 3419;
+ case Snow::Snow(6).ID: return 3420;
+ case Snow::Snow(7).ID: return 3421;
+ case Snow::Snow(8).ID: return 3422;
+ case SnowBlock::SnowBlock().ID: return 3424;
+ case SoulSand::SoulSand().ID: return 3494;
+ case Spawner::Spawner().ID: return 1647;
+ case Sponge::Sponge().ID: return 228;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5327;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5328;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5329;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5330;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5331;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5332;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5333;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5334;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5335;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5336;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5337;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5338;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5339;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5340;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5341;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5342;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5343;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5344;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5345;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5346;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5347;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5348;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5349;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5350;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 7677;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 7678;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 7679;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 7680;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 7681;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 7682;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 7683;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 7684;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 7685;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 7686;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 7687;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 7688;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 7689;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 7690;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 7691;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 7692;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 7693;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 7694;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 7695;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 7696;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 7697;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 7698;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 7699;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 7700;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 7701;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 7702;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 7703;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 7704;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 7705;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 7706;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 7707;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 7708;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 7709;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 7710;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 7711;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 7712;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 7713;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 7714;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 7715;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 7716;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 7717;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 7718;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 7719;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 7720;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 7721;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 7722;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 7723;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 7724;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 7725;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 7726;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 7727;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 7728;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 7729;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 7730;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 7731;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 7732;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 7733;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 7734;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 7735;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 7736;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 7737;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 7738;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 7739;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 7740;
+ case SpruceFence::SpruceFence(true, true, true, true).ID: return 7519;
+ case SpruceFence::SpruceFence(true, true, true, false).ID: return 7520;
+ case SpruceFence::SpruceFence(true, true, false, true).ID: return 7523;
+ case SpruceFence::SpruceFence(true, true, false, false).ID: return 7524;
+ case SpruceFence::SpruceFence(true, false, true, true).ID: return 7527;
+ case SpruceFence::SpruceFence(true, false, true, false).ID: return 7528;
+ case SpruceFence::SpruceFence(true, false, false, true).ID: return 7531;
+ case SpruceFence::SpruceFence(true, false, false, false).ID: return 7532;
+ case SpruceFence::SpruceFence(false, true, true, true).ID: return 7535;
+ case SpruceFence::SpruceFence(false, true, true, false).ID: return 7536;
+ case SpruceFence::SpruceFence(false, true, false, true).ID: return 7539;
+ case SpruceFence::SpruceFence(false, true, false, false).ID: return 7540;
+ case SpruceFence::SpruceFence(false, false, true, true).ID: return 7543;
+ case SpruceFence::SpruceFence(false, false, true, false).ID: return 7544;
+ case SpruceFence::SpruceFence(false, false, false, true).ID: return 7547;
+ case SpruceFence::SpruceFence(false, false, false, false).ID: return 7548;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7357;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7358;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7359;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7360;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7361;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7362;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7363;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7364;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7365;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7366;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7367;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7368;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7369;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7370;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7371;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7372;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7373;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7374;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7375;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7376;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7377;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7378;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7379;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7380;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7381;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7382;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7383;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7384;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7385;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7386;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7387;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7388;
+ case SpruceLeaves::SpruceLeaves(1, true).ID: return 158;
+ case SpruceLeaves::SpruceLeaves(1, false).ID: return 159;
+ case SpruceLeaves::SpruceLeaves(2, true).ID: return 160;
+ case SpruceLeaves::SpruceLeaves(2, false).ID: return 161;
+ case SpruceLeaves::SpruceLeaves(3, true).ID: return 162;
+ case SpruceLeaves::SpruceLeaves(3, false).ID: return 163;
+ case SpruceLeaves::SpruceLeaves(4, true).ID: return 164;
+ case SpruceLeaves::SpruceLeaves(4, false).ID: return 165;
+ case SpruceLeaves::SpruceLeaves(5, true).ID: return 166;
+ case SpruceLeaves::SpruceLeaves(5, false).ID: return 167;
+ case SpruceLeaves::SpruceLeaves(6, true).ID: return 168;
+ case SpruceLeaves::SpruceLeaves(6, false).ID: return 169;
+ case SpruceLeaves::SpruceLeaves(7, true).ID: return 170;
+ case SpruceLeaves::SpruceLeaves(7, false).ID: return 171;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::X).ID: return 75;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::Y).ID: return 76;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::Z).ID: return 77;
+ case SprucePlanks::SprucePlanks().ID: return 16;
+ case SprucePressurePlate::SprucePressurePlate(true).ID: return 3369;
+ case SprucePressurePlate::SprucePressurePlate(false).ID: return 3370;
+ case SpruceSapling::SpruceSapling(0).ID: return 23;
+ case SpruceSapling::SpruceSapling(1).ID: return 24;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Top).ID: return 7264;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Bottom).ID: return 7266;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Double).ID: return 7268;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 4885;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 4887;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 4889;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 4891;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 4893;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 4895;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 4897;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 4899;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 4901;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 4903;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 4905;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 4907;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 4909;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 4911;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 4913;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 4915;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 4917;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 4919;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 4921;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 4923;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 4925;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 4927;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 4929;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 4931;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 4933;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 4935;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 4937;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 4939;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 4941;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 4943;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 4945;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 4947;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 4949;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 4951;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 4953;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 4955;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 4957;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 4959;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 4961;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 4963;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, true).ID: return 3658;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, false).ID: return 3660;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, true).ID: return 3662;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, false).ID: return 3664;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, true).ID: return 3666;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, false).ID: return 3668;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, true).ID: return 3670;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, false).ID: return 3672;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, true).ID: return 3674;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, false).ID: return 3676;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, true).ID: return 3678;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, false).ID: return 3680;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, true).ID: return 3682;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, false).ID: return 3684;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, true).ID: return 3686;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, false).ID: return 3688;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, true).ID: return 3690;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, false).ID: return 3692;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, true).ID: return 3694;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, false).ID: return 3696;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, true).ID: return 3698;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, false).ID: return 3700;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, true).ID: return 3702;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, false).ID: return 3704;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, true).ID: return 3706;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, false).ID: return 3708;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, true).ID: return 3710;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, false).ID: return 3712;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, true).ID: return 3714;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, false).ID: return 3716;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, true).ID: return 3718;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, false).ID: return 3720;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::X).ID: return 111;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::Y).ID: return 112;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::Z).ID: return 113;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZM).ID: return 1028;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XP).ID: return 1029;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZP).ID: return 1030;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XM).ID: return 1031;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YP).ID: return 1032;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YM).ID: return 1033;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZM).ID: return 1034;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XP).ID: return 1035;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZP).ID: return 1036;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XM).ID: return 1037;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YP).ID: return 1038;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YM).ID: return 1039;
+ case Stone::Stone().ID: return 1;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Top).ID: return 7324;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Bottom).ID: return 7326;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double).ID: return 7328;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4413;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4415;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4417;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4419;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4421;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4423;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4425;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4427;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4429;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4431;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4433;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4435;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4437;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4439;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4441;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4443;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4445;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4447;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4449;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4451;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4453;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4455;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4457;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4459;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4461;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4463;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4465;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4467;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4469;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4471;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4473;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4475;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4477;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4479;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4481;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4483;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4485;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4487;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4489;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4491;
+ case StoneBricks::StoneBricks().ID: return 3983;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3391;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3392;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3393;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3394;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 3395;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 3396;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 3397;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 3398;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3399;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3400;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3401;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3402;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 3403;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 3404;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 3405;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 3406;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3407;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3408;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3409;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3410;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 3411;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 3412;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 3413;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 3414;
+ case StonePressurePlate::StonePressurePlate(true).ID: return 3301;
+ case StonePressurePlate::StonePressurePlate(false).ID: return 3302;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Top).ID: return 7294;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Bottom).ID: return 7296;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Double).ID: return 7298;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::X).ID: return 99;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Y).ID: return 100;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Z).ID: return 101;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::X).ID: return 138;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Y).ID: return 139;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Z).ID: return 140;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::X).ID: return 93;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Y).ID: return 94;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Z).ID: return 95;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::X).ID: return 132;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Y).ID: return 133;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Z).ID: return 134;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::X).ID: return 102;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Y).ID: return 103;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Z).ID: return 104;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::X).ID: return 141;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Y).ID: return 142;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Z).ID: return 143;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::X).ID: return 96;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Y).ID: return 97;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Z).ID: return 98;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::X).ID: return 135;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Y).ID: return 136;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Z).ID: return 137;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::X).ID: return 105;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Y).ID: return 106;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Z).ID: return 107;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::X).ID: return 126;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Y).ID: return 127;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Z).ID: return 128;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::X).ID: return 90;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Y).ID: return 91;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Z).ID: return 92;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::X).ID: return 129;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Y).ID: return 130;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Z).ID: return 131;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Save).ID: return 8578;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Load).ID: return 8579;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Corner).ID: return 8580;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Data).ID: return 8581;
+ case StructureVoid::StructureVoid().ID: return 8198;
+ case SugarCane::SugarCane(0).ID: return 3442;
+ case SugarCane::SugarCane(1).ID: return 3443;
+ case SugarCane::SugarCane(2).ID: return 3444;
+ case SugarCane::SugarCane(3).ID: return 3445;
+ case SugarCane::SugarCane(4).ID: return 3446;
+ case SugarCane::SugarCane(5).ID: return 3447;
+ case SugarCane::SugarCane(6).ID: return 3448;
+ case SugarCane::SugarCane(7).ID: return 3449;
+ case SugarCane::SugarCane(8).ID: return 3450;
+ case SugarCane::SugarCane(9).ID: return 3451;
+ case SugarCane::SugarCane(10).ID: return 3452;
+ case SugarCane::SugarCane(11).ID: return 3453;
+ case SugarCane::SugarCane(12).ID: return 3454;
+ case SugarCane::SugarCane(13).ID: return 3455;
+ case SugarCane::SugarCane(14).ID: return 3456;
+ case SugarCane::SugarCane(15).ID: return 3457;
+ case Sunflower::Sunflower(Sunflower::Half::Upper).ID: return 6842;
+ case Sunflower::Sunflower(Sunflower::Half::Lower).ID: return 6843;
+ case TNT::TNT(true).ID: return 1126;
+ case TNT::TNT(false).ID: return 1126;
+ case TallGrass::TallGrass(TallGrass::Half::Upper).ID: return 6850;
+ case TallGrass::TallGrass(TallGrass::Half::Lower).ID: return 6851;
+ case TallSeagrass::TallSeagrass(TallSeagrass::Half::Upper).ID: return 1045;
+ case TallSeagrass::TallSeagrass(TallSeagrass::Half::Lower).ID: return 1046;
+ case Terracotta::Terracotta().ID: return 6839;
+ case Torch::Torch().ID: return 1130;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Single).ID: return 5580;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Left).ID: return 5582;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Right).ID: return 5584;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Single).ID: return 5586;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Left).ID: return 5588;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Right).ID: return 5590;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Single).ID: return 5592;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Left).ID: return 5594;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Right).ID: return 5596;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Single).ID: return 5598;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Left).ID: return 5600;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Right).ID: return 5602;
+ case Tripwire::Tripwire(true, true, true, true, true, true, true).ID: return 4755;
+ case Tripwire::Tripwire(true, true, true, true, true, true, false).ID: return 4756;
+ case Tripwire::Tripwire(true, true, true, true, true, false, true).ID: return 4757;
+ case Tripwire::Tripwire(true, true, true, true, true, false, false).ID: return 4758;
+ case Tripwire::Tripwire(true, true, true, true, false, true, true).ID: return 4759;
+ case Tripwire::Tripwire(true, true, true, true, false, true, false).ID: return 4760;
+ case Tripwire::Tripwire(true, true, true, true, false, false, true).ID: return 4761;
+ case Tripwire::Tripwire(true, true, true, true, false, false, false).ID: return 4762;
+ case Tripwire::Tripwire(true, true, true, false, true, true, true).ID: return 4763;
+ case Tripwire::Tripwire(true, true, true, false, true, true, false).ID: return 4764;
+ case Tripwire::Tripwire(true, true, true, false, true, false, true).ID: return 4765;
+ case Tripwire::Tripwire(true, true, true, false, true, false, false).ID: return 4766;
+ case Tripwire::Tripwire(true, true, true, false, false, true, true).ID: return 4767;
+ case Tripwire::Tripwire(true, true, true, false, false, true, false).ID: return 4768;
+ case Tripwire::Tripwire(true, true, true, false, false, false, true).ID: return 4769;
+ case Tripwire::Tripwire(true, true, true, false, false, false, false).ID: return 4770;
+ case Tripwire::Tripwire(true, true, false, true, true, true, true).ID: return 4771;
+ case Tripwire::Tripwire(true, true, false, true, true, true, false).ID: return 4772;
+ case Tripwire::Tripwire(true, true, false, true, true, false, true).ID: return 4773;
+ case Tripwire::Tripwire(true, true, false, true, true, false, false).ID: return 4774;
+ case Tripwire::Tripwire(true, true, false, true, false, true, true).ID: return 4775;
+ case Tripwire::Tripwire(true, true, false, true, false, true, false).ID: return 4776;
+ case Tripwire::Tripwire(true, true, false, true, false, false, true).ID: return 4777;
+ case Tripwire::Tripwire(true, true, false, true, false, false, false).ID: return 4778;
+ case Tripwire::Tripwire(true, true, false, false, true, true, true).ID: return 4779;
+ case Tripwire::Tripwire(true, true, false, false, true, true, false).ID: return 4780;
+ case Tripwire::Tripwire(true, true, false, false, true, false, true).ID: return 4781;
+ case Tripwire::Tripwire(true, true, false, false, true, false, false).ID: return 4782;
+ case Tripwire::Tripwire(true, true, false, false, false, true, true).ID: return 4783;
+ case Tripwire::Tripwire(true, true, false, false, false, true, false).ID: return 4784;
+ case Tripwire::Tripwire(true, true, false, false, false, false, true).ID: return 4785;
+ case Tripwire::Tripwire(true, true, false, false, false, false, false).ID: return 4786;
+ case Tripwire::Tripwire(true, false, true, true, true, true, true).ID: return 4787;
+ case Tripwire::Tripwire(true, false, true, true, true, true, false).ID: return 4788;
+ case Tripwire::Tripwire(true, false, true, true, true, false, true).ID: return 4789;
+ case Tripwire::Tripwire(true, false, true, true, true, false, false).ID: return 4790;
+ case Tripwire::Tripwire(true, false, true, true, false, true, true).ID: return 4791;
+ case Tripwire::Tripwire(true, false, true, true, false, true, false).ID: return 4792;
+ case Tripwire::Tripwire(true, false, true, true, false, false, true).ID: return 4793;
+ case Tripwire::Tripwire(true, false, true, true, false, false, false).ID: return 4794;
+ case Tripwire::Tripwire(true, false, true, false, true, true, true).ID: return 4795;
+ case Tripwire::Tripwire(true, false, true, false, true, true, false).ID: return 4796;
+ case Tripwire::Tripwire(true, false, true, false, true, false, true).ID: return 4797;
+ case Tripwire::Tripwire(true, false, true, false, true, false, false).ID: return 4798;
+ case Tripwire::Tripwire(true, false, true, false, false, true, true).ID: return 4799;
+ case Tripwire::Tripwire(true, false, true, false, false, true, false).ID: return 4800;
+ case Tripwire::Tripwire(true, false, true, false, false, false, true).ID: return 4801;
+ case Tripwire::Tripwire(true, false, true, false, false, false, false).ID: return 4802;
+ case Tripwire::Tripwire(true, false, false, true, true, true, true).ID: return 4803;
+ case Tripwire::Tripwire(true, false, false, true, true, true, false).ID: return 4804;
+ case Tripwire::Tripwire(true, false, false, true, true, false, true).ID: return 4805;
+ case Tripwire::Tripwire(true, false, false, true, true, false, false).ID: return 4806;
+ case Tripwire::Tripwire(true, false, false, true, false, true, true).ID: return 4807;
+ case Tripwire::Tripwire(true, false, false, true, false, true, false).ID: return 4808;
+ case Tripwire::Tripwire(true, false, false, true, false, false, true).ID: return 4809;
+ case Tripwire::Tripwire(true, false, false, true, false, false, false).ID: return 4810;
+ case Tripwire::Tripwire(true, false, false, false, true, true, true).ID: return 4811;
+ case Tripwire::Tripwire(true, false, false, false, true, true, false).ID: return 4812;
+ case Tripwire::Tripwire(true, false, false, false, true, false, true).ID: return 4813;
+ case Tripwire::Tripwire(true, false, false, false, true, false, false).ID: return 4814;
+ case Tripwire::Tripwire(true, false, false, false, false, true, true).ID: return 4815;
+ case Tripwire::Tripwire(true, false, false, false, false, true, false).ID: return 4816;
+ case Tripwire::Tripwire(true, false, false, false, false, false, true).ID: return 4817;
+ case Tripwire::Tripwire(true, false, false, false, false, false, false).ID: return 4818;
+ case Tripwire::Tripwire(false, true, true, true, true, true, true).ID: return 4819;
+ case Tripwire::Tripwire(false, true, true, true, true, true, false).ID: return 4820;
+ case Tripwire::Tripwire(false, true, true, true, true, false, true).ID: return 4821;
+ case Tripwire::Tripwire(false, true, true, true, true, false, false).ID: return 4822;
+ case Tripwire::Tripwire(false, true, true, true, false, true, true).ID: return 4823;
+ case Tripwire::Tripwire(false, true, true, true, false, true, false).ID: return 4824;
+ case Tripwire::Tripwire(false, true, true, true, false, false, true).ID: return 4825;
+ case Tripwire::Tripwire(false, true, true, true, false, false, false).ID: return 4826;
+ case Tripwire::Tripwire(false, true, true, false, true, true, true).ID: return 4827;
+ case Tripwire::Tripwire(false, true, true, false, true, true, false).ID: return 4828;
+ case Tripwire::Tripwire(false, true, true, false, true, false, true).ID: return 4829;
+ case Tripwire::Tripwire(false, true, true, false, true, false, false).ID: return 4830;
+ case Tripwire::Tripwire(false, true, true, false, false, true, true).ID: return 4831;
+ case Tripwire::Tripwire(false, true, true, false, false, true, false).ID: return 4832;
+ case Tripwire::Tripwire(false, true, true, false, false, false, true).ID: return 4833;
+ case Tripwire::Tripwire(false, true, true, false, false, false, false).ID: return 4834;
+ case Tripwire::Tripwire(false, true, false, true, true, true, true).ID: return 4835;
+ case Tripwire::Tripwire(false, true, false, true, true, true, false).ID: return 4836;
+ case Tripwire::Tripwire(false, true, false, true, true, false, true).ID: return 4837;
+ case Tripwire::Tripwire(false, true, false, true, true, false, false).ID: return 4838;
+ case Tripwire::Tripwire(false, true, false, true, false, true, true).ID: return 4839;
+ case Tripwire::Tripwire(false, true, false, true, false, true, false).ID: return 4840;
+ case Tripwire::Tripwire(false, true, false, true, false, false, true).ID: return 4841;
+ case Tripwire::Tripwire(false, true, false, true, false, false, false).ID: return 4842;
+ case Tripwire::Tripwire(false, true, false, false, true, true, true).ID: return 4843;
+ case Tripwire::Tripwire(false, true, false, false, true, true, false).ID: return 4844;
+ case Tripwire::Tripwire(false, true, false, false, true, false, true).ID: return 4845;
+ case Tripwire::Tripwire(false, true, false, false, true, false, false).ID: return 4846;
+ case Tripwire::Tripwire(false, true, false, false, false, true, true).ID: return 4847;
+ case Tripwire::Tripwire(false, true, false, false, false, true, false).ID: return 4848;
+ case Tripwire::Tripwire(false, true, false, false, false, false, true).ID: return 4849;
+ case Tripwire::Tripwire(false, true, false, false, false, false, false).ID: return 4850;
+ case Tripwire::Tripwire(false, false, true, true, true, true, true).ID: return 4851;
+ case Tripwire::Tripwire(false, false, true, true, true, true, false).ID: return 4852;
+ case Tripwire::Tripwire(false, false, true, true, true, false, true).ID: return 4853;
+ case Tripwire::Tripwire(false, false, true, true, true, false, false).ID: return 4854;
+ case Tripwire::Tripwire(false, false, true, true, false, true, true).ID: return 4855;
+ case Tripwire::Tripwire(false, false, true, true, false, true, false).ID: return 4856;
+ case Tripwire::Tripwire(false, false, true, true, false, false, true).ID: return 4857;
+ case Tripwire::Tripwire(false, false, true, true, false, false, false).ID: return 4858;
+ case Tripwire::Tripwire(false, false, true, false, true, true, true).ID: return 4859;
+ case Tripwire::Tripwire(false, false, true, false, true, true, false).ID: return 4860;
+ case Tripwire::Tripwire(false, false, true, false, true, false, true).ID: return 4861;
+ case Tripwire::Tripwire(false, false, true, false, true, false, false).ID: return 4862;
+ case Tripwire::Tripwire(false, false, true, false, false, true, true).ID: return 4863;
+ case Tripwire::Tripwire(false, false, true, false, false, true, false).ID: return 4864;
+ case Tripwire::Tripwire(false, false, true, false, false, false, true).ID: return 4865;
+ case Tripwire::Tripwire(false, false, true, false, false, false, false).ID: return 4866;
+ case Tripwire::Tripwire(false, false, false, true, true, true, true).ID: return 4867;
+ case Tripwire::Tripwire(false, false, false, true, true, true, false).ID: return 4868;
+ case Tripwire::Tripwire(false, false, false, true, true, false, true).ID: return 4869;
+ case Tripwire::Tripwire(false, false, false, true, true, false, false).ID: return 4870;
+ case Tripwire::Tripwire(false, false, false, true, false, true, true).ID: return 4871;
+ case Tripwire::Tripwire(false, false, false, true, false, true, false).ID: return 4872;
+ case Tripwire::Tripwire(false, false, false, true, false, false, true).ID: return 4873;
+ case Tripwire::Tripwire(false, false, false, true, false, false, false).ID: return 4874;
+ case Tripwire::Tripwire(false, false, false, false, true, true, true).ID: return 4875;
+ case Tripwire::Tripwire(false, false, false, false, true, true, false).ID: return 4876;
+ case Tripwire::Tripwire(false, false, false, false, true, false, true).ID: return 4877;
+ case Tripwire::Tripwire(false, false, false, false, true, false, false).ID: return 4878;
+ case Tripwire::Tripwire(false, false, false, false, false, true, true).ID: return 4879;
+ case Tripwire::Tripwire(false, false, false, false, false, true, false).ID: return 4880;
+ case Tripwire::Tripwire(false, false, false, false, false, false, true).ID: return 4881;
+ case Tripwire::Tripwire(false, false, false, false, false, false, false).ID: return 4882;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, true).ID: return 4739;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, false).ID: return 4740;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, true).ID: return 4741;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, false).ID: return 4742;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, true).ID: return 4743;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, false).ID: return 4744;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, true).ID: return 4745;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, false).ID: return 4746;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, true).ID: return 4747;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, false).ID: return 4748;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, true).ID: return 4749;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, false).ID: return 4750;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, true).ID: return 4751;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, false).ID: return 4752;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, true).ID: return 4753;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, false).ID: return 4754;
+ case TubeCoral::TubeCoral().ID: return 8459;
+ case TubeCoralBlock::TubeCoralBlock().ID: return 8454;
+ case TubeCoralFan::TubeCoralFan().ID: return 8555;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8505;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8507;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8509;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8511;
+ case TurtleEgg::TurtleEgg(1, 0).ID: return 8437;
+ case TurtleEgg::TurtleEgg(1, 1).ID: return 8438;
+ case TurtleEgg::TurtleEgg(1, 2).ID: return 8439;
+ case TurtleEgg::TurtleEgg(2, 0).ID: return 8440;
+ case TurtleEgg::TurtleEgg(2, 1).ID: return 8441;
+ case TurtleEgg::TurtleEgg(2, 2).ID: return 8442;
+ case TurtleEgg::TurtleEgg(3, 0).ID: return 8443;
+ case TurtleEgg::TurtleEgg(3, 1).ID: return 8444;
+ case TurtleEgg::TurtleEgg(3, 2).ID: return 8445;
+ case TurtleEgg::TurtleEgg(4, 0).ID: return 8446;
+ case TurtleEgg::TurtleEgg(4, 1).ID: return 8447;
+ case TurtleEgg::TurtleEgg(4, 2).ID: return 8448;
+ case Vine::Vine(true, true, true, true, true).ID: return 4268;
+ case Vine::Vine(true, true, true, true, false).ID: return 4269;
+ case Vine::Vine(true, true, true, false, true).ID: return 4270;
+ case Vine::Vine(true, true, true, false, false).ID: return 4271;
+ case Vine::Vine(true, true, false, true, true).ID: return 4272;
+ case Vine::Vine(true, true, false, true, false).ID: return 4273;
+ case Vine::Vine(true, true, false, false, true).ID: return 4274;
+ case Vine::Vine(true, true, false, false, false).ID: return 4275;
+ case Vine::Vine(true, false, true, true, true).ID: return 4276;
+ case Vine::Vine(true, false, true, true, false).ID: return 4277;
+ case Vine::Vine(true, false, true, false, true).ID: return 4278;
+ case Vine::Vine(true, false, true, false, false).ID: return 4279;
+ case Vine::Vine(true, false, false, true, true).ID: return 4280;
+ case Vine::Vine(true, false, false, true, false).ID: return 4281;
+ case Vine::Vine(true, false, false, false, true).ID: return 4282;
+ case Vine::Vine(true, false, false, false, false).ID: return 4283;
+ case Vine::Vine(false, true, true, true, true).ID: return 4284;
+ case Vine::Vine(false, true, true, true, false).ID: return 4285;
+ case Vine::Vine(false, true, true, false, true).ID: return 4286;
+ case Vine::Vine(false, true, true, false, false).ID: return 4287;
+ case Vine::Vine(false, true, false, true, true).ID: return 4288;
+ case Vine::Vine(false, true, false, true, false).ID: return 4289;
+ case Vine::Vine(false, true, false, false, true).ID: return 4290;
+ case Vine::Vine(false, true, false, false, false).ID: return 4291;
+ case Vine::Vine(false, false, true, true, true).ID: return 4292;
+ case Vine::Vine(false, false, true, true, false).ID: return 4293;
+ case Vine::Vine(false, false, true, false, true).ID: return 4294;
+ case Vine::Vine(false, false, true, false, false).ID: return 4295;
+ case Vine::Vine(false, false, false, true, true).ID: return 4296;
+ case Vine::Vine(false, false, false, true, false).ID: return 4297;
+ case Vine::Vine(false, false, false, false, true).ID: return 4298;
+ case Vine::Vine(false, false, false, false, false).ID: return 4299;
+ case VoidAir::VoidAir().ID: return 8574;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3270;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3272;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3274;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3276;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZM).ID: return 1131;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZP).ID: return 1132;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XM).ID: return 1133;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XP).ID: return 1134;
+ case Water::Water(0).ID: return 34;
+ case Water::Water(1).ID: return 35;
+ case Water::Water(2).ID: return 36;
+ case Water::Water(3).ID: return 37;
+ case Water::Water(4).ID: return 38;
+ case Water::Water(5).ID: return 39;
+ case Water::Water(6).ID: return 40;
+ case Water::Water(7).ID: return 41;
+ case Water::Water(8).ID: return 42;
+ case Water::Water(9).ID: return 43;
+ case Water::Water(10).ID: return 44;
+ case Water::Water(11).ID: return 45;
+ case Water::Water(12).ID: return 46;
+ case Water::Water(13).ID: return 47;
+ case Water::Water(14).ID: return 48;
+ case Water::Water(15).ID: return 49;
+ case WetSponge::WetSponge().ID: return 229;
+ case Wheat::Wheat(0).ID: return 3051;
+ case Wheat::Wheat(1).ID: return 3052;
+ case Wheat::Wheat(2).ID: return 3053;
+ case Wheat::Wheat(3).ID: return 3054;
+ case Wheat::Wheat(4).ID: return 3055;
+ case Wheat::Wheat(5).ID: return 3056;
+ case Wheat::Wheat(6).ID: return 3057;
+ case Wheat::Wheat(7).ID: return 3058;
+ case WhiteBanner::WhiteBanner(0).ID: return 6854;
+ case WhiteBanner::WhiteBanner(1).ID: return 6855;
+ case WhiteBanner::WhiteBanner(2).ID: return 6856;
+ case WhiteBanner::WhiteBanner(3).ID: return 6857;
+ case WhiteBanner::WhiteBanner(4).ID: return 6858;
+ case WhiteBanner::WhiteBanner(5).ID: return 6859;
+ case WhiteBanner::WhiteBanner(6).ID: return 6860;
+ case WhiteBanner::WhiteBanner(7).ID: return 6861;
+ case WhiteBanner::WhiteBanner(8).ID: return 6862;
+ case WhiteBanner::WhiteBanner(9).ID: return 6863;
+ case WhiteBanner::WhiteBanner(10).ID: return 6864;
+ case WhiteBanner::WhiteBanner(11).ID: return 6865;
+ case WhiteBanner::WhiteBanner(12).ID: return 6866;
+ case WhiteBanner::WhiteBanner(13).ID: return 6867;
+ case WhiteBanner::WhiteBanner(14).ID: return 6868;
+ case WhiteBanner::WhiteBanner(15).ID: return 6869;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Head).ID: return 748;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Foot).ID: return 749;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Head).ID: return 750;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Foot).ID: return 751;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Head).ID: return 752;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Foot).ID: return 753;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Head).ID: return 754;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Foot).ID: return 755;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Head).ID: return 756;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Foot).ID: return 757;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Head).ID: return 758;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Foot).ID: return 759;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Head).ID: return 760;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Foot).ID: return 761;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Head).ID: return 762;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Foot).ID: return 763;
+ case WhiteCarpet::WhiteCarpet().ID: return 6823;
+ case WhiteConcrete::WhiteConcrete().ID: return 8377;
+ case WhiteConcretePowder::WhiteConcretePowder().ID: return 8393;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8313;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8314;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8315;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8316;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8217;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8218;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8219;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8220;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8221;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8222;
+ case WhiteStainedGlass::WhiteStainedGlass().ID: return 3577;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, true).ID: return 5822;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, false).ID: return 5823;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, true).ID: return 5826;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, false).ID: return 5827;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, true).ID: return 5830;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, false).ID: return 5831;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, true).ID: return 5834;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, false).ID: return 5835;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, true).ID: return 5838;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, false).ID: return 5839;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, true).ID: return 5842;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, false).ID: return 5843;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, true).ID: return 5846;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, false).ID: return 5847;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, true).ID: return 5850;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, false).ID: return 5851;
+ case WhiteTerracotta::WhiteTerracotta().ID: return 5804;
+ case WhiteTulip::WhiteTulip().ID: return 1118;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7110;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7111;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7112;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7113;
+ case WhiteWool::WhiteWool().ID: return 1083;
+ case WitherSkeletonSkull::WitherSkeletonSkull(0).ID: return 5471;
+ case WitherSkeletonSkull::WitherSkeletonSkull(1).ID: return 5472;
+ case WitherSkeletonSkull::WitherSkeletonSkull(2).ID: return 5473;
+ case WitherSkeletonSkull::WitherSkeletonSkull(3).ID: return 5474;
+ case WitherSkeletonSkull::WitherSkeletonSkull(4).ID: return 5475;
+ case WitherSkeletonSkull::WitherSkeletonSkull(5).ID: return 5476;
+ case WitherSkeletonSkull::WitherSkeletonSkull(6).ID: return 5477;
+ case WitherSkeletonSkull::WitherSkeletonSkull(7).ID: return 5478;
+ case WitherSkeletonSkull::WitherSkeletonSkull(8).ID: return 5479;
+ case WitherSkeletonSkull::WitherSkeletonSkull(9).ID: return 5480;
+ case WitherSkeletonSkull::WitherSkeletonSkull(10).ID: return 5481;
+ case WitherSkeletonSkull::WitherSkeletonSkull(11).ID: return 5482;
+ case WitherSkeletonSkull::WitherSkeletonSkull(12).ID: return 5483;
+ case WitherSkeletonSkull::WitherSkeletonSkull(13).ID: return 5484;
+ case WitherSkeletonSkull::WitherSkeletonSkull(14).ID: return 5485;
+ case WitherSkeletonSkull::WitherSkeletonSkull(15).ID: return 5486;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM).ID: return 5467;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP).ID: return 5468;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XM).ID: return 5469;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XP).ID: return 5470;
+ case YellowBanner::YellowBanner(0).ID: return 6918;
+ case YellowBanner::YellowBanner(1).ID: return 6919;
+ case YellowBanner::YellowBanner(2).ID: return 6920;
+ case YellowBanner::YellowBanner(3).ID: return 6921;
+ case YellowBanner::YellowBanner(4).ID: return 6922;
+ case YellowBanner::YellowBanner(5).ID: return 6923;
+ case YellowBanner::YellowBanner(6).ID: return 6924;
+ case YellowBanner::YellowBanner(7).ID: return 6925;
+ case YellowBanner::YellowBanner(8).ID: return 6926;
+ case YellowBanner::YellowBanner(9).ID: return 6927;
+ case YellowBanner::YellowBanner(10).ID: return 6928;
+ case YellowBanner::YellowBanner(11).ID: return 6929;
+ case YellowBanner::YellowBanner(12).ID: return 6930;
+ case YellowBanner::YellowBanner(13).ID: return 6931;
+ case YellowBanner::YellowBanner(14).ID: return 6932;
+ case YellowBanner::YellowBanner(15).ID: return 6933;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Head).ID: return 812;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Foot).ID: return 813;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Head).ID: return 814;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Foot).ID: return 815;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Head).ID: return 816;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Foot).ID: return 817;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Head).ID: return 818;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Foot).ID: return 819;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Head).ID: return 820;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Foot).ID: return 821;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Head).ID: return 822;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Foot).ID: return 823;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Head).ID: return 824;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Foot).ID: return 825;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Head).ID: return 826;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Foot).ID: return 827;
+ case YellowCarpet::YellowCarpet().ID: return 6827;
+ case YellowConcrete::YellowConcrete().ID: return 8381;
+ case YellowConcretePowder::YellowConcretePowder().ID: return 8397;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8329;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8330;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8331;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8332;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8241;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8242;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8243;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8244;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8245;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8246;
+ case YellowStainedGlass::YellowStainedGlass().ID: return 3581;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, true).ID: return 5950;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, false).ID: return 5951;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, true).ID: return 5954;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, false).ID: return 5955;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, true).ID: return 5958;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, false).ID: return 5959;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, true).ID: return 5962;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, false).ID: return 5963;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, true).ID: return 5966;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, false).ID: return 5967;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, true).ID: return 5970;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, false).ID: return 5971;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, true).ID: return 5974;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, false).ID: return 5975;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, true).ID: return 5978;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, false).ID: return 5979;
+ case YellowTerracotta::YellowTerracotta().ID: return 5808;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7126;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7127;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7128;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7129;
+ case YellowWool::YellowWool().ID: return 1087;
+ case ZombieHead::ZombieHead(0).ID: return 5491;
+ case ZombieHead::ZombieHead(1).ID: return 5492;
+ case ZombieHead::ZombieHead(2).ID: return 5493;
+ case ZombieHead::ZombieHead(3).ID: return 5494;
+ case ZombieHead::ZombieHead(4).ID: return 5495;
+ case ZombieHead::ZombieHead(5).ID: return 5496;
+ case ZombieHead::ZombieHead(6).ID: return 5497;
+ case ZombieHead::ZombieHead(7).ID: return 5498;
+ case ZombieHead::ZombieHead(8).ID: return 5499;
+ case ZombieHead::ZombieHead(9).ID: return 5500;
+ case ZombieHead::ZombieHead(10).ID: return 5501;
+ case ZombieHead::ZombieHead(11).ID: return 5502;
+ case ZombieHead::ZombieHead(12).ID: return 5503;
+ case ZombieHead::ZombieHead(13).ID: return 5504;
+ case ZombieHead::ZombieHead(14).ID: return 5505;
+ case ZombieHead::ZombieHead(15).ID: return 5506;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 5487;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 5488;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 5489;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 5490;
default: return 0;
}
}
- UInt32 FromItem(const Item ID)
+ UInt32 From(const Item ID)
{
switch (ID)
{
diff --git a/src/Protocol/Palettes/Palette_1_13.h b/src/Protocol/Palettes/Palette_1_13.h
index 3f72e0277..6f8ceec2e 100644
--- a/src/Protocol/Palettes/Palette_1_13.h
+++ b/src/Protocol/Palettes/Palette_1_13.h
@@ -1,12 +1,13 @@
#pragma once
-#include "../../Registries/Items.h"
-#include "../../Registries/Statistics.h"
+#include "BlockState.h"
+#include "Registries/Items.h"
+#include "Registries/Statistics.h"
namespace Palette_1_13
{
- UInt32 FromBlock(short ID);
- UInt32 FromItem(Item ID);
+ UInt32 From(BlockState Block);
+ UInt32 From(Item ID);
UInt32 From(Statistic ID);
Item ToItem(UInt32 ID);
}
diff --git a/src/Protocol/Palettes/Palette_1_13_1.cpp b/src/Protocol/Palettes/Palette_1_13_1.cpp
index 0786cf4fe..cfc4ed5f4 100644
--- a/src/Protocol/Palettes/Palette_1_13_1.cpp
+++ b/src/Protocol/Palettes/Palette_1_13_1.cpp
@@ -1,7078 +1,7078 @@
#include "Globals.h"
#include "Palette_1_13_1.h"
-#include "../../Registries/Blocks.h"
+#include "Registries/BlockStates.h"
namespace Palette_1_13_1
{
- UInt32 FromBlock(const short ID)
+ UInt32 From(const BlockState Block)
{
using namespace Block;
- switch (ID)
+ switch (Block.ID)
{
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5400;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5401;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5402;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5403;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5404;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5405;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5406;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5407;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5408;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5409;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5410;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5411;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5412;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5413;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5414;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5415;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5416;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5417;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5418;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5419;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5420;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5421;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5422;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5423;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 7870;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 7871;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 7872;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 7873;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 7874;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 7875;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 7876;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 7877;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 7878;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 7879;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 7880;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 7881;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 7882;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 7883;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 7884;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 7885;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 7886;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 7887;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 7888;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 7889;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 7890;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 7891;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 7892;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 7893;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 7894;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 7895;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 7896;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 7897;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 7898;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 7899;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 7900;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 7901;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 7902;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 7903;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 7904;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 7905;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 7906;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 7907;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 7908;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 7909;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 7910;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 7911;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 7912;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 7913;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 7914;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 7915;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 7916;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 7917;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 7918;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 7919;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 7920;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 7921;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 7922;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 7923;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 7924;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 7925;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 7926;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 7927;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 7928;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 7929;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 7930;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 7931;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 7932;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 7933;
- case AcaciaFence::AcaciaFence(true, true, true, true): return 7616;
- case AcaciaFence::AcaciaFence(true, true, true, false): return 7617;
- case AcaciaFence::AcaciaFence(true, true, false, true): return 7620;
- case AcaciaFence::AcaciaFence(true, true, false, false): return 7621;
- case AcaciaFence::AcaciaFence(true, false, true, true): return 7624;
- case AcaciaFence::AcaciaFence(true, false, true, false): return 7625;
- case AcaciaFence::AcaciaFence(true, false, false, true): return 7628;
- case AcaciaFence::AcaciaFence(true, false, false, false): return 7629;
- case AcaciaFence::AcaciaFence(false, true, true, true): return 7632;
- case AcaciaFence::AcaciaFence(false, true, true, false): return 7633;
- case AcaciaFence::AcaciaFence(false, true, false, true): return 7636;
- case AcaciaFence::AcaciaFence(false, true, false, false): return 7637;
- case AcaciaFence::AcaciaFence(false, false, true, true): return 7640;
- case AcaciaFence::AcaciaFence(false, false, true, false): return 7641;
- case AcaciaFence::AcaciaFence(false, false, false, true): return 7644;
- case AcaciaFence::AcaciaFence(false, false, false, false): return 7645;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7454;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7455;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7456;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7457;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7458;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7459;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7460;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7461;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7462;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7463;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7464;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7465;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7466;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7467;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7468;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7469;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7470;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7471;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7472;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7473;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7474;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7475;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7476;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7477;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7478;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7479;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7480;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7481;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7482;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7483;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7484;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7485;
- case AcaciaLeaves::AcaciaLeaves(1, true): return 200;
- case AcaciaLeaves::AcaciaLeaves(1, false): return 201;
- case AcaciaLeaves::AcaciaLeaves(2, true): return 202;
- case AcaciaLeaves::AcaciaLeaves(2, false): return 203;
- case AcaciaLeaves::AcaciaLeaves(3, true): return 204;
- case AcaciaLeaves::AcaciaLeaves(3, false): return 205;
- case AcaciaLeaves::AcaciaLeaves(4, true): return 206;
- case AcaciaLeaves::AcaciaLeaves(4, false): return 207;
- case AcaciaLeaves::AcaciaLeaves(5, true): return 208;
- case AcaciaLeaves::AcaciaLeaves(5, false): return 209;
- case AcaciaLeaves::AcaciaLeaves(6, true): return 210;
- case AcaciaLeaves::AcaciaLeaves(6, false): return 211;
- case AcaciaLeaves::AcaciaLeaves(7, true): return 212;
- case AcaciaLeaves::AcaciaLeaves(7, false): return 213;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::X): return 84;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Y): return 85;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Z): return 86;
- case AcaciaPlanks::AcaciaPlanks(): return 19;
- case AcaciaPressurePlate::AcaciaPressurePlate(true): return 3376;
- case AcaciaPressurePlate::AcaciaPressurePlate(false): return 3377;
- case AcaciaSapling::AcaciaSapling(0): return 29;
- case AcaciaSapling::AcaciaSapling(1): return 30;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Top): return 7283;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Bottom): return 7285;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Double): return 7287;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6334;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6336;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6338;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6340;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6342;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6344;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6346;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6348;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6350;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6352;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6354;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6356;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6358;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6360;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6362;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6364;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6366;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6368;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6370;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6372;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6374;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6376;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6378;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6380;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6382;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6384;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6386;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6388;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6390;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6392;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6394;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6396;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6398;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6400;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6402;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6404;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6406;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6408;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6410;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6412;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, true): return 3851;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, false): return 3853;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, true): return 3855;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, false): return 3857;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, true): return 3859;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, false): return 3861;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, true): return 3863;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, false): return 3865;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, true): return 3867;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, false): return 3869;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, true): return 3871;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, false): return 3873;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, true): return 3875;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, false): return 3877;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, true): return 3879;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, false): return 3881;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, true): return 3883;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, false): return 3885;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, true): return 3887;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, false): return 3889;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, true): return 3891;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, false): return 3893;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, true): return 3895;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, false): return 3897;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, true): return 3899;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, false): return 3901;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, true): return 3903;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, false): return 3905;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, true): return 3907;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, false): return 3909;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, true): return 3911;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, false): return 3913;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::X): return 120;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Y): return 121;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Z): return 122;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::NorthSouth): return 5781;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::EastWest): return 5782;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingEast): return 5783;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingWest): return 5784;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingNorth): return 5785;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingSouth): return 5786;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::NorthSouth): return 5787;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::EastWest): return 5788;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingEast): return 5789;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingWest): return 5790;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingNorth): return 5791;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingSouth): return 5792;
- case Air::Air(): return -0;
- case Allium::Allium(): return 1114;
- case Andesite::Andesite(): return 6;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZM): return 5568;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZP): return 5569;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_XM): return 5570;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_XP): return 5571;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZM): return 4249;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZP): return 4250;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XM): return 4251;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XP): return 4252;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZM): return 4245;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZP): return 4246;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XM): return 4247;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XP): return 4248;
- case AzureBluet::AzureBluet(): return 1115;
- case Barrier::Barrier(): return 6494;
- case Beacon::Beacon(): return 5137;
- case Bedrock::Bedrock(): return 33;
- case Beetroots::Beetroots(0): return 8159;
- case Beetroots::Beetroots(1): return 8160;
- case Beetroots::Beetroots(2): return 8161;
- case Beetroots::Beetroots(3): return 8162;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5352;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5353;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5354;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5355;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5356;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5357;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5358;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5359;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5360;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5361;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5362;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5363;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5364;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5365;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5366;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5367;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5368;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5369;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5370;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5371;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5372;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5373;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5374;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5375;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 7742;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 7743;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 7744;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 7745;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 7746;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 7747;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 7748;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 7749;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 7750;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 7751;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 7752;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 7753;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 7754;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 7755;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 7756;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 7757;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 7758;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 7759;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 7760;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 7761;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 7762;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 7763;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 7764;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 7765;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 7766;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 7767;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 7768;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 7769;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 7770;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 7771;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 7772;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 7773;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 7774;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 7775;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 7776;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 7777;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 7778;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 7779;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 7780;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 7781;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 7782;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 7783;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 7784;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 7785;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 7786;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 7787;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 7788;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 7789;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 7790;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 7791;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 7792;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 7793;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 7794;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 7795;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 7796;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 7797;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 7798;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 7799;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 7800;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 7801;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 7802;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 7803;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 7804;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 7805;
- case BirchFence::BirchFence(true, true, true, true): return 7552;
- case BirchFence::BirchFence(true, true, true, false): return 7553;
- case BirchFence::BirchFence(true, true, false, true): return 7556;
- case BirchFence::BirchFence(true, true, false, false): return 7557;
- case BirchFence::BirchFence(true, false, true, true): return 7560;
- case BirchFence::BirchFence(true, false, true, false): return 7561;
- case BirchFence::BirchFence(true, false, false, true): return 7564;
- case BirchFence::BirchFence(true, false, false, false): return 7565;
- case BirchFence::BirchFence(false, true, true, true): return 7568;
- case BirchFence::BirchFence(false, true, true, false): return 7569;
- case BirchFence::BirchFence(false, true, false, true): return 7572;
- case BirchFence::BirchFence(false, true, false, false): return 7573;
- case BirchFence::BirchFence(false, false, true, true): return 7576;
- case BirchFence::BirchFence(false, false, true, false): return 7577;
- case BirchFence::BirchFence(false, false, false, true): return 7580;
- case BirchFence::BirchFence(false, false, false, false): return 7581;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7390;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7391;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7392;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7393;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7394;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7395;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7396;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7397;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7398;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7399;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7400;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7401;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7402;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7403;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7404;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7405;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7406;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7407;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7408;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7409;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7410;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7411;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7412;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7413;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7414;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7415;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7416;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7417;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7418;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7419;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7420;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7421;
- case BirchLeaves::BirchLeaves(1, true): return 172;
- case BirchLeaves::BirchLeaves(1, false): return 173;
- case BirchLeaves::BirchLeaves(2, true): return 174;
- case BirchLeaves::BirchLeaves(2, false): return 175;
- case BirchLeaves::BirchLeaves(3, true): return 176;
- case BirchLeaves::BirchLeaves(3, false): return 177;
- case BirchLeaves::BirchLeaves(4, true): return 178;
- case BirchLeaves::BirchLeaves(4, false): return 179;
- case BirchLeaves::BirchLeaves(5, true): return 180;
- case BirchLeaves::BirchLeaves(5, false): return 181;
- case BirchLeaves::BirchLeaves(6, true): return 182;
- case BirchLeaves::BirchLeaves(6, false): return 183;
- case BirchLeaves::BirchLeaves(7, true): return 184;
- case BirchLeaves::BirchLeaves(7, false): return 185;
- case BirchLog::BirchLog(BirchLog::Axis::X): return 78;
- case BirchLog::BirchLog(BirchLog::Axis::Y): return 79;
- case BirchLog::BirchLog(BirchLog::Axis::Z): return 80;
- case BirchPlanks::BirchPlanks(): return 17;
- case BirchPressurePlate::BirchPressurePlate(true): return 3372;
- case BirchPressurePlate::BirchPressurePlate(false): return 3373;
- case BirchSapling::BirchSapling(0): return 25;
- case BirchSapling::BirchSapling(1): return 26;
- case BirchSlab::BirchSlab(BirchSlab::Type::Top): return 7271;
- case BirchSlab::BirchSlab(BirchSlab::Type::Bottom): return 7273;
- case BirchSlab::BirchSlab(BirchSlab::Type::Double): return 7275;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 4966;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 4968;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 4970;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 4972;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 4974;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 4976;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 4978;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 4980;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 4982;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 4984;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 4986;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 4988;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 4990;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 4992;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 4994;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 4996;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 4998;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5000;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5002;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5004;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5006;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5008;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5010;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5012;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5014;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5016;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5018;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5020;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5022;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5024;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5026;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5028;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5030;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5032;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5034;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5036;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5038;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5040;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5042;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5044;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, true): return 3723;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, false): return 3725;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, true): return 3727;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, false): return 3729;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, true): return 3731;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, false): return 3733;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, true): return 3735;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, false): return 3737;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, true): return 3739;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, false): return 3741;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, true): return 3743;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, false): return 3745;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, true): return 3747;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, false): return 3749;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, true): return 3751;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, false): return 3753;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, true): return 3755;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, false): return 3757;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, true): return 3759;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, false): return 3761;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, true): return 3763;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, false): return 3765;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, true): return 3767;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, false): return 3769;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, true): return 3771;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, false): return 3773;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, true): return 3775;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, false): return 3777;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, true): return 3779;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, false): return 3781;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, true): return 3783;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, false): return 3785;
- case BirchWood::BirchWood(BirchWood::Axis::X): return 114;
- case BirchWood::BirchWood(BirchWood::Axis::Y): return 115;
- case BirchWood::BirchWood(BirchWood::Axis::Z): return 116;
- case BlackBanner::BlackBanner(0): return 7095;
- case BlackBanner::BlackBanner(1): return 7096;
- case BlackBanner::BlackBanner(2): return 7097;
- case BlackBanner::BlackBanner(3): return 7098;
- case BlackBanner::BlackBanner(4): return 7099;
- case BlackBanner::BlackBanner(5): return 7100;
- case BlackBanner::BlackBanner(6): return 7101;
- case BlackBanner::BlackBanner(7): return 7102;
- case BlackBanner::BlackBanner(8): return 7103;
- case BlackBanner::BlackBanner(9): return 7104;
- case BlackBanner::BlackBanner(10): return 7105;
- case BlackBanner::BlackBanner(11): return 7106;
- case BlackBanner::BlackBanner(12): return 7107;
- case BlackBanner::BlackBanner(13): return 7108;
- case BlackBanner::BlackBanner(14): return 7109;
- case BlackBanner::BlackBanner(15): return 7110;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Head): return 988;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Foot): return 989;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Head): return 990;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Foot): return 991;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Head): return 992;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Foot): return 993;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Head): return 994;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Foot): return 995;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Head): return 996;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Foot): return 997;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Head): return 998;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Foot): return 999;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Head): return 1000;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Foot): return 1001;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Head): return 1002;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Foot): return 1003;
- case BlackCarpet::BlackCarpet(): return 6839;
- case BlackConcrete::BlackConcrete(): return 8393;
- case BlackConcretePowder::BlackConcretePowder(): return 8409;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8374;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8375;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8376;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8377;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8308;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8309;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8310;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8311;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8312;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8313;
- case BlackStainedGlass::BlackStainedGlass(): return 3593;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, true): return 6303;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, false): return 6304;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, true): return 6307;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, false): return 6308;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, true): return 6311;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, false): return 6312;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, true): return 6315;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, false): return 6316;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, true): return 6319;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, false): return 6320;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, true): return 6323;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, false): return 6324;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, true): return 6327;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, false): return 6328;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, true): return 6331;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, false): return 6332;
- case BlackTerracotta::BlackTerracotta(): return 5820;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7171;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7172;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XM): return 7173;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XP): return 7174;
- case BlackWool::BlackWool(): return 1098;
- case BlueBanner::BlueBanner(0): return 7031;
- case BlueBanner::BlueBanner(1): return 7032;
- case BlueBanner::BlueBanner(2): return 7033;
- case BlueBanner::BlueBanner(3): return 7034;
- case BlueBanner::BlueBanner(4): return 7035;
- case BlueBanner::BlueBanner(5): return 7036;
- case BlueBanner::BlueBanner(6): return 7037;
- case BlueBanner::BlueBanner(7): return 7038;
- case BlueBanner::BlueBanner(8): return 7039;
- case BlueBanner::BlueBanner(9): return 7040;
- case BlueBanner::BlueBanner(10): return 7041;
- case BlueBanner::BlueBanner(11): return 7042;
- case BlueBanner::BlueBanner(12): return 7043;
- case BlueBanner::BlueBanner(13): return 7044;
- case BlueBanner::BlueBanner(14): return 7045;
- case BlueBanner::BlueBanner(15): return 7046;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Head): return 924;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Foot): return 925;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Head): return 926;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Foot): return 927;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Head): return 928;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Foot): return 929;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Head): return 930;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Foot): return 931;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Head): return 932;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Foot): return 933;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Head): return 934;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Foot): return 935;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Head): return 936;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Foot): return 937;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Head): return 938;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Foot): return 939;
- case BlueCarpet::BlueCarpet(): return 6835;
- case BlueConcrete::BlueConcrete(): return 8389;
- case BlueConcretePowder::BlueConcretePowder(): return 8405;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8358;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8359;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8360;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8361;
- case BlueIce::BlueIce(): return 8588;
- case BlueOrchid::BlueOrchid(): return 1113;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8284;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8285;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8286;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8287;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8288;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8289;
- case BlueStainedGlass::BlueStainedGlass(): return 3589;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, true): return 6175;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, false): return 6176;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, true): return 6179;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, false): return 6180;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, true): return 6183;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, false): return 6184;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, true): return 6187;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, false): return 6188;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, true): return 6191;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, false): return 6192;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, true): return 6195;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, false): return 6196;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, true): return 6199;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, false): return 6200;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, true): return 6203;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, false): return 6204;
- case BlueTerracotta::BlueTerracotta(): return 5816;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7155;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7156;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 7157;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 7158;
- case BlueWool::BlueWool(): return 1094;
- case BoneBlock::BoneBlock(BoneBlock::Axis::X): return 8196;
- case BoneBlock::BoneBlock(BoneBlock::Axis::Y): return 8197;
- case BoneBlock::BoneBlock(BoneBlock::Axis::Z): return 8198;
- case Bookshelf::Bookshelf(): return 1128;
- case BrainCoral::BrainCoral(): return 8473;
- case BrainCoralBlock::BrainCoralBlock(): return 8456;
- case BrainCoralFan::BrainCoralFan(): return 8573;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8529;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8531;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8533;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8535;
- case BrewingStand::BrewingStand(true, true, true): return 4614;
- case BrewingStand::BrewingStand(true, true, false): return 4615;
- case BrewingStand::BrewingStand(true, false, true): return 4616;
- case BrewingStand::BrewingStand(true, false, false): return 4617;
- case BrewingStand::BrewingStand(false, true, true): return 4618;
- case BrewingStand::BrewingStand(false, true, false): return 4619;
- case BrewingStand::BrewingStand(false, false, true): return 4620;
- case BrewingStand::BrewingStand(false, false, false): return 4621;
- case BrickSlab::BrickSlab(BrickSlab::Type::Top): return 7319;
- case BrickSlab::BrickSlab(BrickSlab::Type::Bottom): return 7321;
- case BrickSlab::BrickSlab(BrickSlab::Type::Double): return 7323;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4334;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4336;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4338;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4340;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4342;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4344;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4346;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4348;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4350;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4352;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4354;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4356;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4358;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4360;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4362;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4364;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4366;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4368;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4370;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4372;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4374;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4376;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4378;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4380;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4382;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4384;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4386;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4388;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4390;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4392;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4394;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4396;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4398;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4400;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4402;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4404;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4406;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4408;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4410;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4412;
- case Bricks::Bricks(): return 1125;
- case BrownBanner::BrownBanner(0): return 7047;
- case BrownBanner::BrownBanner(1): return 7048;
- case BrownBanner::BrownBanner(2): return 7049;
- case BrownBanner::BrownBanner(3): return 7050;
- case BrownBanner::BrownBanner(4): return 7051;
- case BrownBanner::BrownBanner(5): return 7052;
- case BrownBanner::BrownBanner(6): return 7053;
- case BrownBanner::BrownBanner(7): return 7054;
- case BrownBanner::BrownBanner(8): return 7055;
- case BrownBanner::BrownBanner(9): return 7056;
- case BrownBanner::BrownBanner(10): return 7057;
- case BrownBanner::BrownBanner(11): return 7058;
- case BrownBanner::BrownBanner(12): return 7059;
- case BrownBanner::BrownBanner(13): return 7060;
- case BrownBanner::BrownBanner(14): return 7061;
- case BrownBanner::BrownBanner(15): return 7062;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Head): return 940;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Foot): return 941;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Head): return 942;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Foot): return 943;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Head): return 944;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Foot): return 945;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Head): return 946;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Foot): return 947;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Head): return 948;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Foot): return 949;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Head): return 950;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Foot): return 951;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Head): return 952;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Foot): return 953;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Head): return 954;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Foot): return 955;
- case BrownCarpet::BrownCarpet(): return 6836;
- case BrownConcrete::BrownConcrete(): return 8390;
- case BrownConcretePowder::BrownConcretePowder(): return 8406;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8362;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8363;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8364;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8365;
- case BrownMushroom::BrownMushroom(): return 1121;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, true): return 3988;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, false): return 3989;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, true): return 3990;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, false): return 3991;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, true): return 3992;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, false): return 3993;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, true): return 3994;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, false): return 3995;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, true): return 3996;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, false): return 3997;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, true): return 3998;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, false): return 3999;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, true): return 4000;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, false): return 4001;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, true): return 4002;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, false): return 4003;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, true): return 4004;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, false): return 4005;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, true): return 4006;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, false): return 4007;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, true): return 4008;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, false): return 4009;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, true): return 4010;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, false): return 4011;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, true): return 4012;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, false): return 4013;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, true): return 4014;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, false): return 4015;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, true): return 4016;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, false): return 4017;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, true): return 4018;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, false): return 4019;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, true): return 4020;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, false): return 4021;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, true): return 4022;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, false): return 4023;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, true): return 4024;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, false): return 4025;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, true): return 4026;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, false): return 4027;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, true): return 4028;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, false): return 4029;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, true): return 4030;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, false): return 4031;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, true): return 4032;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, false): return 4033;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, true): return 4034;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, false): return 4035;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, true): return 4036;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, false): return 4037;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, true): return 4038;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, false): return 4039;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, true): return 4040;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, false): return 4041;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, true): return 4042;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, false): return 4043;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, true): return 4044;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, false): return 4045;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, true): return 4046;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, false): return 4047;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, true): return 4048;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, false): return 4049;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, true): return 4050;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false): return 4051;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8290;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8291;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8292;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8293;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8294;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8295;
- case BrownStainedGlass::BrownStainedGlass(): return 3590;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, true): return 6207;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, false): return 6208;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, true): return 6211;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, false): return 6212;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, true): return 6215;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, false): return 6216;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, true): return 6219;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, false): return 6220;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, true): return 6223;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, false): return 6224;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, true): return 6227;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, false): return 6228;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, true): return 6231;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, false): return 6232;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, true): return 6235;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, false): return 6236;
- case BrownTerracotta::BrownTerracotta(): return 5817;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7159;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7160;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XM): return 7161;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XP): return 7162;
- case BrownWool::BrownWool(): return 1095;
- case BubbleColumn::BubbleColumn(true): return 8593;
- case BubbleColumn::BubbleColumn(false): return 8594;
- case BubbleCoral::BubbleCoral(): return 8475;
- case BubbleCoralBlock::BubbleCoralBlock(): return 8457;
- case BubbleCoralFan::BubbleCoralFan(): return 8575;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8537;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8539;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8541;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8543;
- case Cactus::Cactus(0): return 3426;
- case Cactus::Cactus(1): return 3427;
- case Cactus::Cactus(2): return 3428;
- case Cactus::Cactus(3): return 3429;
- case Cactus::Cactus(4): return 3430;
- case Cactus::Cactus(5): return 3431;
- case Cactus::Cactus(6): return 3432;
- case Cactus::Cactus(7): return 3433;
- case Cactus::Cactus(8): return 3434;
- case Cactus::Cactus(9): return 3435;
- case Cactus::Cactus(10): return 3436;
- case Cactus::Cactus(11): return 3437;
- case Cactus::Cactus(12): return 3438;
- case Cactus::Cactus(13): return 3439;
- case Cactus::Cactus(14): return 3440;
- case Cactus::Cactus(15): return 3441;
- case Cake::Cake(0): return 3507;
- case Cake::Cake(1): return 3508;
- case Cake::Cake(2): return 3509;
- case Cake::Cake(3): return 3510;
- case Cake::Cake(4): return 3511;
- case Cake::Cake(5): return 3512;
- case Cake::Cake(6): return 3513;
- case Carrots::Carrots(0): return 5288;
- case Carrots::Carrots(1): return 5289;
- case Carrots::Carrots(2): return 5290;
- case Carrots::Carrots(3): return 5291;
- case Carrots::Carrots(4): return 5292;
- case Carrots::Carrots(5): return 5293;
- case Carrots::Carrots(6): return 5294;
- case Carrots::Carrots(7): return 5295;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZM): return 3499;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZP): return 3500;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XM): return 3501;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XP): return 3502;
- case Cauldron::Cauldron(0): return 4622;
- case Cauldron::Cauldron(1): return 4623;
- case Cauldron::Cauldron(2): return 4624;
- case Cauldron::Cauldron(3): return 4625;
- case CaveAir::CaveAir(): return 8592;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 8177;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 8178;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 8179;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 8180;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 8181;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 8182;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 8183;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 8184;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 8185;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 8186;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 8187;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 8188;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Single): return 1730;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Left): return 1732;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Right): return 1734;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Single): return 1736;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Left): return 1738;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Right): return 1740;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Single): return 1742;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Left): return 1744;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Right): return 1746;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Single): return 1748;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Left): return 1750;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Right): return 1752;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZM): return 5572;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZP): return 5573;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XM): return 5574;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XP): return 5575;
- case ChiseledQuartzBlock::ChiseledQuartzBlock(): return 5697;
- case ChiseledRedSandstone::ChiseledRedSandstone(): return 7176;
- case ChiseledSandstone::ChiseledSandstone(): return 246;
- case ChiseledStoneBricks::ChiseledStoneBricks(): return 3987;
- case ChorusFlower::ChorusFlower(0): return 8068;
- case ChorusFlower::ChorusFlower(1): return 8069;
- case ChorusFlower::ChorusFlower(2): return 8070;
- case ChorusFlower::ChorusFlower(3): return 8071;
- case ChorusFlower::ChorusFlower(4): return 8072;
- case ChorusFlower::ChorusFlower(5): return 8073;
- case ChorusPlant::ChorusPlant(true, true, true, true, true, true): return 8004;
- case ChorusPlant::ChorusPlant(true, true, true, true, true, false): return 8005;
- case ChorusPlant::ChorusPlant(true, true, true, true, false, true): return 8006;
- case ChorusPlant::ChorusPlant(true, true, true, true, false, false): return 8007;
- case ChorusPlant::ChorusPlant(true, true, true, false, true, true): return 8008;
- case ChorusPlant::ChorusPlant(true, true, true, false, true, false): return 8009;
- case ChorusPlant::ChorusPlant(true, true, true, false, false, true): return 8010;
- case ChorusPlant::ChorusPlant(true, true, true, false, false, false): return 8011;
- case ChorusPlant::ChorusPlant(true, true, false, true, true, true): return 8012;
- case ChorusPlant::ChorusPlant(true, true, false, true, true, false): return 8013;
- case ChorusPlant::ChorusPlant(true, true, false, true, false, true): return 8014;
- case ChorusPlant::ChorusPlant(true, true, false, true, false, false): return 8015;
- case ChorusPlant::ChorusPlant(true, true, false, false, true, true): return 8016;
- case ChorusPlant::ChorusPlant(true, true, false, false, true, false): return 8017;
- case ChorusPlant::ChorusPlant(true, true, false, false, false, true): return 8018;
- case ChorusPlant::ChorusPlant(true, true, false, false, false, false): return 8019;
- case ChorusPlant::ChorusPlant(true, false, true, true, true, true): return 8020;
- case ChorusPlant::ChorusPlant(true, false, true, true, true, false): return 8021;
- case ChorusPlant::ChorusPlant(true, false, true, true, false, true): return 8022;
- case ChorusPlant::ChorusPlant(true, false, true, true, false, false): return 8023;
- case ChorusPlant::ChorusPlant(true, false, true, false, true, true): return 8024;
- case ChorusPlant::ChorusPlant(true, false, true, false, true, false): return 8025;
- case ChorusPlant::ChorusPlant(true, false, true, false, false, true): return 8026;
- case ChorusPlant::ChorusPlant(true, false, true, false, false, false): return 8027;
- case ChorusPlant::ChorusPlant(true, false, false, true, true, true): return 8028;
- case ChorusPlant::ChorusPlant(true, false, false, true, true, false): return 8029;
- case ChorusPlant::ChorusPlant(true, false, false, true, false, true): return 8030;
- case ChorusPlant::ChorusPlant(true, false, false, true, false, false): return 8031;
- case ChorusPlant::ChorusPlant(true, false, false, false, true, true): return 8032;
- case ChorusPlant::ChorusPlant(true, false, false, false, true, false): return 8033;
- case ChorusPlant::ChorusPlant(true, false, false, false, false, true): return 8034;
- case ChorusPlant::ChorusPlant(true, false, false, false, false, false): return 8035;
- case ChorusPlant::ChorusPlant(false, true, true, true, true, true): return 8036;
- case ChorusPlant::ChorusPlant(false, true, true, true, true, false): return 8037;
- case ChorusPlant::ChorusPlant(false, true, true, true, false, true): return 8038;
- case ChorusPlant::ChorusPlant(false, true, true, true, false, false): return 8039;
- case ChorusPlant::ChorusPlant(false, true, true, false, true, true): return 8040;
- case ChorusPlant::ChorusPlant(false, true, true, false, true, false): return 8041;
- case ChorusPlant::ChorusPlant(false, true, true, false, false, true): return 8042;
- case ChorusPlant::ChorusPlant(false, true, true, false, false, false): return 8043;
- case ChorusPlant::ChorusPlant(false, true, false, true, true, true): return 8044;
- case ChorusPlant::ChorusPlant(false, true, false, true, true, false): return 8045;
- case ChorusPlant::ChorusPlant(false, true, false, true, false, true): return 8046;
- case ChorusPlant::ChorusPlant(false, true, false, true, false, false): return 8047;
- case ChorusPlant::ChorusPlant(false, true, false, false, true, true): return 8048;
- case ChorusPlant::ChorusPlant(false, true, false, false, true, false): return 8049;
- case ChorusPlant::ChorusPlant(false, true, false, false, false, true): return 8050;
- case ChorusPlant::ChorusPlant(false, true, false, false, false, false): return 8051;
- case ChorusPlant::ChorusPlant(false, false, true, true, true, true): return 8052;
- case ChorusPlant::ChorusPlant(false, false, true, true, true, false): return 8053;
- case ChorusPlant::ChorusPlant(false, false, true, true, false, true): return 8054;
- case ChorusPlant::ChorusPlant(false, false, true, true, false, false): return 8055;
- case ChorusPlant::ChorusPlant(false, false, true, false, true, true): return 8056;
- case ChorusPlant::ChorusPlant(false, false, true, false, true, false): return 8057;
- case ChorusPlant::ChorusPlant(false, false, true, false, false, true): return 8058;
- case ChorusPlant::ChorusPlant(false, false, true, false, false, false): return 8059;
- case ChorusPlant::ChorusPlant(false, false, false, true, true, true): return 8060;
- case ChorusPlant::ChorusPlant(false, false, false, true, true, false): return 8061;
- case ChorusPlant::ChorusPlant(false, false, false, true, false, true): return 8062;
- case ChorusPlant::ChorusPlant(false, false, false, true, false, false): return 8063;
- case ChorusPlant::ChorusPlant(false, false, false, false, true, true): return 8064;
- case ChorusPlant::ChorusPlant(false, false, false, false, true, false): return 8065;
- case ChorusPlant::ChorusPlant(false, false, false, false, false, true): return 8066;
- case ChorusPlant::ChorusPlant(false, false, false, false, false, false): return 8067;
- case Clay::Clay(): return 3442;
- case CoalBlock::CoalBlock(): return 6841;
- case CoalOre::CoalOre(): return 71;
- case CoarseDirt::CoarseDirt(): return 11;
- case Cobblestone::Cobblestone(): return 14;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Top): return 7313;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Bottom): return 7315;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double): return 7317;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3191;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3193;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3195;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3197;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3199;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3201;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3203;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3205;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3207;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3209;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3211;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3213;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3215;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3217;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3219;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3221;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3223;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3225;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3227;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3229;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3231;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3233;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3235;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3237;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3239;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3241;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3243;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3245;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3247;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3249;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3251;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3253;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3255;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3257;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3259;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3261;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3263;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3265;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3267;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3269;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5140;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5141;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5144;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5145;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5148;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5149;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5152;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5153;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5156;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5157;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5160;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5161;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5164;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5165;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5168;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5169;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5172;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5173;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5176;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5177;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5180;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5181;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5184;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5185;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5188;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5189;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5192;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5193;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5196;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5197;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5200;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5201;
- case Cobweb::Cobweb(): return 1040;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZM): return 4639;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZP): return 4640;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XM): return 4641;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XP): return 4642;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZM): return 4643;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZP): return 4644;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XM): return 4645;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XP): return 4646;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZM): return 4647;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZP): return 4648;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XM): return 4649;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XP): return 4650;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 5125;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 5126;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 5127;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 5128;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 5129;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 5130;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 5131;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 5132;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 5133;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 5134;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 5135;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 5136;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true): return 5636;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false): return 5637;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true): return 5638;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false): return 5639;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true): return 5640;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false): return 5641;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true): return 5642;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false): return 5643;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true): return 5644;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false): return 5645;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true): return 5646;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false): return 5647;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true): return 5648;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false): return 5649;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true): return 5650;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false): return 5651;
- case Conduit::Conduit(): return 8590;
- case CrackedStoneBricks::CrackedStoneBricks(): return 3986;
- case CraftingTable::CraftingTable(): return 3051;
- case CreeperHead::CreeperHead(0): return 5532;
- case CreeperHead::CreeperHead(1): return 5533;
- case CreeperHead::CreeperHead(2): return 5534;
- case CreeperHead::CreeperHead(3): return 5535;
- case CreeperHead::CreeperHead(4): return 5536;
- case CreeperHead::CreeperHead(5): return 5537;
- case CreeperHead::CreeperHead(6): return 5538;
- case CreeperHead::CreeperHead(7): return 5539;
- case CreeperHead::CreeperHead(8): return 5540;
- case CreeperHead::CreeperHead(9): return 5541;
- case CreeperHead::CreeperHead(10): return 5542;
- case CreeperHead::CreeperHead(11): return 5543;
- case CreeperHead::CreeperHead(12): return 5544;
- case CreeperHead::CreeperHead(13): return 5545;
- case CreeperHead::CreeperHead(14): return 5546;
- case CreeperHead::CreeperHead(15): return 5547;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZM): return 5528;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZP): return 5529;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XM): return 5530;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XP): return 5531;
- case CutRedSandstone::CutRedSandstone(): return 7177;
- case CutSandstone::CutSandstone(): return 247;
- case CyanBanner::CyanBanner(0): return 6999;
- case CyanBanner::CyanBanner(1): return 7000;
- case CyanBanner::CyanBanner(2): return 7001;
- case CyanBanner::CyanBanner(3): return 7002;
- case CyanBanner::CyanBanner(4): return 7003;
- case CyanBanner::CyanBanner(5): return 7004;
- case CyanBanner::CyanBanner(6): return 7005;
- case CyanBanner::CyanBanner(7): return 7006;
- case CyanBanner::CyanBanner(8): return 7007;
- case CyanBanner::CyanBanner(9): return 7008;
- case CyanBanner::CyanBanner(10): return 7009;
- case CyanBanner::CyanBanner(11): return 7010;
- case CyanBanner::CyanBanner(12): return 7011;
- case CyanBanner::CyanBanner(13): return 7012;
- case CyanBanner::CyanBanner(14): return 7013;
- case CyanBanner::CyanBanner(15): return 7014;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Head): return 892;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Foot): return 893;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Head): return 894;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Foot): return 895;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Head): return 896;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Foot): return 897;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Head): return 898;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Foot): return 899;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Head): return 900;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Foot): return 901;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Head): return 902;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Foot): return 903;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Head): return 904;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Foot): return 905;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Head): return 906;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Foot): return 907;
- case CyanCarpet::CyanCarpet(): return 6833;
- case CyanConcrete::CyanConcrete(): return 8387;
- case CyanConcretePowder::CyanConcretePowder(): return 8403;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8350;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8351;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8352;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8353;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8272;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8273;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8274;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8275;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8276;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8277;
- case CyanStainedGlass::CyanStainedGlass(): return 3587;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, true): return 6111;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, false): return 6112;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, true): return 6115;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, false): return 6116;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, true): return 6119;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, false): return 6120;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, true): return 6123;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, false): return 6124;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, true): return 6127;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, false): return 6128;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, true): return 6131;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, false): return 6132;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, true): return 6135;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, false): return 6136;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, true): return 6139;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, false): return 6140;
- case CyanTerracotta::CyanTerracotta(): return 5814;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7147;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7148;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XM): return 7149;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XP): return 7150;
- case CyanWool::CyanWool(): return 1092;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZM): return 5576;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZP): return 5577;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XM): return 5578;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XP): return 5579;
- case Dandelion::Dandelion(): return 1111;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5424;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5425;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5426;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5427;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5428;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5429;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5430;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5431;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5432;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5433;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5434;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5435;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5436;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5437;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5438;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5439;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5440;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5441;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5442;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5443;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5444;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5445;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5446;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5447;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 7934;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 7935;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 7936;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 7937;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 7938;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 7939;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 7940;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 7941;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 7942;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 7943;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 7944;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 7945;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 7946;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 7947;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 7948;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 7949;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 7950;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 7951;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 7952;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 7953;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 7954;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 7955;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 7956;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 7957;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 7958;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 7959;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 7960;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 7961;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 7962;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 7963;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 7964;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 7965;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 7966;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 7967;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 7968;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 7969;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 7970;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 7971;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 7972;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 7973;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 7974;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 7975;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 7976;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 7977;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 7978;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 7979;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 7980;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 7981;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 7982;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 7983;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 7984;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 7985;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 7986;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 7987;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 7988;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 7989;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 7990;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 7991;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 7992;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 7993;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 7994;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 7995;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 7996;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 7997;
- case DarkOakFence::DarkOakFence(true, true, true, true): return 7648;
- case DarkOakFence::DarkOakFence(true, true, true, false): return 7649;
- case DarkOakFence::DarkOakFence(true, true, false, true): return 7652;
- case DarkOakFence::DarkOakFence(true, true, false, false): return 7653;
- case DarkOakFence::DarkOakFence(true, false, true, true): return 7656;
- case DarkOakFence::DarkOakFence(true, false, true, false): return 7657;
- case DarkOakFence::DarkOakFence(true, false, false, true): return 7660;
- case DarkOakFence::DarkOakFence(true, false, false, false): return 7661;
- case DarkOakFence::DarkOakFence(false, true, true, true): return 7664;
- case DarkOakFence::DarkOakFence(false, true, true, false): return 7665;
- case DarkOakFence::DarkOakFence(false, true, false, true): return 7668;
- case DarkOakFence::DarkOakFence(false, true, false, false): return 7669;
- case DarkOakFence::DarkOakFence(false, false, true, true): return 7672;
- case DarkOakFence::DarkOakFence(false, false, true, false): return 7673;
- case DarkOakFence::DarkOakFence(false, false, false, true): return 7676;
- case DarkOakFence::DarkOakFence(false, false, false, false): return 7677;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7486;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7487;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7488;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7489;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7490;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7491;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7492;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7493;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7494;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7495;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7496;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7497;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7498;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7499;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7500;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7501;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7502;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7503;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7504;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7505;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7506;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7507;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7508;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7509;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7510;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7511;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7512;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7513;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7514;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7515;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7516;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7517;
- case DarkOakLeaves::DarkOakLeaves(1, true): return 214;
- case DarkOakLeaves::DarkOakLeaves(1, false): return 215;
- case DarkOakLeaves::DarkOakLeaves(2, true): return 216;
- case DarkOakLeaves::DarkOakLeaves(2, false): return 217;
- case DarkOakLeaves::DarkOakLeaves(3, true): return 218;
- case DarkOakLeaves::DarkOakLeaves(3, false): return 219;
- case DarkOakLeaves::DarkOakLeaves(4, true): return 220;
- case DarkOakLeaves::DarkOakLeaves(4, false): return 221;
- case DarkOakLeaves::DarkOakLeaves(5, true): return 222;
- case DarkOakLeaves::DarkOakLeaves(5, false): return 223;
- case DarkOakLeaves::DarkOakLeaves(6, true): return 224;
- case DarkOakLeaves::DarkOakLeaves(6, false): return 225;
- case DarkOakLeaves::DarkOakLeaves(7, true): return 226;
- case DarkOakLeaves::DarkOakLeaves(7, false): return 227;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::X): return 87;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Y): return 88;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Z): return 89;
- case DarkOakPlanks::DarkOakPlanks(): return 20;
- case DarkOakPressurePlate::DarkOakPressurePlate(true): return 3378;
- case DarkOakPressurePlate::DarkOakPressurePlate(false): return 3379;
- case DarkOakSapling::DarkOakSapling(0): return 31;
- case DarkOakSapling::DarkOakSapling(1): return 32;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Top): return 7289;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Bottom): return 7291;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Double): return 7293;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6414;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6416;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6418;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6420;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6422;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6424;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6426;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6428;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6430;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6432;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6434;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6436;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6438;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6440;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6442;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6444;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6446;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6448;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6450;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6452;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6454;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6456;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6458;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6460;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6462;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6464;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6466;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6468;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6470;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6472;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6474;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6476;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6478;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6480;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6482;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6484;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6486;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6488;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6490;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6492;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, true): return 3915;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, false): return 3917;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, true): return 3919;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, false): return 3921;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, true): return 3923;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, false): return 3925;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, true): return 3927;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, false): return 3929;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, true): return 3931;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, false): return 3933;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, true): return 3935;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, false): return 3937;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, true): return 3939;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, false): return 3941;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, true): return 3943;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, false): return 3945;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, true): return 3947;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, false): return 3949;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, true): return 3951;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, false): return 3953;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, true): return 3955;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, false): return 3957;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, true): return 3959;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, false): return 3961;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, true): return 3963;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, false): return 3965;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, true): return 3967;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, false): return 3969;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, true): return 3971;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, false): return 3973;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, true): return 3975;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, false): return 3977;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::X): return 123;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Y): return 124;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Z): return 125;
- case DarkPrismarine::DarkPrismarine(): return 6561;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Top): return 6815;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Bottom): return 6817;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Double): return 6819;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 6723;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 6725;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 6727;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 6729;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 6731;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 6733;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 6735;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 6737;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 6739;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 6741;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 6743;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 6745;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 6747;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 6749;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 6751;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 6753;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 6755;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 6757;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 6759;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 6761;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 6763;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 6765;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 6767;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 6769;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 6771;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 6773;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 6775;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 6777;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 6779;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 6781;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 6783;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 6785;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 6787;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 6789;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 6791;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 6793;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 6795;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 6797;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 6799;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 6801;
- case DaylightDetector::DaylightDetector(true, 0): return 5652;
- case DaylightDetector::DaylightDetector(true, 1): return 5653;
- case DaylightDetector::DaylightDetector(true, 2): return 5654;
- case DaylightDetector::DaylightDetector(true, 3): return 5655;
- case DaylightDetector::DaylightDetector(true, 4): return 5656;
- case DaylightDetector::DaylightDetector(true, 5): return 5657;
- case DaylightDetector::DaylightDetector(true, 6): return 5658;
- case DaylightDetector::DaylightDetector(true, 7): return 5659;
- case DaylightDetector::DaylightDetector(true, 8): return 5660;
- case DaylightDetector::DaylightDetector(true, 9): return 5661;
- case DaylightDetector::DaylightDetector(true, 10): return 5662;
- case DaylightDetector::DaylightDetector(true, 11): return 5663;
- case DaylightDetector::DaylightDetector(true, 12): return 5664;
- case DaylightDetector::DaylightDetector(true, 13): return 5665;
- case DaylightDetector::DaylightDetector(true, 14): return 5666;
- case DaylightDetector::DaylightDetector(true, 15): return 5667;
- case DaylightDetector::DaylightDetector(false, 0): return 5668;
- case DaylightDetector::DaylightDetector(false, 1): return 5669;
- case DaylightDetector::DaylightDetector(false, 2): return 5670;
- case DaylightDetector::DaylightDetector(false, 3): return 5671;
- case DaylightDetector::DaylightDetector(false, 4): return 5672;
- case DaylightDetector::DaylightDetector(false, 5): return 5673;
- case DaylightDetector::DaylightDetector(false, 6): return 5674;
- case DaylightDetector::DaylightDetector(false, 7): return 5675;
- case DaylightDetector::DaylightDetector(false, 8): return 5676;
- case DaylightDetector::DaylightDetector(false, 9): return 5677;
- case DaylightDetector::DaylightDetector(false, 10): return 5678;
- case DaylightDetector::DaylightDetector(false, 11): return 5679;
- case DaylightDetector::DaylightDetector(false, 12): return 5680;
- case DaylightDetector::DaylightDetector(false, 13): return 5681;
- case DaylightDetector::DaylightDetector(false, 14): return 5682;
- case DaylightDetector::DaylightDetector(false, 15): return 5683;
- case DeadBrainCoral::DeadBrainCoral(): return 8463;
- case DeadBrainCoralBlock::DeadBrainCoralBlock(): return 8451;
- case DeadBrainCoralFan::DeadBrainCoralFan(): return 8563;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8489;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8491;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8493;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8495;
- case DeadBubbleCoral::DeadBubbleCoral(): return 8465;
- case DeadBubbleCoralBlock::DeadBubbleCoralBlock(): return 8452;
- case DeadBubbleCoralFan::DeadBubbleCoralFan(): return 8565;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8497;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8499;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8501;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8503;
- case DeadBush::DeadBush(): return 1043;
- case DeadFireCoral::DeadFireCoral(): return 8467;
- case DeadFireCoralBlock::DeadFireCoralBlock(): return 8453;
- case DeadFireCoralFan::DeadFireCoralFan(): return 8567;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8505;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8507;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8509;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8511;
- case DeadHornCoral::DeadHornCoral(): return 8469;
- case DeadHornCoralBlock::DeadHornCoralBlock(): return 8454;
- case DeadHornCoralFan::DeadHornCoralFan(): return 8569;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8513;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8515;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8517;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8519;
- case DeadTubeCoral::DeadTubeCoral(): return 8461;
- case DeadTubeCoralBlock::DeadTubeCoralBlock(): return 8450;
- case DeadTubeCoralFan::DeadTubeCoralFan(): return 8561;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8481;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8483;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8485;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8487;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::NorthSouth): return 1016;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::EastWest): return 1017;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingEast): return 1018;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingWest): return 1019;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingNorth): return 1020;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingSouth): return 1021;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::NorthSouth): return 1022;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::EastWest): return 1023;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingEast): return 1024;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingWest): return 1025;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingNorth): return 1026;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingSouth): return 1027;
- case DiamondBlock::DiamondBlock(): return 3050;
- case DiamondOre::DiamondOre(): return 3049;
- case Diorite::Diorite(): return 4;
- case Dirt::Dirt(): return 10;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, true): return 233;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, false): return 234;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, true): return 235;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, false): return 236;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, true): return 237;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, false): return 238;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, true): return 239;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, false): return 240;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, true): return 241;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, false): return 242;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, true): return 243;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, false): return 244;
- case DragonEgg::DragonEgg(): return 4636;
- case DragonHead::DragonHead(0): return 5552;
- case DragonHead::DragonHead(1): return 5553;
- case DragonHead::DragonHead(2): return 5554;
- case DragonHead::DragonHead(3): return 5555;
- case DragonHead::DragonHead(4): return 5556;
- case DragonHead::DragonHead(5): return 5557;
- case DragonHead::DragonHead(6): return 5558;
- case DragonHead::DragonHead(7): return 5559;
- case DragonHead::DragonHead(8): return 5560;
- case DragonHead::DragonHead(9): return 5561;
- case DragonHead::DragonHead(10): return 5562;
- case DragonHead::DragonHead(11): return 5563;
- case DragonHead::DragonHead(12): return 5564;
- case DragonHead::DragonHead(13): return 5565;
- case DragonHead::DragonHead(14): return 5566;
- case DragonHead::DragonHead(15): return 5567;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZM): return 5548;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZP): return 5549;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XM): return 5550;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XP): return 5551;
- case DriedKelpBlock::DriedKelpBlock(): return 8437;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, true): return 5793;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, false): return 5794;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, true): return 5795;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, false): return 5796;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, true): return 5797;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, false): return 5798;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, true): return 5799;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, false): return 5800;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, true): return 5801;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, false): return 5802;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, true): return 5803;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, false): return 5804;
- case EmeraldBlock::EmeraldBlock(): return 4884;
- case EmeraldOre::EmeraldOre(): return 4731;
- case EnchantingTable::EnchantingTable(): return 4613;
- case EndGateway::EndGateway(): return 8164;
- case EndPortal::EndPortal(): return 4626;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZM): return 4627;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZP): return 4628;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XM): return 4629;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XP): return 4630;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZM): return 4631;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZP): return 4632;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XM): return 4633;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XP): return 4634;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZM): return 7998;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_XP): return 7999;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZP): return 8000;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_XM): return 8001;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_YP): return 8002;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_YM): return 8003;
- case EndStone::EndStone(): return 4635;
- case EndStoneBricks::EndStoneBricks(): return 8158;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZM): return 4733;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZP): return 4735;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XM): return 4737;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XP): return 4739;
- case Farmland::Farmland(0): return 3060;
- case Farmland::Farmland(1): return 3061;
- case Farmland::Farmland(2): return 3062;
- case Farmland::Farmland(3): return 3063;
- case Farmland::Farmland(4): return 3064;
- case Farmland::Farmland(5): return 3065;
- case Farmland::Farmland(6): return 3066;
- case Farmland::Farmland(7): return 3067;
- case Fern::Fern(): return 1042;
- case Fire::Fire(0, true, true, true, true, true): return 1136;
- case Fire::Fire(0, true, true, true, true, false): return 1137;
- case Fire::Fire(0, true, true, true, false, true): return 1138;
- case Fire::Fire(0, true, true, true, false, false): return 1139;
- case Fire::Fire(0, true, true, false, true, true): return 1140;
- case Fire::Fire(0, true, true, false, true, false): return 1141;
- case Fire::Fire(0, true, true, false, false, true): return 1142;
- case Fire::Fire(0, true, true, false, false, false): return 1143;
- case Fire::Fire(0, true, false, true, true, true): return 1144;
- case Fire::Fire(0, true, false, true, true, false): return 1145;
- case Fire::Fire(0, true, false, true, false, true): return 1146;
- case Fire::Fire(0, true, false, true, false, false): return 1147;
- case Fire::Fire(0, true, false, false, true, true): return 1148;
- case Fire::Fire(0, true, false, false, true, false): return 1149;
- case Fire::Fire(0, true, false, false, false, true): return 1150;
- case Fire::Fire(0, true, false, false, false, false): return 1151;
- case Fire::Fire(0, false, true, true, true, true): return 1152;
- case Fire::Fire(0, false, true, true, true, false): return 1153;
- case Fire::Fire(0, false, true, true, false, true): return 1154;
- case Fire::Fire(0, false, true, true, false, false): return 1155;
- case Fire::Fire(0, false, true, false, true, true): return 1156;
- case Fire::Fire(0, false, true, false, true, false): return 1157;
- case Fire::Fire(0, false, true, false, false, true): return 1158;
- case Fire::Fire(0, false, true, false, false, false): return 1159;
- case Fire::Fire(0, false, false, true, true, true): return 1160;
- case Fire::Fire(0, false, false, true, true, false): return 1161;
- case Fire::Fire(0, false, false, true, false, true): return 1162;
- case Fire::Fire(0, false, false, true, false, false): return 1163;
- case Fire::Fire(0, false, false, false, true, true): return 1164;
- case Fire::Fire(0, false, false, false, true, false): return 1165;
- case Fire::Fire(0, false, false, false, false, true): return 1166;
- case Fire::Fire(0, false, false, false, false, false): return 1167;
- case Fire::Fire(1, true, true, true, true, true): return 1168;
- case Fire::Fire(1, true, true, true, true, false): return 1169;
- case Fire::Fire(1, true, true, true, false, true): return 1170;
- case Fire::Fire(1, true, true, true, false, false): return 1171;
- case Fire::Fire(1, true, true, false, true, true): return 1172;
- case Fire::Fire(1, true, true, false, true, false): return 1173;
- case Fire::Fire(1, true, true, false, false, true): return 1174;
- case Fire::Fire(1, true, true, false, false, false): return 1175;
- case Fire::Fire(1, true, false, true, true, true): return 1176;
- case Fire::Fire(1, true, false, true, true, false): return 1177;
- case Fire::Fire(1, true, false, true, false, true): return 1178;
- case Fire::Fire(1, true, false, true, false, false): return 1179;
- case Fire::Fire(1, true, false, false, true, true): return 1180;
- case Fire::Fire(1, true, false, false, true, false): return 1181;
- case Fire::Fire(1, true, false, false, false, true): return 1182;
- case Fire::Fire(1, true, false, false, false, false): return 1183;
- case Fire::Fire(1, false, true, true, true, true): return 1184;
- case Fire::Fire(1, false, true, true, true, false): return 1185;
- case Fire::Fire(1, false, true, true, false, true): return 1186;
- case Fire::Fire(1, false, true, true, false, false): return 1187;
- case Fire::Fire(1, false, true, false, true, true): return 1188;
- case Fire::Fire(1, false, true, false, true, false): return 1189;
- case Fire::Fire(1, false, true, false, false, true): return 1190;
- case Fire::Fire(1, false, true, false, false, false): return 1191;
- case Fire::Fire(1, false, false, true, true, true): return 1192;
- case Fire::Fire(1, false, false, true, true, false): return 1193;
- case Fire::Fire(1, false, false, true, false, true): return 1194;
- case Fire::Fire(1, false, false, true, false, false): return 1195;
- case Fire::Fire(1, false, false, false, true, true): return 1196;
- case Fire::Fire(1, false, false, false, true, false): return 1197;
- case Fire::Fire(1, false, false, false, false, true): return 1198;
- case Fire::Fire(1, false, false, false, false, false): return 1199;
- case Fire::Fire(2, true, true, true, true, true): return 1200;
- case Fire::Fire(2, true, true, true, true, false): return 1201;
- case Fire::Fire(2, true, true, true, false, true): return 1202;
- case Fire::Fire(2, true, true, true, false, false): return 1203;
- case Fire::Fire(2, true, true, false, true, true): return 1204;
- case Fire::Fire(2, true, true, false, true, false): return 1205;
- case Fire::Fire(2, true, true, false, false, true): return 1206;
- case Fire::Fire(2, true, true, false, false, false): return 1207;
- case Fire::Fire(2, true, false, true, true, true): return 1208;
- case Fire::Fire(2, true, false, true, true, false): return 1209;
- case Fire::Fire(2, true, false, true, false, true): return 1210;
- case Fire::Fire(2, true, false, true, false, false): return 1211;
- case Fire::Fire(2, true, false, false, true, true): return 1212;
- case Fire::Fire(2, true, false, false, true, false): return 1213;
- case Fire::Fire(2, true, false, false, false, true): return 1214;
- case Fire::Fire(2, true, false, false, false, false): return 1215;
- case Fire::Fire(2, false, true, true, true, true): return 1216;
- case Fire::Fire(2, false, true, true, true, false): return 1217;
- case Fire::Fire(2, false, true, true, false, true): return 1218;
- case Fire::Fire(2, false, true, true, false, false): return 1219;
- case Fire::Fire(2, false, true, false, true, true): return 1220;
- case Fire::Fire(2, false, true, false, true, false): return 1221;
- case Fire::Fire(2, false, true, false, false, true): return 1222;
- case Fire::Fire(2, false, true, false, false, false): return 1223;
- case Fire::Fire(2, false, false, true, true, true): return 1224;
- case Fire::Fire(2, false, false, true, true, false): return 1225;
- case Fire::Fire(2, false, false, true, false, true): return 1226;
- case Fire::Fire(2, false, false, true, false, false): return 1227;
- case Fire::Fire(2, false, false, false, true, true): return 1228;
- case Fire::Fire(2, false, false, false, true, false): return 1229;
- case Fire::Fire(2, false, false, false, false, true): return 1230;
- case Fire::Fire(2, false, false, false, false, false): return 1231;
- case Fire::Fire(3, true, true, true, true, true): return 1232;
- case Fire::Fire(3, true, true, true, true, false): return 1233;
- case Fire::Fire(3, true, true, true, false, true): return 1234;
- case Fire::Fire(3, true, true, true, false, false): return 1235;
- case Fire::Fire(3, true, true, false, true, true): return 1236;
- case Fire::Fire(3, true, true, false, true, false): return 1237;
- case Fire::Fire(3, true, true, false, false, true): return 1238;
- case Fire::Fire(3, true, true, false, false, false): return 1239;
- case Fire::Fire(3, true, false, true, true, true): return 1240;
- case Fire::Fire(3, true, false, true, true, false): return 1241;
- case Fire::Fire(3, true, false, true, false, true): return 1242;
- case Fire::Fire(3, true, false, true, false, false): return 1243;
- case Fire::Fire(3, true, false, false, true, true): return 1244;
- case Fire::Fire(3, true, false, false, true, false): return 1245;
- case Fire::Fire(3, true, false, false, false, true): return 1246;
- case Fire::Fire(3, true, false, false, false, false): return 1247;
- case Fire::Fire(3, false, true, true, true, true): return 1248;
- case Fire::Fire(3, false, true, true, true, false): return 1249;
- case Fire::Fire(3, false, true, true, false, true): return 1250;
- case Fire::Fire(3, false, true, true, false, false): return 1251;
- case Fire::Fire(3, false, true, false, true, true): return 1252;
- case Fire::Fire(3, false, true, false, true, false): return 1253;
- case Fire::Fire(3, false, true, false, false, true): return 1254;
- case Fire::Fire(3, false, true, false, false, false): return 1255;
- case Fire::Fire(3, false, false, true, true, true): return 1256;
- case Fire::Fire(3, false, false, true, true, false): return 1257;
- case Fire::Fire(3, false, false, true, false, true): return 1258;
- case Fire::Fire(3, false, false, true, false, false): return 1259;
- case Fire::Fire(3, false, false, false, true, true): return 1260;
- case Fire::Fire(3, false, false, false, true, false): return 1261;
- case Fire::Fire(3, false, false, false, false, true): return 1262;
- case Fire::Fire(3, false, false, false, false, false): return 1263;
- case Fire::Fire(4, true, true, true, true, true): return 1264;
- case Fire::Fire(4, true, true, true, true, false): return 1265;
- case Fire::Fire(4, true, true, true, false, true): return 1266;
- case Fire::Fire(4, true, true, true, false, false): return 1267;
- case Fire::Fire(4, true, true, false, true, true): return 1268;
- case Fire::Fire(4, true, true, false, true, false): return 1269;
- case Fire::Fire(4, true, true, false, false, true): return 1270;
- case Fire::Fire(4, true, true, false, false, false): return 1271;
- case Fire::Fire(4, true, false, true, true, true): return 1272;
- case Fire::Fire(4, true, false, true, true, false): return 1273;
- case Fire::Fire(4, true, false, true, false, true): return 1274;
- case Fire::Fire(4, true, false, true, false, false): return 1275;
- case Fire::Fire(4, true, false, false, true, true): return 1276;
- case Fire::Fire(4, true, false, false, true, false): return 1277;
- case Fire::Fire(4, true, false, false, false, true): return 1278;
- case Fire::Fire(4, true, false, false, false, false): return 1279;
- case Fire::Fire(4, false, true, true, true, true): return 1280;
- case Fire::Fire(4, false, true, true, true, false): return 1281;
- case Fire::Fire(4, false, true, true, false, true): return 1282;
- case Fire::Fire(4, false, true, true, false, false): return 1283;
- case Fire::Fire(4, false, true, false, true, true): return 1284;
- case Fire::Fire(4, false, true, false, true, false): return 1285;
- case Fire::Fire(4, false, true, false, false, true): return 1286;
- case Fire::Fire(4, false, true, false, false, false): return 1287;
- case Fire::Fire(4, false, false, true, true, true): return 1288;
- case Fire::Fire(4, false, false, true, true, false): return 1289;
- case Fire::Fire(4, false, false, true, false, true): return 1290;
- case Fire::Fire(4, false, false, true, false, false): return 1291;
- case Fire::Fire(4, false, false, false, true, true): return 1292;
- case Fire::Fire(4, false, false, false, true, false): return 1293;
- case Fire::Fire(4, false, false, false, false, true): return 1294;
- case Fire::Fire(4, false, false, false, false, false): return 1295;
- case Fire::Fire(5, true, true, true, true, true): return 1296;
- case Fire::Fire(5, true, true, true, true, false): return 1297;
- case Fire::Fire(5, true, true, true, false, true): return 1298;
- case Fire::Fire(5, true, true, true, false, false): return 1299;
- case Fire::Fire(5, true, true, false, true, true): return 1300;
- case Fire::Fire(5, true, true, false, true, false): return 1301;
- case Fire::Fire(5, true, true, false, false, true): return 1302;
- case Fire::Fire(5, true, true, false, false, false): return 1303;
- case Fire::Fire(5, true, false, true, true, true): return 1304;
- case Fire::Fire(5, true, false, true, true, false): return 1305;
- case Fire::Fire(5, true, false, true, false, true): return 1306;
- case Fire::Fire(5, true, false, true, false, false): return 1307;
- case Fire::Fire(5, true, false, false, true, true): return 1308;
- case Fire::Fire(5, true, false, false, true, false): return 1309;
- case Fire::Fire(5, true, false, false, false, true): return 1310;
- case Fire::Fire(5, true, false, false, false, false): return 1311;
- case Fire::Fire(5, false, true, true, true, true): return 1312;
- case Fire::Fire(5, false, true, true, true, false): return 1313;
- case Fire::Fire(5, false, true, true, false, true): return 1314;
- case Fire::Fire(5, false, true, true, false, false): return 1315;
- case Fire::Fire(5, false, true, false, true, true): return 1316;
- case Fire::Fire(5, false, true, false, true, false): return 1317;
- case Fire::Fire(5, false, true, false, false, true): return 1318;
- case Fire::Fire(5, false, true, false, false, false): return 1319;
- case Fire::Fire(5, false, false, true, true, true): return 1320;
- case Fire::Fire(5, false, false, true, true, false): return 1321;
- case Fire::Fire(5, false, false, true, false, true): return 1322;
- case Fire::Fire(5, false, false, true, false, false): return 1323;
- case Fire::Fire(5, false, false, false, true, true): return 1324;
- case Fire::Fire(5, false, false, false, true, false): return 1325;
- case Fire::Fire(5, false, false, false, false, true): return 1326;
- case Fire::Fire(5, false, false, false, false, false): return 1327;
- case Fire::Fire(6, true, true, true, true, true): return 1328;
- case Fire::Fire(6, true, true, true, true, false): return 1329;
- case Fire::Fire(6, true, true, true, false, true): return 1330;
- case Fire::Fire(6, true, true, true, false, false): return 1331;
- case Fire::Fire(6, true, true, false, true, true): return 1332;
- case Fire::Fire(6, true, true, false, true, false): return 1333;
- case Fire::Fire(6, true, true, false, false, true): return 1334;
- case Fire::Fire(6, true, true, false, false, false): return 1335;
- case Fire::Fire(6, true, false, true, true, true): return 1336;
- case Fire::Fire(6, true, false, true, true, false): return 1337;
- case Fire::Fire(6, true, false, true, false, true): return 1338;
- case Fire::Fire(6, true, false, true, false, false): return 1339;
- case Fire::Fire(6, true, false, false, true, true): return 1340;
- case Fire::Fire(6, true, false, false, true, false): return 1341;
- case Fire::Fire(6, true, false, false, false, true): return 1342;
- case Fire::Fire(6, true, false, false, false, false): return 1343;
- case Fire::Fire(6, false, true, true, true, true): return 1344;
- case Fire::Fire(6, false, true, true, true, false): return 1345;
- case Fire::Fire(6, false, true, true, false, true): return 1346;
- case Fire::Fire(6, false, true, true, false, false): return 1347;
- case Fire::Fire(6, false, true, false, true, true): return 1348;
- case Fire::Fire(6, false, true, false, true, false): return 1349;
- case Fire::Fire(6, false, true, false, false, true): return 1350;
- case Fire::Fire(6, false, true, false, false, false): return 1351;
- case Fire::Fire(6, false, false, true, true, true): return 1352;
- case Fire::Fire(6, false, false, true, true, false): return 1353;
- case Fire::Fire(6, false, false, true, false, true): return 1354;
- case Fire::Fire(6, false, false, true, false, false): return 1355;
- case Fire::Fire(6, false, false, false, true, true): return 1356;
- case Fire::Fire(6, false, false, false, true, false): return 1357;
- case Fire::Fire(6, false, false, false, false, true): return 1358;
- case Fire::Fire(6, false, false, false, false, false): return 1359;
- case Fire::Fire(7, true, true, true, true, true): return 1360;
- case Fire::Fire(7, true, true, true, true, false): return 1361;
- case Fire::Fire(7, true, true, true, false, true): return 1362;
- case Fire::Fire(7, true, true, true, false, false): return 1363;
- case Fire::Fire(7, true, true, false, true, true): return 1364;
- case Fire::Fire(7, true, true, false, true, false): return 1365;
- case Fire::Fire(7, true, true, false, false, true): return 1366;
- case Fire::Fire(7, true, true, false, false, false): return 1367;
- case Fire::Fire(7, true, false, true, true, true): return 1368;
- case Fire::Fire(7, true, false, true, true, false): return 1369;
- case Fire::Fire(7, true, false, true, false, true): return 1370;
- case Fire::Fire(7, true, false, true, false, false): return 1371;
- case Fire::Fire(7, true, false, false, true, true): return 1372;
- case Fire::Fire(7, true, false, false, true, false): return 1373;
- case Fire::Fire(7, true, false, false, false, true): return 1374;
- case Fire::Fire(7, true, false, false, false, false): return 1375;
- case Fire::Fire(7, false, true, true, true, true): return 1376;
- case Fire::Fire(7, false, true, true, true, false): return 1377;
- case Fire::Fire(7, false, true, true, false, true): return 1378;
- case Fire::Fire(7, false, true, true, false, false): return 1379;
- case Fire::Fire(7, false, true, false, true, true): return 1380;
- case Fire::Fire(7, false, true, false, true, false): return 1381;
- case Fire::Fire(7, false, true, false, false, true): return 1382;
- case Fire::Fire(7, false, true, false, false, false): return 1383;
- case Fire::Fire(7, false, false, true, true, true): return 1384;
- case Fire::Fire(7, false, false, true, true, false): return 1385;
- case Fire::Fire(7, false, false, true, false, true): return 1386;
- case Fire::Fire(7, false, false, true, false, false): return 1387;
- case Fire::Fire(7, false, false, false, true, true): return 1388;
- case Fire::Fire(7, false, false, false, true, false): return 1389;
- case Fire::Fire(7, false, false, false, false, true): return 1390;
- case Fire::Fire(7, false, false, false, false, false): return 1391;
- case Fire::Fire(8, true, true, true, true, true): return 1392;
- case Fire::Fire(8, true, true, true, true, false): return 1393;
- case Fire::Fire(8, true, true, true, false, true): return 1394;
- case Fire::Fire(8, true, true, true, false, false): return 1395;
- case Fire::Fire(8, true, true, false, true, true): return 1396;
- case Fire::Fire(8, true, true, false, true, false): return 1397;
- case Fire::Fire(8, true, true, false, false, true): return 1398;
- case Fire::Fire(8, true, true, false, false, false): return 1399;
- case Fire::Fire(8, true, false, true, true, true): return 1400;
- case Fire::Fire(8, true, false, true, true, false): return 1401;
- case Fire::Fire(8, true, false, true, false, true): return 1402;
- case Fire::Fire(8, true, false, true, false, false): return 1403;
- case Fire::Fire(8, true, false, false, true, true): return 1404;
- case Fire::Fire(8, true, false, false, true, false): return 1405;
- case Fire::Fire(8, true, false, false, false, true): return 1406;
- case Fire::Fire(8, true, false, false, false, false): return 1407;
- case Fire::Fire(8, false, true, true, true, true): return 1408;
- case Fire::Fire(8, false, true, true, true, false): return 1409;
- case Fire::Fire(8, false, true, true, false, true): return 1410;
- case Fire::Fire(8, false, true, true, false, false): return 1411;
- case Fire::Fire(8, false, true, false, true, true): return 1412;
- case Fire::Fire(8, false, true, false, true, false): return 1413;
- case Fire::Fire(8, false, true, false, false, true): return 1414;
- case Fire::Fire(8, false, true, false, false, false): return 1415;
- case Fire::Fire(8, false, false, true, true, true): return 1416;
- case Fire::Fire(8, false, false, true, true, false): return 1417;
- case Fire::Fire(8, false, false, true, false, true): return 1418;
- case Fire::Fire(8, false, false, true, false, false): return 1419;
- case Fire::Fire(8, false, false, false, true, true): return 1420;
- case Fire::Fire(8, false, false, false, true, false): return 1421;
- case Fire::Fire(8, false, false, false, false, true): return 1422;
- case Fire::Fire(8, false, false, false, false, false): return 1423;
- case Fire::Fire(9, true, true, true, true, true): return 1424;
- case Fire::Fire(9, true, true, true, true, false): return 1425;
- case Fire::Fire(9, true, true, true, false, true): return 1426;
- case Fire::Fire(9, true, true, true, false, false): return 1427;
- case Fire::Fire(9, true, true, false, true, true): return 1428;
- case Fire::Fire(9, true, true, false, true, false): return 1429;
- case Fire::Fire(9, true, true, false, false, true): return 1430;
- case Fire::Fire(9, true, true, false, false, false): return 1431;
- case Fire::Fire(9, true, false, true, true, true): return 1432;
- case Fire::Fire(9, true, false, true, true, false): return 1433;
- case Fire::Fire(9, true, false, true, false, true): return 1434;
- case Fire::Fire(9, true, false, true, false, false): return 1435;
- case Fire::Fire(9, true, false, false, true, true): return 1436;
- case Fire::Fire(9, true, false, false, true, false): return 1437;
- case Fire::Fire(9, true, false, false, false, true): return 1438;
- case Fire::Fire(9, true, false, false, false, false): return 1439;
- case Fire::Fire(9, false, true, true, true, true): return 1440;
- case Fire::Fire(9, false, true, true, true, false): return 1441;
- case Fire::Fire(9, false, true, true, false, true): return 1442;
- case Fire::Fire(9, false, true, true, false, false): return 1443;
- case Fire::Fire(9, false, true, false, true, true): return 1444;
- case Fire::Fire(9, false, true, false, true, false): return 1445;
- case Fire::Fire(9, false, true, false, false, true): return 1446;
- case Fire::Fire(9, false, true, false, false, false): return 1447;
- case Fire::Fire(9, false, false, true, true, true): return 1448;
- case Fire::Fire(9, false, false, true, true, false): return 1449;
- case Fire::Fire(9, false, false, true, false, true): return 1450;
- case Fire::Fire(9, false, false, true, false, false): return 1451;
- case Fire::Fire(9, false, false, false, true, true): return 1452;
- case Fire::Fire(9, false, false, false, true, false): return 1453;
- case Fire::Fire(9, false, false, false, false, true): return 1454;
- case Fire::Fire(9, false, false, false, false, false): return 1455;
- case Fire::Fire(10, true, true, true, true, true): return 1456;
- case Fire::Fire(10, true, true, true, true, false): return 1457;
- case Fire::Fire(10, true, true, true, false, true): return 1458;
- case Fire::Fire(10, true, true, true, false, false): return 1459;
- case Fire::Fire(10, true, true, false, true, true): return 1460;
- case Fire::Fire(10, true, true, false, true, false): return 1461;
- case Fire::Fire(10, true, true, false, false, true): return 1462;
- case Fire::Fire(10, true, true, false, false, false): return 1463;
- case Fire::Fire(10, true, false, true, true, true): return 1464;
- case Fire::Fire(10, true, false, true, true, false): return 1465;
- case Fire::Fire(10, true, false, true, false, true): return 1466;
- case Fire::Fire(10, true, false, true, false, false): return 1467;
- case Fire::Fire(10, true, false, false, true, true): return 1468;
- case Fire::Fire(10, true, false, false, true, false): return 1469;
- case Fire::Fire(10, true, false, false, false, true): return 1470;
- case Fire::Fire(10, true, false, false, false, false): return 1471;
- case Fire::Fire(10, false, true, true, true, true): return 1472;
- case Fire::Fire(10, false, true, true, true, false): return 1473;
- case Fire::Fire(10, false, true, true, false, true): return 1474;
- case Fire::Fire(10, false, true, true, false, false): return 1475;
- case Fire::Fire(10, false, true, false, true, true): return 1476;
- case Fire::Fire(10, false, true, false, true, false): return 1477;
- case Fire::Fire(10, false, true, false, false, true): return 1478;
- case Fire::Fire(10, false, true, false, false, false): return 1479;
- case Fire::Fire(10, false, false, true, true, true): return 1480;
- case Fire::Fire(10, false, false, true, true, false): return 1481;
- case Fire::Fire(10, false, false, true, false, true): return 1482;
- case Fire::Fire(10, false, false, true, false, false): return 1483;
- case Fire::Fire(10, false, false, false, true, true): return 1484;
- case Fire::Fire(10, false, false, false, true, false): return 1485;
- case Fire::Fire(10, false, false, false, false, true): return 1486;
- case Fire::Fire(10, false, false, false, false, false): return 1487;
- case Fire::Fire(11, true, true, true, true, true): return 1488;
- case Fire::Fire(11, true, true, true, true, false): return 1489;
- case Fire::Fire(11, true, true, true, false, true): return 1490;
- case Fire::Fire(11, true, true, true, false, false): return 1491;
- case Fire::Fire(11, true, true, false, true, true): return 1492;
- case Fire::Fire(11, true, true, false, true, false): return 1493;
- case Fire::Fire(11, true, true, false, false, true): return 1494;
- case Fire::Fire(11, true, true, false, false, false): return 1495;
- case Fire::Fire(11, true, false, true, true, true): return 1496;
- case Fire::Fire(11, true, false, true, true, false): return 1497;
- case Fire::Fire(11, true, false, true, false, true): return 1498;
- case Fire::Fire(11, true, false, true, false, false): return 1499;
- case Fire::Fire(11, true, false, false, true, true): return 1500;
- case Fire::Fire(11, true, false, false, true, false): return 1501;
- case Fire::Fire(11, true, false, false, false, true): return 1502;
- case Fire::Fire(11, true, false, false, false, false): return 1503;
- case Fire::Fire(11, false, true, true, true, true): return 1504;
- case Fire::Fire(11, false, true, true, true, false): return 1505;
- case Fire::Fire(11, false, true, true, false, true): return 1506;
- case Fire::Fire(11, false, true, true, false, false): return 1507;
- case Fire::Fire(11, false, true, false, true, true): return 1508;
- case Fire::Fire(11, false, true, false, true, false): return 1509;
- case Fire::Fire(11, false, true, false, false, true): return 1510;
- case Fire::Fire(11, false, true, false, false, false): return 1511;
- case Fire::Fire(11, false, false, true, true, true): return 1512;
- case Fire::Fire(11, false, false, true, true, false): return 1513;
- case Fire::Fire(11, false, false, true, false, true): return 1514;
- case Fire::Fire(11, false, false, true, false, false): return 1515;
- case Fire::Fire(11, false, false, false, true, true): return 1516;
- case Fire::Fire(11, false, false, false, true, false): return 1517;
- case Fire::Fire(11, false, false, false, false, true): return 1518;
- case Fire::Fire(11, false, false, false, false, false): return 1519;
- case Fire::Fire(12, true, true, true, true, true): return 1520;
- case Fire::Fire(12, true, true, true, true, false): return 1521;
- case Fire::Fire(12, true, true, true, false, true): return 1522;
- case Fire::Fire(12, true, true, true, false, false): return 1523;
- case Fire::Fire(12, true, true, false, true, true): return 1524;
- case Fire::Fire(12, true, true, false, true, false): return 1525;
- case Fire::Fire(12, true, true, false, false, true): return 1526;
- case Fire::Fire(12, true, true, false, false, false): return 1527;
- case Fire::Fire(12, true, false, true, true, true): return 1528;
- case Fire::Fire(12, true, false, true, true, false): return 1529;
- case Fire::Fire(12, true, false, true, false, true): return 1530;
- case Fire::Fire(12, true, false, true, false, false): return 1531;
- case Fire::Fire(12, true, false, false, true, true): return 1532;
- case Fire::Fire(12, true, false, false, true, false): return 1533;
- case Fire::Fire(12, true, false, false, false, true): return 1534;
- case Fire::Fire(12, true, false, false, false, false): return 1535;
- case Fire::Fire(12, false, true, true, true, true): return 1536;
- case Fire::Fire(12, false, true, true, true, false): return 1537;
- case Fire::Fire(12, false, true, true, false, true): return 1538;
- case Fire::Fire(12, false, true, true, false, false): return 1539;
- case Fire::Fire(12, false, true, false, true, true): return 1540;
- case Fire::Fire(12, false, true, false, true, false): return 1541;
- case Fire::Fire(12, false, true, false, false, true): return 1542;
- case Fire::Fire(12, false, true, false, false, false): return 1543;
- case Fire::Fire(12, false, false, true, true, true): return 1544;
- case Fire::Fire(12, false, false, true, true, false): return 1545;
- case Fire::Fire(12, false, false, true, false, true): return 1546;
- case Fire::Fire(12, false, false, true, false, false): return 1547;
- case Fire::Fire(12, false, false, false, true, true): return 1548;
- case Fire::Fire(12, false, false, false, true, false): return 1549;
- case Fire::Fire(12, false, false, false, false, true): return 1550;
- case Fire::Fire(12, false, false, false, false, false): return 1551;
- case Fire::Fire(13, true, true, true, true, true): return 1552;
- case Fire::Fire(13, true, true, true, true, false): return 1553;
- case Fire::Fire(13, true, true, true, false, true): return 1554;
- case Fire::Fire(13, true, true, true, false, false): return 1555;
- case Fire::Fire(13, true, true, false, true, true): return 1556;
- case Fire::Fire(13, true, true, false, true, false): return 1557;
- case Fire::Fire(13, true, true, false, false, true): return 1558;
- case Fire::Fire(13, true, true, false, false, false): return 1559;
- case Fire::Fire(13, true, false, true, true, true): return 1560;
- case Fire::Fire(13, true, false, true, true, false): return 1561;
- case Fire::Fire(13, true, false, true, false, true): return 1562;
- case Fire::Fire(13, true, false, true, false, false): return 1563;
- case Fire::Fire(13, true, false, false, true, true): return 1564;
- case Fire::Fire(13, true, false, false, true, false): return 1565;
- case Fire::Fire(13, true, false, false, false, true): return 1566;
- case Fire::Fire(13, true, false, false, false, false): return 1567;
- case Fire::Fire(13, false, true, true, true, true): return 1568;
- case Fire::Fire(13, false, true, true, true, false): return 1569;
- case Fire::Fire(13, false, true, true, false, true): return 1570;
- case Fire::Fire(13, false, true, true, false, false): return 1571;
- case Fire::Fire(13, false, true, false, true, true): return 1572;
- case Fire::Fire(13, false, true, false, true, false): return 1573;
- case Fire::Fire(13, false, true, false, false, true): return 1574;
- case Fire::Fire(13, false, true, false, false, false): return 1575;
- case Fire::Fire(13, false, false, true, true, true): return 1576;
- case Fire::Fire(13, false, false, true, true, false): return 1577;
- case Fire::Fire(13, false, false, true, false, true): return 1578;
- case Fire::Fire(13, false, false, true, false, false): return 1579;
- case Fire::Fire(13, false, false, false, true, true): return 1580;
- case Fire::Fire(13, false, false, false, true, false): return 1581;
- case Fire::Fire(13, false, false, false, false, true): return 1582;
- case Fire::Fire(13, false, false, false, false, false): return 1583;
- case Fire::Fire(14, true, true, true, true, true): return 1584;
- case Fire::Fire(14, true, true, true, true, false): return 1585;
- case Fire::Fire(14, true, true, true, false, true): return 1586;
- case Fire::Fire(14, true, true, true, false, false): return 1587;
- case Fire::Fire(14, true, true, false, true, true): return 1588;
- case Fire::Fire(14, true, true, false, true, false): return 1589;
- case Fire::Fire(14, true, true, false, false, true): return 1590;
- case Fire::Fire(14, true, true, false, false, false): return 1591;
- case Fire::Fire(14, true, false, true, true, true): return 1592;
- case Fire::Fire(14, true, false, true, true, false): return 1593;
- case Fire::Fire(14, true, false, true, false, true): return 1594;
- case Fire::Fire(14, true, false, true, false, false): return 1595;
- case Fire::Fire(14, true, false, false, true, true): return 1596;
- case Fire::Fire(14, true, false, false, true, false): return 1597;
- case Fire::Fire(14, true, false, false, false, true): return 1598;
- case Fire::Fire(14, true, false, false, false, false): return 1599;
- case Fire::Fire(14, false, true, true, true, true): return 1600;
- case Fire::Fire(14, false, true, true, true, false): return 1601;
- case Fire::Fire(14, false, true, true, false, true): return 1602;
- case Fire::Fire(14, false, true, true, false, false): return 1603;
- case Fire::Fire(14, false, true, false, true, true): return 1604;
- case Fire::Fire(14, false, true, false, true, false): return 1605;
- case Fire::Fire(14, false, true, false, false, true): return 1606;
- case Fire::Fire(14, false, true, false, false, false): return 1607;
- case Fire::Fire(14, false, false, true, true, true): return 1608;
- case Fire::Fire(14, false, false, true, true, false): return 1609;
- case Fire::Fire(14, false, false, true, false, true): return 1610;
- case Fire::Fire(14, false, false, true, false, false): return 1611;
- case Fire::Fire(14, false, false, false, true, true): return 1612;
- case Fire::Fire(14, false, false, false, true, false): return 1613;
- case Fire::Fire(14, false, false, false, false, true): return 1614;
- case Fire::Fire(14, false, false, false, false, false): return 1615;
- case Fire::Fire(15, true, true, true, true, true): return 1616;
- case Fire::Fire(15, true, true, true, true, false): return 1617;
- case Fire::Fire(15, true, true, true, false, true): return 1618;
- case Fire::Fire(15, true, true, true, false, false): return 1619;
- case Fire::Fire(15, true, true, false, true, true): return 1620;
- case Fire::Fire(15, true, true, false, true, false): return 1621;
- case Fire::Fire(15, true, true, false, false, true): return 1622;
- case Fire::Fire(15, true, true, false, false, false): return 1623;
- case Fire::Fire(15, true, false, true, true, true): return 1624;
- case Fire::Fire(15, true, false, true, true, false): return 1625;
- case Fire::Fire(15, true, false, true, false, true): return 1626;
- case Fire::Fire(15, true, false, true, false, false): return 1627;
- case Fire::Fire(15, true, false, false, true, true): return 1628;
- case Fire::Fire(15, true, false, false, true, false): return 1629;
- case Fire::Fire(15, true, false, false, false, true): return 1630;
- case Fire::Fire(15, true, false, false, false, false): return 1631;
- case Fire::Fire(15, false, true, true, true, true): return 1632;
- case Fire::Fire(15, false, true, true, true, false): return 1633;
- case Fire::Fire(15, false, true, true, false, true): return 1634;
- case Fire::Fire(15, false, true, true, false, false): return 1635;
- case Fire::Fire(15, false, true, false, true, true): return 1636;
- case Fire::Fire(15, false, true, false, true, false): return 1637;
- case Fire::Fire(15, false, true, false, false, true): return 1638;
- case Fire::Fire(15, false, true, false, false, false): return 1639;
- case Fire::Fire(15, false, false, true, true, true): return 1640;
- case Fire::Fire(15, false, false, true, true, false): return 1641;
- case Fire::Fire(15, false, false, true, false, true): return 1642;
- case Fire::Fire(15, false, false, true, false, false): return 1643;
- case Fire::Fire(15, false, false, false, true, true): return 1644;
- case Fire::Fire(15, false, false, false, true, false): return 1645;
- case Fire::Fire(15, false, false, false, false, true): return 1646;
- case Fire::Fire(15, false, false, false, false, false): return 1647;
- case FireCoral::FireCoral(): return 8477;
- case FireCoralBlock::FireCoralBlock(): return 8458;
- case FireCoralFan::FireCoralFan(): return 8577;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8545;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8547;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8549;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8551;
- case FlowerPot::FlowerPot(): return 5266;
- case FrostedIce::FrostedIce(0): return 8189;
- case FrostedIce::FrostedIce(1): return 8190;
- case FrostedIce::FrostedIce(2): return 8191;
- case FrostedIce::FrostedIce(3): return 8192;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, true): return 3068;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, false): return 3069;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, true): return 3070;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, false): return 3071;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, true): return 3072;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, false): return 3073;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, true): return 3074;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, false): return 3075;
- case Glass::Glass(): return 230;
- case GlassPane::GlassPane(true, true, true, true): return 4214;
- case GlassPane::GlassPane(true, true, true, false): return 4215;
- case GlassPane::GlassPane(true, true, false, true): return 4218;
- case GlassPane::GlassPane(true, true, false, false): return 4219;
- case GlassPane::GlassPane(true, false, true, true): return 4222;
- case GlassPane::GlassPane(true, false, true, false): return 4223;
- case GlassPane::GlassPane(true, false, false, true): return 4226;
- case GlassPane::GlassPane(true, false, false, false): return 4227;
- case GlassPane::GlassPane(false, true, true, true): return 4230;
- case GlassPane::GlassPane(false, true, true, false): return 4231;
- case GlassPane::GlassPane(false, true, false, true): return 4234;
- case GlassPane::GlassPane(false, true, false, false): return 4235;
- case GlassPane::GlassPane(false, false, true, true): return 4238;
- case GlassPane::GlassPane(false, false, true, false): return 4239;
- case GlassPane::GlassPane(false, false, false, true): return 4242;
- case GlassPane::GlassPane(false, false, false, false): return 4243;
- case Glowstone::Glowstone(): return 3496;
- case GoldBlock::GoldBlock(): return 1123;
- case GoldOre::GoldOre(): return 69;
- case Granite::Granite(): return 2;
- case Grass::Grass(): return 1041;
- case GrassBlock::GrassBlock(true): return 8;
- case GrassBlock::GrassBlock(false): return 9;
- case GrassPath::GrassPath(): return 8163;
- case Gravel::Gravel(): return 68;
- case GrayBanner::GrayBanner(0): return 6967;
- case GrayBanner::GrayBanner(1): return 6968;
- case GrayBanner::GrayBanner(2): return 6969;
- case GrayBanner::GrayBanner(3): return 6970;
- case GrayBanner::GrayBanner(4): return 6971;
- case GrayBanner::GrayBanner(5): return 6972;
- case GrayBanner::GrayBanner(6): return 6973;
- case GrayBanner::GrayBanner(7): return 6974;
- case GrayBanner::GrayBanner(8): return 6975;
- case GrayBanner::GrayBanner(9): return 6976;
- case GrayBanner::GrayBanner(10): return 6977;
- case GrayBanner::GrayBanner(11): return 6978;
- case GrayBanner::GrayBanner(12): return 6979;
- case GrayBanner::GrayBanner(13): return 6980;
- case GrayBanner::GrayBanner(14): return 6981;
- case GrayBanner::GrayBanner(15): return 6982;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Head): return 860;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Foot): return 861;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Head): return 862;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Foot): return 863;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Head): return 864;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Foot): return 865;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Head): return 866;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Foot): return 867;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Head): return 868;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Foot): return 869;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Head): return 870;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Foot): return 871;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Head): return 872;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Foot): return 873;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Head): return 874;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Foot): return 875;
- case GrayCarpet::GrayCarpet(): return 6831;
- case GrayConcrete::GrayConcrete(): return 8385;
- case GrayConcretePowder::GrayConcretePowder(): return 8401;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8342;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8343;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8344;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8345;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8260;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8261;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8262;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8263;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8264;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8265;
- case GrayStainedGlass::GrayStainedGlass(): return 3585;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, true): return 6047;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, false): return 6048;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, true): return 6051;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, false): return 6052;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, true): return 6055;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, false): return 6056;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, true): return 6059;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, false): return 6060;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, true): return 6063;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, false): return 6064;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, true): return 6067;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, false): return 6068;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, true): return 6071;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, false): return 6072;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, true): return 6075;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, false): return 6076;
- case GrayTerracotta::GrayTerracotta(): return 5812;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7139;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7140;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 7141;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 7142;
- case GrayWool::GrayWool(): return 1090;
- case GreenBanner::GreenBanner(0): return 7063;
- case GreenBanner::GreenBanner(1): return 7064;
- case GreenBanner::GreenBanner(2): return 7065;
- case GreenBanner::GreenBanner(3): return 7066;
- case GreenBanner::GreenBanner(4): return 7067;
- case GreenBanner::GreenBanner(5): return 7068;
- case GreenBanner::GreenBanner(6): return 7069;
- case GreenBanner::GreenBanner(7): return 7070;
- case GreenBanner::GreenBanner(8): return 7071;
- case GreenBanner::GreenBanner(9): return 7072;
- case GreenBanner::GreenBanner(10): return 7073;
- case GreenBanner::GreenBanner(11): return 7074;
- case GreenBanner::GreenBanner(12): return 7075;
- case GreenBanner::GreenBanner(13): return 7076;
- case GreenBanner::GreenBanner(14): return 7077;
- case GreenBanner::GreenBanner(15): return 7078;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Head): return 956;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Foot): return 957;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Head): return 958;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Foot): return 959;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Head): return 960;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Foot): return 961;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Head): return 962;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Foot): return 963;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Head): return 964;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Foot): return 965;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Head): return 966;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Foot): return 967;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Head): return 968;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Foot): return 969;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Head): return 970;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Foot): return 971;
- case GreenCarpet::GreenCarpet(): return 6837;
- case GreenConcrete::GreenConcrete(): return 8391;
- case GreenConcretePowder::GreenConcretePowder(): return 8407;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8366;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8367;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8368;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8369;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8296;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8297;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8298;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8299;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8300;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8301;
- case GreenStainedGlass::GreenStainedGlass(): return 3591;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, true): return 6239;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, false): return 6240;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, true): return 6243;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, false): return 6244;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, true): return 6247;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, false): return 6248;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, true): return 6251;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, false): return 6252;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, true): return 6255;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, false): return 6256;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, true): return 6259;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, false): return 6260;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, true): return 6263;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, false): return 6264;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, true): return 6267;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, false): return 6268;
- case GreenTerracotta::GreenTerracotta(): return 5818;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7163;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7164;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XM): return 7165;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XP): return 7166;
- case GreenWool::GreenWool(): return 1096;
- case HayBale::HayBale(HayBale::Axis::X): return 6821;
- case HayBale::HayBale(HayBale::Axis::Y): return 6822;
- case HayBale::HayBale(HayBale::Axis::Z): return 6823;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(0): return 5620;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(1): return 5621;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(2): return 5622;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(3): return 5623;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(4): return 5624;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(5): return 5625;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(6): return 5626;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(7): return 5627;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(8): return 5628;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(9): return 5629;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(10): return 5630;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(11): return 5631;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(12): return 5632;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(13): return 5633;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(14): return 5634;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(15): return 5635;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_YM): return 5686;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZM): return 5687;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZP): return 5688;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XM): return 5689;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XP): return 5690;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_YM): return 5691;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZM): return 5692;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZP): return 5693;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XM): return 5694;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XP): return 5695;
- case HornCoral::HornCoral(): return 8479;
- case HornCoralBlock::HornCoralBlock(): return 8459;
- case HornCoralFan::HornCoralFan(): return 8579;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8553;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8555;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8557;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8559;
- case Ice::Ice(): return 3424;
- case InfestedChiseledStoneBricks::InfestedChiseledStoneBricks(): return 3983;
- case InfestedCobblestone::InfestedCobblestone(): return 3979;
- case InfestedCrackedStoneBricks::InfestedCrackedStoneBricks(): return 3982;
- case InfestedMossyStoneBricks::InfestedMossyStoneBricks(): return 3981;
- case InfestedStone::InfestedStone(): return 3978;
- case InfestedStoneBricks::InfestedStoneBricks(): return 3980;
- case IronBars::IronBars(true, true, true, true): return 4182;
- case IronBars::IronBars(true, true, true, false): return 4183;
- case IronBars::IronBars(true, true, false, true): return 4186;
- case IronBars::IronBars(true, true, false, false): return 4187;
- case IronBars::IronBars(true, false, true, true): return 4190;
- case IronBars::IronBars(true, false, true, false): return 4191;
- case IronBars::IronBars(true, false, false, true): return 4194;
- case IronBars::IronBars(true, false, false, false): return 4195;
- case IronBars::IronBars(false, true, true, true): return 4198;
- case IronBars::IronBars(false, true, true, false): return 4199;
- case IronBars::IronBars(false, true, false, true): return 4202;
- case IronBars::IronBars(false, true, false, false): return 4203;
- case IronBars::IronBars(false, false, true, true): return 4206;
- case IronBars::IronBars(false, false, true, false): return 4207;
- case IronBars::IronBars(false, false, false, true): return 4210;
- case IronBars::IronBars(false, false, false, false): return 4211;
- case IronBlock::IronBlock(): return 1124;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3304;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3305;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3306;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3307;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3308;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3309;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3310;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3311;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3312;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3313;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3314;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3315;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3316;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3317;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3318;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3319;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3320;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3321;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3322;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3323;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3324;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3325;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3326;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3327;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3328;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3329;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3330;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3331;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3332;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3333;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3334;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3335;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3336;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3337;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3338;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3339;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3340;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3341;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3342;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3343;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3344;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3345;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3346;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3347;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3348;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3349;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3350;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3351;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3352;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3353;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3354;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3355;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3356;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3357;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3358;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3359;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3360;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3361;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3362;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3363;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3364;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3365;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3366;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3367;
- case IronOre::IronOre(): return 70;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, true): return 6496;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, false): return 6498;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, true): return 6500;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, false): return 6502;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, true): return 6504;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, false): return 6506;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, true): return 6508;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, false): return 6510;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, true): return 6512;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, false): return 6514;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, true): return 6516;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, false): return 6518;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, true): return 6520;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, false): return 6522;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, true): return 6524;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, false): return 6526;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, true): return 6528;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, false): return 6530;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, true): return 6532;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, false): return 6534;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, true): return 6536;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, false): return 6538;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, true): return 6540;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, false): return 6542;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, true): return 6544;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, false): return 6546;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, true): return 6548;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, false): return 6550;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, true): return 6552;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, false): return 6554;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, true): return 6556;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, false): return 6558;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZM): return 3503;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZP): return 3504;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XM): return 3505;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XP): return 3506;
- case Jukebox::Jukebox(true): return 3459;
- case Jukebox::Jukebox(false): return 3460;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5376;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5377;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5378;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5379;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5380;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5381;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5382;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5383;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5384;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5385;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5386;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5387;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5388;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5389;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5390;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5391;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5392;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5393;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5394;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5395;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5396;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5397;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5398;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5399;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 7806;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 7807;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 7808;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 7809;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 7810;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 7811;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 7812;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 7813;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 7814;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 7815;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 7816;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 7817;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 7818;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 7819;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 7820;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 7821;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 7822;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 7823;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 7824;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 7825;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 7826;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 7827;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 7828;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 7829;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 7830;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 7831;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 7832;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 7833;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 7834;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 7835;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 7836;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 7837;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 7838;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 7839;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 7840;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 7841;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 7842;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 7843;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 7844;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 7845;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 7846;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 7847;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 7848;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 7849;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 7850;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 7851;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 7852;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 7853;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 7854;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 7855;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 7856;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 7857;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 7858;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 7859;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 7860;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 7861;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 7862;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 7863;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 7864;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 7865;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 7866;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 7867;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 7868;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 7869;
- case JungleFence::JungleFence(true, true, true, true): return 7584;
- case JungleFence::JungleFence(true, true, true, false): return 7585;
- case JungleFence::JungleFence(true, true, false, true): return 7588;
- case JungleFence::JungleFence(true, true, false, false): return 7589;
- case JungleFence::JungleFence(true, false, true, true): return 7592;
- case JungleFence::JungleFence(true, false, true, false): return 7593;
- case JungleFence::JungleFence(true, false, false, true): return 7596;
- case JungleFence::JungleFence(true, false, false, false): return 7597;
- case JungleFence::JungleFence(false, true, true, true): return 7600;
- case JungleFence::JungleFence(false, true, true, false): return 7601;
- case JungleFence::JungleFence(false, true, false, true): return 7604;
- case JungleFence::JungleFence(false, true, false, false): return 7605;
- case JungleFence::JungleFence(false, false, true, true): return 7608;
- case JungleFence::JungleFence(false, false, true, false): return 7609;
- case JungleFence::JungleFence(false, false, false, true): return 7612;
- case JungleFence::JungleFence(false, false, false, false): return 7613;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7422;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7423;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7424;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7425;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7426;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7427;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7428;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7429;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7430;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7431;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7432;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7433;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7434;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7435;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7436;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7437;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7438;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7439;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7440;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7441;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7442;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7443;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7444;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7445;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7446;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7447;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7448;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7449;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7450;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7451;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7452;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7453;
- case JungleLeaves::JungleLeaves(1, true): return 186;
- case JungleLeaves::JungleLeaves(1, false): return 187;
- case JungleLeaves::JungleLeaves(2, true): return 188;
- case JungleLeaves::JungleLeaves(2, false): return 189;
- case JungleLeaves::JungleLeaves(3, true): return 190;
- case JungleLeaves::JungleLeaves(3, false): return 191;
- case JungleLeaves::JungleLeaves(4, true): return 192;
- case JungleLeaves::JungleLeaves(4, false): return 193;
- case JungleLeaves::JungleLeaves(5, true): return 194;
- case JungleLeaves::JungleLeaves(5, false): return 195;
- case JungleLeaves::JungleLeaves(6, true): return 196;
- case JungleLeaves::JungleLeaves(6, false): return 197;
- case JungleLeaves::JungleLeaves(7, true): return 198;
- case JungleLeaves::JungleLeaves(7, false): return 199;
- case JungleLog::JungleLog(JungleLog::Axis::X): return 81;
- case JungleLog::JungleLog(JungleLog::Axis::Y): return 82;
- case JungleLog::JungleLog(JungleLog::Axis::Z): return 83;
- case JunglePlanks::JunglePlanks(): return 18;
- case JunglePressurePlate::JunglePressurePlate(true): return 3374;
- case JunglePressurePlate::JunglePressurePlate(false): return 3375;
- case JungleSapling::JungleSapling(0): return 27;
- case JungleSapling::JungleSapling(1): return 28;
- case JungleSlab::JungleSlab(JungleSlab::Type::Top): return 7277;
- case JungleSlab::JungleSlab(JungleSlab::Type::Bottom): return 7279;
- case JungleSlab::JungleSlab(JungleSlab::Type::Double): return 7281;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5046;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5048;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5050;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5052;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5054;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5056;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5058;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5060;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5062;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5064;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5066;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5068;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5070;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5072;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5074;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5076;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5078;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5080;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5082;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5084;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5086;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5088;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5090;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5092;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5094;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5096;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5098;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5100;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5102;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5104;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5106;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5108;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5110;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5112;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5114;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5116;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5118;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5120;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5122;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5124;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, true): return 3787;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, false): return 3789;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, true): return 3791;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, false): return 3793;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, true): return 3795;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, false): return 3797;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, true): return 3799;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, false): return 3801;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, true): return 3803;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, false): return 3805;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, true): return 3807;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, false): return 3809;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, true): return 3811;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, false): return 3813;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, true): return 3815;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, false): return 3817;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, true): return 3819;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, false): return 3821;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, true): return 3823;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, false): return 3825;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, true): return 3827;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, false): return 3829;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, true): return 3831;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, false): return 3833;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, true): return 3835;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, false): return 3837;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, true): return 3839;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, false): return 3841;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, true): return 3843;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, false): return 3845;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, true): return 3847;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, false): return 3849;
- case JungleWood::JungleWood(JungleWood::Axis::X): return 117;
- case JungleWood::JungleWood(JungleWood::Axis::Y): return 118;
- case JungleWood::JungleWood(JungleWood::Axis::Z): return 119;
- case Kelp::Kelp(0): return 8410;
- case Kelp::Kelp(1): return 8411;
- case Kelp::Kelp(2): return 8412;
- case Kelp::Kelp(3): return 8413;
- case Kelp::Kelp(4): return 8414;
- case Kelp::Kelp(5): return 8415;
- case Kelp::Kelp(6): return 8416;
- case Kelp::Kelp(7): return 8417;
- case Kelp::Kelp(8): return 8418;
- case Kelp::Kelp(9): return 8419;
- case Kelp::Kelp(10): return 8420;
- case Kelp::Kelp(11): return 8421;
- case Kelp::Kelp(12): return 8422;
- case Kelp::Kelp(13): return 8423;
- case Kelp::Kelp(14): return 8424;
- case Kelp::Kelp(15): return 8425;
- case Kelp::Kelp(16): return 8426;
- case Kelp::Kelp(17): return 8427;
- case Kelp::Kelp(18): return 8428;
- case Kelp::Kelp(19): return 8429;
- case Kelp::Kelp(20): return 8430;
- case Kelp::Kelp(21): return 8431;
- case Kelp::Kelp(22): return 8432;
- case Kelp::Kelp(23): return 8433;
- case Kelp::Kelp(24): return 8434;
- case Kelp::Kelp(25): return 8435;
- case KelpPlant::KelpPlant(): return 8436;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZM): return 3173;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZP): return 3175;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_XM): return 3177;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_XP): return 3179;
- case LapisBlock::LapisBlock(): return 232;
- case LapisOre::LapisOre(): return 231;
- case LargeFern::LargeFern(LargeFern::Half::Upper): return 6853;
- case LargeFern::LargeFern(LargeFern::Half::Lower): return 6854;
- case Lava::Lava(0): return 50;
- case Lava::Lava(1): return 51;
- case Lava::Lava(2): return 52;
- case Lava::Lava(3): return 53;
- case Lava::Lava(4): return 54;
- case Lava::Lava(5): return 55;
- case Lava::Lava(6): return 56;
- case Lava::Lava(7): return 57;
- case Lava::Lava(8): return 58;
- case Lava::Lava(9): return 59;
- case Lava::Lava(10): return 60;
- case Lava::Lava(11): return 61;
- case Lava::Lava(12): return 62;
- case Lava::Lava(13): return 63;
- case Lava::Lava(14): return 64;
- case Lava::Lava(15): return 65;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3278;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3279;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3280;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3281;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3282;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3283;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3284;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3285;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3286;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3287;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3288;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3289;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3290;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3291;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3292;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3293;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3294;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3295;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3296;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3297;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3298;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3299;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3300;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3301;
- case LightBlueBanner::LightBlueBanner(0): return 6903;
- case LightBlueBanner::LightBlueBanner(1): return 6904;
- case LightBlueBanner::LightBlueBanner(2): return 6905;
- case LightBlueBanner::LightBlueBanner(3): return 6906;
- case LightBlueBanner::LightBlueBanner(4): return 6907;
- case LightBlueBanner::LightBlueBanner(5): return 6908;
- case LightBlueBanner::LightBlueBanner(6): return 6909;
- case LightBlueBanner::LightBlueBanner(7): return 6910;
- case LightBlueBanner::LightBlueBanner(8): return 6911;
- case LightBlueBanner::LightBlueBanner(9): return 6912;
- case LightBlueBanner::LightBlueBanner(10): return 6913;
- case LightBlueBanner::LightBlueBanner(11): return 6914;
- case LightBlueBanner::LightBlueBanner(12): return 6915;
- case LightBlueBanner::LightBlueBanner(13): return 6916;
- case LightBlueBanner::LightBlueBanner(14): return 6917;
- case LightBlueBanner::LightBlueBanner(15): return 6918;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Head): return 796;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Foot): return 797;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Head): return 798;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Foot): return 799;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Head): return 800;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Foot): return 801;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Head): return 802;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Foot): return 803;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Head): return 804;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Foot): return 805;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Head): return 806;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Foot): return 807;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Head): return 808;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Foot): return 809;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Head): return 810;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Foot): return 811;
- case LightBlueCarpet::LightBlueCarpet(): return 6827;
- case LightBlueConcrete::LightBlueConcrete(): return 8381;
- case LightBlueConcretePowder::LightBlueConcretePowder(): return 8397;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8326;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8327;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8328;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8329;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8236;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8237;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8238;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8239;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8240;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8241;
- case LightBlueStainedGlass::LightBlueStainedGlass(): return 3581;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, true): return 5919;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, false): return 5920;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, true): return 5923;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, false): return 5924;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, true): return 5927;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, false): return 5928;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, true): return 5931;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, false): return 5932;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, true): return 5935;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, false): return 5936;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, true): return 5939;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, false): return 5940;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, true): return 5943;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, false): return 5944;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, true): return 5947;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, false): return 5948;
- case LightBlueTerracotta::LightBlueTerracotta(): return 5808;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7123;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7124;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 7125;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 7126;
- case LightBlueWool::LightBlueWool(): return 1086;
- case LightGrayBanner::LightGrayBanner(0): return 6983;
- case LightGrayBanner::LightGrayBanner(1): return 6984;
- case LightGrayBanner::LightGrayBanner(2): return 6985;
- case LightGrayBanner::LightGrayBanner(3): return 6986;
- case LightGrayBanner::LightGrayBanner(4): return 6987;
- case LightGrayBanner::LightGrayBanner(5): return 6988;
- case LightGrayBanner::LightGrayBanner(6): return 6989;
- case LightGrayBanner::LightGrayBanner(7): return 6990;
- case LightGrayBanner::LightGrayBanner(8): return 6991;
- case LightGrayBanner::LightGrayBanner(9): return 6992;
- case LightGrayBanner::LightGrayBanner(10): return 6993;
- case LightGrayBanner::LightGrayBanner(11): return 6994;
- case LightGrayBanner::LightGrayBanner(12): return 6995;
- case LightGrayBanner::LightGrayBanner(13): return 6996;
- case LightGrayBanner::LightGrayBanner(14): return 6997;
- case LightGrayBanner::LightGrayBanner(15): return 6998;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Head): return 876;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Foot): return 877;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Head): return 878;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Foot): return 879;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Head): return 880;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Foot): return 881;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Head): return 882;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Foot): return 883;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Head): return 884;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Foot): return 885;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Head): return 886;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Foot): return 887;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Head): return 888;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Foot): return 889;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Head): return 890;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Foot): return 891;
- case LightGrayCarpet::LightGrayCarpet(): return 6832;
- case LightGrayConcrete::LightGrayConcrete(): return 8386;
- case LightGrayConcretePowder::LightGrayConcretePowder(): return 8402;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8346;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8347;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8348;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8349;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8266;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8267;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8268;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8269;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8270;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8271;
- case LightGrayStainedGlass::LightGrayStainedGlass(): return 3586;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, true): return 6079;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, false): return 6080;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, true): return 6083;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, false): return 6084;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, true): return 6087;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, false): return 6088;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, true): return 6091;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, false): return 6092;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, true): return 6095;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, false): return 6096;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, true): return 6099;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, false): return 6100;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, true): return 6103;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, false): return 6104;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, true): return 6107;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, false): return 6108;
- case LightGrayTerracotta::LightGrayTerracotta(): return 5813;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7143;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7144;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 7145;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 7146;
- case LightGrayWool::LightGrayWool(): return 1091;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(0): return 5604;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(1): return 5605;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(2): return 5606;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(3): return 5607;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(4): return 5608;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(5): return 5609;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(6): return 5610;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(7): return 5611;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(8): return 5612;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(9): return 5613;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(10): return 5614;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(11): return 5615;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(12): return 5616;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(13): return 5617;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(14): return 5618;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(15): return 5619;
- case Lilac::Lilac(Lilac::Half::Upper): return 6845;
- case Lilac::Lilac(Lilac::Half::Lower): return 6846;
- case LilyPad::LilyPad(): return 4495;
- case LimeBanner::LimeBanner(0): return 6935;
- case LimeBanner::LimeBanner(1): return 6936;
- case LimeBanner::LimeBanner(2): return 6937;
- case LimeBanner::LimeBanner(3): return 6938;
- case LimeBanner::LimeBanner(4): return 6939;
- case LimeBanner::LimeBanner(5): return 6940;
- case LimeBanner::LimeBanner(6): return 6941;
- case LimeBanner::LimeBanner(7): return 6942;
- case LimeBanner::LimeBanner(8): return 6943;
- case LimeBanner::LimeBanner(9): return 6944;
- case LimeBanner::LimeBanner(10): return 6945;
- case LimeBanner::LimeBanner(11): return 6946;
- case LimeBanner::LimeBanner(12): return 6947;
- case LimeBanner::LimeBanner(13): return 6948;
- case LimeBanner::LimeBanner(14): return 6949;
- case LimeBanner::LimeBanner(15): return 6950;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Head): return 828;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Foot): return 829;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Head): return 830;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Foot): return 831;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Head): return 832;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Foot): return 833;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Head): return 834;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Foot): return 835;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Head): return 836;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Foot): return 837;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Head): return 838;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Foot): return 839;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Head): return 840;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Foot): return 841;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Head): return 842;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Foot): return 843;
- case LimeCarpet::LimeCarpet(): return 6829;
- case LimeConcrete::LimeConcrete(): return 8383;
- case LimeConcretePowder::LimeConcretePowder(): return 8399;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8334;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8335;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8336;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8337;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8248;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8249;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8250;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8251;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8252;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8253;
- case LimeStainedGlass::LimeStainedGlass(): return 3583;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, true): return 5983;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, false): return 5984;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, true): return 5987;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, false): return 5988;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, true): return 5991;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, false): return 5992;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, true): return 5995;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, false): return 5996;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, true): return 5999;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, false): return 6000;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, true): return 6003;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, false): return 6004;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, true): return 6007;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, false): return 6008;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, true): return 6011;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, false): return 6012;
- case LimeTerracotta::LimeTerracotta(): return 5810;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7131;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7132;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XM): return 7133;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XP): return 7134;
- case LimeWool::LimeWool(): return 1088;
- case MagentaBanner::MagentaBanner(0): return 6887;
- case MagentaBanner::MagentaBanner(1): return 6888;
- case MagentaBanner::MagentaBanner(2): return 6889;
- case MagentaBanner::MagentaBanner(3): return 6890;
- case MagentaBanner::MagentaBanner(4): return 6891;
- case MagentaBanner::MagentaBanner(5): return 6892;
- case MagentaBanner::MagentaBanner(6): return 6893;
- case MagentaBanner::MagentaBanner(7): return 6894;
- case MagentaBanner::MagentaBanner(8): return 6895;
- case MagentaBanner::MagentaBanner(9): return 6896;
- case MagentaBanner::MagentaBanner(10): return 6897;
- case MagentaBanner::MagentaBanner(11): return 6898;
- case MagentaBanner::MagentaBanner(12): return 6899;
- case MagentaBanner::MagentaBanner(13): return 6900;
- case MagentaBanner::MagentaBanner(14): return 6901;
- case MagentaBanner::MagentaBanner(15): return 6902;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Head): return 780;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Foot): return 781;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Head): return 782;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Foot): return 783;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Head): return 784;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Foot): return 785;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Head): return 786;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Foot): return 787;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Head): return 788;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Foot): return 789;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Head): return 790;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Foot): return 791;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Head): return 792;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Foot): return 793;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Head): return 794;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Foot): return 795;
- case MagentaCarpet::MagentaCarpet(): return 6826;
- case MagentaConcrete::MagentaConcrete(): return 8380;
- case MagentaConcretePowder::MagentaConcretePowder(): return 8396;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8322;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8323;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8324;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8325;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8230;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8231;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8232;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8233;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8234;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8235;
- case MagentaStainedGlass::MagentaStainedGlass(): return 3580;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, true): return 5887;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, false): return 5888;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, true): return 5891;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, false): return 5892;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, true): return 5895;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, false): return 5896;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, true): return 5899;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, false): return 5900;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, true): return 5903;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, false): return 5904;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, true): return 5907;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, false): return 5908;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, true): return 5911;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, false): return 5912;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, true): return 5915;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, false): return 5916;
- case MagentaTerracotta::MagentaTerracotta(): return 5807;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7119;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7120;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XM): return 7121;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XP): return 7122;
- case MagentaWool::MagentaWool(): return 1085;
- case MagmaBlock::MagmaBlock(): return 8193;
- case Melon::Melon(): return 4244;
- case MelonStem::MelonStem(0): return 4261;
- case MelonStem::MelonStem(1): return 4262;
- case MelonStem::MelonStem(2): return 4263;
- case MelonStem::MelonStem(3): return 4264;
- case MelonStem::MelonStem(4): return 4265;
- case MelonStem::MelonStem(5): return 4266;
- case MelonStem::MelonStem(6): return 4267;
- case MelonStem::MelonStem(7): return 4268;
- case MossyCobblestone::MossyCobblestone(): return 1129;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5204;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5205;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5208;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5209;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5212;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5213;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5216;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5217;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5220;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5221;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5224;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5225;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5228;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5229;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5232;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5233;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5236;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5237;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5240;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5241;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5244;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5245;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5248;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5249;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5252;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5253;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5256;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5257;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5260;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5261;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5264;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5265;
- case MossyStoneBricks::MossyStoneBricks(): return 3985;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Normal): return 1099;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Sticky): return 1100;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Normal): return 1101;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Sticky): return 1102;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Normal): return 1103;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Sticky): return 1104;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Normal): return 1105;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Sticky): return 1106;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Normal): return 1107;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Sticky): return 1108;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Normal): return 1109;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Sticky): return 1110;
- case MushroomStem::MushroomStem(true, true, true, true, true, true): return 4116;
- case MushroomStem::MushroomStem(true, true, true, true, true, false): return 4117;
- case MushroomStem::MushroomStem(true, true, true, true, false, true): return 4118;
- case MushroomStem::MushroomStem(true, true, true, true, false, false): return 4119;
- case MushroomStem::MushroomStem(true, true, true, false, true, true): return 4120;
- case MushroomStem::MushroomStem(true, true, true, false, true, false): return 4121;
- case MushroomStem::MushroomStem(true, true, true, false, false, true): return 4122;
- case MushroomStem::MushroomStem(true, true, true, false, false, false): return 4123;
- case MushroomStem::MushroomStem(true, true, false, true, true, true): return 4124;
- case MushroomStem::MushroomStem(true, true, false, true, true, false): return 4125;
- case MushroomStem::MushroomStem(true, true, false, true, false, true): return 4126;
- case MushroomStem::MushroomStem(true, true, false, true, false, false): return 4127;
- case MushroomStem::MushroomStem(true, true, false, false, true, true): return 4128;
- case MushroomStem::MushroomStem(true, true, false, false, true, false): return 4129;
- case MushroomStem::MushroomStem(true, true, false, false, false, true): return 4130;
- case MushroomStem::MushroomStem(true, true, false, false, false, false): return 4131;
- case MushroomStem::MushroomStem(true, false, true, true, true, true): return 4132;
- case MushroomStem::MushroomStem(true, false, true, true, true, false): return 4133;
- case MushroomStem::MushroomStem(true, false, true, true, false, true): return 4134;
- case MushroomStem::MushroomStem(true, false, true, true, false, false): return 4135;
- case MushroomStem::MushroomStem(true, false, true, false, true, true): return 4136;
- case MushroomStem::MushroomStem(true, false, true, false, true, false): return 4137;
- case MushroomStem::MushroomStem(true, false, true, false, false, true): return 4138;
- case MushroomStem::MushroomStem(true, false, true, false, false, false): return 4139;
- case MushroomStem::MushroomStem(true, false, false, true, true, true): return 4140;
- case MushroomStem::MushroomStem(true, false, false, true, true, false): return 4141;
- case MushroomStem::MushroomStem(true, false, false, true, false, true): return 4142;
- case MushroomStem::MushroomStem(true, false, false, true, false, false): return 4143;
- case MushroomStem::MushroomStem(true, false, false, false, true, true): return 4144;
- case MushroomStem::MushroomStem(true, false, false, false, true, false): return 4145;
- case MushroomStem::MushroomStem(true, false, false, false, false, true): return 4146;
- case MushroomStem::MushroomStem(true, false, false, false, false, false): return 4147;
- case MushroomStem::MushroomStem(false, true, true, true, true, true): return 4148;
- case MushroomStem::MushroomStem(false, true, true, true, true, false): return 4149;
- case MushroomStem::MushroomStem(false, true, true, true, false, true): return 4150;
- case MushroomStem::MushroomStem(false, true, true, true, false, false): return 4151;
- case MushroomStem::MushroomStem(false, true, true, false, true, true): return 4152;
- case MushroomStem::MushroomStem(false, true, true, false, true, false): return 4153;
- case MushroomStem::MushroomStem(false, true, true, false, false, true): return 4154;
- case MushroomStem::MushroomStem(false, true, true, false, false, false): return 4155;
- case MushroomStem::MushroomStem(false, true, false, true, true, true): return 4156;
- case MushroomStem::MushroomStem(false, true, false, true, true, false): return 4157;
- case MushroomStem::MushroomStem(false, true, false, true, false, true): return 4158;
- case MushroomStem::MushroomStem(false, true, false, true, false, false): return 4159;
- case MushroomStem::MushroomStem(false, true, false, false, true, true): return 4160;
- case MushroomStem::MushroomStem(false, true, false, false, true, false): return 4161;
- case MushroomStem::MushroomStem(false, true, false, false, false, true): return 4162;
- case MushroomStem::MushroomStem(false, true, false, false, false, false): return 4163;
- case MushroomStem::MushroomStem(false, false, true, true, true, true): return 4164;
- case MushroomStem::MushroomStem(false, false, true, true, true, false): return 4165;
- case MushroomStem::MushroomStem(false, false, true, true, false, true): return 4166;
- case MushroomStem::MushroomStem(false, false, true, true, false, false): return 4167;
- case MushroomStem::MushroomStem(false, false, true, false, true, true): return 4168;
- case MushroomStem::MushroomStem(false, false, true, false, true, false): return 4169;
- case MushroomStem::MushroomStem(false, false, true, false, false, true): return 4170;
- case MushroomStem::MushroomStem(false, false, true, false, false, false): return 4171;
- case MushroomStem::MushroomStem(false, false, false, true, true, true): return 4172;
- case MushroomStem::MushroomStem(false, false, false, true, true, false): return 4173;
- case MushroomStem::MushroomStem(false, false, false, true, false, true): return 4174;
- case MushroomStem::MushroomStem(false, false, false, true, false, false): return 4175;
- case MushroomStem::MushroomStem(false, false, false, false, true, true): return 4176;
- case MushroomStem::MushroomStem(false, false, false, false, true, false): return 4177;
- case MushroomStem::MushroomStem(false, false, false, false, false, true): return 4178;
- case MushroomStem::MushroomStem(false, false, false, false, false, false): return 4179;
- case Mycelium::Mycelium(true): return 4493;
- case Mycelium::Mycelium(false): return 4494;
- case NetherBrickFence::NetherBrickFence(true, true, true, true): return 4499;
- case NetherBrickFence::NetherBrickFence(true, true, true, false): return 4500;
- case NetherBrickFence::NetherBrickFence(true, true, false, true): return 4503;
- case NetherBrickFence::NetherBrickFence(true, true, false, false): return 4504;
- case NetherBrickFence::NetherBrickFence(true, false, true, true): return 4507;
- case NetherBrickFence::NetherBrickFence(true, false, true, false): return 4508;
- case NetherBrickFence::NetherBrickFence(true, false, false, true): return 4511;
- case NetherBrickFence::NetherBrickFence(true, false, false, false): return 4512;
- case NetherBrickFence::NetherBrickFence(false, true, true, true): return 4515;
- case NetherBrickFence::NetherBrickFence(false, true, true, false): return 4516;
- case NetherBrickFence::NetherBrickFence(false, true, false, true): return 4519;
- case NetherBrickFence::NetherBrickFence(false, true, false, false): return 4520;
- case NetherBrickFence::NetherBrickFence(false, false, true, true): return 4523;
- case NetherBrickFence::NetherBrickFence(false, false, true, false): return 4524;
- case NetherBrickFence::NetherBrickFence(false, false, false, true): return 4527;
- case NetherBrickFence::NetherBrickFence(false, false, false, false): return 4528;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Top): return 7331;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Bottom): return 7333;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double): return 7335;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 4530;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 4532;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 4534;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 4536;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 4538;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 4540;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 4542;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 4544;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 4546;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 4548;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 4550;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 4552;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 4554;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 4556;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 4558;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 4560;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 4562;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 4564;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 4566;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 4568;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 4570;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 4572;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 4574;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 4576;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 4578;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 4580;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 4582;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 4584;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 4586;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 4588;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 4590;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 4592;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 4594;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 4596;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 4598;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 4600;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 4602;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 4604;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 4606;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 4608;
- case NetherBricks::NetherBricks(): return 4496;
- case NetherPortal::NetherPortal(NetherPortal::Axis::X): return 3497;
- case NetherPortal::NetherPortal(NetherPortal::Axis::Z): return 3498;
- case NetherQuartzOre::NetherQuartzOre(): return 5685;
- case NetherWart::NetherWart(0): return 4609;
- case NetherWart::NetherWart(1): return 4610;
- case NetherWart::NetherWart(2): return 4611;
- case NetherWart::NetherWart(3): return 4612;
- case NetherWartBlock::NetherWartBlock(): return 8194;
- case Netherrack::Netherrack(): return 3494;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, true): return 248;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, false): return 249;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, true): return 250;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, false): return 251;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, true): return 252;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, false): return 253;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, true): return 254;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, false): return 255;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, true): return 256;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, false): return 257;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, true): return 258;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, false): return 259;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, true): return 260;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, false): return 261;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, true): return 262;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, false): return 263;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, true): return 264;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, false): return 265;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, true): return 266;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, false): return 267;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, true): return 268;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, false): return 269;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, true): return 270;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, false): return 271;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, true): return 272;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, false): return 273;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, true): return 274;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, false): return 275;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, true): return 276;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, false): return 277;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, true): return 278;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, false): return 279;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, true): return 280;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, false): return 281;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, true): return 282;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, false): return 283;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, true): return 284;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, false): return 285;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, true): return 286;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, false): return 287;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, true): return 288;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, false): return 289;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, true): return 290;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, false): return 291;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, true): return 292;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, false): return 293;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, true): return 294;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, false): return 295;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, true): return 296;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, false): return 297;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, true): return 298;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, false): return 299;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, true): return 300;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, false): return 301;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, true): return 302;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, false): return 303;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, true): return 304;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, false): return 305;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, true): return 306;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, false): return 307;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, true): return 308;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, false): return 309;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, true): return 310;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, false): return 311;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, true): return 312;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, false): return 313;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, true): return 314;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, false): return 315;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, true): return 316;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, false): return 317;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, true): return 318;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, false): return 319;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, true): return 320;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, false): return 321;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, true): return 322;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, false): return 323;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, true): return 324;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, false): return 325;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, true): return 326;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, false): return 327;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, true): return 328;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, false): return 329;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, true): return 330;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, false): return 331;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, true): return 332;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, false): return 333;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, true): return 334;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, false): return 335;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, true): return 336;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, false): return 337;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, true): return 338;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, false): return 339;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, true): return 340;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, false): return 341;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, true): return 342;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, false): return 343;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, true): return 344;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, false): return 345;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, true): return 346;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, false): return 347;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, true): return 348;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, false): return 349;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, true): return 350;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, false): return 351;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, true): return 352;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, false): return 353;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, true): return 354;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, false): return 355;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, true): return 356;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, false): return 357;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, true): return 358;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, false): return 359;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, true): return 360;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, false): return 361;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, true): return 362;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, false): return 363;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, true): return 364;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, false): return 365;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, true): return 366;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, false): return 367;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, true): return 368;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, false): return 369;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, true): return 370;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, false): return 371;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, true): return 372;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, false): return 373;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, true): return 374;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, false): return 375;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, true): return 376;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, false): return 377;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, true): return 378;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, false): return 379;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, true): return 380;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, false): return 381;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, true): return 382;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, false): return 383;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, true): return 384;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, false): return 385;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, true): return 386;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, false): return 387;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, true): return 388;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, false): return 389;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, true): return 390;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, false): return 391;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, true): return 392;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, false): return 393;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, true): return 394;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, false): return 395;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, true): return 396;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, false): return 397;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, true): return 398;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, false): return 399;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, true): return 400;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, false): return 401;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, true): return 402;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, false): return 403;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, true): return 404;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, false): return 405;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, true): return 406;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, false): return 407;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, true): return 408;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, false): return 409;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, true): return 410;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, false): return 411;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, true): return 412;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, false): return 413;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, true): return 414;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, false): return 415;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, true): return 416;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, false): return 417;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, true): return 418;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, false): return 419;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, true): return 420;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, false): return 421;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, true): return 422;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, false): return 423;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, true): return 424;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, false): return 425;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, true): return 426;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, false): return 427;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, true): return 428;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, false): return 429;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, true): return 430;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, false): return 431;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, true): return 432;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, false): return 433;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, true): return 434;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, false): return 435;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, true): return 436;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, false): return 437;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, true): return 438;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, false): return 439;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, true): return 440;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, false): return 441;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, true): return 442;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, false): return 443;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, true): return 444;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, false): return 445;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, true): return 446;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, false): return 447;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, true): return 448;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, false): return 449;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, true): return 450;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, false): return 451;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, true): return 452;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, false): return 453;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, true): return 454;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, false): return 455;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, true): return 456;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, false): return 457;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, true): return 458;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, false): return 459;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, true): return 460;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, false): return 461;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, true): return 462;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, false): return 463;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, true): return 464;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, false): return 465;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, true): return 466;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, false): return 467;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, true): return 468;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, false): return 469;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, true): return 470;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, false): return 471;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, true): return 472;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, false): return 473;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, true): return 474;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, false): return 475;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, true): return 476;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, false): return 477;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, true): return 478;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, false): return 479;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, true): return 480;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, false): return 481;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, true): return 482;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, false): return 483;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, true): return 484;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, false): return 485;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, true): return 486;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, false): return 487;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, true): return 488;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, false): return 489;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, true): return 490;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, false): return 491;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, true): return 492;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, false): return 493;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, true): return 494;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, false): return 495;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, true): return 496;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, false): return 497;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, true): return 498;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, false): return 499;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, true): return 500;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, false): return 501;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, true): return 502;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, false): return 503;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, true): return 504;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, false): return 505;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, true): return 506;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, false): return 507;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, true): return 508;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, false): return 509;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, true): return 510;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, false): return 511;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, true): return 512;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, false): return 513;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, true): return 514;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, false): return 515;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, true): return 516;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, false): return 517;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, true): return 518;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, false): return 519;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, true): return 520;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, false): return 521;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, true): return 522;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, false): return 523;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, true): return 524;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, false): return 525;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, true): return 526;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, false): return 527;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, true): return 528;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, false): return 529;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, true): return 530;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, false): return 531;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, true): return 532;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, false): return 533;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, true): return 534;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, false): return 535;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, true): return 536;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, false): return 537;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, true): return 538;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, false): return 539;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, true): return 540;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, false): return 541;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, true): return 542;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, false): return 543;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, true): return 544;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, false): return 545;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, true): return 546;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, false): return 547;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, true): return 548;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, false): return 549;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, true): return 550;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, false): return 551;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, true): return 552;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, false): return 553;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, true): return 554;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, false): return 555;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, true): return 556;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, false): return 557;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, true): return 558;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, false): return 559;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, true): return 560;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, false): return 561;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, true): return 562;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, false): return 563;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, true): return 564;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, false): return 565;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, true): return 566;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, false): return 567;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, true): return 568;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, false): return 569;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, true): return 570;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, false): return 571;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, true): return 572;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, false): return 573;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, true): return 574;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, false): return 575;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, true): return 576;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, false): return 577;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, true): return 578;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, false): return 579;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, true): return 580;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, false): return 581;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, true): return 582;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, false): return 583;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, true): return 584;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, false): return 585;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, true): return 586;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, false): return 587;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, true): return 588;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, false): return 589;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, true): return 590;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, false): return 591;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, true): return 592;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, false): return 593;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, true): return 594;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, false): return 595;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, true): return 596;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, false): return 597;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, true): return 598;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, false): return 599;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, true): return 600;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, false): return 601;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, true): return 602;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, false): return 603;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, true): return 604;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, false): return 605;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, true): return 606;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, false): return 607;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, true): return 608;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, false): return 609;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, true): return 610;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, false): return 611;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, true): return 612;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, false): return 613;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, true): return 614;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, false): return 615;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, true): return 616;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, false): return 617;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, true): return 618;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, false): return 619;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, true): return 620;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, false): return 621;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, true): return 622;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, false): return 623;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, true): return 624;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, false): return 625;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, true): return 626;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, false): return 627;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, true): return 628;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, false): return 629;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, true): return 630;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, false): return 631;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, true): return 632;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, false): return 633;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, true): return 634;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, false): return 635;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, true): return 636;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, false): return 637;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, true): return 638;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, false): return 639;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, true): return 640;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, false): return 641;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, true): return 642;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, false): return 643;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, true): return 644;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, false): return 645;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, true): return 646;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, false): return 647;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, true): return 648;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, false): return 649;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, true): return 650;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, false): return 651;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, true): return 652;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, false): return 653;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, true): return 654;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, false): return 655;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, true): return 656;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, false): return 657;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, true): return 658;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, false): return 659;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, true): return 660;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, false): return 661;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, true): return 662;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, false): return 663;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, true): return 664;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, false): return 665;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, true): return 666;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, false): return 667;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, true): return 668;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, false): return 669;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, true): return 670;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, false): return 671;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, true): return 672;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, false): return 673;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, true): return 674;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, false): return 675;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, true): return 676;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, false): return 677;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, true): return 678;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, false): return 679;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, true): return 680;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, false): return 681;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, true): return 682;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, false): return 683;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, true): return 684;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, false): return 685;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, true): return 686;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, false): return 687;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, true): return 688;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, false): return 689;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, true): return 690;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, false): return 691;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, true): return 692;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, false): return 693;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, true): return 694;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, false): return 695;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, true): return 696;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, false): return 697;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, true): return 698;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, false): return 699;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, true): return 700;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, false): return 701;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, true): return 702;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, false): return 703;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, true): return 704;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, false): return 705;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, true): return 706;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, false): return 707;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, true): return 708;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, false): return 709;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, true): return 710;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, false): return 711;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, true): return 712;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, false): return 713;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, true): return 714;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, false): return 715;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, true): return 716;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, false): return 717;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, true): return 718;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, false): return 719;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, true): return 720;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, false): return 721;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, true): return 722;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, false): return 723;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, true): return 724;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, false): return 725;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, true): return 726;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, false): return 727;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, true): return 728;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, false): return 729;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, true): return 730;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, false): return 731;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, true): return 732;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, false): return 733;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, true): return 734;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, false): return 735;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, true): return 736;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, false): return 737;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, true): return 738;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, false): return 739;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, true): return 740;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, false): return 741;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, true): return 742;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, false): return 743;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, true): return 744;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, false): return 745;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, true): return 746;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, false): return 747;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5304;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5305;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5306;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5307;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5308;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5309;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5310;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5311;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5312;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5313;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5314;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5315;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5316;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5317;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5318;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5319;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5320;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5321;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5322;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5323;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5324;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5325;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5326;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5327;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3108;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3109;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3110;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3111;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3112;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3113;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3114;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3115;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3116;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3117;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3118;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3119;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3120;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3121;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3122;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3123;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3124;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3125;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3126;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3127;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3128;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3129;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3130;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3131;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3132;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3133;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3134;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3135;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3136;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3137;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3138;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3139;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3140;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3141;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3142;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3143;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3144;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3145;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3146;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3147;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3148;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3149;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3150;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3151;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3152;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3153;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3154;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3155;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3156;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3157;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3158;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3159;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3160;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3161;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3162;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3163;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3164;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3165;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3166;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3167;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3168;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3169;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3170;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3171;
- case OakFence::OakFence(true, true, true, true): return 3463;
- case OakFence::OakFence(true, true, true, false): return 3464;
- case OakFence::OakFence(true, true, false, true): return 3467;
- case OakFence::OakFence(true, true, false, false): return 3468;
- case OakFence::OakFence(true, false, true, true): return 3471;
- case OakFence::OakFence(true, false, true, false): return 3472;
- case OakFence::OakFence(true, false, false, true): return 3475;
- case OakFence::OakFence(true, false, false, false): return 3476;
- case OakFence::OakFence(false, true, true, true): return 3479;
- case OakFence::OakFence(false, true, true, false): return 3480;
- case OakFence::OakFence(false, true, false, true): return 3483;
- case OakFence::OakFence(false, true, false, false): return 3484;
- case OakFence::OakFence(false, false, true, true): return 3487;
- case OakFence::OakFence(false, false, true, false): return 3488;
- case OakFence::OakFence(false, false, false, true): return 3491;
- case OakFence::OakFence(false, false, false, false): return 3492;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 4301;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 4302;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 4303;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 4304;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 4305;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 4306;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 4307;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 4308;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 4309;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 4310;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 4311;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 4312;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 4313;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 4314;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 4315;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 4316;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 4317;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 4318;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 4319;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 4320;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 4321;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 4322;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 4323;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 4324;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 4325;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 4326;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 4327;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 4328;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 4329;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 4330;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 4331;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 4332;
- case OakLeaves::OakLeaves(1, true): return 144;
- case OakLeaves::OakLeaves(1, false): return 145;
- case OakLeaves::OakLeaves(2, true): return 146;
- case OakLeaves::OakLeaves(2, false): return 147;
- case OakLeaves::OakLeaves(3, true): return 148;
- case OakLeaves::OakLeaves(3, false): return 149;
- case OakLeaves::OakLeaves(4, true): return 150;
- case OakLeaves::OakLeaves(4, false): return 151;
- case OakLeaves::OakLeaves(5, true): return 152;
- case OakLeaves::OakLeaves(5, false): return 153;
- case OakLeaves::OakLeaves(6, true): return 154;
- case OakLeaves::OakLeaves(6, false): return 155;
- case OakLeaves::OakLeaves(7, true): return 156;
- case OakLeaves::OakLeaves(7, false): return 157;
- case OakLog::OakLog(OakLog::Axis::X): return 72;
- case OakLog::OakLog(OakLog::Axis::Y): return 73;
- case OakLog::OakLog(OakLog::Axis::Z): return 74;
- case OakPlanks::OakPlanks(): return 15;
- case OakPressurePlate::OakPressurePlate(true): return 3368;
- case OakPressurePlate::OakPressurePlate(false): return 3369;
- case OakSapling::OakSapling(0): return 21;
- case OakSapling::OakSapling(1): return 22;
- case OakSlab::OakSlab(OakSlab::Type::Top): return 7259;
- case OakSlab::OakSlab(OakSlab::Type::Bottom): return 7261;
- case OakSlab::OakSlab(OakSlab::Type::Double): return 7263;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1650;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1652;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1654;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1656;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1658;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1660;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1662;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1664;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1666;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1668;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1670;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1672;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1674;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1676;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1678;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1680;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1682;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1684;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1686;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1688;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1690;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1692;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1694;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1696;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1698;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1700;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1702;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1704;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1706;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1708;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1710;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1712;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1714;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1716;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1718;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1720;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1722;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1724;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1726;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1728;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, true): return 3595;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, false): return 3597;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, true): return 3599;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, false): return 3601;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, true): return 3603;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, false): return 3605;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, true): return 3607;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, false): return 3609;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, true): return 3611;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, false): return 3613;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, true): return 3615;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, false): return 3617;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, true): return 3619;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, false): return 3621;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, true): return 3623;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, false): return 3625;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, true): return 3627;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, false): return 3629;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, true): return 3631;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, false): return 3633;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, true): return 3635;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, false): return 3637;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, true): return 3639;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, false): return 3641;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, true): return 3643;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, false): return 3645;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, true): return 3647;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, false): return 3649;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, true): return 3651;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, false): return 3653;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, true): return 3655;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, false): return 3657;
- case OakWood::OakWood(OakWood::Axis::X): return 108;
- case OakWood::OakWood(OakWood::Axis::Y): return 109;
- case OakWood::OakWood(OakWood::Axis::Z): return 110;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, true): return 8200;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, false): return 8201;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XP, true): return 8202;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XP, false): return 8203;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, true): return 8204;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, false): return 8205;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XM, true): return 8206;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XM, false): return 8207;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YP, true): return 8208;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YP, false): return 8209;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YM, true): return 8210;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YM, false): return 8211;
- case Obsidian::Obsidian(): return 1130;
- case OrangeBanner::OrangeBanner(0): return 6871;
- case OrangeBanner::OrangeBanner(1): return 6872;
- case OrangeBanner::OrangeBanner(2): return 6873;
- case OrangeBanner::OrangeBanner(3): return 6874;
- case OrangeBanner::OrangeBanner(4): return 6875;
- case OrangeBanner::OrangeBanner(5): return 6876;
- case OrangeBanner::OrangeBanner(6): return 6877;
- case OrangeBanner::OrangeBanner(7): return 6878;
- case OrangeBanner::OrangeBanner(8): return 6879;
- case OrangeBanner::OrangeBanner(9): return 6880;
- case OrangeBanner::OrangeBanner(10): return 6881;
- case OrangeBanner::OrangeBanner(11): return 6882;
- case OrangeBanner::OrangeBanner(12): return 6883;
- case OrangeBanner::OrangeBanner(13): return 6884;
- case OrangeBanner::OrangeBanner(14): return 6885;
- case OrangeBanner::OrangeBanner(15): return 6886;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Head): return 764;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Foot): return 765;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Head): return 766;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Foot): return 767;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Head): return 768;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Foot): return 769;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Head): return 770;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Foot): return 771;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Head): return 772;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Foot): return 773;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Head): return 774;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Foot): return 775;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Head): return 776;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Foot): return 777;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Head): return 778;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Foot): return 779;
- case OrangeCarpet::OrangeCarpet(): return 6825;
- case OrangeConcrete::OrangeConcrete(): return 8379;
- case OrangeConcretePowder::OrangeConcretePowder(): return 8395;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8318;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8319;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8320;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8321;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8224;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8225;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8226;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8227;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8228;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8229;
- case OrangeStainedGlass::OrangeStainedGlass(): return 3579;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, true): return 5855;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, false): return 5856;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, true): return 5859;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, false): return 5860;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, true): return 5863;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, false): return 5864;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, true): return 5867;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, false): return 5868;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, true): return 5871;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, false): return 5872;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, true): return 5875;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, false): return 5876;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, true): return 5879;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, false): return 5880;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, true): return 5883;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, false): return 5884;
- case OrangeTerracotta::OrangeTerracotta(): return 5806;
- case OrangeTulip::OrangeTulip(): return 1117;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7115;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7116;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XM): return 7117;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XP): return 7118;
- case OrangeWool::OrangeWool(): return 1084;
- case OxeyeDaisy::OxeyeDaisy(): return 1120;
- case PackedIce::PackedIce(): return 6842;
- case Peony::Peony(Peony::Half::Upper): return 6849;
- case Peony::Peony(Peony::Half::Lower): return 6850;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Top): return 7307;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Bottom): return 7309;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double): return 7311;
- case PinkBanner::PinkBanner(0): return 6951;
- case PinkBanner::PinkBanner(1): return 6952;
- case PinkBanner::PinkBanner(2): return 6953;
- case PinkBanner::PinkBanner(3): return 6954;
- case PinkBanner::PinkBanner(4): return 6955;
- case PinkBanner::PinkBanner(5): return 6956;
- case PinkBanner::PinkBanner(6): return 6957;
- case PinkBanner::PinkBanner(7): return 6958;
- case PinkBanner::PinkBanner(8): return 6959;
- case PinkBanner::PinkBanner(9): return 6960;
- case PinkBanner::PinkBanner(10): return 6961;
- case PinkBanner::PinkBanner(11): return 6962;
- case PinkBanner::PinkBanner(12): return 6963;
- case PinkBanner::PinkBanner(13): return 6964;
- case PinkBanner::PinkBanner(14): return 6965;
- case PinkBanner::PinkBanner(15): return 6966;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Head): return 844;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Foot): return 845;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Head): return 846;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Foot): return 847;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Head): return 848;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Foot): return 849;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Head): return 850;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Foot): return 851;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Head): return 852;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Foot): return 853;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Head): return 854;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Foot): return 855;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Head): return 856;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Foot): return 857;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Head): return 858;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Foot): return 859;
- case PinkCarpet::PinkCarpet(): return 6830;
- case PinkConcrete::PinkConcrete(): return 8384;
- case PinkConcretePowder::PinkConcretePowder(): return 8400;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8338;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8339;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8340;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8341;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8254;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8255;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8256;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8257;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8258;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8259;
- case PinkStainedGlass::PinkStainedGlass(): return 3584;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, true): return 6015;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, false): return 6016;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, true): return 6019;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, false): return 6020;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, true): return 6023;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, false): return 6024;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, true): return 6027;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, false): return 6028;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, true): return 6031;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, false): return 6032;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, true): return 6035;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, false): return 6036;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, true): return 6039;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, false): return 6040;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, true): return 6043;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, false): return 6044;
- case PinkTerracotta::PinkTerracotta(): return 5811;
- case PinkTulip::PinkTulip(): return 1119;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7135;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7136;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XM): return 7137;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XP): return 7138;
- case PinkWool::PinkWool(): return 1089;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZM): return 1047;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_XP): return 1048;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZP): return 1049;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_XM): return 1050;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_YP): return 1051;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_YM): return 1052;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZM): return 1053;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_XP): return 1054;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZP): return 1055;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_XM): return 1056;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_YP): return 1057;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_YM): return 1058;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Normal): return 1059;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Sticky): return 1060;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Normal): return 1061;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Sticky): return 1062;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Normal): return 1063;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Sticky): return 1064;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Normal): return 1065;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Sticky): return 1066;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Normal): return 1067;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Sticky): return 1068;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Normal): return 1069;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Sticky): return 1070;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Normal): return 1071;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Sticky): return 1072;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Normal): return 1073;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Sticky): return 1074;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Normal): return 1075;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Sticky): return 1076;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Normal): return 1077;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Sticky): return 1078;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Normal): return 1079;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Sticky): return 1080;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Normal): return 1081;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Sticky): return 1082;
- case PlayerHead::PlayerHead(0): return 5512;
- case PlayerHead::PlayerHead(1): return 5513;
- case PlayerHead::PlayerHead(2): return 5514;
- case PlayerHead::PlayerHead(3): return 5515;
- case PlayerHead::PlayerHead(4): return 5516;
- case PlayerHead::PlayerHead(5): return 5517;
- case PlayerHead::PlayerHead(6): return 5518;
- case PlayerHead::PlayerHead(7): return 5519;
- case PlayerHead::PlayerHead(8): return 5520;
- case PlayerHead::PlayerHead(9): return 5521;
- case PlayerHead::PlayerHead(10): return 5522;
- case PlayerHead::PlayerHead(11): return 5523;
- case PlayerHead::PlayerHead(12): return 5524;
- case PlayerHead::PlayerHead(13): return 5525;
- case PlayerHead::PlayerHead(14): return 5526;
- case PlayerHead::PlayerHead(15): return 5527;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZM): return 5508;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZP): return 5509;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XM): return 5510;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XP): return 5511;
- case Podzol::Podzol(true): return 12;
- case Podzol::Podzol(false): return 13;
- case PolishedAndesite::PolishedAndesite(): return 7;
- case PolishedDiorite::PolishedDiorite(): return 5;
- case PolishedGranite::PolishedGranite(): return 3;
- case Poppy::Poppy(): return 1112;
- case Potatoes::Potatoes(0): return 5296;
- case Potatoes::Potatoes(1): return 5297;
- case Potatoes::Potatoes(2): return 5298;
- case Potatoes::Potatoes(3): return 5299;
- case Potatoes::Potatoes(4): return 5300;
- case Potatoes::Potatoes(5): return 5301;
- case Potatoes::Potatoes(6): return 5302;
- case Potatoes::Potatoes(7): return 5303;
- case PottedAcaciaSapling::PottedAcaciaSapling(): return 5271;
- case PottedAllium::PottedAllium(): return 5277;
- case PottedAzureBluet::PottedAzureBluet(): return 5278;
- case PottedBirchSapling::PottedBirchSapling(): return 5269;
- case PottedBlueOrchid::PottedBlueOrchid(): return 5276;
- case PottedBrownMushroom::PottedBrownMushroom(): return 5285;
- case PottedCactus::PottedCactus(): return 5287;
- case PottedDandelion::PottedDandelion(): return 5274;
- case PottedDarkOakSapling::PottedDarkOakSapling(): return 5272;
- case PottedDeadBush::PottedDeadBush(): return 5286;
- case PottedFern::PottedFern(): return 5273;
- case PottedJungleSapling::PottedJungleSapling(): return 5270;
- case PottedOakSapling::PottedOakSapling(): return 5267;
- case PottedOrangeTulip::PottedOrangeTulip(): return 5280;
- case PottedOxeyeDaisy::PottedOxeyeDaisy(): return 5283;
- case PottedPinkTulip::PottedPinkTulip(): return 5282;
- case PottedPoppy::PottedPoppy(): return 5275;
- case PottedRedMushroom::PottedRedMushroom(): return 5284;
- case PottedRedTulip::PottedRedTulip(): return 5279;
- case PottedSpruceSapling::PottedSpruceSapling(): return 5268;
- case PottedWhiteTulip::PottedWhiteTulip(): return 5281;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::NorthSouth): return 1004;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::EastWest): return 1005;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingEast): return 1006;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingWest): return 1007;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingNorth): return 1008;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingSouth): return 1009;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::NorthSouth): return 1010;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::EastWest): return 1011;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingEast): return 1012;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingWest): return 1013;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingNorth): return 1014;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingSouth): return 1015;
- case Prismarine::Prismarine(): return 6559;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Top): return 6809;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Bottom): return 6811;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Double): return 6813;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 6643;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 6645;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 6647;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 6649;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 6651;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 6653;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 6655;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 6657;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 6659;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 6661;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 6663;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 6665;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 6667;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 6669;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 6671;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 6673;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 6675;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 6677;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 6679;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 6681;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 6683;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 6685;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 6687;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 6689;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 6691;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 6693;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 6695;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 6697;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 6699;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 6701;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 6703;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 6705;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 6707;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 6709;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 6711;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 6713;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 6715;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 6717;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 6719;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 6721;
- case PrismarineBricks::PrismarineBricks(): return 6560;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Top): return 6803;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Bottom): return 6805;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Double): return 6807;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 6563;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 6565;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 6567;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 6569;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 6571;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 6573;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 6575;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 6577;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 6579;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 6581;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 6583;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 6585;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 6587;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 6589;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 6591;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 6593;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 6595;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 6597;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 6599;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 6601;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 6603;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 6605;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 6607;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 6609;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 6611;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 6613;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 6615;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 6617;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 6619;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 6621;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 6623;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 6625;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 6627;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 6629;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 6631;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 6633;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 6635;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 6637;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 6639;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 6641;
- case Pumpkin::Pumpkin(): return 3493;
- case PumpkinStem::PumpkinStem(0): return 4253;
- case PumpkinStem::PumpkinStem(1): return 4254;
- case PumpkinStem::PumpkinStem(2): return 4255;
- case PumpkinStem::PumpkinStem(3): return 4256;
- case PumpkinStem::PumpkinStem(4): return 4257;
- case PumpkinStem::PumpkinStem(5): return 4258;
- case PumpkinStem::PumpkinStem(6): return 4259;
- case PumpkinStem::PumpkinStem(7): return 4260;
- case PurpleBanner::PurpleBanner(0): return 7015;
- case PurpleBanner::PurpleBanner(1): return 7016;
- case PurpleBanner::PurpleBanner(2): return 7017;
- case PurpleBanner::PurpleBanner(3): return 7018;
- case PurpleBanner::PurpleBanner(4): return 7019;
- case PurpleBanner::PurpleBanner(5): return 7020;
- case PurpleBanner::PurpleBanner(6): return 7021;
- case PurpleBanner::PurpleBanner(7): return 7022;
- case PurpleBanner::PurpleBanner(8): return 7023;
- case PurpleBanner::PurpleBanner(9): return 7024;
- case PurpleBanner::PurpleBanner(10): return 7025;
- case PurpleBanner::PurpleBanner(11): return 7026;
- case PurpleBanner::PurpleBanner(12): return 7027;
- case PurpleBanner::PurpleBanner(13): return 7028;
- case PurpleBanner::PurpleBanner(14): return 7029;
- case PurpleBanner::PurpleBanner(15): return 7030;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Head): return 908;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Foot): return 909;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Head): return 910;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Foot): return 911;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Head): return 912;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Foot): return 913;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Head): return 914;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Foot): return 915;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Head): return 916;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Foot): return 917;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Head): return 918;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Foot): return 919;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Head): return 920;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Foot): return 921;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Head): return 922;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Foot): return 923;
- case PurpleCarpet::PurpleCarpet(): return 6834;
- case PurpleConcrete::PurpleConcrete(): return 8388;
- case PurpleConcretePowder::PurpleConcretePowder(): return 8404;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8354;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8355;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8356;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8357;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8278;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8279;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8280;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8281;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8282;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8283;
- case PurpleStainedGlass::PurpleStainedGlass(): return 3588;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, true): return 6143;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, false): return 6144;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, true): return 6147;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, false): return 6148;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, true): return 6151;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, false): return 6152;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, true): return 6155;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, false): return 6156;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, true): return 6159;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, false): return 6160;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, true): return 6163;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, false): return 6164;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, true): return 6167;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, false): return 6168;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, true): return 6171;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, false): return 6172;
- case PurpleTerracotta::PurpleTerracotta(): return 5815;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7151;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7152;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XM): return 7153;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XP): return 7154;
- case PurpleWool::PurpleWool(): return 1093;
- case PurpurBlock::PurpurBlock(): return 8074;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::X): return 8075;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Y): return 8076;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Z): return 8077;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Top): return 7349;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Bottom): return 7351;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Double): return 7353;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8079;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8081;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8083;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8085;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8087;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8089;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8091;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8093;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8095;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8097;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8099;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8101;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8103;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8105;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8107;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8109;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8111;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8113;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8115;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8117;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8119;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8121;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8123;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8125;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8127;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8129;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8131;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8133;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8135;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8137;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8139;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8141;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8143;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8145;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8147;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8149;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8151;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8153;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8155;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8157;
- case QuartzBlock::QuartzBlock(): return 5696;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::X): return 5698;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Y): return 5699;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Z): return 5700;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Top): return 7337;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Bottom): return 7339;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Double): return 7341;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 5702;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 5704;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 5706;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 5708;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 5710;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 5712;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 5714;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 5716;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 5718;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 5720;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 5722;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 5724;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 5726;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 5728;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 5730;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 5732;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 5734;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 5736;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 5738;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 5740;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 5742;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 5744;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 5746;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 5748;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 5750;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 5752;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 5754;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 5756;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 5758;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 5760;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 5762;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 5764;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 5766;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 5768;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 5770;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 5772;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 5774;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 5776;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 5778;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 5780;
- case Rail::Rail(Rail::Shape::NorthSouth): return 3180;
- case Rail::Rail(Rail::Shape::EastWest): return 3181;
- case Rail::Rail(Rail::Shape::AscendingEast): return 3182;
- case Rail::Rail(Rail::Shape::AscendingWest): return 3183;
- case Rail::Rail(Rail::Shape::AscendingNorth): return 3184;
- case Rail::Rail(Rail::Shape::AscendingSouth): return 3185;
- case Rail::Rail(Rail::Shape::SouthEast): return 3186;
- case Rail::Rail(Rail::Shape::SouthWest): return 3187;
- case Rail::Rail(Rail::Shape::NorthWest): return 3188;
- case Rail::Rail(Rail::Shape::NorthEast): return 3189;
- case RedBanner::RedBanner(0): return 7079;
- case RedBanner::RedBanner(1): return 7080;
- case RedBanner::RedBanner(2): return 7081;
- case RedBanner::RedBanner(3): return 7082;
- case RedBanner::RedBanner(4): return 7083;
- case RedBanner::RedBanner(5): return 7084;
- case RedBanner::RedBanner(6): return 7085;
- case RedBanner::RedBanner(7): return 7086;
- case RedBanner::RedBanner(8): return 7087;
- case RedBanner::RedBanner(9): return 7088;
- case RedBanner::RedBanner(10): return 7089;
- case RedBanner::RedBanner(11): return 7090;
- case RedBanner::RedBanner(12): return 7091;
- case RedBanner::RedBanner(13): return 7092;
- case RedBanner::RedBanner(14): return 7093;
- case RedBanner::RedBanner(15): return 7094;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Head): return 972;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Foot): return 973;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Head): return 974;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Foot): return 975;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Head): return 976;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Foot): return 977;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Head): return 978;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Foot): return 979;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Head): return 980;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Foot): return 981;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Head): return 982;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Foot): return 983;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Head): return 984;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Foot): return 985;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Head): return 986;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Foot): return 987;
- case RedCarpet::RedCarpet(): return 6838;
- case RedConcrete::RedConcrete(): return 8392;
- case RedConcretePowder::RedConcretePowder(): return 8408;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8370;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8371;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8372;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8373;
- case RedMushroom::RedMushroom(): return 1122;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, true): return 4052;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, false): return 4053;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, true): return 4054;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, false): return 4055;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, true): return 4056;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, false): return 4057;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, true): return 4058;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, false): return 4059;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, true): return 4060;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, false): return 4061;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, true): return 4062;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, false): return 4063;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, true): return 4064;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, false): return 4065;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, true): return 4066;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, false): return 4067;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, true): return 4068;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, false): return 4069;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, true): return 4070;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, false): return 4071;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, true): return 4072;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, false): return 4073;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, true): return 4074;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, false): return 4075;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, true): return 4076;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, false): return 4077;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, true): return 4078;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, false): return 4079;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, true): return 4080;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, false): return 4081;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, true): return 4082;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, false): return 4083;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, true): return 4084;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, false): return 4085;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, true): return 4086;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, false): return 4087;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, true): return 4088;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, false): return 4089;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, true): return 4090;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, false): return 4091;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, true): return 4092;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, false): return 4093;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, true): return 4094;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, false): return 4095;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, true): return 4096;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, false): return 4097;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, true): return 4098;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, false): return 4099;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, true): return 4100;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, false): return 4101;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, true): return 4102;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, false): return 4103;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, true): return 4104;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, false): return 4105;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, true): return 4106;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, false): return 4107;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, true): return 4108;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, false): return 4109;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, true): return 4110;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, false): return 4111;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, true): return 4112;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, false): return 4113;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, true): return 4114;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false): return 4115;
- case RedNetherBricks::RedNetherBricks(): return 8195;
- case RedSand::RedSand(): return 67;
- case RedSandstone::RedSandstone(): return 7175;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Top): return 7343;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Bottom): return 7345;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Double): return 7347;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7179;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7181;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7183;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7185;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7187;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7189;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7191;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7193;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7195;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7197;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7199;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7201;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7203;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7205;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7207;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7209;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7211;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7213;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7215;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7217;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7219;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7221;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7223;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7225;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7227;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7229;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7231;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7233;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7235;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7237;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7239;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7241;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7243;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7245;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7247;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7249;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7251;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7253;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7255;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7257;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8302;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8303;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8304;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8305;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8306;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8307;
- case RedStainedGlass::RedStainedGlass(): return 3592;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, true, true): return 6271;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, true, false): return 6272;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, false, true): return 6275;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, false, false): return 6276;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, true, true): return 6279;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, true, false): return 6280;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, false, true): return 6283;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, false, false): return 6284;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, true, true): return 6287;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, true, false): return 6288;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, false, true): return 6291;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, false, false): return 6292;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, true, true): return 6295;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, true, false): return 6296;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, false, true): return 6299;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, false, false): return 6300;
- case RedTerracotta::RedTerracotta(): return 5819;
- case RedTulip::RedTulip(): return 1116;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7167;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7168;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XM): return 7169;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XP): return 7170;
- case RedWool::RedWool(): return 1097;
- case RedstoneBlock::RedstoneBlock(): return 5684;
- case RedstoneLamp::RedstoneLamp(true): return 4637;
- case RedstoneLamp::RedstoneLamp(false): return 4638;
- case RedstoneOre::RedstoneOre(true): return 3380;
- case RedstoneOre::RedstoneOre(false): return 3381;
- case RedstoneTorch::RedstoneTorch(true): return 3382;
- case RedstoneTorch::RedstoneTorch(false): return 3383;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, true): return 3384;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, false): return 3385;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, true): return 3386;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, false): return 3387;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, true): return 3388;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, false): return 3389;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, true): return 3390;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, false): return 3391;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1753;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1754;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 1755;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1756;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1757;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 1758;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 1759;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 1760;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 1761;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1762;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1763;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 1764;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1765;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1766;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 1767;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 1768;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 1769;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 1770;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1771;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1772;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 1773;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1774;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1775;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 1776;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 1777;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 1778;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 1779;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1780;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1781;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 1782;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1783;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1784;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 1785;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 1786;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 1787;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 1788;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1789;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1790;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 1791;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1792;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1793;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 1794;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 1795;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 1796;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 1797;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1798;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1799;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 1800;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1801;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1802;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 1803;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 1804;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 1805;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 1806;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1807;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1808;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 1809;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1810;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1811;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 1812;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 1813;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 1814;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 1815;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1816;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1817;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 1818;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1819;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1820;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 1821;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 1822;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 1823;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 1824;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1825;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1826;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 1827;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1828;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1829;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 1830;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 1831;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 1832;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 1833;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1834;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1835;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 1836;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1837;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1838;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 1839;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 1840;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 1841;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 1842;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1843;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1844;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 1845;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1846;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1847;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 1848;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 1849;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 1850;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 1851;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1852;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1853;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 1854;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1855;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1856;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 1857;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 1858;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 1859;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 1860;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1861;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1862;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 1863;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1864;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1865;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 1866;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 1867;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 1868;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 1869;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1870;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1871;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 1872;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1873;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1874;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 1875;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 1876;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 1877;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 1878;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1879;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1880;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 1881;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1882;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1883;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 1884;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 1885;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 1886;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 1887;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1888;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1889;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 1890;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1891;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1892;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 1893;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 1894;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 1895;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 1896;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1897;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1898;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 1899;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1900;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1901;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 1902;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 1903;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 1904;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 1905;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1906;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1907;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 1908;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1909;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1910;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 1911;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 1912;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 1913;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 1914;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1915;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1916;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 1917;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1918;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1919;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 1920;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 1921;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 1922;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 1923;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1924;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1925;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 1926;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1927;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1928;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 1929;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 1930;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 1931;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 1932;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1933;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1934;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 1935;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1936;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1937;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 1938;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 1939;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 1940;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 1941;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1942;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1943;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 1944;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1945;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1946;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 1947;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 1948;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 1949;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 1950;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1951;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1952;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 1953;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1954;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1955;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 1956;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 1957;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 1958;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 1959;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1960;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1961;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 1962;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1963;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1964;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 1965;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 1966;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 1967;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 1968;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1969;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1970;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 1971;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1972;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1973;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 1974;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 1975;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 1976;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 1977;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1978;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1979;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 1980;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1981;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1982;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 1983;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 1984;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 1985;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 1986;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1987;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1988;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 1989;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1990;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 1991;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 1992;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 1993;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 1994;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 1995;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 1996;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 1997;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 1998;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 1999;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2000;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2001;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2002;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2003;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2004;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2005;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2006;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2007;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2008;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2009;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2010;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2011;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2012;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2013;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2014;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2015;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2016;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2017;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2018;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2019;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2020;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2021;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2022;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2023;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2024;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2025;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2026;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2027;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2028;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2029;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2030;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2031;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2032;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2033;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2034;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2035;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2036;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2037;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2038;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2039;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2040;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2041;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2042;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2043;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2044;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2045;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2046;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2047;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2048;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2049;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2050;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2051;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2052;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2053;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2054;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2055;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2056;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2057;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2058;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2059;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2060;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2061;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2062;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2063;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2064;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2065;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2066;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2067;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2068;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2069;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2070;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2071;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2072;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2073;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2074;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2075;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2076;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2077;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2078;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2079;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2080;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2081;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2082;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2083;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2084;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2085;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2086;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2087;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2088;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2089;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2090;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2091;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2092;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2093;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2094;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2095;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2096;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2097;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2098;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2099;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2100;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2101;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2102;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2103;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2104;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2105;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2106;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2107;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2108;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2109;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2110;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2111;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2112;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2113;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2114;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2115;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2116;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2117;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2118;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2119;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2120;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2121;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2122;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2123;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2124;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2125;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2126;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2127;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2128;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2129;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2130;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2131;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2132;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2133;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2134;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2135;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2136;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2137;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2138;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2139;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2140;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2141;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2142;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2143;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2144;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2145;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2146;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2147;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2148;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2149;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2150;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2151;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2152;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2153;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2154;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2155;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2156;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2157;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2158;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2159;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2160;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2161;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2162;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2163;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2164;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2165;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2166;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2167;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2168;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2169;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2170;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2171;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2172;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2173;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2174;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2175;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2176;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2177;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2178;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2179;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2180;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2181;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2182;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2183;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2184;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2185;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2186;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2187;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2188;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2189;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2190;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2191;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2192;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2193;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2194;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2195;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2196;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2197;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2198;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2199;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2200;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2201;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2202;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2203;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2204;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2205;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2206;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2207;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2208;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2209;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2210;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2211;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2212;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2213;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2214;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2215;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2216;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2217;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2218;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2219;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2220;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2221;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2222;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2223;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2224;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2225;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2226;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2227;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2228;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2229;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2230;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2231;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2232;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2233;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2234;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2235;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2236;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2237;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2238;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2239;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2240;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2241;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2242;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2243;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2244;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2245;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2246;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2247;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2248;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2249;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2250;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2251;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2252;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2253;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2254;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2255;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2256;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2257;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2258;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2259;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2260;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2261;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2262;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2263;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2264;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2265;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2266;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2267;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2268;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2269;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2270;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2271;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2272;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2273;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2274;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2275;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2276;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2277;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2278;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2279;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2280;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2281;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2282;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2283;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2284;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2285;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2286;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2287;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2288;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2289;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2290;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2291;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2292;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2293;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2294;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2295;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2296;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2297;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2298;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2299;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2300;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2301;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2302;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2303;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2304;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2305;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2306;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2307;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2308;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2309;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2310;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2311;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2312;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2313;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2314;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2315;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2316;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2317;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2318;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2319;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2320;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2321;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2322;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2323;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2324;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2325;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2326;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2327;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2328;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2329;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2330;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2331;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2332;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2333;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2334;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2335;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2336;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2337;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2338;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2339;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2340;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2341;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2342;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2343;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2344;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2345;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2346;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2347;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2348;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2349;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2350;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2351;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2352;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2353;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2354;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2355;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2356;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2357;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2358;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2359;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2360;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2361;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2362;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2363;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2364;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2365;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2366;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2367;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2368;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2369;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2370;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2371;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2372;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2373;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2374;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2375;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2376;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2377;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2378;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2379;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2380;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2381;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2382;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2383;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2384;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2385;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2386;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2387;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2388;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2389;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2390;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2391;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2392;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2393;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2394;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2395;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2396;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2397;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2398;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2399;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2400;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2401;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2402;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2403;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2404;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2405;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2406;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2407;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2408;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2409;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2410;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2411;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2412;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2413;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2414;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2415;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2416;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2417;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2418;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2419;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2420;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2421;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2422;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2423;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2424;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2425;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2426;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2427;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2428;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2429;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2430;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2431;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2432;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2433;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2434;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2435;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2436;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2437;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2438;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2439;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2440;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2441;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2442;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2443;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2444;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2445;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2446;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2447;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2448;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2449;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2450;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2451;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2452;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2453;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2454;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2455;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2456;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2457;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2458;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2459;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2460;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2461;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2462;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2463;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2464;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2465;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2466;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2467;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2468;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2469;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2470;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2471;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2472;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2473;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2474;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2475;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2476;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2477;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2478;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2479;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2480;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2481;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2482;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2483;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2484;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2485;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2486;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2487;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2488;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2489;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2490;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2491;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2492;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2493;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2494;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2495;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2496;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2497;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2498;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2499;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2500;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2501;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2502;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2503;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2504;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2505;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2506;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2507;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2508;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2509;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2510;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2511;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2512;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2513;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2514;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2515;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2516;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2517;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2518;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2519;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2520;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2521;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2522;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2523;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2524;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2525;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2526;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2527;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2528;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2529;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2530;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2531;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2532;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2533;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2534;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2535;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2536;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2537;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2538;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2539;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2540;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2541;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2542;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2543;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2544;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2545;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2546;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2547;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2548;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2549;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2550;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2551;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2552;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2553;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2554;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2555;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2556;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2557;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2558;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2559;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2560;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2561;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2562;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2563;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2564;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2565;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2566;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2567;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2568;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2569;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2570;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2571;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2572;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2573;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2574;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2575;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2576;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2577;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2578;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2579;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2580;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2581;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2582;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2583;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2584;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2585;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2586;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2587;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2588;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2589;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2590;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2591;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2592;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2593;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2594;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2595;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2596;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2597;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2598;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2599;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2600;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2601;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2602;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2603;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2604;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2605;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2606;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2607;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2608;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2609;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2610;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2611;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2612;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2613;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2614;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2615;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2616;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2617;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2618;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2619;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2620;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2621;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2622;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2623;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2624;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2625;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2626;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2627;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2628;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2629;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2630;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2631;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2632;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2633;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2634;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2635;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2636;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2637;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2638;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2639;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2640;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2641;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2642;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2643;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2644;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2645;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2646;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2647;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2648;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2649;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2650;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2651;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2652;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2653;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2654;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2655;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2656;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2657;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2658;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2659;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2660;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2661;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2662;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2663;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2664;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2665;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2666;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2667;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2668;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2669;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2670;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2671;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2672;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2673;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2674;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2675;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2676;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2677;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2678;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2679;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2680;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2681;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2682;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2683;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2684;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2685;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2686;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2687;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2688;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2689;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2690;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2691;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2692;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2693;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2694;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2695;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2696;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2697;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2698;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2699;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2700;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2701;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2702;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2703;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2704;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2705;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2706;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2707;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2708;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2709;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2710;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2711;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2712;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2713;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2714;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2715;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2716;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2717;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2718;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2719;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2720;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2721;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2722;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2723;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2724;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2725;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2726;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2727;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2728;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2729;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2730;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2731;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2732;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2733;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2734;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2735;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2736;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2737;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2738;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2739;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2740;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2741;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2742;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2743;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2744;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2745;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2746;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2747;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2748;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2749;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2750;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2751;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2752;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2753;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2754;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2755;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2756;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2757;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2758;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2759;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2760;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2761;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2762;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2763;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2764;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2765;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2766;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2767;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2768;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2769;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2770;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2771;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2772;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2773;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2774;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2775;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2776;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2777;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2778;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2779;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2780;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2781;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2782;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2783;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2784;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2785;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2786;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2787;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2788;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2789;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2790;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2791;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2792;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2793;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2794;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2795;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2796;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2797;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2798;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2799;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2800;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2801;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2802;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2803;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2804;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2805;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2806;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2807;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2808;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2809;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2810;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2811;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2812;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2813;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2814;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2815;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2816;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2817;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2818;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2819;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2820;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2821;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2822;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2823;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2824;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2825;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2826;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2827;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2828;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2829;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2830;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2831;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2832;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2833;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2834;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2835;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2836;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2837;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2838;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2839;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2840;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2841;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2842;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2843;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2844;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2845;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2846;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2847;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2848;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2849;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2850;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2851;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2852;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2853;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2854;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2855;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2856;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2857;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2858;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2859;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2860;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2861;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2862;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2863;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2864;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2865;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2866;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2867;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2868;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2869;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2870;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2871;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2872;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2873;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2874;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2875;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2876;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2877;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2878;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2879;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2880;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2881;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2882;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2883;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2884;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2885;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2886;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2887;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2888;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2889;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2890;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2891;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2892;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2893;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2894;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2895;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2896;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2897;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2898;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2899;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2900;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2901;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2902;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2903;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2904;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2905;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2906;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2907;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2908;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2909;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2910;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2911;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2912;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2913;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2914;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2915;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2916;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2917;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2918;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2919;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2920;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2921;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2922;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2923;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2924;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2925;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2926;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2927;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2928;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2929;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2930;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2931;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2932;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2933;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2934;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2935;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2936;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2937;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2938;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2939;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2940;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2941;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2942;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2943;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2944;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2945;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2946;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2947;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2948;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2949;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2950;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2951;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2952;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2953;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2954;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2955;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2956;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2957;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2958;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2959;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2960;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2961;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2962;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2963;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2964;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2965;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2966;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2967;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2968;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2969;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2970;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2971;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2972;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2973;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2974;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2975;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2976;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2977;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2978;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2979;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2980;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2981;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2982;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2983;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2984;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2985;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2986;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2987;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2988;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2989;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2990;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2991;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2992;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2993;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2994;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2995;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2996;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2997;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2998;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2999;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 3000;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3001;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3002;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3003;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3004;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3005;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3006;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3007;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3008;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3009;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3010;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3011;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3012;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3013;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3014;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3015;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3016;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3017;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3018;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3019;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3020;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3021;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3022;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3023;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3024;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3025;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3026;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3027;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3028;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3029;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3030;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3031;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3032;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3033;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3034;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3035;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3036;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3037;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3038;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3039;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3040;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3041;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3042;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3043;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3044;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3045;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3046;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3047;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3048;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, true): return 3514;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, false): return 3515;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, true): return 3516;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, false): return 3517;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, true): return 3518;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, false): return 3519;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, true): return 3520;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, false): return 3521;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, true): return 3522;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, false): return 3523;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, true): return 3524;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, false): return 3525;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, true): return 3526;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, false): return 3527;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, true): return 3528;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, false): return 3529;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, true): return 3530;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, false): return 3531;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, true): return 3532;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, false): return 3533;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, true): return 3534;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, false): return 3535;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, true): return 3536;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, false): return 3537;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, true): return 3538;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, false): return 3539;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, true): return 3540;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, false): return 3541;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, true): return 3542;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, false): return 3543;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, true): return 3544;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, false): return 3545;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, true): return 3546;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, false): return 3547;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, true): return 3548;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, false): return 3549;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, true): return 3550;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, false): return 3551;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, true): return 3552;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, false): return 3553;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, true): return 3554;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, false): return 3555;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, true): return 3556;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, false): return 3557;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, true): return 3558;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, false): return 3559;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, true): return 3560;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, false): return 3561;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, true): return 3562;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, false): return 3563;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, true): return 3564;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, false): return 3565;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, true): return 3566;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, false): return 3567;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, true): return 3568;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, false): return 3569;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, true): return 3570;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, false): return 3571;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, true): return 3572;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, false): return 3573;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, true): return 3574;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, false): return 3575;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, true): return 3576;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, false): return 3577;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 8165;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 8166;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 8167;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 8168;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 8169;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 8170;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 8171;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 8172;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 8173;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 8174;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 8175;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 8176;
- case RoseBush::RoseBush(RoseBush::Half::Upper): return 6847;
- case RoseBush::RoseBush(RoseBush::Half::Lower): return 6848;
- case Sand::Sand(): return 66;
- case Sandstone::Sandstone(): return 245;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Top): return 7301;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Bottom): return 7303;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Double): return 7305;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 4652;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 4654;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 4656;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 4658;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 4660;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 4662;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 4664;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 4666;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 4668;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 4670;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 4672;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 4674;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 4676;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 4678;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 4680;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 4682;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 4684;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 4686;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 4688;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 4690;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 4692;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 4694;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 4696;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 4698;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 4700;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 4702;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 4704;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 4706;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 4708;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 4710;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 4712;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 4714;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 4716;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 4718;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 4720;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 4722;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 4724;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 4726;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 4728;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 4730;
- case SeaLantern::SeaLantern(): return 6820;
- case SeaPickle::SeaPickle(1): return 8581;
- case SeaPickle::SeaPickle(2): return 8583;
- case SeaPickle::SeaPickle(3): return 8585;
- case SeaPickle::SeaPickle(4): return 8587;
- case Seagrass::Seagrass(): return 1044;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8212;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8213;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8214;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8215;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8216;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8217;
- case OakSign::OakSign(0): return 3077;
- case OakSign::OakSign(1): return 3079;
- case OakSign::OakSign(2): return 3081;
- case OakSign::OakSign(3): return 3083;
- case OakSign::OakSign(4): return 3085;
- case OakSign::OakSign(5): return 3087;
- case OakSign::OakSign(6): return 3089;
- case OakSign::OakSign(7): return 3091;
- case OakSign::OakSign(8): return 3093;
- case OakSign::OakSign(9): return 3095;
- case OakSign::OakSign(10): return 3097;
- case OakSign::OakSign(11): return 3099;
- case OakSign::OakSign(12): return 3101;
- case OakSign::OakSign(13): return 3103;
- case OakSign::OakSign(14): return 3105;
- case OakSign::OakSign(15): return 3107;
- case SkeletonSkull::SkeletonSkull(0): return 5452;
- case SkeletonSkull::SkeletonSkull(1): return 5453;
- case SkeletonSkull::SkeletonSkull(2): return 5454;
- case SkeletonSkull::SkeletonSkull(3): return 5455;
- case SkeletonSkull::SkeletonSkull(4): return 5456;
- case SkeletonSkull::SkeletonSkull(5): return 5457;
- case SkeletonSkull::SkeletonSkull(6): return 5458;
- case SkeletonSkull::SkeletonSkull(7): return 5459;
- case SkeletonSkull::SkeletonSkull(8): return 5460;
- case SkeletonSkull::SkeletonSkull(9): return 5461;
- case SkeletonSkull::SkeletonSkull(10): return 5462;
- case SkeletonSkull::SkeletonSkull(11): return 5463;
- case SkeletonSkull::SkeletonSkull(12): return 5464;
- case SkeletonSkull::SkeletonSkull(13): return 5465;
- case SkeletonSkull::SkeletonSkull(14): return 5466;
- case SkeletonSkull::SkeletonSkull(15): return 5467;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 5448;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 5449;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 5450;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 5451;
- case SlimeBlock::SlimeBlock(): return 6493;
- case SmoothQuartz::SmoothQuartz(): return 7356;
- case SmoothRedSandstone::SmoothRedSandstone(): return 7357;
- case SmoothSandstone::SmoothSandstone(): return 7355;
- case SmoothStone::SmoothStone(): return 7354;
- case Snow::Snow(1): return 3416;
- case Snow::Snow(2): return 3417;
- case Snow::Snow(3): return 3418;
- case Snow::Snow(4): return 3419;
- case Snow::Snow(5): return 3420;
- case Snow::Snow(6): return 3421;
- case Snow::Snow(7): return 3422;
- case Snow::Snow(8): return 3423;
- case SnowBlock::SnowBlock(): return 3425;
- case SoulSand::SoulSand(): return 3495;
- case Spawner::Spawner(): return 1648;
- case Sponge::Sponge(): return 228;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5328;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5329;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5330;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5331;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5332;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5333;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5334;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5335;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5336;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5337;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5338;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5339;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5340;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5341;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5342;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5343;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5344;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5345;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5346;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5347;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5348;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5349;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5350;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5351;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 7678;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 7679;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 7680;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 7681;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 7682;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 7683;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 7684;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 7685;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 7686;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 7687;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 7688;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 7689;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 7690;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 7691;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 7692;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 7693;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 7694;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 7695;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 7696;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 7697;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 7698;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 7699;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 7700;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 7701;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 7702;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 7703;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 7704;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 7705;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 7706;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 7707;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 7708;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 7709;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 7710;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 7711;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 7712;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 7713;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 7714;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 7715;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 7716;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 7717;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 7718;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 7719;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 7720;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 7721;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 7722;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 7723;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 7724;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 7725;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 7726;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 7727;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 7728;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 7729;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 7730;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 7731;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 7732;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 7733;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 7734;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 7735;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 7736;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 7737;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 7738;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 7739;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 7740;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 7741;
- case SpruceFence::SpruceFence(true, true, true, true): return 7520;
- case SpruceFence::SpruceFence(true, true, true, false): return 7521;
- case SpruceFence::SpruceFence(true, true, false, true): return 7524;
- case SpruceFence::SpruceFence(true, true, false, false): return 7525;
- case SpruceFence::SpruceFence(true, false, true, true): return 7528;
- case SpruceFence::SpruceFence(true, false, true, false): return 7529;
- case SpruceFence::SpruceFence(true, false, false, true): return 7532;
- case SpruceFence::SpruceFence(true, false, false, false): return 7533;
- case SpruceFence::SpruceFence(false, true, true, true): return 7536;
- case SpruceFence::SpruceFence(false, true, true, false): return 7537;
- case SpruceFence::SpruceFence(false, true, false, true): return 7540;
- case SpruceFence::SpruceFence(false, true, false, false): return 7541;
- case SpruceFence::SpruceFence(false, false, true, true): return 7544;
- case SpruceFence::SpruceFence(false, false, true, false): return 7545;
- case SpruceFence::SpruceFence(false, false, false, true): return 7548;
- case SpruceFence::SpruceFence(false, false, false, false): return 7549;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7358;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7359;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7360;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7361;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7362;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7363;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7364;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7365;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7366;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7367;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7368;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7369;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7370;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7371;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7372;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7373;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7374;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7375;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7376;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7377;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7378;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7379;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7380;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7381;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7382;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7383;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7384;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7385;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7386;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7387;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7388;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7389;
- case SpruceLeaves::SpruceLeaves(1, true): return 158;
- case SpruceLeaves::SpruceLeaves(1, false): return 159;
- case SpruceLeaves::SpruceLeaves(2, true): return 160;
- case SpruceLeaves::SpruceLeaves(2, false): return 161;
- case SpruceLeaves::SpruceLeaves(3, true): return 162;
- case SpruceLeaves::SpruceLeaves(3, false): return 163;
- case SpruceLeaves::SpruceLeaves(4, true): return 164;
- case SpruceLeaves::SpruceLeaves(4, false): return 165;
- case SpruceLeaves::SpruceLeaves(5, true): return 166;
- case SpruceLeaves::SpruceLeaves(5, false): return 167;
- case SpruceLeaves::SpruceLeaves(6, true): return 168;
- case SpruceLeaves::SpruceLeaves(6, false): return 169;
- case SpruceLeaves::SpruceLeaves(7, true): return 170;
- case SpruceLeaves::SpruceLeaves(7, false): return 171;
- case SpruceLog::SpruceLog(SpruceLog::Axis::X): return 75;
- case SpruceLog::SpruceLog(SpruceLog::Axis::Y): return 76;
- case SpruceLog::SpruceLog(SpruceLog::Axis::Z): return 77;
- case SprucePlanks::SprucePlanks(): return 16;
- case SprucePressurePlate::SprucePressurePlate(true): return 3370;
- case SprucePressurePlate::SprucePressurePlate(false): return 3371;
- case SpruceSapling::SpruceSapling(0): return 23;
- case SpruceSapling::SpruceSapling(1): return 24;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Top): return 7265;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Bottom): return 7267;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Double): return 7269;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 4886;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 4888;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 4890;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 4892;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 4894;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 4896;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 4898;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 4900;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 4902;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 4904;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 4906;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 4908;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 4910;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 4912;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 4914;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 4916;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 4918;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 4920;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 4922;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 4924;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 4926;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 4928;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 4930;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 4932;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 4934;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 4936;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 4938;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 4940;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 4942;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 4944;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 4946;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 4948;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 4950;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 4952;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 4954;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 4956;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 4958;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 4960;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 4962;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 4964;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, true): return 3659;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, false): return 3661;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, true): return 3663;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, false): return 3665;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, true): return 3667;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, false): return 3669;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, true): return 3671;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, false): return 3673;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, true): return 3675;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, false): return 3677;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, true): return 3679;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, false): return 3681;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, true): return 3683;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, false): return 3685;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, true): return 3687;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, false): return 3689;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, true): return 3691;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, false): return 3693;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, true): return 3695;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, false): return 3697;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, true): return 3699;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, false): return 3701;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, true): return 3703;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, false): return 3705;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, true): return 3707;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, false): return 3709;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, true): return 3711;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, false): return 3713;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, true): return 3715;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, false): return 3717;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, true): return 3719;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, false): return 3721;
- case SpruceWood::SpruceWood(SpruceWood::Axis::X): return 111;
- case SpruceWood::SpruceWood(SpruceWood::Axis::Y): return 112;
- case SpruceWood::SpruceWood(SpruceWood::Axis::Z): return 113;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZM): return 1028;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XP): return 1029;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZP): return 1030;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XM): return 1031;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YP): return 1032;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YM): return 1033;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZM): return 1034;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XP): return 1035;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZP): return 1036;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XM): return 1037;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YP): return 1038;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YM): return 1039;
- case Stone::Stone(): return 1;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Top): return 7325;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Bottom): return 7327;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double): return 7329;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4414;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4416;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4418;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4420;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4422;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4424;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4426;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4428;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4430;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4432;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4434;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4436;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4438;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4440;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4442;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4444;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4446;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4448;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4450;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4452;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4454;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4456;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4458;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4460;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4462;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4464;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4466;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4468;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4470;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4472;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4474;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4476;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4478;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4480;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4482;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4484;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4486;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4488;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4490;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4492;
- case StoneBricks::StoneBricks(): return 3984;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3392;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3393;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3394;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3395;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3396;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3397;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3398;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3399;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3400;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3401;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3402;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3403;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3404;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3405;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3406;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3407;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3408;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3409;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3410;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3411;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3412;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3413;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3414;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3415;
- case StonePressurePlate::StonePressurePlate(true): return 3302;
- case StonePressurePlate::StonePressurePlate(false): return 3303;
- case StoneSlab::StoneSlab(StoneSlab::Type::Top): return 7295;
- case StoneSlab::StoneSlab(StoneSlab::Type::Bottom): return 7297;
- case StoneSlab::StoneSlab(StoneSlab::Type::Double): return 7299;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::X): return 99;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Y): return 100;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Z): return 101;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::X): return 138;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Y): return 139;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Z): return 140;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::X): return 93;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Y): return 94;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Z): return 95;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::X): return 132;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Y): return 133;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Z): return 134;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::X): return 102;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Y): return 103;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Z): return 104;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::X): return 141;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Y): return 142;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Z): return 143;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::X): return 96;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Y): return 97;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Z): return 98;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::X): return 135;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Y): return 136;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Z): return 137;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::X): return 105;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Y): return 106;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Z): return 107;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::X): return 126;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Y): return 127;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Z): return 128;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::X): return 90;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Y): return 91;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Z): return 92;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::X): return 129;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Y): return 130;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Z): return 131;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Save): return 8595;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Load): return 8596;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Corner): return 8597;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Data): return 8598;
- case StructureVoid::StructureVoid(): return 8199;
- case SugarCane::SugarCane(0): return 3443;
- case SugarCane::SugarCane(1): return 3444;
- case SugarCane::SugarCane(2): return 3445;
- case SugarCane::SugarCane(3): return 3446;
- case SugarCane::SugarCane(4): return 3447;
- case SugarCane::SugarCane(5): return 3448;
- case SugarCane::SugarCane(6): return 3449;
- case SugarCane::SugarCane(7): return 3450;
- case SugarCane::SugarCane(8): return 3451;
- case SugarCane::SugarCane(9): return 3452;
- case SugarCane::SugarCane(10): return 3453;
- case SugarCane::SugarCane(11): return 3454;
- case SugarCane::SugarCane(12): return 3455;
- case SugarCane::SugarCane(13): return 3456;
- case SugarCane::SugarCane(14): return 3457;
- case SugarCane::SugarCane(15): return 3458;
- case Sunflower::Sunflower(Sunflower::Half::Upper): return 6843;
- case Sunflower::Sunflower(Sunflower::Half::Lower): return 6844;
- case TNT::TNT(true): return 1126;
- case TNT::TNT(false): return 1127;
- case TallGrass::TallGrass(TallGrass::Half::Upper): return 6851;
- case TallGrass::TallGrass(TallGrass::Half::Lower): return 6852;
- case TallSeagrass::TallSeagrass(TallSeagrass::Half::Upper): return 1045;
- case TallSeagrass::TallSeagrass(TallSeagrass::Half::Lower): return 1046;
- case Terracotta::Terracotta(): return 6840;
- case Torch::Torch(): return 1131;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Single): return 5581;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Left): return 5583;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Right): return 5585;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Single): return 5587;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Left): return 5589;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Right): return 5591;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Single): return 5593;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Left): return 5595;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Right): return 5597;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Single): return 5599;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Left): return 5601;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Right): return 5603;
- case Tripwire::Tripwire(true, true, true, true, true, true, true): return 4756;
- case Tripwire::Tripwire(true, true, true, true, true, true, false): return 4757;
- case Tripwire::Tripwire(true, true, true, true, true, false, true): return 4758;
- case Tripwire::Tripwire(true, true, true, true, true, false, false): return 4759;
- case Tripwire::Tripwire(true, true, true, true, false, true, true): return 4760;
- case Tripwire::Tripwire(true, true, true, true, false, true, false): return 4761;
- case Tripwire::Tripwire(true, true, true, true, false, false, true): return 4762;
- case Tripwire::Tripwire(true, true, true, true, false, false, false): return 4763;
- case Tripwire::Tripwire(true, true, true, false, true, true, true): return 4764;
- case Tripwire::Tripwire(true, true, true, false, true, true, false): return 4765;
- case Tripwire::Tripwire(true, true, true, false, true, false, true): return 4766;
- case Tripwire::Tripwire(true, true, true, false, true, false, false): return 4767;
- case Tripwire::Tripwire(true, true, true, false, false, true, true): return 4768;
- case Tripwire::Tripwire(true, true, true, false, false, true, false): return 4769;
- case Tripwire::Tripwire(true, true, true, false, false, false, true): return 4770;
- case Tripwire::Tripwire(true, true, true, false, false, false, false): return 4771;
- case Tripwire::Tripwire(true, true, false, true, true, true, true): return 4772;
- case Tripwire::Tripwire(true, true, false, true, true, true, false): return 4773;
- case Tripwire::Tripwire(true, true, false, true, true, false, true): return 4774;
- case Tripwire::Tripwire(true, true, false, true, true, false, false): return 4775;
- case Tripwire::Tripwire(true, true, false, true, false, true, true): return 4776;
- case Tripwire::Tripwire(true, true, false, true, false, true, false): return 4777;
- case Tripwire::Tripwire(true, true, false, true, false, false, true): return 4778;
- case Tripwire::Tripwire(true, true, false, true, false, false, false): return 4779;
- case Tripwire::Tripwire(true, true, false, false, true, true, true): return 4780;
- case Tripwire::Tripwire(true, true, false, false, true, true, false): return 4781;
- case Tripwire::Tripwire(true, true, false, false, true, false, true): return 4782;
- case Tripwire::Tripwire(true, true, false, false, true, false, false): return 4783;
- case Tripwire::Tripwire(true, true, false, false, false, true, true): return 4784;
- case Tripwire::Tripwire(true, true, false, false, false, true, false): return 4785;
- case Tripwire::Tripwire(true, true, false, false, false, false, true): return 4786;
- case Tripwire::Tripwire(true, true, false, false, false, false, false): return 4787;
- case Tripwire::Tripwire(true, false, true, true, true, true, true): return 4788;
- case Tripwire::Tripwire(true, false, true, true, true, true, false): return 4789;
- case Tripwire::Tripwire(true, false, true, true, true, false, true): return 4790;
- case Tripwire::Tripwire(true, false, true, true, true, false, false): return 4791;
- case Tripwire::Tripwire(true, false, true, true, false, true, true): return 4792;
- case Tripwire::Tripwire(true, false, true, true, false, true, false): return 4793;
- case Tripwire::Tripwire(true, false, true, true, false, false, true): return 4794;
- case Tripwire::Tripwire(true, false, true, true, false, false, false): return 4795;
- case Tripwire::Tripwire(true, false, true, false, true, true, true): return 4796;
- case Tripwire::Tripwire(true, false, true, false, true, true, false): return 4797;
- case Tripwire::Tripwire(true, false, true, false, true, false, true): return 4798;
- case Tripwire::Tripwire(true, false, true, false, true, false, false): return 4799;
- case Tripwire::Tripwire(true, false, true, false, false, true, true): return 4800;
- case Tripwire::Tripwire(true, false, true, false, false, true, false): return 4801;
- case Tripwire::Tripwire(true, false, true, false, false, false, true): return 4802;
- case Tripwire::Tripwire(true, false, true, false, false, false, false): return 4803;
- case Tripwire::Tripwire(true, false, false, true, true, true, true): return 4804;
- case Tripwire::Tripwire(true, false, false, true, true, true, false): return 4805;
- case Tripwire::Tripwire(true, false, false, true, true, false, true): return 4806;
- case Tripwire::Tripwire(true, false, false, true, true, false, false): return 4807;
- case Tripwire::Tripwire(true, false, false, true, false, true, true): return 4808;
- case Tripwire::Tripwire(true, false, false, true, false, true, false): return 4809;
- case Tripwire::Tripwire(true, false, false, true, false, false, true): return 4810;
- case Tripwire::Tripwire(true, false, false, true, false, false, false): return 4811;
- case Tripwire::Tripwire(true, false, false, false, true, true, true): return 4812;
- case Tripwire::Tripwire(true, false, false, false, true, true, false): return 4813;
- case Tripwire::Tripwire(true, false, false, false, true, false, true): return 4814;
- case Tripwire::Tripwire(true, false, false, false, true, false, false): return 4815;
- case Tripwire::Tripwire(true, false, false, false, false, true, true): return 4816;
- case Tripwire::Tripwire(true, false, false, false, false, true, false): return 4817;
- case Tripwire::Tripwire(true, false, false, false, false, false, true): return 4818;
- case Tripwire::Tripwire(true, false, false, false, false, false, false): return 4819;
- case Tripwire::Tripwire(false, true, true, true, true, true, true): return 4820;
- case Tripwire::Tripwire(false, true, true, true, true, true, false): return 4821;
- case Tripwire::Tripwire(false, true, true, true, true, false, true): return 4822;
- case Tripwire::Tripwire(false, true, true, true, true, false, false): return 4823;
- case Tripwire::Tripwire(false, true, true, true, false, true, true): return 4824;
- case Tripwire::Tripwire(false, true, true, true, false, true, false): return 4825;
- case Tripwire::Tripwire(false, true, true, true, false, false, true): return 4826;
- case Tripwire::Tripwire(false, true, true, true, false, false, false): return 4827;
- case Tripwire::Tripwire(false, true, true, false, true, true, true): return 4828;
- case Tripwire::Tripwire(false, true, true, false, true, true, false): return 4829;
- case Tripwire::Tripwire(false, true, true, false, true, false, true): return 4830;
- case Tripwire::Tripwire(false, true, true, false, true, false, false): return 4831;
- case Tripwire::Tripwire(false, true, true, false, false, true, true): return 4832;
- case Tripwire::Tripwire(false, true, true, false, false, true, false): return 4833;
- case Tripwire::Tripwire(false, true, true, false, false, false, true): return 4834;
- case Tripwire::Tripwire(false, true, true, false, false, false, false): return 4835;
- case Tripwire::Tripwire(false, true, false, true, true, true, true): return 4836;
- case Tripwire::Tripwire(false, true, false, true, true, true, false): return 4837;
- case Tripwire::Tripwire(false, true, false, true, true, false, true): return 4838;
- case Tripwire::Tripwire(false, true, false, true, true, false, false): return 4839;
- case Tripwire::Tripwire(false, true, false, true, false, true, true): return 4840;
- case Tripwire::Tripwire(false, true, false, true, false, true, false): return 4841;
- case Tripwire::Tripwire(false, true, false, true, false, false, true): return 4842;
- case Tripwire::Tripwire(false, true, false, true, false, false, false): return 4843;
- case Tripwire::Tripwire(false, true, false, false, true, true, true): return 4844;
- case Tripwire::Tripwire(false, true, false, false, true, true, false): return 4845;
- case Tripwire::Tripwire(false, true, false, false, true, false, true): return 4846;
- case Tripwire::Tripwire(false, true, false, false, true, false, false): return 4847;
- case Tripwire::Tripwire(false, true, false, false, false, true, true): return 4848;
- case Tripwire::Tripwire(false, true, false, false, false, true, false): return 4849;
- case Tripwire::Tripwire(false, true, false, false, false, false, true): return 4850;
- case Tripwire::Tripwire(false, true, false, false, false, false, false): return 4851;
- case Tripwire::Tripwire(false, false, true, true, true, true, true): return 4852;
- case Tripwire::Tripwire(false, false, true, true, true, true, false): return 4853;
- case Tripwire::Tripwire(false, false, true, true, true, false, true): return 4854;
- case Tripwire::Tripwire(false, false, true, true, true, false, false): return 4855;
- case Tripwire::Tripwire(false, false, true, true, false, true, true): return 4856;
- case Tripwire::Tripwire(false, false, true, true, false, true, false): return 4857;
- case Tripwire::Tripwire(false, false, true, true, false, false, true): return 4858;
- case Tripwire::Tripwire(false, false, true, true, false, false, false): return 4859;
- case Tripwire::Tripwire(false, false, true, false, true, true, true): return 4860;
- case Tripwire::Tripwire(false, false, true, false, true, true, false): return 4861;
- case Tripwire::Tripwire(false, false, true, false, true, false, true): return 4862;
- case Tripwire::Tripwire(false, false, true, false, true, false, false): return 4863;
- case Tripwire::Tripwire(false, false, true, false, false, true, true): return 4864;
- case Tripwire::Tripwire(false, false, true, false, false, true, false): return 4865;
- case Tripwire::Tripwire(false, false, true, false, false, false, true): return 4866;
- case Tripwire::Tripwire(false, false, true, false, false, false, false): return 4867;
- case Tripwire::Tripwire(false, false, false, true, true, true, true): return 4868;
- case Tripwire::Tripwire(false, false, false, true, true, true, false): return 4869;
- case Tripwire::Tripwire(false, false, false, true, true, false, true): return 4870;
- case Tripwire::Tripwire(false, false, false, true, true, false, false): return 4871;
- case Tripwire::Tripwire(false, false, false, true, false, true, true): return 4872;
- case Tripwire::Tripwire(false, false, false, true, false, true, false): return 4873;
- case Tripwire::Tripwire(false, false, false, true, false, false, true): return 4874;
- case Tripwire::Tripwire(false, false, false, true, false, false, false): return 4875;
- case Tripwire::Tripwire(false, false, false, false, true, true, true): return 4876;
- case Tripwire::Tripwire(false, false, false, false, true, true, false): return 4877;
- case Tripwire::Tripwire(false, false, false, false, true, false, true): return 4878;
- case Tripwire::Tripwire(false, false, false, false, true, false, false): return 4879;
- case Tripwire::Tripwire(false, false, false, false, false, true, true): return 4880;
- case Tripwire::Tripwire(false, false, false, false, false, true, false): return 4881;
- case Tripwire::Tripwire(false, false, false, false, false, false, true): return 4882;
- case Tripwire::Tripwire(false, false, false, false, false, false, false): return 4883;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, true): return 4740;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, false): return 4741;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, true): return 4742;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, false): return 4743;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, true): return 4744;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, false): return 4745;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, true): return 4746;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, false): return 4747;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, true): return 4748;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, false): return 4749;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, true): return 4750;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, false): return 4751;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, true): return 4752;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, false): return 4753;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, true): return 4754;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, false): return 4755;
- case TubeCoral::TubeCoral(): return 8471;
- case TubeCoralBlock::TubeCoralBlock(): return 8455;
- case TubeCoralFan::TubeCoralFan(): return 8571;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 8521;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 8523;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 8525;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 8527;
- case TurtleEgg::TurtleEgg(1, 0): return 8438;
- case TurtleEgg::TurtleEgg(1, 1): return 8439;
- case TurtleEgg::TurtleEgg(1, 2): return 8440;
- case TurtleEgg::TurtleEgg(2, 0): return 8441;
- case TurtleEgg::TurtleEgg(2, 1): return 8442;
- case TurtleEgg::TurtleEgg(2, 2): return 8443;
- case TurtleEgg::TurtleEgg(3, 0): return 8444;
- case TurtleEgg::TurtleEgg(3, 1): return 8445;
- case TurtleEgg::TurtleEgg(3, 2): return 8446;
- case TurtleEgg::TurtleEgg(4, 0): return 8447;
- case TurtleEgg::TurtleEgg(4, 1): return 8448;
- case TurtleEgg::TurtleEgg(4, 2): return 8449;
- case Vine::Vine(true, true, true, true, true): return 4269;
- case Vine::Vine(true, true, true, true, false): return 4270;
- case Vine::Vine(true, true, true, false, true): return 4271;
- case Vine::Vine(true, true, true, false, false): return 4272;
- case Vine::Vine(true, true, false, true, true): return 4273;
- case Vine::Vine(true, true, false, true, false): return 4274;
- case Vine::Vine(true, true, false, false, true): return 4275;
- case Vine::Vine(true, true, false, false, false): return 4276;
- case Vine::Vine(true, false, true, true, true): return 4277;
- case Vine::Vine(true, false, true, true, false): return 4278;
- case Vine::Vine(true, false, true, false, true): return 4279;
- case Vine::Vine(true, false, true, false, false): return 4280;
- case Vine::Vine(true, false, false, true, true): return 4281;
- case Vine::Vine(true, false, false, true, false): return 4282;
- case Vine::Vine(true, false, false, false, true): return 4283;
- case Vine::Vine(true, false, false, false, false): return 4284;
- case Vine::Vine(false, true, true, true, true): return 4285;
- case Vine::Vine(false, true, true, true, false): return 4286;
- case Vine::Vine(false, true, true, false, true): return 4287;
- case Vine::Vine(false, true, true, false, false): return 4288;
- case Vine::Vine(false, true, false, true, true): return 4289;
- case Vine::Vine(false, true, false, true, false): return 4290;
- case Vine::Vine(false, true, false, false, true): return 4291;
- case Vine::Vine(false, true, false, false, false): return 4292;
- case Vine::Vine(false, false, true, true, true): return 4293;
- case Vine::Vine(false, false, true, true, false): return 4294;
- case Vine::Vine(false, false, true, false, true): return 4295;
- case Vine::Vine(false, false, true, false, false): return 4296;
- case Vine::Vine(false, false, false, true, true): return 4297;
- case Vine::Vine(false, false, false, true, false): return 4298;
- case Vine::Vine(false, false, false, false, true): return 4299;
- case Vine::Vine(false, false, false, false, false): return 4300;
- case VoidAir::VoidAir(): return 8591;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZM): return 3271;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZP): return 3273;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XM): return 3275;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XP): return 3277;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZM): return 1132;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZP): return 1133;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XM): return 1134;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XP): return 1135;
- case Water::Water(0): return 34;
- case Water::Water(1): return 35;
- case Water::Water(2): return 36;
- case Water::Water(3): return 37;
- case Water::Water(4): return 38;
- case Water::Water(5): return 39;
- case Water::Water(6): return 40;
- case Water::Water(7): return 41;
- case Water::Water(8): return 42;
- case Water::Water(9): return 43;
- case Water::Water(10): return 44;
- case Water::Water(11): return 45;
- case Water::Water(12): return 46;
- case Water::Water(13): return 47;
- case Water::Water(14): return 48;
- case Water::Water(15): return 49;
- case WetSponge::WetSponge(): return 229;
- case Wheat::Wheat(0): return 3052;
- case Wheat::Wheat(1): return 3053;
- case Wheat::Wheat(2): return 3054;
- case Wheat::Wheat(3): return 3055;
- case Wheat::Wheat(4): return 3056;
- case Wheat::Wheat(5): return 3057;
- case Wheat::Wheat(6): return 3058;
- case Wheat::Wheat(7): return 3059;
- case WhiteBanner::WhiteBanner(0): return 6855;
- case WhiteBanner::WhiteBanner(1): return 6856;
- case WhiteBanner::WhiteBanner(2): return 6857;
- case WhiteBanner::WhiteBanner(3): return 6858;
- case WhiteBanner::WhiteBanner(4): return 6859;
- case WhiteBanner::WhiteBanner(5): return 6860;
- case WhiteBanner::WhiteBanner(6): return 6861;
- case WhiteBanner::WhiteBanner(7): return 6862;
- case WhiteBanner::WhiteBanner(8): return 6863;
- case WhiteBanner::WhiteBanner(9): return 6864;
- case WhiteBanner::WhiteBanner(10): return 6865;
- case WhiteBanner::WhiteBanner(11): return 6866;
- case WhiteBanner::WhiteBanner(12): return 6867;
- case WhiteBanner::WhiteBanner(13): return 6868;
- case WhiteBanner::WhiteBanner(14): return 6869;
- case WhiteBanner::WhiteBanner(15): return 6870;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Head): return 748;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Foot): return 749;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Head): return 750;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Foot): return 751;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Head): return 752;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Foot): return 753;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Head): return 754;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Foot): return 755;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Head): return 756;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Foot): return 757;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Head): return 758;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Foot): return 759;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Head): return 760;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Foot): return 761;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Head): return 762;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Foot): return 763;
- case WhiteCarpet::WhiteCarpet(): return 6824;
- case WhiteConcrete::WhiteConcrete(): return 8378;
- case WhiteConcretePowder::WhiteConcretePowder(): return 8394;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8314;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8315;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8316;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8317;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8218;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8219;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8220;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8221;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8222;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8223;
- case WhiteStainedGlass::WhiteStainedGlass(): return 3578;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, true): return 5823;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, false): return 5824;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, true): return 5827;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, false): return 5828;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, true): return 5831;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, false): return 5832;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, true): return 5835;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, false): return 5836;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, true): return 5839;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, false): return 5840;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, true): return 5843;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, false): return 5844;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, true): return 5847;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, false): return 5848;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, true): return 5851;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, false): return 5852;
- case WhiteTerracotta::WhiteTerracotta(): return 5805;
- case WhiteTulip::WhiteTulip(): return 1118;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7111;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7112;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XM): return 7113;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XP): return 7114;
- case WhiteWool::WhiteWool(): return 1083;
- case WitherSkeletonSkull::WitherSkeletonSkull(0): return 5472;
- case WitherSkeletonSkull::WitherSkeletonSkull(1): return 5473;
- case WitherSkeletonSkull::WitherSkeletonSkull(2): return 5474;
- case WitherSkeletonSkull::WitherSkeletonSkull(3): return 5475;
- case WitherSkeletonSkull::WitherSkeletonSkull(4): return 5476;
- case WitherSkeletonSkull::WitherSkeletonSkull(5): return 5477;
- case WitherSkeletonSkull::WitherSkeletonSkull(6): return 5478;
- case WitherSkeletonSkull::WitherSkeletonSkull(7): return 5479;
- case WitherSkeletonSkull::WitherSkeletonSkull(8): return 5480;
- case WitherSkeletonSkull::WitherSkeletonSkull(9): return 5481;
- case WitherSkeletonSkull::WitherSkeletonSkull(10): return 5482;
- case WitherSkeletonSkull::WitherSkeletonSkull(11): return 5483;
- case WitherSkeletonSkull::WitherSkeletonSkull(12): return 5484;
- case WitherSkeletonSkull::WitherSkeletonSkull(13): return 5485;
- case WitherSkeletonSkull::WitherSkeletonSkull(14): return 5486;
- case WitherSkeletonSkull::WitherSkeletonSkull(15): return 5487;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 5468;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 5469;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 5470;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 5471;
- case YellowBanner::YellowBanner(0): return 6919;
- case YellowBanner::YellowBanner(1): return 6920;
- case YellowBanner::YellowBanner(2): return 6921;
- case YellowBanner::YellowBanner(3): return 6922;
- case YellowBanner::YellowBanner(4): return 6923;
- case YellowBanner::YellowBanner(5): return 6924;
- case YellowBanner::YellowBanner(6): return 6925;
- case YellowBanner::YellowBanner(7): return 6926;
- case YellowBanner::YellowBanner(8): return 6927;
- case YellowBanner::YellowBanner(9): return 6928;
- case YellowBanner::YellowBanner(10): return 6929;
- case YellowBanner::YellowBanner(11): return 6930;
- case YellowBanner::YellowBanner(12): return 6931;
- case YellowBanner::YellowBanner(13): return 6932;
- case YellowBanner::YellowBanner(14): return 6933;
- case YellowBanner::YellowBanner(15): return 6934;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Head): return 812;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Foot): return 813;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Head): return 814;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Foot): return 815;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Head): return 816;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Foot): return 817;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Head): return 818;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Foot): return 819;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Head): return 820;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Foot): return 821;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Head): return 822;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Foot): return 823;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Head): return 824;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Foot): return 825;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Head): return 826;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Foot): return 827;
- case YellowCarpet::YellowCarpet(): return 6828;
- case YellowConcrete::YellowConcrete(): return 8382;
- case YellowConcretePowder::YellowConcretePowder(): return 8398;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8330;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8331;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8332;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8333;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8242;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8243;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8244;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8245;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8246;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8247;
- case YellowStainedGlass::YellowStainedGlass(): return 3582;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, true): return 5951;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, false): return 5952;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, true): return 5955;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, false): return 5956;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, true): return 5959;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, false): return 5960;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, true): return 5963;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, false): return 5964;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, true): return 5967;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, false): return 5968;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, true): return 5971;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, false): return 5972;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, true): return 5975;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, false): return 5976;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, true): return 5979;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, false): return 5980;
- case YellowTerracotta::YellowTerracotta(): return 5809;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7127;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7128;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XM): return 7129;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XP): return 7130;
- case YellowWool::YellowWool(): return 1087;
- case ZombieHead::ZombieHead(0): return 5492;
- case ZombieHead::ZombieHead(1): return 5493;
- case ZombieHead::ZombieHead(2): return 5494;
- case ZombieHead::ZombieHead(3): return 5495;
- case ZombieHead::ZombieHead(4): return 5496;
- case ZombieHead::ZombieHead(5): return 5497;
- case ZombieHead::ZombieHead(6): return 5498;
- case ZombieHead::ZombieHead(7): return 5499;
- case ZombieHead::ZombieHead(8): return 5500;
- case ZombieHead::ZombieHead(9): return 5501;
- case ZombieHead::ZombieHead(10): return 5502;
- case ZombieHead::ZombieHead(11): return 5503;
- case ZombieHead::ZombieHead(12): return 5504;
- case ZombieHead::ZombieHead(13): return 5505;
- case ZombieHead::ZombieHead(14): return 5506;
- case ZombieHead::ZombieHead(15): return 5507;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZM): return 5488;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZP): return 5489;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XM): return 5490;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XP): return 5491;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5400;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5401;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5402;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5403;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5404;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5405;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5406;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5407;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5408;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5409;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5410;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5411;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5412;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5413;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5414;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5415;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5416;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5417;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5418;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5419;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5420;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5421;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5422;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5423;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 7870;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 7871;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 7872;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 7873;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 7874;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 7875;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 7876;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 7877;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 7878;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 7879;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 7880;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 7881;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 7882;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 7883;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 7884;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 7885;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 7886;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 7887;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 7888;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 7889;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 7890;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 7891;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 7892;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 7893;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 7894;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 7895;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 7896;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 7897;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 7898;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 7899;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 7900;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 7901;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 7902;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 7903;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 7904;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 7905;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 7906;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 7907;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 7908;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 7909;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 7910;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 7911;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 7912;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 7913;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 7914;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 7915;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 7916;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 7917;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 7918;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 7919;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 7920;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 7921;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 7922;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 7923;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 7924;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 7925;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 7926;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 7927;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 7928;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 7929;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 7930;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 7931;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 7932;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 7933;
+ case AcaciaFence::AcaciaFence(true, true, true, true).ID: return 7616;
+ case AcaciaFence::AcaciaFence(true, true, true, false).ID: return 7617;
+ case AcaciaFence::AcaciaFence(true, true, false, true).ID: return 7620;
+ case AcaciaFence::AcaciaFence(true, true, false, false).ID: return 7621;
+ case AcaciaFence::AcaciaFence(true, false, true, true).ID: return 7624;
+ case AcaciaFence::AcaciaFence(true, false, true, false).ID: return 7625;
+ case AcaciaFence::AcaciaFence(true, false, false, true).ID: return 7628;
+ case AcaciaFence::AcaciaFence(true, false, false, false).ID: return 7629;
+ case AcaciaFence::AcaciaFence(false, true, true, true).ID: return 7632;
+ case AcaciaFence::AcaciaFence(false, true, true, false).ID: return 7633;
+ case AcaciaFence::AcaciaFence(false, true, false, true).ID: return 7636;
+ case AcaciaFence::AcaciaFence(false, true, false, false).ID: return 7637;
+ case AcaciaFence::AcaciaFence(false, false, true, true).ID: return 7640;
+ case AcaciaFence::AcaciaFence(false, false, true, false).ID: return 7641;
+ case AcaciaFence::AcaciaFence(false, false, false, true).ID: return 7644;
+ case AcaciaFence::AcaciaFence(false, false, false, false).ID: return 7645;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7454;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7455;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7456;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7457;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7458;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7459;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7460;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7461;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7462;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7463;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7464;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7465;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7466;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7467;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7468;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7469;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7470;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7471;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7472;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7473;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7474;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7475;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7476;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7477;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7478;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7479;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7480;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7481;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7482;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7483;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7484;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7485;
+ case AcaciaLeaves::AcaciaLeaves(1, true).ID: return 200;
+ case AcaciaLeaves::AcaciaLeaves(1, false).ID: return 201;
+ case AcaciaLeaves::AcaciaLeaves(2, true).ID: return 202;
+ case AcaciaLeaves::AcaciaLeaves(2, false).ID: return 203;
+ case AcaciaLeaves::AcaciaLeaves(3, true).ID: return 204;
+ case AcaciaLeaves::AcaciaLeaves(3, false).ID: return 205;
+ case AcaciaLeaves::AcaciaLeaves(4, true).ID: return 206;
+ case AcaciaLeaves::AcaciaLeaves(4, false).ID: return 207;
+ case AcaciaLeaves::AcaciaLeaves(5, true).ID: return 208;
+ case AcaciaLeaves::AcaciaLeaves(5, false).ID: return 209;
+ case AcaciaLeaves::AcaciaLeaves(6, true).ID: return 210;
+ case AcaciaLeaves::AcaciaLeaves(6, false).ID: return 211;
+ case AcaciaLeaves::AcaciaLeaves(7, true).ID: return 212;
+ case AcaciaLeaves::AcaciaLeaves(7, false).ID: return 213;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::X).ID: return 84;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Y).ID: return 85;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Z).ID: return 86;
+ case AcaciaPlanks::AcaciaPlanks().ID: return 19;
+ case AcaciaPressurePlate::AcaciaPressurePlate(true).ID: return 3376;
+ case AcaciaPressurePlate::AcaciaPressurePlate(false).ID: return 3377;
+ case AcaciaSapling::AcaciaSapling(0).ID: return 29;
+ case AcaciaSapling::AcaciaSapling(1).ID: return 30;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Top).ID: return 7283;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Bottom).ID: return 7285;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Double).ID: return 7287;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6334;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6336;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6338;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6340;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6342;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6344;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6346;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6348;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6350;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6352;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6354;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6356;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6358;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6360;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6362;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6364;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6366;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6368;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6370;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6372;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6374;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6376;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6378;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6380;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6382;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6384;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6386;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6388;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6390;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6392;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6394;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6396;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6398;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6400;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6402;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6404;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6406;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6408;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6410;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6412;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, true).ID: return 3851;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, false).ID: return 3853;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, true).ID: return 3855;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, false).ID: return 3857;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 3859;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 3861;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 3863;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 3865;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, true).ID: return 3867;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, false).ID: return 3869;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, true).ID: return 3871;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, false).ID: return 3873;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 3875;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 3877;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 3879;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 3881;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, true).ID: return 3883;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, false).ID: return 3885;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, true).ID: return 3887;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, false).ID: return 3889;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 3891;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 3893;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 3895;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 3897;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, true).ID: return 3899;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, false).ID: return 3901;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, true).ID: return 3903;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, false).ID: return 3905;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 3907;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 3909;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 3911;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 3913;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::X).ID: return 120;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Y).ID: return 121;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Z).ID: return 122;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::NorthSouth).ID: return 5781;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::EastWest).ID: return 5782;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingEast).ID: return 5783;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingWest).ID: return 5784;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingNorth).ID: return 5785;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingSouth).ID: return 5786;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::NorthSouth).ID: return 5787;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::EastWest).ID: return 5788;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingEast).ID: return 5789;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingWest).ID: return 5790;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingNorth).ID: return 5791;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingSouth).ID: return 5792;
+ case Air::Air().ID: return -0;
+ case Allium::Allium().ID: return 1114;
+ case Andesite::Andesite().ID: return 6;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZM).ID: return 5568;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZP).ID: return 5569;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_XM).ID: return 5570;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_XP).ID: return 5571;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZM).ID: return 4249;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZP).ID: return 4250;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XM).ID: return 4251;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XP).ID: return 4252;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZM).ID: return 4245;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZP).ID: return 4246;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XM).ID: return 4247;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XP).ID: return 4248;
+ case AzureBluet::AzureBluet().ID: return 1115;
+ case Barrier::Barrier().ID: return 6494;
+ case Beacon::Beacon().ID: return 5137;
+ case Bedrock::Bedrock().ID: return 33;
+ case Beetroots::Beetroots(0).ID: return 8159;
+ case Beetroots::Beetroots(1).ID: return 8160;
+ case Beetroots::Beetroots(2).ID: return 8161;
+ case Beetroots::Beetroots(3).ID: return 8162;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5352;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5353;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5354;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5355;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5356;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5357;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5358;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5359;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5360;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5361;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5362;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5363;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5364;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5365;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5366;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5367;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5368;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5369;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5370;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5371;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5372;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5373;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5374;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5375;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 7742;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 7743;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 7744;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 7745;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 7746;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 7747;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 7748;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 7749;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 7750;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 7751;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 7752;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 7753;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 7754;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 7755;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 7756;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 7757;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 7758;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 7759;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 7760;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 7761;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 7762;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 7763;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 7764;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 7765;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 7766;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 7767;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 7768;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 7769;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 7770;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 7771;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 7772;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 7773;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 7774;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 7775;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 7776;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 7777;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 7778;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 7779;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 7780;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 7781;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 7782;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 7783;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 7784;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 7785;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 7786;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 7787;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 7788;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 7789;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 7790;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 7791;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 7792;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 7793;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 7794;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 7795;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 7796;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 7797;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 7798;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 7799;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 7800;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 7801;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 7802;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 7803;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 7804;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 7805;
+ case BirchFence::BirchFence(true, true, true, true).ID: return 7552;
+ case BirchFence::BirchFence(true, true, true, false).ID: return 7553;
+ case BirchFence::BirchFence(true, true, false, true).ID: return 7556;
+ case BirchFence::BirchFence(true, true, false, false).ID: return 7557;
+ case BirchFence::BirchFence(true, false, true, true).ID: return 7560;
+ case BirchFence::BirchFence(true, false, true, false).ID: return 7561;
+ case BirchFence::BirchFence(true, false, false, true).ID: return 7564;
+ case BirchFence::BirchFence(true, false, false, false).ID: return 7565;
+ case BirchFence::BirchFence(false, true, true, true).ID: return 7568;
+ case BirchFence::BirchFence(false, true, true, false).ID: return 7569;
+ case BirchFence::BirchFence(false, true, false, true).ID: return 7572;
+ case BirchFence::BirchFence(false, true, false, false).ID: return 7573;
+ case BirchFence::BirchFence(false, false, true, true).ID: return 7576;
+ case BirchFence::BirchFence(false, false, true, false).ID: return 7577;
+ case BirchFence::BirchFence(false, false, false, true).ID: return 7580;
+ case BirchFence::BirchFence(false, false, false, false).ID: return 7581;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7390;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7391;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7392;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7393;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7394;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7395;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7396;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7397;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7398;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7399;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7400;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7401;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7402;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7403;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7404;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7405;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7406;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7407;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7408;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7409;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7410;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7411;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7412;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7413;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7414;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7415;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7416;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7417;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7418;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7419;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7420;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7421;
+ case BirchLeaves::BirchLeaves(1, true).ID: return 172;
+ case BirchLeaves::BirchLeaves(1, false).ID: return 173;
+ case BirchLeaves::BirchLeaves(2, true).ID: return 174;
+ case BirchLeaves::BirchLeaves(2, false).ID: return 175;
+ case BirchLeaves::BirchLeaves(3, true).ID: return 176;
+ case BirchLeaves::BirchLeaves(3, false).ID: return 177;
+ case BirchLeaves::BirchLeaves(4, true).ID: return 178;
+ case BirchLeaves::BirchLeaves(4, false).ID: return 179;
+ case BirchLeaves::BirchLeaves(5, true).ID: return 180;
+ case BirchLeaves::BirchLeaves(5, false).ID: return 181;
+ case BirchLeaves::BirchLeaves(6, true).ID: return 182;
+ case BirchLeaves::BirchLeaves(6, false).ID: return 183;
+ case BirchLeaves::BirchLeaves(7, true).ID: return 184;
+ case BirchLeaves::BirchLeaves(7, false).ID: return 185;
+ case BirchLog::BirchLog(BirchLog::Axis::X).ID: return 78;
+ case BirchLog::BirchLog(BirchLog::Axis::Y).ID: return 79;
+ case BirchLog::BirchLog(BirchLog::Axis::Z).ID: return 80;
+ case BirchPlanks::BirchPlanks().ID: return 17;
+ case BirchPressurePlate::BirchPressurePlate(true).ID: return 3372;
+ case BirchPressurePlate::BirchPressurePlate(false).ID: return 3373;
+ case BirchSapling::BirchSapling(0).ID: return 25;
+ case BirchSapling::BirchSapling(1).ID: return 26;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Top).ID: return 7271;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Bottom).ID: return 7273;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Double).ID: return 7275;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 4966;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 4968;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 4970;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 4972;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 4974;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 4976;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 4978;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 4980;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 4982;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 4984;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 4986;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 4988;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 4990;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 4992;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 4994;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 4996;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 4998;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5000;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5002;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5004;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5006;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5008;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5010;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5012;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5014;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5016;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5018;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5020;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5022;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5024;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5026;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5028;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5030;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5032;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5034;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5036;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5038;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5040;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5042;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5044;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, true).ID: return 3723;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, false).ID: return 3725;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, true).ID: return 3727;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, false).ID: return 3729;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, true).ID: return 3731;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, false).ID: return 3733;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, true).ID: return 3735;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, false).ID: return 3737;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, true).ID: return 3739;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, false).ID: return 3741;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, true).ID: return 3743;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, false).ID: return 3745;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, true).ID: return 3747;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, false).ID: return 3749;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, true).ID: return 3751;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, false).ID: return 3753;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, true).ID: return 3755;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, false).ID: return 3757;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, true).ID: return 3759;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, false).ID: return 3761;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, true).ID: return 3763;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, false).ID: return 3765;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, true).ID: return 3767;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, false).ID: return 3769;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, true).ID: return 3771;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, false).ID: return 3773;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, true).ID: return 3775;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, false).ID: return 3777;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, true).ID: return 3779;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, false).ID: return 3781;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, true).ID: return 3783;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, false).ID: return 3785;
+ case BirchWood::BirchWood(BirchWood::Axis::X).ID: return 114;
+ case BirchWood::BirchWood(BirchWood::Axis::Y).ID: return 115;
+ case BirchWood::BirchWood(BirchWood::Axis::Z).ID: return 116;
+ case BlackBanner::BlackBanner(0).ID: return 7095;
+ case BlackBanner::BlackBanner(1).ID: return 7096;
+ case BlackBanner::BlackBanner(2).ID: return 7097;
+ case BlackBanner::BlackBanner(3).ID: return 7098;
+ case BlackBanner::BlackBanner(4).ID: return 7099;
+ case BlackBanner::BlackBanner(5).ID: return 7100;
+ case BlackBanner::BlackBanner(6).ID: return 7101;
+ case BlackBanner::BlackBanner(7).ID: return 7102;
+ case BlackBanner::BlackBanner(8).ID: return 7103;
+ case BlackBanner::BlackBanner(9).ID: return 7104;
+ case BlackBanner::BlackBanner(10).ID: return 7105;
+ case BlackBanner::BlackBanner(11).ID: return 7106;
+ case BlackBanner::BlackBanner(12).ID: return 7107;
+ case BlackBanner::BlackBanner(13).ID: return 7108;
+ case BlackBanner::BlackBanner(14).ID: return 7109;
+ case BlackBanner::BlackBanner(15).ID: return 7110;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Head).ID: return 988;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Foot).ID: return 989;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Head).ID: return 990;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Foot).ID: return 991;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Head).ID: return 992;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Foot).ID: return 993;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Head).ID: return 994;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Foot).ID: return 995;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Head).ID: return 996;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Foot).ID: return 997;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Head).ID: return 998;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Foot).ID: return 999;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Head).ID: return 1000;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Foot).ID: return 1001;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Head).ID: return 1002;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Foot).ID: return 1003;
+ case BlackCarpet::BlackCarpet().ID: return 6839;
+ case BlackConcrete::BlackConcrete().ID: return 8393;
+ case BlackConcretePowder::BlackConcretePowder().ID: return 8409;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8374;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8375;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8376;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8377;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8308;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8309;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8310;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8311;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8312;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8313;
+ case BlackStainedGlass::BlackStainedGlass().ID: return 3593;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, true).ID: return 6303;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, false).ID: return 6304;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, true).ID: return 6307;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, false).ID: return 6308;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, true).ID: return 6311;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, false).ID: return 6312;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, true).ID: return 6315;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, false).ID: return 6316;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, true).ID: return 6319;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, false).ID: return 6320;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, true).ID: return 6323;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, false).ID: return 6324;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, true).ID: return 6327;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, false).ID: return 6328;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, true).ID: return 6331;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, false).ID: return 6332;
+ case BlackTerracotta::BlackTerracotta().ID: return 5820;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7171;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7172;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7173;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7174;
+ case BlackWool::BlackWool().ID: return 1098;
+ case BlueBanner::BlueBanner(0).ID: return 7031;
+ case BlueBanner::BlueBanner(1).ID: return 7032;
+ case BlueBanner::BlueBanner(2).ID: return 7033;
+ case BlueBanner::BlueBanner(3).ID: return 7034;
+ case BlueBanner::BlueBanner(4).ID: return 7035;
+ case BlueBanner::BlueBanner(5).ID: return 7036;
+ case BlueBanner::BlueBanner(6).ID: return 7037;
+ case BlueBanner::BlueBanner(7).ID: return 7038;
+ case BlueBanner::BlueBanner(8).ID: return 7039;
+ case BlueBanner::BlueBanner(9).ID: return 7040;
+ case BlueBanner::BlueBanner(10).ID: return 7041;
+ case BlueBanner::BlueBanner(11).ID: return 7042;
+ case BlueBanner::BlueBanner(12).ID: return 7043;
+ case BlueBanner::BlueBanner(13).ID: return 7044;
+ case BlueBanner::BlueBanner(14).ID: return 7045;
+ case BlueBanner::BlueBanner(15).ID: return 7046;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Head).ID: return 924;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Foot).ID: return 925;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Head).ID: return 926;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Foot).ID: return 927;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Head).ID: return 928;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Foot).ID: return 929;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Head).ID: return 930;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Foot).ID: return 931;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Head).ID: return 932;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Foot).ID: return 933;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Head).ID: return 934;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Foot).ID: return 935;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Head).ID: return 936;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Foot).ID: return 937;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Head).ID: return 938;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Foot).ID: return 939;
+ case BlueCarpet::BlueCarpet().ID: return 6835;
+ case BlueConcrete::BlueConcrete().ID: return 8389;
+ case BlueConcretePowder::BlueConcretePowder().ID: return 8405;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8358;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8359;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8360;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8361;
+ case BlueIce::BlueIce().ID: return 8588;
+ case BlueOrchid::BlueOrchid().ID: return 1113;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8284;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8285;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8286;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8287;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8288;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8289;
+ case BlueStainedGlass::BlueStainedGlass().ID: return 3589;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, true).ID: return 6175;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, false).ID: return 6176;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, true).ID: return 6179;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, false).ID: return 6180;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, true).ID: return 6183;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, false).ID: return 6184;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, true).ID: return 6187;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, false).ID: return 6188;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, true).ID: return 6191;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, false).ID: return 6192;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, true).ID: return 6195;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, false).ID: return 6196;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, true).ID: return 6199;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, false).ID: return 6200;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, true).ID: return 6203;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, false).ID: return 6204;
+ case BlueTerracotta::BlueTerracotta().ID: return 5816;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7155;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7156;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7157;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7158;
+ case BlueWool::BlueWool().ID: return 1094;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::X).ID: return 8196;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::Y).ID: return 8197;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::Z).ID: return 8198;
+ case Bookshelf::Bookshelf().ID: return 1128;
+ case BrainCoral::BrainCoral().ID: return 8473;
+ case BrainCoralBlock::BrainCoralBlock().ID: return 8456;
+ case BrainCoralFan::BrainCoralFan().ID: return 8573;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8529;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8531;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8533;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8535;
+ case BrewingStand::BrewingStand(true, true, true).ID: return 4614;
+ case BrewingStand::BrewingStand(true, true, false).ID: return 4615;
+ case BrewingStand::BrewingStand(true, false, true).ID: return 4616;
+ case BrewingStand::BrewingStand(true, false, false).ID: return 4617;
+ case BrewingStand::BrewingStand(false, true, true).ID: return 4618;
+ case BrewingStand::BrewingStand(false, true, false).ID: return 4619;
+ case BrewingStand::BrewingStand(false, false, true).ID: return 4620;
+ case BrewingStand::BrewingStand(false, false, false).ID: return 4621;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Top).ID: return 7319;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Bottom).ID: return 7321;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Double).ID: return 7323;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4334;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4336;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4338;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4340;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4342;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4344;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4346;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4348;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4350;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4352;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4354;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4356;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4358;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4360;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4362;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4364;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4366;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4368;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4370;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4372;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4374;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4376;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4378;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4380;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4382;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4384;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4386;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4388;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4390;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4392;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4394;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4396;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4398;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4400;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4402;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4404;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4406;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4408;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4410;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4412;
+ case Bricks::Bricks().ID: return 1125;
+ case BrownBanner::BrownBanner(0).ID: return 7047;
+ case BrownBanner::BrownBanner(1).ID: return 7048;
+ case BrownBanner::BrownBanner(2).ID: return 7049;
+ case BrownBanner::BrownBanner(3).ID: return 7050;
+ case BrownBanner::BrownBanner(4).ID: return 7051;
+ case BrownBanner::BrownBanner(5).ID: return 7052;
+ case BrownBanner::BrownBanner(6).ID: return 7053;
+ case BrownBanner::BrownBanner(7).ID: return 7054;
+ case BrownBanner::BrownBanner(8).ID: return 7055;
+ case BrownBanner::BrownBanner(9).ID: return 7056;
+ case BrownBanner::BrownBanner(10).ID: return 7057;
+ case BrownBanner::BrownBanner(11).ID: return 7058;
+ case BrownBanner::BrownBanner(12).ID: return 7059;
+ case BrownBanner::BrownBanner(13).ID: return 7060;
+ case BrownBanner::BrownBanner(14).ID: return 7061;
+ case BrownBanner::BrownBanner(15).ID: return 7062;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Head).ID: return 940;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Foot).ID: return 941;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Head).ID: return 942;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Foot).ID: return 943;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Head).ID: return 944;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Foot).ID: return 945;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Head).ID: return 946;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Foot).ID: return 947;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Head).ID: return 948;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Foot).ID: return 949;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Head).ID: return 950;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Foot).ID: return 951;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Head).ID: return 952;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Foot).ID: return 953;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Head).ID: return 954;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Foot).ID: return 955;
+ case BrownCarpet::BrownCarpet().ID: return 6836;
+ case BrownConcrete::BrownConcrete().ID: return 8390;
+ case BrownConcretePowder::BrownConcretePowder().ID: return 8406;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8362;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8363;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8364;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8365;
+ case BrownMushroom::BrownMushroom().ID: return 1121;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, true).ID: return 3988;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, false).ID: return 3989;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, true).ID: return 3990;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, false).ID: return 3991;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, true).ID: return 3992;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, false).ID: return 3993;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, true).ID: return 3994;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, false).ID: return 3995;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, true).ID: return 3996;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, false).ID: return 3997;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, true).ID: return 3998;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, false).ID: return 3999;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, true).ID: return 4000;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, false).ID: return 4001;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, true).ID: return 4002;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, false).ID: return 4003;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, true).ID: return 4004;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, false).ID: return 4005;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, true).ID: return 4006;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, false).ID: return 4007;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, true).ID: return 4008;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, false).ID: return 4009;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, true).ID: return 4010;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, false).ID: return 4011;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, true).ID: return 4012;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, false).ID: return 4013;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, true).ID: return 4014;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, false).ID: return 4015;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, true).ID: return 4016;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, false).ID: return 4017;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, true).ID: return 4018;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, false).ID: return 4019;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, true).ID: return 4020;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, false).ID: return 4021;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, true).ID: return 4022;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, false).ID: return 4023;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, true).ID: return 4024;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, false).ID: return 4025;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, true).ID: return 4026;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, false).ID: return 4027;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, true).ID: return 4028;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, false).ID: return 4029;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, true).ID: return 4030;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, false).ID: return 4031;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, true).ID: return 4032;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, false).ID: return 4033;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, true).ID: return 4034;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, false).ID: return 4035;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, true).ID: return 4036;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, false).ID: return 4037;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, true).ID: return 4038;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, false).ID: return 4039;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, true).ID: return 4040;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, false).ID: return 4041;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, true).ID: return 4042;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, false).ID: return 4043;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, true).ID: return 4044;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, false).ID: return 4045;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, true).ID: return 4046;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, false).ID: return 4047;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, true).ID: return 4048;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, false).ID: return 4049;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, true).ID: return 4050;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false).ID: return 4051;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8290;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8291;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8292;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8293;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8294;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8295;
+ case BrownStainedGlass::BrownStainedGlass().ID: return 3590;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, true).ID: return 6207;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, false).ID: return 6208;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, true).ID: return 6211;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, false).ID: return 6212;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, true).ID: return 6215;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, false).ID: return 6216;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, true).ID: return 6219;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, false).ID: return 6220;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, true).ID: return 6223;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, false).ID: return 6224;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, true).ID: return 6227;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, false).ID: return 6228;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, true).ID: return 6231;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, false).ID: return 6232;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, true).ID: return 6235;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, false).ID: return 6236;
+ case BrownTerracotta::BrownTerracotta().ID: return 5817;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7159;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7160;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7161;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7162;
+ case BrownWool::BrownWool().ID: return 1095;
+ case BubbleColumn::BubbleColumn(true).ID: return 8593;
+ case BubbleColumn::BubbleColumn(false).ID: return 8594;
+ case BubbleCoral::BubbleCoral().ID: return 8475;
+ case BubbleCoralBlock::BubbleCoralBlock().ID: return 8457;
+ case BubbleCoralFan::BubbleCoralFan().ID: return 8575;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8537;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8539;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8541;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8543;
+ case Cactus::Cactus(0).ID: return 3426;
+ case Cactus::Cactus(1).ID: return 3427;
+ case Cactus::Cactus(2).ID: return 3428;
+ case Cactus::Cactus(3).ID: return 3429;
+ case Cactus::Cactus(4).ID: return 3430;
+ case Cactus::Cactus(5).ID: return 3431;
+ case Cactus::Cactus(6).ID: return 3432;
+ case Cactus::Cactus(7).ID: return 3433;
+ case Cactus::Cactus(8).ID: return 3434;
+ case Cactus::Cactus(9).ID: return 3435;
+ case Cactus::Cactus(10).ID: return 3436;
+ case Cactus::Cactus(11).ID: return 3437;
+ case Cactus::Cactus(12).ID: return 3438;
+ case Cactus::Cactus(13).ID: return 3439;
+ case Cactus::Cactus(14).ID: return 3440;
+ case Cactus::Cactus(15).ID: return 3441;
+ case Cake::Cake(0).ID: return 3507;
+ case Cake::Cake(1).ID: return 3508;
+ case Cake::Cake(2).ID: return 3509;
+ case Cake::Cake(3).ID: return 3510;
+ case Cake::Cake(4).ID: return 3511;
+ case Cake::Cake(5).ID: return 3512;
+ case Cake::Cake(6).ID: return 3513;
+ case Carrots::Carrots(0).ID: return 5288;
+ case Carrots::Carrots(1).ID: return 5289;
+ case Carrots::Carrots(2).ID: return 5290;
+ case Carrots::Carrots(3).ID: return 5291;
+ case Carrots::Carrots(4).ID: return 5292;
+ case Carrots::Carrots(5).ID: return 5293;
+ case Carrots::Carrots(6).ID: return 5294;
+ case Carrots::Carrots(7).ID: return 5295;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZM).ID: return 3499;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZP).ID: return 3500;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XM).ID: return 3501;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XP).ID: return 3502;
+ case Cauldron::Cauldron(0).ID: return 4622;
+ case Cauldron::Cauldron(1).ID: return 4623;
+ case Cauldron::Cauldron(2).ID: return 4624;
+ case Cauldron::Cauldron(3).ID: return 4625;
+ case CaveAir::CaveAir().ID: return 8592;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 8177;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 8178;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 8179;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 8180;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 8181;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 8182;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 8183;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 8184;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 8185;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 8186;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 8187;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 8188;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Single).ID: return 1730;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Left).ID: return 1732;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Right).ID: return 1734;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Single).ID: return 1736;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Left).ID: return 1738;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Right).ID: return 1740;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Single).ID: return 1742;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Left).ID: return 1744;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Right).ID: return 1746;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Single).ID: return 1748;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Left).ID: return 1750;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Right).ID: return 1752;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZM).ID: return 5572;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZP).ID: return 5573;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XM).ID: return 5574;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XP).ID: return 5575;
+ case ChiseledQuartzBlock::ChiseledQuartzBlock().ID: return 5697;
+ case ChiseledRedSandstone::ChiseledRedSandstone().ID: return 7176;
+ case ChiseledSandstone::ChiseledSandstone().ID: return 246;
+ case ChiseledStoneBricks::ChiseledStoneBricks().ID: return 3987;
+ case ChorusFlower::ChorusFlower(0).ID: return 8068;
+ case ChorusFlower::ChorusFlower(1).ID: return 8069;
+ case ChorusFlower::ChorusFlower(2).ID: return 8070;
+ case ChorusFlower::ChorusFlower(3).ID: return 8071;
+ case ChorusFlower::ChorusFlower(4).ID: return 8072;
+ case ChorusFlower::ChorusFlower(5).ID: return 8073;
+ case ChorusPlant::ChorusPlant(true, true, true, true, true, true).ID: return 8004;
+ case ChorusPlant::ChorusPlant(true, true, true, true, true, false).ID: return 8005;
+ case ChorusPlant::ChorusPlant(true, true, true, true, false, true).ID: return 8006;
+ case ChorusPlant::ChorusPlant(true, true, true, true, false, false).ID: return 8007;
+ case ChorusPlant::ChorusPlant(true, true, true, false, true, true).ID: return 8008;
+ case ChorusPlant::ChorusPlant(true, true, true, false, true, false).ID: return 8009;
+ case ChorusPlant::ChorusPlant(true, true, true, false, false, true).ID: return 8010;
+ case ChorusPlant::ChorusPlant(true, true, true, false, false, false).ID: return 8011;
+ case ChorusPlant::ChorusPlant(true, true, false, true, true, true).ID: return 8012;
+ case ChorusPlant::ChorusPlant(true, true, false, true, true, false).ID: return 8013;
+ case ChorusPlant::ChorusPlant(true, true, false, true, false, true).ID: return 8014;
+ case ChorusPlant::ChorusPlant(true, true, false, true, false, false).ID: return 8015;
+ case ChorusPlant::ChorusPlant(true, true, false, false, true, true).ID: return 8016;
+ case ChorusPlant::ChorusPlant(true, true, false, false, true, false).ID: return 8017;
+ case ChorusPlant::ChorusPlant(true, true, false, false, false, true).ID: return 8018;
+ case ChorusPlant::ChorusPlant(true, true, false, false, false, false).ID: return 8019;
+ case ChorusPlant::ChorusPlant(true, false, true, true, true, true).ID: return 8020;
+ case ChorusPlant::ChorusPlant(true, false, true, true, true, false).ID: return 8021;
+ case ChorusPlant::ChorusPlant(true, false, true, true, false, true).ID: return 8022;
+ case ChorusPlant::ChorusPlant(true, false, true, true, false, false).ID: return 8023;
+ case ChorusPlant::ChorusPlant(true, false, true, false, true, true).ID: return 8024;
+ case ChorusPlant::ChorusPlant(true, false, true, false, true, false).ID: return 8025;
+ case ChorusPlant::ChorusPlant(true, false, true, false, false, true).ID: return 8026;
+ case ChorusPlant::ChorusPlant(true, false, true, false, false, false).ID: return 8027;
+ case ChorusPlant::ChorusPlant(true, false, false, true, true, true).ID: return 8028;
+ case ChorusPlant::ChorusPlant(true, false, false, true, true, false).ID: return 8029;
+ case ChorusPlant::ChorusPlant(true, false, false, true, false, true).ID: return 8030;
+ case ChorusPlant::ChorusPlant(true, false, false, true, false, false).ID: return 8031;
+ case ChorusPlant::ChorusPlant(true, false, false, false, true, true).ID: return 8032;
+ case ChorusPlant::ChorusPlant(true, false, false, false, true, false).ID: return 8033;
+ case ChorusPlant::ChorusPlant(true, false, false, false, false, true).ID: return 8034;
+ case ChorusPlant::ChorusPlant(true, false, false, false, false, false).ID: return 8035;
+ case ChorusPlant::ChorusPlant(false, true, true, true, true, true).ID: return 8036;
+ case ChorusPlant::ChorusPlant(false, true, true, true, true, false).ID: return 8037;
+ case ChorusPlant::ChorusPlant(false, true, true, true, false, true).ID: return 8038;
+ case ChorusPlant::ChorusPlant(false, true, true, true, false, false).ID: return 8039;
+ case ChorusPlant::ChorusPlant(false, true, true, false, true, true).ID: return 8040;
+ case ChorusPlant::ChorusPlant(false, true, true, false, true, false).ID: return 8041;
+ case ChorusPlant::ChorusPlant(false, true, true, false, false, true).ID: return 8042;
+ case ChorusPlant::ChorusPlant(false, true, true, false, false, false).ID: return 8043;
+ case ChorusPlant::ChorusPlant(false, true, false, true, true, true).ID: return 8044;
+ case ChorusPlant::ChorusPlant(false, true, false, true, true, false).ID: return 8045;
+ case ChorusPlant::ChorusPlant(false, true, false, true, false, true).ID: return 8046;
+ case ChorusPlant::ChorusPlant(false, true, false, true, false, false).ID: return 8047;
+ case ChorusPlant::ChorusPlant(false, true, false, false, true, true).ID: return 8048;
+ case ChorusPlant::ChorusPlant(false, true, false, false, true, false).ID: return 8049;
+ case ChorusPlant::ChorusPlant(false, true, false, false, false, true).ID: return 8050;
+ case ChorusPlant::ChorusPlant(false, true, false, false, false, false).ID: return 8051;
+ case ChorusPlant::ChorusPlant(false, false, true, true, true, true).ID: return 8052;
+ case ChorusPlant::ChorusPlant(false, false, true, true, true, false).ID: return 8053;
+ case ChorusPlant::ChorusPlant(false, false, true, true, false, true).ID: return 8054;
+ case ChorusPlant::ChorusPlant(false, false, true, true, false, false).ID: return 8055;
+ case ChorusPlant::ChorusPlant(false, false, true, false, true, true).ID: return 8056;
+ case ChorusPlant::ChorusPlant(false, false, true, false, true, false).ID: return 8057;
+ case ChorusPlant::ChorusPlant(false, false, true, false, false, true).ID: return 8058;
+ case ChorusPlant::ChorusPlant(false, false, true, false, false, false).ID: return 8059;
+ case ChorusPlant::ChorusPlant(false, false, false, true, true, true).ID: return 8060;
+ case ChorusPlant::ChorusPlant(false, false, false, true, true, false).ID: return 8061;
+ case ChorusPlant::ChorusPlant(false, false, false, true, false, true).ID: return 8062;
+ case ChorusPlant::ChorusPlant(false, false, false, true, false, false).ID: return 8063;
+ case ChorusPlant::ChorusPlant(false, false, false, false, true, true).ID: return 8064;
+ case ChorusPlant::ChorusPlant(false, false, false, false, true, false).ID: return 8065;
+ case ChorusPlant::ChorusPlant(false, false, false, false, false, true).ID: return 8066;
+ case ChorusPlant::ChorusPlant(false, false, false, false, false, false).ID: return 8067;
+ case Clay::Clay().ID: return 3442;
+ case CoalBlock::CoalBlock().ID: return 6841;
+ case CoalOre::CoalOre().ID: return 71;
+ case CoarseDirt::CoarseDirt().ID: return 11;
+ case Cobblestone::Cobblestone().ID: return 14;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Top).ID: return 7313;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Bottom).ID: return 7315;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double).ID: return 7317;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3191;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3193;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3195;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3197;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3199;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3201;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3203;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3205;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3207;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3209;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3211;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3213;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3215;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3217;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3219;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3221;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3223;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3225;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3227;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3229;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3231;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3233;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3235;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3237;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3239;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3241;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3243;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3245;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3247;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3249;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3251;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3253;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3255;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3257;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3259;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3261;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3263;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3265;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3267;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3269;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5140;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5141;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5144;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5145;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5148;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5149;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5152;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5153;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5156;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5157;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5160;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5161;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5164;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5165;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5168;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5169;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5172;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5173;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5176;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5177;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5180;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5181;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5184;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5185;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5188;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5189;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5192;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5193;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5196;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5197;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5200;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5201;
+ case Cobweb::Cobweb().ID: return 1040;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZM).ID: return 4639;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZP).ID: return 4640;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XM).ID: return 4641;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XP).ID: return 4642;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZM).ID: return 4643;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZP).ID: return 4644;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XM).ID: return 4645;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XP).ID: return 4646;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZM).ID: return 4647;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZP).ID: return 4648;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XM).ID: return 4649;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XP).ID: return 4650;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 5125;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 5126;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 5127;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 5128;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 5129;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 5130;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 5131;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 5132;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 5133;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 5134;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 5135;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 5136;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true).ID: return 5636;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false).ID: return 5637;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true).ID: return 5638;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false).ID: return 5639;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true).ID: return 5640;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false).ID: return 5641;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true).ID: return 5642;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false).ID: return 5643;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true).ID: return 5644;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false).ID: return 5645;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true).ID: return 5646;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false).ID: return 5647;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true).ID: return 5648;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false).ID: return 5649;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true).ID: return 5650;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false).ID: return 5651;
+ case Conduit::Conduit().ID: return 8590;
+ case CrackedStoneBricks::CrackedStoneBricks().ID: return 3986;
+ case CraftingTable::CraftingTable().ID: return 3051;
+ case CreeperHead::CreeperHead(0).ID: return 5532;
+ case CreeperHead::CreeperHead(1).ID: return 5533;
+ case CreeperHead::CreeperHead(2).ID: return 5534;
+ case CreeperHead::CreeperHead(3).ID: return 5535;
+ case CreeperHead::CreeperHead(4).ID: return 5536;
+ case CreeperHead::CreeperHead(5).ID: return 5537;
+ case CreeperHead::CreeperHead(6).ID: return 5538;
+ case CreeperHead::CreeperHead(7).ID: return 5539;
+ case CreeperHead::CreeperHead(8).ID: return 5540;
+ case CreeperHead::CreeperHead(9).ID: return 5541;
+ case CreeperHead::CreeperHead(10).ID: return 5542;
+ case CreeperHead::CreeperHead(11).ID: return 5543;
+ case CreeperHead::CreeperHead(12).ID: return 5544;
+ case CreeperHead::CreeperHead(13).ID: return 5545;
+ case CreeperHead::CreeperHead(14).ID: return 5546;
+ case CreeperHead::CreeperHead(15).ID: return 5547;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 5528;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 5529;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 5530;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 5531;
+ case CutRedSandstone::CutRedSandstone().ID: return 7177;
+ case CutSandstone::CutSandstone().ID: return 247;
+ case CyanBanner::CyanBanner(0).ID: return 6999;
+ case CyanBanner::CyanBanner(1).ID: return 7000;
+ case CyanBanner::CyanBanner(2).ID: return 7001;
+ case CyanBanner::CyanBanner(3).ID: return 7002;
+ case CyanBanner::CyanBanner(4).ID: return 7003;
+ case CyanBanner::CyanBanner(5).ID: return 7004;
+ case CyanBanner::CyanBanner(6).ID: return 7005;
+ case CyanBanner::CyanBanner(7).ID: return 7006;
+ case CyanBanner::CyanBanner(8).ID: return 7007;
+ case CyanBanner::CyanBanner(9).ID: return 7008;
+ case CyanBanner::CyanBanner(10).ID: return 7009;
+ case CyanBanner::CyanBanner(11).ID: return 7010;
+ case CyanBanner::CyanBanner(12).ID: return 7011;
+ case CyanBanner::CyanBanner(13).ID: return 7012;
+ case CyanBanner::CyanBanner(14).ID: return 7013;
+ case CyanBanner::CyanBanner(15).ID: return 7014;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Head).ID: return 892;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Foot).ID: return 893;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Head).ID: return 894;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Foot).ID: return 895;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Head).ID: return 896;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Foot).ID: return 897;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Head).ID: return 898;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Foot).ID: return 899;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Head).ID: return 900;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Foot).ID: return 901;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Head).ID: return 902;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Foot).ID: return 903;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Head).ID: return 904;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Foot).ID: return 905;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Head).ID: return 906;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Foot).ID: return 907;
+ case CyanCarpet::CyanCarpet().ID: return 6833;
+ case CyanConcrete::CyanConcrete().ID: return 8387;
+ case CyanConcretePowder::CyanConcretePowder().ID: return 8403;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8350;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8351;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8352;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8353;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8272;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8273;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8274;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8275;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8276;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8277;
+ case CyanStainedGlass::CyanStainedGlass().ID: return 3587;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, true).ID: return 6111;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, false).ID: return 6112;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, true).ID: return 6115;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, false).ID: return 6116;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, true).ID: return 6119;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, false).ID: return 6120;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, true).ID: return 6123;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, false).ID: return 6124;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, true).ID: return 6127;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, false).ID: return 6128;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, true).ID: return 6131;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, false).ID: return 6132;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, true).ID: return 6135;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, false).ID: return 6136;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, true).ID: return 6139;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, false).ID: return 6140;
+ case CyanTerracotta::CyanTerracotta().ID: return 5814;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7147;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7148;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7149;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7150;
+ case CyanWool::CyanWool().ID: return 1092;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZM).ID: return 5576;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZP).ID: return 5577;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XM).ID: return 5578;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XP).ID: return 5579;
+ case Dandelion::Dandelion().ID: return 1111;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5424;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5425;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5426;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5427;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5428;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5429;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5430;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5431;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5432;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5433;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5434;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5435;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5436;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5437;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5438;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5439;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5440;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5441;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5442;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5443;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5444;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5445;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5446;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5447;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 7934;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 7935;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 7936;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 7937;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 7938;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 7939;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 7940;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 7941;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 7942;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 7943;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 7944;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 7945;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 7946;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 7947;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 7948;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 7949;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 7950;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 7951;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 7952;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 7953;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 7954;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 7955;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 7956;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 7957;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 7958;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 7959;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 7960;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 7961;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 7962;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 7963;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 7964;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 7965;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 7966;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 7967;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 7968;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 7969;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 7970;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 7971;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 7972;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 7973;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 7974;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 7975;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 7976;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 7977;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 7978;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 7979;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 7980;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 7981;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 7982;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 7983;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 7984;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 7985;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 7986;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 7987;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 7988;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 7989;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 7990;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 7991;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 7992;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 7993;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 7994;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 7995;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 7996;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 7997;
+ case DarkOakFence::DarkOakFence(true, true, true, true).ID: return 7648;
+ case DarkOakFence::DarkOakFence(true, true, true, false).ID: return 7649;
+ case DarkOakFence::DarkOakFence(true, true, false, true).ID: return 7652;
+ case DarkOakFence::DarkOakFence(true, true, false, false).ID: return 7653;
+ case DarkOakFence::DarkOakFence(true, false, true, true).ID: return 7656;
+ case DarkOakFence::DarkOakFence(true, false, true, false).ID: return 7657;
+ case DarkOakFence::DarkOakFence(true, false, false, true).ID: return 7660;
+ case DarkOakFence::DarkOakFence(true, false, false, false).ID: return 7661;
+ case DarkOakFence::DarkOakFence(false, true, true, true).ID: return 7664;
+ case DarkOakFence::DarkOakFence(false, true, true, false).ID: return 7665;
+ case DarkOakFence::DarkOakFence(false, true, false, true).ID: return 7668;
+ case DarkOakFence::DarkOakFence(false, true, false, false).ID: return 7669;
+ case DarkOakFence::DarkOakFence(false, false, true, true).ID: return 7672;
+ case DarkOakFence::DarkOakFence(false, false, true, false).ID: return 7673;
+ case DarkOakFence::DarkOakFence(false, false, false, true).ID: return 7676;
+ case DarkOakFence::DarkOakFence(false, false, false, false).ID: return 7677;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7486;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7487;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7488;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7489;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7490;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7491;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7492;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7493;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7494;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7495;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7496;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7497;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7498;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7499;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7500;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7501;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7502;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7503;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7504;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7505;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7506;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7507;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7508;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7509;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7510;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7511;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7512;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7513;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7514;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7515;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7516;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7517;
+ case DarkOakLeaves::DarkOakLeaves(1, true).ID: return 214;
+ case DarkOakLeaves::DarkOakLeaves(1, false).ID: return 215;
+ case DarkOakLeaves::DarkOakLeaves(2, true).ID: return 216;
+ case DarkOakLeaves::DarkOakLeaves(2, false).ID: return 217;
+ case DarkOakLeaves::DarkOakLeaves(3, true).ID: return 218;
+ case DarkOakLeaves::DarkOakLeaves(3, false).ID: return 219;
+ case DarkOakLeaves::DarkOakLeaves(4, true).ID: return 220;
+ case DarkOakLeaves::DarkOakLeaves(4, false).ID: return 221;
+ case DarkOakLeaves::DarkOakLeaves(5, true).ID: return 222;
+ case DarkOakLeaves::DarkOakLeaves(5, false).ID: return 223;
+ case DarkOakLeaves::DarkOakLeaves(6, true).ID: return 224;
+ case DarkOakLeaves::DarkOakLeaves(6, false).ID: return 225;
+ case DarkOakLeaves::DarkOakLeaves(7, true).ID: return 226;
+ case DarkOakLeaves::DarkOakLeaves(7, false).ID: return 227;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::X).ID: return 87;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Y).ID: return 88;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Z).ID: return 89;
+ case DarkOakPlanks::DarkOakPlanks().ID: return 20;
+ case DarkOakPressurePlate::DarkOakPressurePlate(true).ID: return 3378;
+ case DarkOakPressurePlate::DarkOakPressurePlate(false).ID: return 3379;
+ case DarkOakSapling::DarkOakSapling(0).ID: return 31;
+ case DarkOakSapling::DarkOakSapling(1).ID: return 32;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Top).ID: return 7289;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Bottom).ID: return 7291;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Double).ID: return 7293;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6414;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6416;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6418;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6420;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6422;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6424;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6426;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6428;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6430;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6432;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6434;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6436;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6438;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6440;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6442;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6444;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6446;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6448;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6450;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6452;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6454;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6456;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6458;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6460;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6462;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6464;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6466;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6468;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6470;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6472;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6474;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6476;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6478;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6480;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6482;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6484;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6486;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6488;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6490;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6492;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, true).ID: return 3915;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, false).ID: return 3917;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, true).ID: return 3919;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, false).ID: return 3921;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 3923;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 3925;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 3927;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 3929;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, true).ID: return 3931;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, false).ID: return 3933;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, true).ID: return 3935;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, false).ID: return 3937;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 3939;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 3941;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 3943;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 3945;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, true).ID: return 3947;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, false).ID: return 3949;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, true).ID: return 3951;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, false).ID: return 3953;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 3955;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 3957;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 3959;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 3961;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, true).ID: return 3963;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, false).ID: return 3965;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, true).ID: return 3967;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, false).ID: return 3969;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 3971;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 3973;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 3975;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 3977;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::X).ID: return 123;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Y).ID: return 124;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Z).ID: return 125;
+ case DarkPrismarine::DarkPrismarine().ID: return 6561;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Top).ID: return 6815;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Bottom).ID: return 6817;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Double).ID: return 6819;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 6723;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6725;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 6727;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6729;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 6731;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 6733;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6735;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 6737;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6739;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 6741;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 6743;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6745;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 6747;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6749;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 6751;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 6753;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6755;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 6757;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6759;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 6761;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 6763;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6765;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 6767;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6769;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 6771;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 6773;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6775;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 6777;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6779;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 6781;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 6783;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6785;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 6787;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6789;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 6791;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 6793;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 6795;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 6797;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 6799;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 6801;
+ case DaylightDetector::DaylightDetector(true, 0).ID: return 5652;
+ case DaylightDetector::DaylightDetector(true, 1).ID: return 5653;
+ case DaylightDetector::DaylightDetector(true, 2).ID: return 5654;
+ case DaylightDetector::DaylightDetector(true, 3).ID: return 5655;
+ case DaylightDetector::DaylightDetector(true, 4).ID: return 5656;
+ case DaylightDetector::DaylightDetector(true, 5).ID: return 5657;
+ case DaylightDetector::DaylightDetector(true, 6).ID: return 5658;
+ case DaylightDetector::DaylightDetector(true, 7).ID: return 5659;
+ case DaylightDetector::DaylightDetector(true, 8).ID: return 5660;
+ case DaylightDetector::DaylightDetector(true, 9).ID: return 5661;
+ case DaylightDetector::DaylightDetector(true, 10).ID: return 5662;
+ case DaylightDetector::DaylightDetector(true, 11).ID: return 5663;
+ case DaylightDetector::DaylightDetector(true, 12).ID: return 5664;
+ case DaylightDetector::DaylightDetector(true, 13).ID: return 5665;
+ case DaylightDetector::DaylightDetector(true, 14).ID: return 5666;
+ case DaylightDetector::DaylightDetector(true, 15).ID: return 5667;
+ case DaylightDetector::DaylightDetector(false, 0).ID: return 5668;
+ case DaylightDetector::DaylightDetector(false, 1).ID: return 5669;
+ case DaylightDetector::DaylightDetector(false, 2).ID: return 5670;
+ case DaylightDetector::DaylightDetector(false, 3).ID: return 5671;
+ case DaylightDetector::DaylightDetector(false, 4).ID: return 5672;
+ case DaylightDetector::DaylightDetector(false, 5).ID: return 5673;
+ case DaylightDetector::DaylightDetector(false, 6).ID: return 5674;
+ case DaylightDetector::DaylightDetector(false, 7).ID: return 5675;
+ case DaylightDetector::DaylightDetector(false, 8).ID: return 5676;
+ case DaylightDetector::DaylightDetector(false, 9).ID: return 5677;
+ case DaylightDetector::DaylightDetector(false, 10).ID: return 5678;
+ case DaylightDetector::DaylightDetector(false, 11).ID: return 5679;
+ case DaylightDetector::DaylightDetector(false, 12).ID: return 5680;
+ case DaylightDetector::DaylightDetector(false, 13).ID: return 5681;
+ case DaylightDetector::DaylightDetector(false, 14).ID: return 5682;
+ case DaylightDetector::DaylightDetector(false, 15).ID: return 5683;
+ case DeadBrainCoral::DeadBrainCoral().ID: return 8463;
+ case DeadBrainCoralBlock::DeadBrainCoralBlock().ID: return 8451;
+ case DeadBrainCoralFan::DeadBrainCoralFan().ID: return 8563;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8489;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8491;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8493;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8495;
+ case DeadBubbleCoral::DeadBubbleCoral().ID: return 8465;
+ case DeadBubbleCoralBlock::DeadBubbleCoralBlock().ID: return 8452;
+ case DeadBubbleCoralFan::DeadBubbleCoralFan().ID: return 8565;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8497;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8499;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8501;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8503;
+ case DeadBush::DeadBush().ID: return 1043;
+ case DeadFireCoral::DeadFireCoral().ID: return 8467;
+ case DeadFireCoralBlock::DeadFireCoralBlock().ID: return 8453;
+ case DeadFireCoralFan::DeadFireCoralFan().ID: return 8567;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8505;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8507;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8509;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8511;
+ case DeadHornCoral::DeadHornCoral().ID: return 8469;
+ case DeadHornCoralBlock::DeadHornCoralBlock().ID: return 8454;
+ case DeadHornCoralFan::DeadHornCoralFan().ID: return 8569;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8513;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8515;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8517;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8519;
+ case DeadTubeCoral::DeadTubeCoral().ID: return 8461;
+ case DeadTubeCoralBlock::DeadTubeCoralBlock().ID: return 8450;
+ case DeadTubeCoralFan::DeadTubeCoralFan().ID: return 8561;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8481;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8483;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8485;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8487;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::NorthSouth).ID: return 1016;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::EastWest).ID: return 1017;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingEast).ID: return 1018;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingWest).ID: return 1019;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingNorth).ID: return 1020;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingSouth).ID: return 1021;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::NorthSouth).ID: return 1022;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::EastWest).ID: return 1023;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingEast).ID: return 1024;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingWest).ID: return 1025;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingNorth).ID: return 1026;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingSouth).ID: return 1027;
+ case DiamondBlock::DiamondBlock().ID: return 3050;
+ case DiamondOre::DiamondOre().ID: return 3049;
+ case Diorite::Diorite().ID: return 4;
+ case Dirt::Dirt().ID: return 10;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, true).ID: return 233;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, false).ID: return 234;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, true).ID: return 235;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, false).ID: return 236;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, true).ID: return 237;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, false).ID: return 238;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, true).ID: return 239;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, false).ID: return 240;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, true).ID: return 241;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, false).ID: return 242;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, true).ID: return 243;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, false).ID: return 244;
+ case DragonEgg::DragonEgg().ID: return 4636;
+ case DragonHead::DragonHead(0).ID: return 5552;
+ case DragonHead::DragonHead(1).ID: return 5553;
+ case DragonHead::DragonHead(2).ID: return 5554;
+ case DragonHead::DragonHead(3).ID: return 5555;
+ case DragonHead::DragonHead(4).ID: return 5556;
+ case DragonHead::DragonHead(5).ID: return 5557;
+ case DragonHead::DragonHead(6).ID: return 5558;
+ case DragonHead::DragonHead(7).ID: return 5559;
+ case DragonHead::DragonHead(8).ID: return 5560;
+ case DragonHead::DragonHead(9).ID: return 5561;
+ case DragonHead::DragonHead(10).ID: return 5562;
+ case DragonHead::DragonHead(11).ID: return 5563;
+ case DragonHead::DragonHead(12).ID: return 5564;
+ case DragonHead::DragonHead(13).ID: return 5565;
+ case DragonHead::DragonHead(14).ID: return 5566;
+ case DragonHead::DragonHead(15).ID: return 5567;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 5548;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 5549;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 5550;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 5551;
+ case DriedKelpBlock::DriedKelpBlock().ID: return 8437;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, true).ID: return 5793;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, false).ID: return 5794;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, true).ID: return 5795;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, false).ID: return 5796;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, true).ID: return 5797;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, false).ID: return 5798;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, true).ID: return 5799;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, false).ID: return 5800;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, true).ID: return 5801;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, false).ID: return 5802;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, true).ID: return 5803;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, false).ID: return 5804;
+ case EmeraldBlock::EmeraldBlock().ID: return 4884;
+ case EmeraldOre::EmeraldOre().ID: return 4731;
+ case EnchantingTable::EnchantingTable().ID: return 4613;
+ case EndGateway::EndGateway().ID: return 8164;
+ case EndPortal::EndPortal().ID: return 4626;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZM).ID: return 4627;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZP).ID: return 4628;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XM).ID: return 4629;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XP).ID: return 4630;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZM).ID: return 4631;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZP).ID: return 4632;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XM).ID: return 4633;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XP).ID: return 4634;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZM).ID: return 7998;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_XP).ID: return 7999;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZP).ID: return 8000;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_XM).ID: return 8001;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_YP).ID: return 8002;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_YM).ID: return 8003;
+ case EndStone::EndStone().ID: return 4635;
+ case EndStoneBricks::EndStoneBricks().ID: return 8158;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZM).ID: return 4733;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZP).ID: return 4735;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XM).ID: return 4737;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XP).ID: return 4739;
+ case Farmland::Farmland(0).ID: return 3060;
+ case Farmland::Farmland(1).ID: return 3061;
+ case Farmland::Farmland(2).ID: return 3062;
+ case Farmland::Farmland(3).ID: return 3063;
+ case Farmland::Farmland(4).ID: return 3064;
+ case Farmland::Farmland(5).ID: return 3065;
+ case Farmland::Farmland(6).ID: return 3066;
+ case Farmland::Farmland(7).ID: return 3067;
+ case Fern::Fern().ID: return 1042;
+ case Fire::Fire(0, true, true, true, true, true).ID: return 1136;
+ case Fire::Fire(0, true, true, true, true, false).ID: return 1137;
+ case Fire::Fire(0, true, true, true, false, true).ID: return 1138;
+ case Fire::Fire(0, true, true, true, false, false).ID: return 1139;
+ case Fire::Fire(0, true, true, false, true, true).ID: return 1140;
+ case Fire::Fire(0, true, true, false, true, false).ID: return 1141;
+ case Fire::Fire(0, true, true, false, false, true).ID: return 1142;
+ case Fire::Fire(0, true, true, false, false, false).ID: return 1143;
+ case Fire::Fire(0, true, false, true, true, true).ID: return 1144;
+ case Fire::Fire(0, true, false, true, true, false).ID: return 1145;
+ case Fire::Fire(0, true, false, true, false, true).ID: return 1146;
+ case Fire::Fire(0, true, false, true, false, false).ID: return 1147;
+ case Fire::Fire(0, true, false, false, true, true).ID: return 1148;
+ case Fire::Fire(0, true, false, false, true, false).ID: return 1149;
+ case Fire::Fire(0, true, false, false, false, true).ID: return 1150;
+ case Fire::Fire(0, true, false, false, false, false).ID: return 1151;
+ case Fire::Fire(0, false, true, true, true, true).ID: return 1152;
+ case Fire::Fire(0, false, true, true, true, false).ID: return 1153;
+ case Fire::Fire(0, false, true, true, false, true).ID: return 1154;
+ case Fire::Fire(0, false, true, true, false, false).ID: return 1155;
+ case Fire::Fire(0, false, true, false, true, true).ID: return 1156;
+ case Fire::Fire(0, false, true, false, true, false).ID: return 1157;
+ case Fire::Fire(0, false, true, false, false, true).ID: return 1158;
+ case Fire::Fire(0, false, true, false, false, false).ID: return 1159;
+ case Fire::Fire(0, false, false, true, true, true).ID: return 1160;
+ case Fire::Fire(0, false, false, true, true, false).ID: return 1161;
+ case Fire::Fire(0, false, false, true, false, true).ID: return 1162;
+ case Fire::Fire(0, false, false, true, false, false).ID: return 1163;
+ case Fire::Fire(0, false, false, false, true, true).ID: return 1164;
+ case Fire::Fire(0, false, false, false, true, false).ID: return 1165;
+ case Fire::Fire(0, false, false, false, false, true).ID: return 1166;
+ case Fire::Fire(0, false, false, false, false, false).ID: return 1167;
+ case Fire::Fire(1, true, true, true, true, true).ID: return 1168;
+ case Fire::Fire(1, true, true, true, true, false).ID: return 1169;
+ case Fire::Fire(1, true, true, true, false, true).ID: return 1170;
+ case Fire::Fire(1, true, true, true, false, false).ID: return 1171;
+ case Fire::Fire(1, true, true, false, true, true).ID: return 1172;
+ case Fire::Fire(1, true, true, false, true, false).ID: return 1173;
+ case Fire::Fire(1, true, true, false, false, true).ID: return 1174;
+ case Fire::Fire(1, true, true, false, false, false).ID: return 1175;
+ case Fire::Fire(1, true, false, true, true, true).ID: return 1176;
+ case Fire::Fire(1, true, false, true, true, false).ID: return 1177;
+ case Fire::Fire(1, true, false, true, false, true).ID: return 1178;
+ case Fire::Fire(1, true, false, true, false, false).ID: return 1179;
+ case Fire::Fire(1, true, false, false, true, true).ID: return 1180;
+ case Fire::Fire(1, true, false, false, true, false).ID: return 1181;
+ case Fire::Fire(1, true, false, false, false, true).ID: return 1182;
+ case Fire::Fire(1, true, false, false, false, false).ID: return 1183;
+ case Fire::Fire(1, false, true, true, true, true).ID: return 1184;
+ case Fire::Fire(1, false, true, true, true, false).ID: return 1185;
+ case Fire::Fire(1, false, true, true, false, true).ID: return 1186;
+ case Fire::Fire(1, false, true, true, false, false).ID: return 1187;
+ case Fire::Fire(1, false, true, false, true, true).ID: return 1188;
+ case Fire::Fire(1, false, true, false, true, false).ID: return 1189;
+ case Fire::Fire(1, false, true, false, false, true).ID: return 1190;
+ case Fire::Fire(1, false, true, false, false, false).ID: return 1191;
+ case Fire::Fire(1, false, false, true, true, true).ID: return 1192;
+ case Fire::Fire(1, false, false, true, true, false).ID: return 1193;
+ case Fire::Fire(1, false, false, true, false, true).ID: return 1194;
+ case Fire::Fire(1, false, false, true, false, false).ID: return 1195;
+ case Fire::Fire(1, false, false, false, true, true).ID: return 1196;
+ case Fire::Fire(1, false, false, false, true, false).ID: return 1197;
+ case Fire::Fire(1, false, false, false, false, true).ID: return 1198;
+ case Fire::Fire(1, false, false, false, false, false).ID: return 1199;
+ case Fire::Fire(2, true, true, true, true, true).ID: return 1200;
+ case Fire::Fire(2, true, true, true, true, false).ID: return 1201;
+ case Fire::Fire(2, true, true, true, false, true).ID: return 1202;
+ case Fire::Fire(2, true, true, true, false, false).ID: return 1203;
+ case Fire::Fire(2, true, true, false, true, true).ID: return 1204;
+ case Fire::Fire(2, true, true, false, true, false).ID: return 1205;
+ case Fire::Fire(2, true, true, false, false, true).ID: return 1206;
+ case Fire::Fire(2, true, true, false, false, false).ID: return 1207;
+ case Fire::Fire(2, true, false, true, true, true).ID: return 1208;
+ case Fire::Fire(2, true, false, true, true, false).ID: return 1209;
+ case Fire::Fire(2, true, false, true, false, true).ID: return 1210;
+ case Fire::Fire(2, true, false, true, false, false).ID: return 1211;
+ case Fire::Fire(2, true, false, false, true, true).ID: return 1212;
+ case Fire::Fire(2, true, false, false, true, false).ID: return 1213;
+ case Fire::Fire(2, true, false, false, false, true).ID: return 1214;
+ case Fire::Fire(2, true, false, false, false, false).ID: return 1215;
+ case Fire::Fire(2, false, true, true, true, true).ID: return 1216;
+ case Fire::Fire(2, false, true, true, true, false).ID: return 1217;
+ case Fire::Fire(2, false, true, true, false, true).ID: return 1218;
+ case Fire::Fire(2, false, true, true, false, false).ID: return 1219;
+ case Fire::Fire(2, false, true, false, true, true).ID: return 1220;
+ case Fire::Fire(2, false, true, false, true, false).ID: return 1221;
+ case Fire::Fire(2, false, true, false, false, true).ID: return 1222;
+ case Fire::Fire(2, false, true, false, false, false).ID: return 1223;
+ case Fire::Fire(2, false, false, true, true, true).ID: return 1224;
+ case Fire::Fire(2, false, false, true, true, false).ID: return 1225;
+ case Fire::Fire(2, false, false, true, false, true).ID: return 1226;
+ case Fire::Fire(2, false, false, true, false, false).ID: return 1227;
+ case Fire::Fire(2, false, false, false, true, true).ID: return 1228;
+ case Fire::Fire(2, false, false, false, true, false).ID: return 1229;
+ case Fire::Fire(2, false, false, false, false, true).ID: return 1230;
+ case Fire::Fire(2, false, false, false, false, false).ID: return 1231;
+ case Fire::Fire(3, true, true, true, true, true).ID: return 1232;
+ case Fire::Fire(3, true, true, true, true, false).ID: return 1233;
+ case Fire::Fire(3, true, true, true, false, true).ID: return 1234;
+ case Fire::Fire(3, true, true, true, false, false).ID: return 1235;
+ case Fire::Fire(3, true, true, false, true, true).ID: return 1236;
+ case Fire::Fire(3, true, true, false, true, false).ID: return 1237;
+ case Fire::Fire(3, true, true, false, false, true).ID: return 1238;
+ case Fire::Fire(3, true, true, false, false, false).ID: return 1239;
+ case Fire::Fire(3, true, false, true, true, true).ID: return 1240;
+ case Fire::Fire(3, true, false, true, true, false).ID: return 1241;
+ case Fire::Fire(3, true, false, true, false, true).ID: return 1242;
+ case Fire::Fire(3, true, false, true, false, false).ID: return 1243;
+ case Fire::Fire(3, true, false, false, true, true).ID: return 1244;
+ case Fire::Fire(3, true, false, false, true, false).ID: return 1245;
+ case Fire::Fire(3, true, false, false, false, true).ID: return 1246;
+ case Fire::Fire(3, true, false, false, false, false).ID: return 1247;
+ case Fire::Fire(3, false, true, true, true, true).ID: return 1248;
+ case Fire::Fire(3, false, true, true, true, false).ID: return 1249;
+ case Fire::Fire(3, false, true, true, false, true).ID: return 1250;
+ case Fire::Fire(3, false, true, true, false, false).ID: return 1251;
+ case Fire::Fire(3, false, true, false, true, true).ID: return 1252;
+ case Fire::Fire(3, false, true, false, true, false).ID: return 1253;
+ case Fire::Fire(3, false, true, false, false, true).ID: return 1254;
+ case Fire::Fire(3, false, true, false, false, false).ID: return 1255;
+ case Fire::Fire(3, false, false, true, true, true).ID: return 1256;
+ case Fire::Fire(3, false, false, true, true, false).ID: return 1257;
+ case Fire::Fire(3, false, false, true, false, true).ID: return 1258;
+ case Fire::Fire(3, false, false, true, false, false).ID: return 1259;
+ case Fire::Fire(3, false, false, false, true, true).ID: return 1260;
+ case Fire::Fire(3, false, false, false, true, false).ID: return 1261;
+ case Fire::Fire(3, false, false, false, false, true).ID: return 1262;
+ case Fire::Fire(3, false, false, false, false, false).ID: return 1263;
+ case Fire::Fire(4, true, true, true, true, true).ID: return 1264;
+ case Fire::Fire(4, true, true, true, true, false).ID: return 1265;
+ case Fire::Fire(4, true, true, true, false, true).ID: return 1266;
+ case Fire::Fire(4, true, true, true, false, false).ID: return 1267;
+ case Fire::Fire(4, true, true, false, true, true).ID: return 1268;
+ case Fire::Fire(4, true, true, false, true, false).ID: return 1269;
+ case Fire::Fire(4, true, true, false, false, true).ID: return 1270;
+ case Fire::Fire(4, true, true, false, false, false).ID: return 1271;
+ case Fire::Fire(4, true, false, true, true, true).ID: return 1272;
+ case Fire::Fire(4, true, false, true, true, false).ID: return 1273;
+ case Fire::Fire(4, true, false, true, false, true).ID: return 1274;
+ case Fire::Fire(4, true, false, true, false, false).ID: return 1275;
+ case Fire::Fire(4, true, false, false, true, true).ID: return 1276;
+ case Fire::Fire(4, true, false, false, true, false).ID: return 1277;
+ case Fire::Fire(4, true, false, false, false, true).ID: return 1278;
+ case Fire::Fire(4, true, false, false, false, false).ID: return 1279;
+ case Fire::Fire(4, false, true, true, true, true).ID: return 1280;
+ case Fire::Fire(4, false, true, true, true, false).ID: return 1281;
+ case Fire::Fire(4, false, true, true, false, true).ID: return 1282;
+ case Fire::Fire(4, false, true, true, false, false).ID: return 1283;
+ case Fire::Fire(4, false, true, false, true, true).ID: return 1284;
+ case Fire::Fire(4, false, true, false, true, false).ID: return 1285;
+ case Fire::Fire(4, false, true, false, false, true).ID: return 1286;
+ case Fire::Fire(4, false, true, false, false, false).ID: return 1287;
+ case Fire::Fire(4, false, false, true, true, true).ID: return 1288;
+ case Fire::Fire(4, false, false, true, true, false).ID: return 1289;
+ case Fire::Fire(4, false, false, true, false, true).ID: return 1290;
+ case Fire::Fire(4, false, false, true, false, false).ID: return 1291;
+ case Fire::Fire(4, false, false, false, true, true).ID: return 1292;
+ case Fire::Fire(4, false, false, false, true, false).ID: return 1293;
+ case Fire::Fire(4, false, false, false, false, true).ID: return 1294;
+ case Fire::Fire(4, false, false, false, false, false).ID: return 1295;
+ case Fire::Fire(5, true, true, true, true, true).ID: return 1296;
+ case Fire::Fire(5, true, true, true, true, false).ID: return 1297;
+ case Fire::Fire(5, true, true, true, false, true).ID: return 1298;
+ case Fire::Fire(5, true, true, true, false, false).ID: return 1299;
+ case Fire::Fire(5, true, true, false, true, true).ID: return 1300;
+ case Fire::Fire(5, true, true, false, true, false).ID: return 1301;
+ case Fire::Fire(5, true, true, false, false, true).ID: return 1302;
+ case Fire::Fire(5, true, true, false, false, false).ID: return 1303;
+ case Fire::Fire(5, true, false, true, true, true).ID: return 1304;
+ case Fire::Fire(5, true, false, true, true, false).ID: return 1305;
+ case Fire::Fire(5, true, false, true, false, true).ID: return 1306;
+ case Fire::Fire(5, true, false, true, false, false).ID: return 1307;
+ case Fire::Fire(5, true, false, false, true, true).ID: return 1308;
+ case Fire::Fire(5, true, false, false, true, false).ID: return 1309;
+ case Fire::Fire(5, true, false, false, false, true).ID: return 1310;
+ case Fire::Fire(5, true, false, false, false, false).ID: return 1311;
+ case Fire::Fire(5, false, true, true, true, true).ID: return 1312;
+ case Fire::Fire(5, false, true, true, true, false).ID: return 1313;
+ case Fire::Fire(5, false, true, true, false, true).ID: return 1314;
+ case Fire::Fire(5, false, true, true, false, false).ID: return 1315;
+ case Fire::Fire(5, false, true, false, true, true).ID: return 1316;
+ case Fire::Fire(5, false, true, false, true, false).ID: return 1317;
+ case Fire::Fire(5, false, true, false, false, true).ID: return 1318;
+ case Fire::Fire(5, false, true, false, false, false).ID: return 1319;
+ case Fire::Fire(5, false, false, true, true, true).ID: return 1320;
+ case Fire::Fire(5, false, false, true, true, false).ID: return 1321;
+ case Fire::Fire(5, false, false, true, false, true).ID: return 1322;
+ case Fire::Fire(5, false, false, true, false, false).ID: return 1323;
+ case Fire::Fire(5, false, false, false, true, true).ID: return 1324;
+ case Fire::Fire(5, false, false, false, true, false).ID: return 1325;
+ case Fire::Fire(5, false, false, false, false, true).ID: return 1326;
+ case Fire::Fire(5, false, false, false, false, false).ID: return 1327;
+ case Fire::Fire(6, true, true, true, true, true).ID: return 1328;
+ case Fire::Fire(6, true, true, true, true, false).ID: return 1329;
+ case Fire::Fire(6, true, true, true, false, true).ID: return 1330;
+ case Fire::Fire(6, true, true, true, false, false).ID: return 1331;
+ case Fire::Fire(6, true, true, false, true, true).ID: return 1332;
+ case Fire::Fire(6, true, true, false, true, false).ID: return 1333;
+ case Fire::Fire(6, true, true, false, false, true).ID: return 1334;
+ case Fire::Fire(6, true, true, false, false, false).ID: return 1335;
+ case Fire::Fire(6, true, false, true, true, true).ID: return 1336;
+ case Fire::Fire(6, true, false, true, true, false).ID: return 1337;
+ case Fire::Fire(6, true, false, true, false, true).ID: return 1338;
+ case Fire::Fire(6, true, false, true, false, false).ID: return 1339;
+ case Fire::Fire(6, true, false, false, true, true).ID: return 1340;
+ case Fire::Fire(6, true, false, false, true, false).ID: return 1341;
+ case Fire::Fire(6, true, false, false, false, true).ID: return 1342;
+ case Fire::Fire(6, true, false, false, false, false).ID: return 1343;
+ case Fire::Fire(6, false, true, true, true, true).ID: return 1344;
+ case Fire::Fire(6, false, true, true, true, false).ID: return 1345;
+ case Fire::Fire(6, false, true, true, false, true).ID: return 1346;
+ case Fire::Fire(6, false, true, true, false, false).ID: return 1347;
+ case Fire::Fire(6, false, true, false, true, true).ID: return 1348;
+ case Fire::Fire(6, false, true, false, true, false).ID: return 1349;
+ case Fire::Fire(6, false, true, false, false, true).ID: return 1350;
+ case Fire::Fire(6, false, true, false, false, false).ID: return 1351;
+ case Fire::Fire(6, false, false, true, true, true).ID: return 1352;
+ case Fire::Fire(6, false, false, true, true, false).ID: return 1353;
+ case Fire::Fire(6, false, false, true, false, true).ID: return 1354;
+ case Fire::Fire(6, false, false, true, false, false).ID: return 1355;
+ case Fire::Fire(6, false, false, false, true, true).ID: return 1356;
+ case Fire::Fire(6, false, false, false, true, false).ID: return 1357;
+ case Fire::Fire(6, false, false, false, false, true).ID: return 1358;
+ case Fire::Fire(6, false, false, false, false, false).ID: return 1359;
+ case Fire::Fire(7, true, true, true, true, true).ID: return 1360;
+ case Fire::Fire(7, true, true, true, true, false).ID: return 1361;
+ case Fire::Fire(7, true, true, true, false, true).ID: return 1362;
+ case Fire::Fire(7, true, true, true, false, false).ID: return 1363;
+ case Fire::Fire(7, true, true, false, true, true).ID: return 1364;
+ case Fire::Fire(7, true, true, false, true, false).ID: return 1365;
+ case Fire::Fire(7, true, true, false, false, true).ID: return 1366;
+ case Fire::Fire(7, true, true, false, false, false).ID: return 1367;
+ case Fire::Fire(7, true, false, true, true, true).ID: return 1368;
+ case Fire::Fire(7, true, false, true, true, false).ID: return 1369;
+ case Fire::Fire(7, true, false, true, false, true).ID: return 1370;
+ case Fire::Fire(7, true, false, true, false, false).ID: return 1371;
+ case Fire::Fire(7, true, false, false, true, true).ID: return 1372;
+ case Fire::Fire(7, true, false, false, true, false).ID: return 1373;
+ case Fire::Fire(7, true, false, false, false, true).ID: return 1374;
+ case Fire::Fire(7, true, false, false, false, false).ID: return 1375;
+ case Fire::Fire(7, false, true, true, true, true).ID: return 1376;
+ case Fire::Fire(7, false, true, true, true, false).ID: return 1377;
+ case Fire::Fire(7, false, true, true, false, true).ID: return 1378;
+ case Fire::Fire(7, false, true, true, false, false).ID: return 1379;
+ case Fire::Fire(7, false, true, false, true, true).ID: return 1380;
+ case Fire::Fire(7, false, true, false, true, false).ID: return 1381;
+ case Fire::Fire(7, false, true, false, false, true).ID: return 1382;
+ case Fire::Fire(7, false, true, false, false, false).ID: return 1383;
+ case Fire::Fire(7, false, false, true, true, true).ID: return 1384;
+ case Fire::Fire(7, false, false, true, true, false).ID: return 1385;
+ case Fire::Fire(7, false, false, true, false, true).ID: return 1386;
+ case Fire::Fire(7, false, false, true, false, false).ID: return 1387;
+ case Fire::Fire(7, false, false, false, true, true).ID: return 1388;
+ case Fire::Fire(7, false, false, false, true, false).ID: return 1389;
+ case Fire::Fire(7, false, false, false, false, true).ID: return 1390;
+ case Fire::Fire(7, false, false, false, false, false).ID: return 1391;
+ case Fire::Fire(8, true, true, true, true, true).ID: return 1392;
+ case Fire::Fire(8, true, true, true, true, false).ID: return 1393;
+ case Fire::Fire(8, true, true, true, false, true).ID: return 1394;
+ case Fire::Fire(8, true, true, true, false, false).ID: return 1395;
+ case Fire::Fire(8, true, true, false, true, true).ID: return 1396;
+ case Fire::Fire(8, true, true, false, true, false).ID: return 1397;
+ case Fire::Fire(8, true, true, false, false, true).ID: return 1398;
+ case Fire::Fire(8, true, true, false, false, false).ID: return 1399;
+ case Fire::Fire(8, true, false, true, true, true).ID: return 1400;
+ case Fire::Fire(8, true, false, true, true, false).ID: return 1401;
+ case Fire::Fire(8, true, false, true, false, true).ID: return 1402;
+ case Fire::Fire(8, true, false, true, false, false).ID: return 1403;
+ case Fire::Fire(8, true, false, false, true, true).ID: return 1404;
+ case Fire::Fire(8, true, false, false, true, false).ID: return 1405;
+ case Fire::Fire(8, true, false, false, false, true).ID: return 1406;
+ case Fire::Fire(8, true, false, false, false, false).ID: return 1407;
+ case Fire::Fire(8, false, true, true, true, true).ID: return 1408;
+ case Fire::Fire(8, false, true, true, true, false).ID: return 1409;
+ case Fire::Fire(8, false, true, true, false, true).ID: return 1410;
+ case Fire::Fire(8, false, true, true, false, false).ID: return 1411;
+ case Fire::Fire(8, false, true, false, true, true).ID: return 1412;
+ case Fire::Fire(8, false, true, false, true, false).ID: return 1413;
+ case Fire::Fire(8, false, true, false, false, true).ID: return 1414;
+ case Fire::Fire(8, false, true, false, false, false).ID: return 1415;
+ case Fire::Fire(8, false, false, true, true, true).ID: return 1416;
+ case Fire::Fire(8, false, false, true, true, false).ID: return 1417;
+ case Fire::Fire(8, false, false, true, false, true).ID: return 1418;
+ case Fire::Fire(8, false, false, true, false, false).ID: return 1419;
+ case Fire::Fire(8, false, false, false, true, true).ID: return 1420;
+ case Fire::Fire(8, false, false, false, true, false).ID: return 1421;
+ case Fire::Fire(8, false, false, false, false, true).ID: return 1422;
+ case Fire::Fire(8, false, false, false, false, false).ID: return 1423;
+ case Fire::Fire(9, true, true, true, true, true).ID: return 1424;
+ case Fire::Fire(9, true, true, true, true, false).ID: return 1425;
+ case Fire::Fire(9, true, true, true, false, true).ID: return 1426;
+ case Fire::Fire(9, true, true, true, false, false).ID: return 1427;
+ case Fire::Fire(9, true, true, false, true, true).ID: return 1428;
+ case Fire::Fire(9, true, true, false, true, false).ID: return 1429;
+ case Fire::Fire(9, true, true, false, false, true).ID: return 1430;
+ case Fire::Fire(9, true, true, false, false, false).ID: return 1431;
+ case Fire::Fire(9, true, false, true, true, true).ID: return 1432;
+ case Fire::Fire(9, true, false, true, true, false).ID: return 1433;
+ case Fire::Fire(9, true, false, true, false, true).ID: return 1434;
+ case Fire::Fire(9, true, false, true, false, false).ID: return 1435;
+ case Fire::Fire(9, true, false, false, true, true).ID: return 1436;
+ case Fire::Fire(9, true, false, false, true, false).ID: return 1437;
+ case Fire::Fire(9, true, false, false, false, true).ID: return 1438;
+ case Fire::Fire(9, true, false, false, false, false).ID: return 1439;
+ case Fire::Fire(9, false, true, true, true, true).ID: return 1440;
+ case Fire::Fire(9, false, true, true, true, false).ID: return 1441;
+ case Fire::Fire(9, false, true, true, false, true).ID: return 1442;
+ case Fire::Fire(9, false, true, true, false, false).ID: return 1443;
+ case Fire::Fire(9, false, true, false, true, true).ID: return 1444;
+ case Fire::Fire(9, false, true, false, true, false).ID: return 1445;
+ case Fire::Fire(9, false, true, false, false, true).ID: return 1446;
+ case Fire::Fire(9, false, true, false, false, false).ID: return 1447;
+ case Fire::Fire(9, false, false, true, true, true).ID: return 1448;
+ case Fire::Fire(9, false, false, true, true, false).ID: return 1449;
+ case Fire::Fire(9, false, false, true, false, true).ID: return 1450;
+ case Fire::Fire(9, false, false, true, false, false).ID: return 1451;
+ case Fire::Fire(9, false, false, false, true, true).ID: return 1452;
+ case Fire::Fire(9, false, false, false, true, false).ID: return 1453;
+ case Fire::Fire(9, false, false, false, false, true).ID: return 1454;
+ case Fire::Fire(9, false, false, false, false, false).ID: return 1455;
+ case Fire::Fire(10, true, true, true, true, true).ID: return 1456;
+ case Fire::Fire(10, true, true, true, true, false).ID: return 1457;
+ case Fire::Fire(10, true, true, true, false, true).ID: return 1458;
+ case Fire::Fire(10, true, true, true, false, false).ID: return 1459;
+ case Fire::Fire(10, true, true, false, true, true).ID: return 1460;
+ case Fire::Fire(10, true, true, false, true, false).ID: return 1461;
+ case Fire::Fire(10, true, true, false, false, true).ID: return 1462;
+ case Fire::Fire(10, true, true, false, false, false).ID: return 1463;
+ case Fire::Fire(10, true, false, true, true, true).ID: return 1464;
+ case Fire::Fire(10, true, false, true, true, false).ID: return 1465;
+ case Fire::Fire(10, true, false, true, false, true).ID: return 1466;
+ case Fire::Fire(10, true, false, true, false, false).ID: return 1467;
+ case Fire::Fire(10, true, false, false, true, true).ID: return 1468;
+ case Fire::Fire(10, true, false, false, true, false).ID: return 1469;
+ case Fire::Fire(10, true, false, false, false, true).ID: return 1470;
+ case Fire::Fire(10, true, false, false, false, false).ID: return 1471;
+ case Fire::Fire(10, false, true, true, true, true).ID: return 1472;
+ case Fire::Fire(10, false, true, true, true, false).ID: return 1473;
+ case Fire::Fire(10, false, true, true, false, true).ID: return 1474;
+ case Fire::Fire(10, false, true, true, false, false).ID: return 1475;
+ case Fire::Fire(10, false, true, false, true, true).ID: return 1476;
+ case Fire::Fire(10, false, true, false, true, false).ID: return 1477;
+ case Fire::Fire(10, false, true, false, false, true).ID: return 1478;
+ case Fire::Fire(10, false, true, false, false, false).ID: return 1479;
+ case Fire::Fire(10, false, false, true, true, true).ID: return 1480;
+ case Fire::Fire(10, false, false, true, true, false).ID: return 1481;
+ case Fire::Fire(10, false, false, true, false, true).ID: return 1482;
+ case Fire::Fire(10, false, false, true, false, false).ID: return 1483;
+ case Fire::Fire(10, false, false, false, true, true).ID: return 1484;
+ case Fire::Fire(10, false, false, false, true, false).ID: return 1485;
+ case Fire::Fire(10, false, false, false, false, true).ID: return 1486;
+ case Fire::Fire(10, false, false, false, false, false).ID: return 1487;
+ case Fire::Fire(11, true, true, true, true, true).ID: return 1488;
+ case Fire::Fire(11, true, true, true, true, false).ID: return 1489;
+ case Fire::Fire(11, true, true, true, false, true).ID: return 1490;
+ case Fire::Fire(11, true, true, true, false, false).ID: return 1491;
+ case Fire::Fire(11, true, true, false, true, true).ID: return 1492;
+ case Fire::Fire(11, true, true, false, true, false).ID: return 1493;
+ case Fire::Fire(11, true, true, false, false, true).ID: return 1494;
+ case Fire::Fire(11, true, true, false, false, false).ID: return 1495;
+ case Fire::Fire(11, true, false, true, true, true).ID: return 1496;
+ case Fire::Fire(11, true, false, true, true, false).ID: return 1497;
+ case Fire::Fire(11, true, false, true, false, true).ID: return 1498;
+ case Fire::Fire(11, true, false, true, false, false).ID: return 1499;
+ case Fire::Fire(11, true, false, false, true, true).ID: return 1500;
+ case Fire::Fire(11, true, false, false, true, false).ID: return 1501;
+ case Fire::Fire(11, true, false, false, false, true).ID: return 1502;
+ case Fire::Fire(11, true, false, false, false, false).ID: return 1503;
+ case Fire::Fire(11, false, true, true, true, true).ID: return 1504;
+ case Fire::Fire(11, false, true, true, true, false).ID: return 1505;
+ case Fire::Fire(11, false, true, true, false, true).ID: return 1506;
+ case Fire::Fire(11, false, true, true, false, false).ID: return 1507;
+ case Fire::Fire(11, false, true, false, true, true).ID: return 1508;
+ case Fire::Fire(11, false, true, false, true, false).ID: return 1509;
+ case Fire::Fire(11, false, true, false, false, true).ID: return 1510;
+ case Fire::Fire(11, false, true, false, false, false).ID: return 1511;
+ case Fire::Fire(11, false, false, true, true, true).ID: return 1512;
+ case Fire::Fire(11, false, false, true, true, false).ID: return 1513;
+ case Fire::Fire(11, false, false, true, false, true).ID: return 1514;
+ case Fire::Fire(11, false, false, true, false, false).ID: return 1515;
+ case Fire::Fire(11, false, false, false, true, true).ID: return 1516;
+ case Fire::Fire(11, false, false, false, true, false).ID: return 1517;
+ case Fire::Fire(11, false, false, false, false, true).ID: return 1518;
+ case Fire::Fire(11, false, false, false, false, false).ID: return 1519;
+ case Fire::Fire(12, true, true, true, true, true).ID: return 1520;
+ case Fire::Fire(12, true, true, true, true, false).ID: return 1521;
+ case Fire::Fire(12, true, true, true, false, true).ID: return 1522;
+ case Fire::Fire(12, true, true, true, false, false).ID: return 1523;
+ case Fire::Fire(12, true, true, false, true, true).ID: return 1524;
+ case Fire::Fire(12, true, true, false, true, false).ID: return 1525;
+ case Fire::Fire(12, true, true, false, false, true).ID: return 1526;
+ case Fire::Fire(12, true, true, false, false, false).ID: return 1527;
+ case Fire::Fire(12, true, false, true, true, true).ID: return 1528;
+ case Fire::Fire(12, true, false, true, true, false).ID: return 1529;
+ case Fire::Fire(12, true, false, true, false, true).ID: return 1530;
+ case Fire::Fire(12, true, false, true, false, false).ID: return 1531;
+ case Fire::Fire(12, true, false, false, true, true).ID: return 1532;
+ case Fire::Fire(12, true, false, false, true, false).ID: return 1533;
+ case Fire::Fire(12, true, false, false, false, true).ID: return 1534;
+ case Fire::Fire(12, true, false, false, false, false).ID: return 1535;
+ case Fire::Fire(12, false, true, true, true, true).ID: return 1536;
+ case Fire::Fire(12, false, true, true, true, false).ID: return 1537;
+ case Fire::Fire(12, false, true, true, false, true).ID: return 1538;
+ case Fire::Fire(12, false, true, true, false, false).ID: return 1539;
+ case Fire::Fire(12, false, true, false, true, true).ID: return 1540;
+ case Fire::Fire(12, false, true, false, true, false).ID: return 1541;
+ case Fire::Fire(12, false, true, false, false, true).ID: return 1542;
+ case Fire::Fire(12, false, true, false, false, false).ID: return 1543;
+ case Fire::Fire(12, false, false, true, true, true).ID: return 1544;
+ case Fire::Fire(12, false, false, true, true, false).ID: return 1545;
+ case Fire::Fire(12, false, false, true, false, true).ID: return 1546;
+ case Fire::Fire(12, false, false, true, false, false).ID: return 1547;
+ case Fire::Fire(12, false, false, false, true, true).ID: return 1548;
+ case Fire::Fire(12, false, false, false, true, false).ID: return 1549;
+ case Fire::Fire(12, false, false, false, false, true).ID: return 1550;
+ case Fire::Fire(12, false, false, false, false, false).ID: return 1551;
+ case Fire::Fire(13, true, true, true, true, true).ID: return 1552;
+ case Fire::Fire(13, true, true, true, true, false).ID: return 1553;
+ case Fire::Fire(13, true, true, true, false, true).ID: return 1554;
+ case Fire::Fire(13, true, true, true, false, false).ID: return 1555;
+ case Fire::Fire(13, true, true, false, true, true).ID: return 1556;
+ case Fire::Fire(13, true, true, false, true, false).ID: return 1557;
+ case Fire::Fire(13, true, true, false, false, true).ID: return 1558;
+ case Fire::Fire(13, true, true, false, false, false).ID: return 1559;
+ case Fire::Fire(13, true, false, true, true, true).ID: return 1560;
+ case Fire::Fire(13, true, false, true, true, false).ID: return 1561;
+ case Fire::Fire(13, true, false, true, false, true).ID: return 1562;
+ case Fire::Fire(13, true, false, true, false, false).ID: return 1563;
+ case Fire::Fire(13, true, false, false, true, true).ID: return 1564;
+ case Fire::Fire(13, true, false, false, true, false).ID: return 1565;
+ case Fire::Fire(13, true, false, false, false, true).ID: return 1566;
+ case Fire::Fire(13, true, false, false, false, false).ID: return 1567;
+ case Fire::Fire(13, false, true, true, true, true).ID: return 1568;
+ case Fire::Fire(13, false, true, true, true, false).ID: return 1569;
+ case Fire::Fire(13, false, true, true, false, true).ID: return 1570;
+ case Fire::Fire(13, false, true, true, false, false).ID: return 1571;
+ case Fire::Fire(13, false, true, false, true, true).ID: return 1572;
+ case Fire::Fire(13, false, true, false, true, false).ID: return 1573;
+ case Fire::Fire(13, false, true, false, false, true).ID: return 1574;
+ case Fire::Fire(13, false, true, false, false, false).ID: return 1575;
+ case Fire::Fire(13, false, false, true, true, true).ID: return 1576;
+ case Fire::Fire(13, false, false, true, true, false).ID: return 1577;
+ case Fire::Fire(13, false, false, true, false, true).ID: return 1578;
+ case Fire::Fire(13, false, false, true, false, false).ID: return 1579;
+ case Fire::Fire(13, false, false, false, true, true).ID: return 1580;
+ case Fire::Fire(13, false, false, false, true, false).ID: return 1581;
+ case Fire::Fire(13, false, false, false, false, true).ID: return 1582;
+ case Fire::Fire(13, false, false, false, false, false).ID: return 1583;
+ case Fire::Fire(14, true, true, true, true, true).ID: return 1584;
+ case Fire::Fire(14, true, true, true, true, false).ID: return 1585;
+ case Fire::Fire(14, true, true, true, false, true).ID: return 1586;
+ case Fire::Fire(14, true, true, true, false, false).ID: return 1587;
+ case Fire::Fire(14, true, true, false, true, true).ID: return 1588;
+ case Fire::Fire(14, true, true, false, true, false).ID: return 1589;
+ case Fire::Fire(14, true, true, false, false, true).ID: return 1590;
+ case Fire::Fire(14, true, true, false, false, false).ID: return 1591;
+ case Fire::Fire(14, true, false, true, true, true).ID: return 1592;
+ case Fire::Fire(14, true, false, true, true, false).ID: return 1593;
+ case Fire::Fire(14, true, false, true, false, true).ID: return 1594;
+ case Fire::Fire(14, true, false, true, false, false).ID: return 1595;
+ case Fire::Fire(14, true, false, false, true, true).ID: return 1596;
+ case Fire::Fire(14, true, false, false, true, false).ID: return 1597;
+ case Fire::Fire(14, true, false, false, false, true).ID: return 1598;
+ case Fire::Fire(14, true, false, false, false, false).ID: return 1599;
+ case Fire::Fire(14, false, true, true, true, true).ID: return 1600;
+ case Fire::Fire(14, false, true, true, true, false).ID: return 1601;
+ case Fire::Fire(14, false, true, true, false, true).ID: return 1602;
+ case Fire::Fire(14, false, true, true, false, false).ID: return 1603;
+ case Fire::Fire(14, false, true, false, true, true).ID: return 1604;
+ case Fire::Fire(14, false, true, false, true, false).ID: return 1605;
+ case Fire::Fire(14, false, true, false, false, true).ID: return 1606;
+ case Fire::Fire(14, false, true, false, false, false).ID: return 1607;
+ case Fire::Fire(14, false, false, true, true, true).ID: return 1608;
+ case Fire::Fire(14, false, false, true, true, false).ID: return 1609;
+ case Fire::Fire(14, false, false, true, false, true).ID: return 1610;
+ case Fire::Fire(14, false, false, true, false, false).ID: return 1611;
+ case Fire::Fire(14, false, false, false, true, true).ID: return 1612;
+ case Fire::Fire(14, false, false, false, true, false).ID: return 1613;
+ case Fire::Fire(14, false, false, false, false, true).ID: return 1614;
+ case Fire::Fire(14, false, false, false, false, false).ID: return 1615;
+ case Fire::Fire(15, true, true, true, true, true).ID: return 1616;
+ case Fire::Fire(15, true, true, true, true, false).ID: return 1617;
+ case Fire::Fire(15, true, true, true, false, true).ID: return 1618;
+ case Fire::Fire(15, true, true, true, false, false).ID: return 1619;
+ case Fire::Fire(15, true, true, false, true, true).ID: return 1620;
+ case Fire::Fire(15, true, true, false, true, false).ID: return 1621;
+ case Fire::Fire(15, true, true, false, false, true).ID: return 1622;
+ case Fire::Fire(15, true, true, false, false, false).ID: return 1623;
+ case Fire::Fire(15, true, false, true, true, true).ID: return 1624;
+ case Fire::Fire(15, true, false, true, true, false).ID: return 1625;
+ case Fire::Fire(15, true, false, true, false, true).ID: return 1626;
+ case Fire::Fire(15, true, false, true, false, false).ID: return 1627;
+ case Fire::Fire(15, true, false, false, true, true).ID: return 1628;
+ case Fire::Fire(15, true, false, false, true, false).ID: return 1629;
+ case Fire::Fire(15, true, false, false, false, true).ID: return 1630;
+ case Fire::Fire(15, true, false, false, false, false).ID: return 1631;
+ case Fire::Fire(15, false, true, true, true, true).ID: return 1632;
+ case Fire::Fire(15, false, true, true, true, false).ID: return 1633;
+ case Fire::Fire(15, false, true, true, false, true).ID: return 1634;
+ case Fire::Fire(15, false, true, true, false, false).ID: return 1635;
+ case Fire::Fire(15, false, true, false, true, true).ID: return 1636;
+ case Fire::Fire(15, false, true, false, true, false).ID: return 1637;
+ case Fire::Fire(15, false, true, false, false, true).ID: return 1638;
+ case Fire::Fire(15, false, true, false, false, false).ID: return 1639;
+ case Fire::Fire(15, false, false, true, true, true).ID: return 1640;
+ case Fire::Fire(15, false, false, true, true, false).ID: return 1641;
+ case Fire::Fire(15, false, false, true, false, true).ID: return 1642;
+ case Fire::Fire(15, false, false, true, false, false).ID: return 1643;
+ case Fire::Fire(15, false, false, false, true, true).ID: return 1644;
+ case Fire::Fire(15, false, false, false, true, false).ID: return 1645;
+ case Fire::Fire(15, false, false, false, false, true).ID: return 1646;
+ case Fire::Fire(15, false, false, false, false, false).ID: return 1647;
+ case FireCoral::FireCoral().ID: return 8477;
+ case FireCoralBlock::FireCoralBlock().ID: return 8458;
+ case FireCoralFan::FireCoralFan().ID: return 8577;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8545;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8547;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8549;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8551;
+ case FlowerPot::FlowerPot().ID: return 5266;
+ case FrostedIce::FrostedIce(0).ID: return 8189;
+ case FrostedIce::FrostedIce(1).ID: return 8190;
+ case FrostedIce::FrostedIce(2).ID: return 8191;
+ case FrostedIce::FrostedIce(3).ID: return 8192;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, true).ID: return 3068;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, false).ID: return 3069;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, true).ID: return 3070;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, false).ID: return 3071;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, true).ID: return 3072;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, false).ID: return 3073;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, true).ID: return 3074;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, false).ID: return 3075;
+ case Glass::Glass().ID: return 230;
+ case GlassPane::GlassPane(true, true, true, true).ID: return 4214;
+ case GlassPane::GlassPane(true, true, true, false).ID: return 4215;
+ case GlassPane::GlassPane(true, true, false, true).ID: return 4218;
+ case GlassPane::GlassPane(true, true, false, false).ID: return 4219;
+ case GlassPane::GlassPane(true, false, true, true).ID: return 4222;
+ case GlassPane::GlassPane(true, false, true, false).ID: return 4223;
+ case GlassPane::GlassPane(true, false, false, true).ID: return 4226;
+ case GlassPane::GlassPane(true, false, false, false).ID: return 4227;
+ case GlassPane::GlassPane(false, true, true, true).ID: return 4230;
+ case GlassPane::GlassPane(false, true, true, false).ID: return 4231;
+ case GlassPane::GlassPane(false, true, false, true).ID: return 4234;
+ case GlassPane::GlassPane(false, true, false, false).ID: return 4235;
+ case GlassPane::GlassPane(false, false, true, true).ID: return 4238;
+ case GlassPane::GlassPane(false, false, true, false).ID: return 4239;
+ case GlassPane::GlassPane(false, false, false, true).ID: return 4242;
+ case GlassPane::GlassPane(false, false, false, false).ID: return 4243;
+ case Glowstone::Glowstone().ID: return 3496;
+ case GoldBlock::GoldBlock().ID: return 1123;
+ case GoldOre::GoldOre().ID: return 69;
+ case Granite::Granite().ID: return 2;
+ case Grass::Grass().ID: return 1041;
+ case GrassBlock::GrassBlock(true).ID: return 8;
+ case GrassBlock::GrassBlock(false).ID: return 9;
+ case GrassPath::GrassPath().ID: return 8163;
+ case Gravel::Gravel().ID: return 68;
+ case GrayBanner::GrayBanner(0).ID: return 6967;
+ case GrayBanner::GrayBanner(1).ID: return 6968;
+ case GrayBanner::GrayBanner(2).ID: return 6969;
+ case GrayBanner::GrayBanner(3).ID: return 6970;
+ case GrayBanner::GrayBanner(4).ID: return 6971;
+ case GrayBanner::GrayBanner(5).ID: return 6972;
+ case GrayBanner::GrayBanner(6).ID: return 6973;
+ case GrayBanner::GrayBanner(7).ID: return 6974;
+ case GrayBanner::GrayBanner(8).ID: return 6975;
+ case GrayBanner::GrayBanner(9).ID: return 6976;
+ case GrayBanner::GrayBanner(10).ID: return 6977;
+ case GrayBanner::GrayBanner(11).ID: return 6978;
+ case GrayBanner::GrayBanner(12).ID: return 6979;
+ case GrayBanner::GrayBanner(13).ID: return 6980;
+ case GrayBanner::GrayBanner(14).ID: return 6981;
+ case GrayBanner::GrayBanner(15).ID: return 6982;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Head).ID: return 860;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Foot).ID: return 861;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Head).ID: return 862;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Foot).ID: return 863;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Head).ID: return 864;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Foot).ID: return 865;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Head).ID: return 866;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Foot).ID: return 867;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Head).ID: return 868;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Foot).ID: return 869;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Head).ID: return 870;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Foot).ID: return 871;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Head).ID: return 872;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Foot).ID: return 873;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Head).ID: return 874;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Foot).ID: return 875;
+ case GrayCarpet::GrayCarpet().ID: return 6831;
+ case GrayConcrete::GrayConcrete().ID: return 8385;
+ case GrayConcretePowder::GrayConcretePowder().ID: return 8401;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8342;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8343;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8344;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8345;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8260;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8261;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8262;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8263;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8264;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8265;
+ case GrayStainedGlass::GrayStainedGlass().ID: return 3585;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, true).ID: return 6047;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, false).ID: return 6048;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, true).ID: return 6051;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, false).ID: return 6052;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, true).ID: return 6055;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, false).ID: return 6056;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, true).ID: return 6059;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, false).ID: return 6060;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, true).ID: return 6063;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, false).ID: return 6064;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, true).ID: return 6067;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, false).ID: return 6068;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, true).ID: return 6071;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, false).ID: return 6072;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, true).ID: return 6075;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, false).ID: return 6076;
+ case GrayTerracotta::GrayTerracotta().ID: return 5812;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7139;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7140;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7141;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7142;
+ case GrayWool::GrayWool().ID: return 1090;
+ case GreenBanner::GreenBanner(0).ID: return 7063;
+ case GreenBanner::GreenBanner(1).ID: return 7064;
+ case GreenBanner::GreenBanner(2).ID: return 7065;
+ case GreenBanner::GreenBanner(3).ID: return 7066;
+ case GreenBanner::GreenBanner(4).ID: return 7067;
+ case GreenBanner::GreenBanner(5).ID: return 7068;
+ case GreenBanner::GreenBanner(6).ID: return 7069;
+ case GreenBanner::GreenBanner(7).ID: return 7070;
+ case GreenBanner::GreenBanner(8).ID: return 7071;
+ case GreenBanner::GreenBanner(9).ID: return 7072;
+ case GreenBanner::GreenBanner(10).ID: return 7073;
+ case GreenBanner::GreenBanner(11).ID: return 7074;
+ case GreenBanner::GreenBanner(12).ID: return 7075;
+ case GreenBanner::GreenBanner(13).ID: return 7076;
+ case GreenBanner::GreenBanner(14).ID: return 7077;
+ case GreenBanner::GreenBanner(15).ID: return 7078;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Head).ID: return 956;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Foot).ID: return 957;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Head).ID: return 958;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Foot).ID: return 959;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Head).ID: return 960;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Foot).ID: return 961;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Head).ID: return 962;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Foot).ID: return 963;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Head).ID: return 964;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Foot).ID: return 965;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Head).ID: return 966;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Foot).ID: return 967;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Head).ID: return 968;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Foot).ID: return 969;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Head).ID: return 970;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Foot).ID: return 971;
+ case GreenCarpet::GreenCarpet().ID: return 6837;
+ case GreenConcrete::GreenConcrete().ID: return 8391;
+ case GreenConcretePowder::GreenConcretePowder().ID: return 8407;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8366;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8367;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8368;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8369;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8296;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8297;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8298;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8299;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8300;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8301;
+ case GreenStainedGlass::GreenStainedGlass().ID: return 3591;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, true).ID: return 6239;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, false).ID: return 6240;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, true).ID: return 6243;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, false).ID: return 6244;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, true).ID: return 6247;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, false).ID: return 6248;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, true).ID: return 6251;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, false).ID: return 6252;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, true).ID: return 6255;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, false).ID: return 6256;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, true).ID: return 6259;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, false).ID: return 6260;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, true).ID: return 6263;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, false).ID: return 6264;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, true).ID: return 6267;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, false).ID: return 6268;
+ case GreenTerracotta::GreenTerracotta().ID: return 5818;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7163;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7164;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7165;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7166;
+ case GreenWool::GreenWool().ID: return 1096;
+ case HayBale::HayBale(HayBale::Axis::X).ID: return 6821;
+ case HayBale::HayBale(HayBale::Axis::Y).ID: return 6822;
+ case HayBale::HayBale(HayBale::Axis::Z).ID: return 6823;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(0).ID: return 5620;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(1).ID: return 5621;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(2).ID: return 5622;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(3).ID: return 5623;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(4).ID: return 5624;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(5).ID: return 5625;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(6).ID: return 5626;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(7).ID: return 5627;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(8).ID: return 5628;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(9).ID: return 5629;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(10).ID: return 5630;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(11).ID: return 5631;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(12).ID: return 5632;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(13).ID: return 5633;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(14).ID: return 5634;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(15).ID: return 5635;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_YM).ID: return 5686;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZM).ID: return 5687;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZP).ID: return 5688;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XM).ID: return 5689;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XP).ID: return 5690;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_YM).ID: return 5691;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZM).ID: return 5692;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZP).ID: return 5693;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XM).ID: return 5694;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XP).ID: return 5695;
+ case HornCoral::HornCoral().ID: return 8479;
+ case HornCoralBlock::HornCoralBlock().ID: return 8459;
+ case HornCoralFan::HornCoralFan().ID: return 8579;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8553;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8555;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8557;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8559;
+ case Ice::Ice().ID: return 3424;
+ case InfestedChiseledStoneBricks::InfestedChiseledStoneBricks().ID: return 3983;
+ case InfestedCobblestone::InfestedCobblestone().ID: return 3979;
+ case InfestedCrackedStoneBricks::InfestedCrackedStoneBricks().ID: return 3982;
+ case InfestedMossyStoneBricks::InfestedMossyStoneBricks().ID: return 3981;
+ case InfestedStone::InfestedStone().ID: return 3978;
+ case InfestedStoneBricks::InfestedStoneBricks().ID: return 3980;
+ case IronBars::IronBars(true, true, true, true).ID: return 4182;
+ case IronBars::IronBars(true, true, true, false).ID: return 4183;
+ case IronBars::IronBars(true, true, false, true).ID: return 4186;
+ case IronBars::IronBars(true, true, false, false).ID: return 4187;
+ case IronBars::IronBars(true, false, true, true).ID: return 4190;
+ case IronBars::IronBars(true, false, true, false).ID: return 4191;
+ case IronBars::IronBars(true, false, false, true).ID: return 4194;
+ case IronBars::IronBars(true, false, false, false).ID: return 4195;
+ case IronBars::IronBars(false, true, true, true).ID: return 4198;
+ case IronBars::IronBars(false, true, true, false).ID: return 4199;
+ case IronBars::IronBars(false, true, false, true).ID: return 4202;
+ case IronBars::IronBars(false, true, false, false).ID: return 4203;
+ case IronBars::IronBars(false, false, true, true).ID: return 4206;
+ case IronBars::IronBars(false, false, true, false).ID: return 4207;
+ case IronBars::IronBars(false, false, false, true).ID: return 4210;
+ case IronBars::IronBars(false, false, false, false).ID: return 4211;
+ case IronBlock::IronBlock().ID: return 1124;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3304;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3305;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3306;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3307;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3308;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3309;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3310;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3311;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3312;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3313;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3314;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3315;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3316;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3317;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3318;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3319;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3320;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3321;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3322;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3323;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3324;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3325;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3326;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3327;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3328;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3329;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3330;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3331;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3332;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3333;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3334;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3335;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3336;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3337;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3338;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3339;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3340;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3341;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3342;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3343;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3344;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3345;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3346;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3347;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3348;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3349;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3350;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3351;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3352;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3353;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3354;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3355;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3356;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3357;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3358;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3359;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3360;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3361;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3362;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3363;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3364;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3365;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3366;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3367;
+ case IronOre::IronOre().ID: return 70;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, true).ID: return 6496;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, false).ID: return 6498;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, true).ID: return 6500;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, false).ID: return 6502;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, true).ID: return 6504;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, false).ID: return 6506;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, true).ID: return 6508;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, false).ID: return 6510;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, true).ID: return 6512;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, false).ID: return 6514;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, true).ID: return 6516;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, false).ID: return 6518;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, true).ID: return 6520;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, false).ID: return 6522;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, true).ID: return 6524;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, false).ID: return 6526;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, true).ID: return 6528;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, false).ID: return 6530;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, true).ID: return 6532;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, false).ID: return 6534;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, true).ID: return 6536;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, false).ID: return 6538;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, true).ID: return 6540;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, false).ID: return 6542;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, true).ID: return 6544;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, false).ID: return 6546;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, true).ID: return 6548;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, false).ID: return 6550;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, true).ID: return 6552;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, false).ID: return 6554;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, true).ID: return 6556;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, false).ID: return 6558;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZM).ID: return 3503;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZP).ID: return 3504;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XM).ID: return 3505;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XP).ID: return 3506;
+ case Jukebox::Jukebox(true).ID: return 3459;
+ case Jukebox::Jukebox(false).ID: return 3460;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5376;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5377;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5378;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5379;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5380;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5381;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5382;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5383;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5384;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5385;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5386;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5387;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5388;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5389;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5390;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5391;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5392;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5393;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5394;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5395;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5396;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5397;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5398;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5399;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 7806;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 7807;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 7808;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 7809;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 7810;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 7811;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 7812;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 7813;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 7814;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 7815;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 7816;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 7817;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 7818;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 7819;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 7820;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 7821;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 7822;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 7823;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 7824;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 7825;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 7826;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 7827;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 7828;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 7829;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 7830;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 7831;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 7832;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 7833;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 7834;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 7835;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 7836;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 7837;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 7838;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 7839;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 7840;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 7841;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 7842;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 7843;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 7844;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 7845;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 7846;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 7847;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 7848;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 7849;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 7850;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 7851;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 7852;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 7853;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 7854;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 7855;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 7856;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 7857;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 7858;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 7859;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 7860;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 7861;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 7862;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 7863;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 7864;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 7865;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 7866;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 7867;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 7868;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 7869;
+ case JungleFence::JungleFence(true, true, true, true).ID: return 7584;
+ case JungleFence::JungleFence(true, true, true, false).ID: return 7585;
+ case JungleFence::JungleFence(true, true, false, true).ID: return 7588;
+ case JungleFence::JungleFence(true, true, false, false).ID: return 7589;
+ case JungleFence::JungleFence(true, false, true, true).ID: return 7592;
+ case JungleFence::JungleFence(true, false, true, false).ID: return 7593;
+ case JungleFence::JungleFence(true, false, false, true).ID: return 7596;
+ case JungleFence::JungleFence(true, false, false, false).ID: return 7597;
+ case JungleFence::JungleFence(false, true, true, true).ID: return 7600;
+ case JungleFence::JungleFence(false, true, true, false).ID: return 7601;
+ case JungleFence::JungleFence(false, true, false, true).ID: return 7604;
+ case JungleFence::JungleFence(false, true, false, false).ID: return 7605;
+ case JungleFence::JungleFence(false, false, true, true).ID: return 7608;
+ case JungleFence::JungleFence(false, false, true, false).ID: return 7609;
+ case JungleFence::JungleFence(false, false, false, true).ID: return 7612;
+ case JungleFence::JungleFence(false, false, false, false).ID: return 7613;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7422;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7423;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7424;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7425;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7426;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7427;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7428;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7429;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7430;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7431;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7432;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7433;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7434;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7435;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7436;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7437;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7438;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7439;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7440;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7441;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7442;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7443;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7444;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7445;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7446;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7447;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7448;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7449;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7450;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7451;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7452;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7453;
+ case JungleLeaves::JungleLeaves(1, true).ID: return 186;
+ case JungleLeaves::JungleLeaves(1, false).ID: return 187;
+ case JungleLeaves::JungleLeaves(2, true).ID: return 188;
+ case JungleLeaves::JungleLeaves(2, false).ID: return 189;
+ case JungleLeaves::JungleLeaves(3, true).ID: return 190;
+ case JungleLeaves::JungleLeaves(3, false).ID: return 191;
+ case JungleLeaves::JungleLeaves(4, true).ID: return 192;
+ case JungleLeaves::JungleLeaves(4, false).ID: return 193;
+ case JungleLeaves::JungleLeaves(5, true).ID: return 194;
+ case JungleLeaves::JungleLeaves(5, false).ID: return 195;
+ case JungleLeaves::JungleLeaves(6, true).ID: return 196;
+ case JungleLeaves::JungleLeaves(6, false).ID: return 197;
+ case JungleLeaves::JungleLeaves(7, true).ID: return 198;
+ case JungleLeaves::JungleLeaves(7, false).ID: return 199;
+ case JungleLog::JungleLog(JungleLog::Axis::X).ID: return 81;
+ case JungleLog::JungleLog(JungleLog::Axis::Y).ID: return 82;
+ case JungleLog::JungleLog(JungleLog::Axis::Z).ID: return 83;
+ case JunglePlanks::JunglePlanks().ID: return 18;
+ case JunglePressurePlate::JunglePressurePlate(true).ID: return 3374;
+ case JunglePressurePlate::JunglePressurePlate(false).ID: return 3375;
+ case JungleSapling::JungleSapling(0).ID: return 27;
+ case JungleSapling::JungleSapling(1).ID: return 28;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Top).ID: return 7277;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Bottom).ID: return 7279;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Double).ID: return 7281;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5046;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5048;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5050;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5052;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5054;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5056;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5058;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5060;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5062;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5064;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5066;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5068;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5070;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5072;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5074;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5076;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5078;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5080;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5082;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5084;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5086;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5088;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5090;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5092;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5094;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5096;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5098;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5100;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5102;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5104;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5106;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5108;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5110;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5112;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5114;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5116;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5118;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5120;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5122;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5124;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, true).ID: return 3787;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, false).ID: return 3789;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, true).ID: return 3791;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, false).ID: return 3793;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, true).ID: return 3795;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, false).ID: return 3797;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, true).ID: return 3799;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, false).ID: return 3801;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, true).ID: return 3803;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, false).ID: return 3805;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, true).ID: return 3807;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, false).ID: return 3809;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, true).ID: return 3811;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, false).ID: return 3813;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, true).ID: return 3815;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, false).ID: return 3817;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, true).ID: return 3819;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, false).ID: return 3821;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, true).ID: return 3823;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, false).ID: return 3825;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, true).ID: return 3827;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, false).ID: return 3829;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, true).ID: return 3831;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, false).ID: return 3833;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, true).ID: return 3835;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, false).ID: return 3837;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, true).ID: return 3839;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, false).ID: return 3841;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, true).ID: return 3843;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, false).ID: return 3845;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, true).ID: return 3847;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, false).ID: return 3849;
+ case JungleWood::JungleWood(JungleWood::Axis::X).ID: return 117;
+ case JungleWood::JungleWood(JungleWood::Axis::Y).ID: return 118;
+ case JungleWood::JungleWood(JungleWood::Axis::Z).ID: return 119;
+ case Kelp::Kelp(0).ID: return 8410;
+ case Kelp::Kelp(1).ID: return 8411;
+ case Kelp::Kelp(2).ID: return 8412;
+ case Kelp::Kelp(3).ID: return 8413;
+ case Kelp::Kelp(4).ID: return 8414;
+ case Kelp::Kelp(5).ID: return 8415;
+ case Kelp::Kelp(6).ID: return 8416;
+ case Kelp::Kelp(7).ID: return 8417;
+ case Kelp::Kelp(8).ID: return 8418;
+ case Kelp::Kelp(9).ID: return 8419;
+ case Kelp::Kelp(10).ID: return 8420;
+ case Kelp::Kelp(11).ID: return 8421;
+ case Kelp::Kelp(12).ID: return 8422;
+ case Kelp::Kelp(13).ID: return 8423;
+ case Kelp::Kelp(14).ID: return 8424;
+ case Kelp::Kelp(15).ID: return 8425;
+ case Kelp::Kelp(16).ID: return 8426;
+ case Kelp::Kelp(17).ID: return 8427;
+ case Kelp::Kelp(18).ID: return 8428;
+ case Kelp::Kelp(19).ID: return 8429;
+ case Kelp::Kelp(20).ID: return 8430;
+ case Kelp::Kelp(21).ID: return 8431;
+ case Kelp::Kelp(22).ID: return 8432;
+ case Kelp::Kelp(23).ID: return 8433;
+ case Kelp::Kelp(24).ID: return 8434;
+ case Kelp::Kelp(25).ID: return 8435;
+ case KelpPlant::KelpPlant().ID: return 8436;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZM).ID: return 3173;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZP).ID: return 3175;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_XM).ID: return 3177;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_XP).ID: return 3179;
+ case LapisBlock::LapisBlock().ID: return 232;
+ case LapisOre::LapisOre().ID: return 231;
+ case LargeFern::LargeFern(LargeFern::Half::Upper).ID: return 6853;
+ case LargeFern::LargeFern(LargeFern::Half::Lower).ID: return 6854;
+ case Lava::Lava(0).ID: return 50;
+ case Lava::Lava(1).ID: return 51;
+ case Lava::Lava(2).ID: return 52;
+ case Lava::Lava(3).ID: return 53;
+ case Lava::Lava(4).ID: return 54;
+ case Lava::Lava(5).ID: return 55;
+ case Lava::Lava(6).ID: return 56;
+ case Lava::Lava(7).ID: return 57;
+ case Lava::Lava(8).ID: return 58;
+ case Lava::Lava(9).ID: return 59;
+ case Lava::Lava(10).ID: return 60;
+ case Lava::Lava(11).ID: return 61;
+ case Lava::Lava(12).ID: return 62;
+ case Lava::Lava(13).ID: return 63;
+ case Lava::Lava(14).ID: return 64;
+ case Lava::Lava(15).ID: return 65;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3278;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3279;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3280;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3281;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 3282;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 3283;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 3284;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 3285;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3286;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3287;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3288;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3289;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 3290;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 3291;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 3292;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 3293;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3294;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3295;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3296;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3297;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 3298;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 3299;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 3300;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 3301;
+ case LightBlueBanner::LightBlueBanner(0).ID: return 6903;
+ case LightBlueBanner::LightBlueBanner(1).ID: return 6904;
+ case LightBlueBanner::LightBlueBanner(2).ID: return 6905;
+ case LightBlueBanner::LightBlueBanner(3).ID: return 6906;
+ case LightBlueBanner::LightBlueBanner(4).ID: return 6907;
+ case LightBlueBanner::LightBlueBanner(5).ID: return 6908;
+ case LightBlueBanner::LightBlueBanner(6).ID: return 6909;
+ case LightBlueBanner::LightBlueBanner(7).ID: return 6910;
+ case LightBlueBanner::LightBlueBanner(8).ID: return 6911;
+ case LightBlueBanner::LightBlueBanner(9).ID: return 6912;
+ case LightBlueBanner::LightBlueBanner(10).ID: return 6913;
+ case LightBlueBanner::LightBlueBanner(11).ID: return 6914;
+ case LightBlueBanner::LightBlueBanner(12).ID: return 6915;
+ case LightBlueBanner::LightBlueBanner(13).ID: return 6916;
+ case LightBlueBanner::LightBlueBanner(14).ID: return 6917;
+ case LightBlueBanner::LightBlueBanner(15).ID: return 6918;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Head).ID: return 796;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Foot).ID: return 797;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Head).ID: return 798;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Foot).ID: return 799;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Head).ID: return 800;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Foot).ID: return 801;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Head).ID: return 802;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Foot).ID: return 803;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Head).ID: return 804;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Foot).ID: return 805;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Head).ID: return 806;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Foot).ID: return 807;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Head).ID: return 808;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Foot).ID: return 809;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Head).ID: return 810;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Foot).ID: return 811;
+ case LightBlueCarpet::LightBlueCarpet().ID: return 6827;
+ case LightBlueConcrete::LightBlueConcrete().ID: return 8381;
+ case LightBlueConcretePowder::LightBlueConcretePowder().ID: return 8397;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8326;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8327;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8328;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8329;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8236;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8237;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8238;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8239;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8240;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8241;
+ case LightBlueStainedGlass::LightBlueStainedGlass().ID: return 3581;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, true).ID: return 5919;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, false).ID: return 5920;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, true).ID: return 5923;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, false).ID: return 5924;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, true).ID: return 5927;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, false).ID: return 5928;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, true).ID: return 5931;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, false).ID: return 5932;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, true).ID: return 5935;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, false).ID: return 5936;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, true).ID: return 5939;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, false).ID: return 5940;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, true).ID: return 5943;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, false).ID: return 5944;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, true).ID: return 5947;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, false).ID: return 5948;
+ case LightBlueTerracotta::LightBlueTerracotta().ID: return 5808;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7123;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7124;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7125;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7126;
+ case LightBlueWool::LightBlueWool().ID: return 1086;
+ case LightGrayBanner::LightGrayBanner(0).ID: return 6983;
+ case LightGrayBanner::LightGrayBanner(1).ID: return 6984;
+ case LightGrayBanner::LightGrayBanner(2).ID: return 6985;
+ case LightGrayBanner::LightGrayBanner(3).ID: return 6986;
+ case LightGrayBanner::LightGrayBanner(4).ID: return 6987;
+ case LightGrayBanner::LightGrayBanner(5).ID: return 6988;
+ case LightGrayBanner::LightGrayBanner(6).ID: return 6989;
+ case LightGrayBanner::LightGrayBanner(7).ID: return 6990;
+ case LightGrayBanner::LightGrayBanner(8).ID: return 6991;
+ case LightGrayBanner::LightGrayBanner(9).ID: return 6992;
+ case LightGrayBanner::LightGrayBanner(10).ID: return 6993;
+ case LightGrayBanner::LightGrayBanner(11).ID: return 6994;
+ case LightGrayBanner::LightGrayBanner(12).ID: return 6995;
+ case LightGrayBanner::LightGrayBanner(13).ID: return 6996;
+ case LightGrayBanner::LightGrayBanner(14).ID: return 6997;
+ case LightGrayBanner::LightGrayBanner(15).ID: return 6998;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Head).ID: return 876;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Foot).ID: return 877;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Head).ID: return 878;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Foot).ID: return 879;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Head).ID: return 880;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Foot).ID: return 881;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Head).ID: return 882;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Foot).ID: return 883;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Head).ID: return 884;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Foot).ID: return 885;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Head).ID: return 886;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Foot).ID: return 887;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Head).ID: return 888;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Foot).ID: return 889;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Head).ID: return 890;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Foot).ID: return 891;
+ case LightGrayCarpet::LightGrayCarpet().ID: return 6832;
+ case LightGrayConcrete::LightGrayConcrete().ID: return 8386;
+ case LightGrayConcretePowder::LightGrayConcretePowder().ID: return 8402;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8346;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8347;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8348;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8349;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8266;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8267;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8268;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8269;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8270;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8271;
+ case LightGrayStainedGlass::LightGrayStainedGlass().ID: return 3586;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, true).ID: return 6079;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, false).ID: return 6080;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, true).ID: return 6083;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, false).ID: return 6084;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, true).ID: return 6087;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, false).ID: return 6088;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, true).ID: return 6091;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, false).ID: return 6092;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, true).ID: return 6095;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, false).ID: return 6096;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, true).ID: return 6099;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, false).ID: return 6100;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, true).ID: return 6103;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, false).ID: return 6104;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, true).ID: return 6107;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, false).ID: return 6108;
+ case LightGrayTerracotta::LightGrayTerracotta().ID: return 5813;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7143;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7144;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7145;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7146;
+ case LightGrayWool::LightGrayWool().ID: return 1091;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(0).ID: return 5604;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(1).ID: return 5605;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(2).ID: return 5606;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(3).ID: return 5607;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(4).ID: return 5608;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(5).ID: return 5609;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(6).ID: return 5610;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(7).ID: return 5611;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(8).ID: return 5612;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(9).ID: return 5613;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(10).ID: return 5614;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(11).ID: return 5615;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(12).ID: return 5616;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(13).ID: return 5617;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(14).ID: return 5618;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(15).ID: return 5619;
+ case Lilac::Lilac(Lilac::Half::Upper).ID: return 6845;
+ case Lilac::Lilac(Lilac::Half::Lower).ID: return 6846;
+ case LilyPad::LilyPad().ID: return 4495;
+ case LimeBanner::LimeBanner(0).ID: return 6935;
+ case LimeBanner::LimeBanner(1).ID: return 6936;
+ case LimeBanner::LimeBanner(2).ID: return 6937;
+ case LimeBanner::LimeBanner(3).ID: return 6938;
+ case LimeBanner::LimeBanner(4).ID: return 6939;
+ case LimeBanner::LimeBanner(5).ID: return 6940;
+ case LimeBanner::LimeBanner(6).ID: return 6941;
+ case LimeBanner::LimeBanner(7).ID: return 6942;
+ case LimeBanner::LimeBanner(8).ID: return 6943;
+ case LimeBanner::LimeBanner(9).ID: return 6944;
+ case LimeBanner::LimeBanner(10).ID: return 6945;
+ case LimeBanner::LimeBanner(11).ID: return 6946;
+ case LimeBanner::LimeBanner(12).ID: return 6947;
+ case LimeBanner::LimeBanner(13).ID: return 6948;
+ case LimeBanner::LimeBanner(14).ID: return 6949;
+ case LimeBanner::LimeBanner(15).ID: return 6950;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Head).ID: return 828;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Foot).ID: return 829;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Head).ID: return 830;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Foot).ID: return 831;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Head).ID: return 832;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Foot).ID: return 833;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Head).ID: return 834;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Foot).ID: return 835;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Head).ID: return 836;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Foot).ID: return 837;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Head).ID: return 838;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Foot).ID: return 839;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Head).ID: return 840;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Foot).ID: return 841;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Head).ID: return 842;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Foot).ID: return 843;
+ case LimeCarpet::LimeCarpet().ID: return 6829;
+ case LimeConcrete::LimeConcrete().ID: return 8383;
+ case LimeConcretePowder::LimeConcretePowder().ID: return 8399;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8334;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8335;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8336;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8337;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8248;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8249;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8250;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8251;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8252;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8253;
+ case LimeStainedGlass::LimeStainedGlass().ID: return 3583;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, true).ID: return 5983;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, false).ID: return 5984;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, true).ID: return 5987;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, false).ID: return 5988;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, true).ID: return 5991;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, false).ID: return 5992;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, true).ID: return 5995;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, false).ID: return 5996;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, true).ID: return 5999;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, false).ID: return 6000;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, true).ID: return 6003;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, false).ID: return 6004;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, true).ID: return 6007;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, false).ID: return 6008;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, true).ID: return 6011;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, false).ID: return 6012;
+ case LimeTerracotta::LimeTerracotta().ID: return 5810;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7131;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7132;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7133;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7134;
+ case LimeWool::LimeWool().ID: return 1088;
+ case MagentaBanner::MagentaBanner(0).ID: return 6887;
+ case MagentaBanner::MagentaBanner(1).ID: return 6888;
+ case MagentaBanner::MagentaBanner(2).ID: return 6889;
+ case MagentaBanner::MagentaBanner(3).ID: return 6890;
+ case MagentaBanner::MagentaBanner(4).ID: return 6891;
+ case MagentaBanner::MagentaBanner(5).ID: return 6892;
+ case MagentaBanner::MagentaBanner(6).ID: return 6893;
+ case MagentaBanner::MagentaBanner(7).ID: return 6894;
+ case MagentaBanner::MagentaBanner(8).ID: return 6895;
+ case MagentaBanner::MagentaBanner(9).ID: return 6896;
+ case MagentaBanner::MagentaBanner(10).ID: return 6897;
+ case MagentaBanner::MagentaBanner(11).ID: return 6898;
+ case MagentaBanner::MagentaBanner(12).ID: return 6899;
+ case MagentaBanner::MagentaBanner(13).ID: return 6900;
+ case MagentaBanner::MagentaBanner(14).ID: return 6901;
+ case MagentaBanner::MagentaBanner(15).ID: return 6902;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Head).ID: return 780;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Foot).ID: return 781;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Head).ID: return 782;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Foot).ID: return 783;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Head).ID: return 784;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Foot).ID: return 785;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Head).ID: return 786;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Foot).ID: return 787;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Head).ID: return 788;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Foot).ID: return 789;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Head).ID: return 790;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Foot).ID: return 791;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Head).ID: return 792;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Foot).ID: return 793;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Head).ID: return 794;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Foot).ID: return 795;
+ case MagentaCarpet::MagentaCarpet().ID: return 6826;
+ case MagentaConcrete::MagentaConcrete().ID: return 8380;
+ case MagentaConcretePowder::MagentaConcretePowder().ID: return 8396;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8322;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8323;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8324;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8325;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8230;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8231;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8232;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8233;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8234;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8235;
+ case MagentaStainedGlass::MagentaStainedGlass().ID: return 3580;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, true).ID: return 5887;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, false).ID: return 5888;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, true).ID: return 5891;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, false).ID: return 5892;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, true).ID: return 5895;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, false).ID: return 5896;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, true).ID: return 5899;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, false).ID: return 5900;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, true).ID: return 5903;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, false).ID: return 5904;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, true).ID: return 5907;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, false).ID: return 5908;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, true).ID: return 5911;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, false).ID: return 5912;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, true).ID: return 5915;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, false).ID: return 5916;
+ case MagentaTerracotta::MagentaTerracotta().ID: return 5807;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7119;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7120;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7121;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7122;
+ case MagentaWool::MagentaWool().ID: return 1085;
+ case MagmaBlock::MagmaBlock().ID: return 8193;
+ case Melon::Melon().ID: return 4244;
+ case MelonStem::MelonStem(0).ID: return 4261;
+ case MelonStem::MelonStem(1).ID: return 4262;
+ case MelonStem::MelonStem(2).ID: return 4263;
+ case MelonStem::MelonStem(3).ID: return 4264;
+ case MelonStem::MelonStem(4).ID: return 4265;
+ case MelonStem::MelonStem(5).ID: return 4266;
+ case MelonStem::MelonStem(6).ID: return 4267;
+ case MelonStem::MelonStem(7).ID: return 4268;
+ case MossyCobblestone::MossyCobblestone().ID: return 1129;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5204;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5205;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5208;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5209;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5212;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5213;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5216;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5217;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5220;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5221;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5224;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5225;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5228;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5229;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5232;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5233;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5236;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5237;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5240;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5241;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5244;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5245;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5248;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5249;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5252;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5253;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5256;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5257;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5260;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5261;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5264;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5265;
+ case MossyStoneBricks::MossyStoneBricks().ID: return 3985;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Normal).ID: return 1099;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Sticky).ID: return 1100;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Normal).ID: return 1101;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Sticky).ID: return 1102;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Normal).ID: return 1103;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Sticky).ID: return 1104;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Normal).ID: return 1105;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Sticky).ID: return 1106;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Normal).ID: return 1107;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Sticky).ID: return 1108;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Normal).ID: return 1109;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Sticky).ID: return 1110;
+ case MushroomStem::MushroomStem(true, true, true, true, true, true).ID: return 4116;
+ case MushroomStem::MushroomStem(true, true, true, true, true, false).ID: return 4117;
+ case MushroomStem::MushroomStem(true, true, true, true, false, true).ID: return 4118;
+ case MushroomStem::MushroomStem(true, true, true, true, false, false).ID: return 4119;
+ case MushroomStem::MushroomStem(true, true, true, false, true, true).ID: return 4120;
+ case MushroomStem::MushroomStem(true, true, true, false, true, false).ID: return 4121;
+ case MushroomStem::MushroomStem(true, true, true, false, false, true).ID: return 4122;
+ case MushroomStem::MushroomStem(true, true, true, false, false, false).ID: return 4123;
+ case MushroomStem::MushroomStem(true, true, false, true, true, true).ID: return 4124;
+ case MushroomStem::MushroomStem(true, true, false, true, true, false).ID: return 4125;
+ case MushroomStem::MushroomStem(true, true, false, true, false, true).ID: return 4126;
+ case MushroomStem::MushroomStem(true, true, false, true, false, false).ID: return 4127;
+ case MushroomStem::MushroomStem(true, true, false, false, true, true).ID: return 4128;
+ case MushroomStem::MushroomStem(true, true, false, false, true, false).ID: return 4129;
+ case MushroomStem::MushroomStem(true, true, false, false, false, true).ID: return 4130;
+ case MushroomStem::MushroomStem(true, true, false, false, false, false).ID: return 4131;
+ case MushroomStem::MushroomStem(true, false, true, true, true, true).ID: return 4132;
+ case MushroomStem::MushroomStem(true, false, true, true, true, false).ID: return 4133;
+ case MushroomStem::MushroomStem(true, false, true, true, false, true).ID: return 4134;
+ case MushroomStem::MushroomStem(true, false, true, true, false, false).ID: return 4135;
+ case MushroomStem::MushroomStem(true, false, true, false, true, true).ID: return 4136;
+ case MushroomStem::MushroomStem(true, false, true, false, true, false).ID: return 4137;
+ case MushroomStem::MushroomStem(true, false, true, false, false, true).ID: return 4138;
+ case MushroomStem::MushroomStem(true, false, true, false, false, false).ID: return 4139;
+ case MushroomStem::MushroomStem(true, false, false, true, true, true).ID: return 4140;
+ case MushroomStem::MushroomStem(true, false, false, true, true, false).ID: return 4141;
+ case MushroomStem::MushroomStem(true, false, false, true, false, true).ID: return 4142;
+ case MushroomStem::MushroomStem(true, false, false, true, false, false).ID: return 4143;
+ case MushroomStem::MushroomStem(true, false, false, false, true, true).ID: return 4144;
+ case MushroomStem::MushroomStem(true, false, false, false, true, false).ID: return 4145;
+ case MushroomStem::MushroomStem(true, false, false, false, false, true).ID: return 4146;
+ case MushroomStem::MushroomStem(true, false, false, false, false, false).ID: return 4147;
+ case MushroomStem::MushroomStem(false, true, true, true, true, true).ID: return 4148;
+ case MushroomStem::MushroomStem(false, true, true, true, true, false).ID: return 4149;
+ case MushroomStem::MushroomStem(false, true, true, true, false, true).ID: return 4150;
+ case MushroomStem::MushroomStem(false, true, true, true, false, false).ID: return 4151;
+ case MushroomStem::MushroomStem(false, true, true, false, true, true).ID: return 4152;
+ case MushroomStem::MushroomStem(false, true, true, false, true, false).ID: return 4153;
+ case MushroomStem::MushroomStem(false, true, true, false, false, true).ID: return 4154;
+ case MushroomStem::MushroomStem(false, true, true, false, false, false).ID: return 4155;
+ case MushroomStem::MushroomStem(false, true, false, true, true, true).ID: return 4156;
+ case MushroomStem::MushroomStem(false, true, false, true, true, false).ID: return 4157;
+ case MushroomStem::MushroomStem(false, true, false, true, false, true).ID: return 4158;
+ case MushroomStem::MushroomStem(false, true, false, true, false, false).ID: return 4159;
+ case MushroomStem::MushroomStem(false, true, false, false, true, true).ID: return 4160;
+ case MushroomStem::MushroomStem(false, true, false, false, true, false).ID: return 4161;
+ case MushroomStem::MushroomStem(false, true, false, false, false, true).ID: return 4162;
+ case MushroomStem::MushroomStem(false, true, false, false, false, false).ID: return 4163;
+ case MushroomStem::MushroomStem(false, false, true, true, true, true).ID: return 4164;
+ case MushroomStem::MushroomStem(false, false, true, true, true, false).ID: return 4165;
+ case MushroomStem::MushroomStem(false, false, true, true, false, true).ID: return 4166;
+ case MushroomStem::MushroomStem(false, false, true, true, false, false).ID: return 4167;
+ case MushroomStem::MushroomStem(false, false, true, false, true, true).ID: return 4168;
+ case MushroomStem::MushroomStem(false, false, true, false, true, false).ID: return 4169;
+ case MushroomStem::MushroomStem(false, false, true, false, false, true).ID: return 4170;
+ case MushroomStem::MushroomStem(false, false, true, false, false, false).ID: return 4171;
+ case MushroomStem::MushroomStem(false, false, false, true, true, true).ID: return 4172;
+ case MushroomStem::MushroomStem(false, false, false, true, true, false).ID: return 4173;
+ case MushroomStem::MushroomStem(false, false, false, true, false, true).ID: return 4174;
+ case MushroomStem::MushroomStem(false, false, false, true, false, false).ID: return 4175;
+ case MushroomStem::MushroomStem(false, false, false, false, true, true).ID: return 4176;
+ case MushroomStem::MushroomStem(false, false, false, false, true, false).ID: return 4177;
+ case MushroomStem::MushroomStem(false, false, false, false, false, true).ID: return 4178;
+ case MushroomStem::MushroomStem(false, false, false, false, false, false).ID: return 4179;
+ case Mycelium::Mycelium(true).ID: return 4493;
+ case Mycelium::Mycelium(false).ID: return 4494;
+ case NetherBrickFence::NetherBrickFence(true, true, true, true).ID: return 4499;
+ case NetherBrickFence::NetherBrickFence(true, true, true, false).ID: return 4500;
+ case NetherBrickFence::NetherBrickFence(true, true, false, true).ID: return 4503;
+ case NetherBrickFence::NetherBrickFence(true, true, false, false).ID: return 4504;
+ case NetherBrickFence::NetherBrickFence(true, false, true, true).ID: return 4507;
+ case NetherBrickFence::NetherBrickFence(true, false, true, false).ID: return 4508;
+ case NetherBrickFence::NetherBrickFence(true, false, false, true).ID: return 4511;
+ case NetherBrickFence::NetherBrickFence(true, false, false, false).ID: return 4512;
+ case NetherBrickFence::NetherBrickFence(false, true, true, true).ID: return 4515;
+ case NetherBrickFence::NetherBrickFence(false, true, true, false).ID: return 4516;
+ case NetherBrickFence::NetherBrickFence(false, true, false, true).ID: return 4519;
+ case NetherBrickFence::NetherBrickFence(false, true, false, false).ID: return 4520;
+ case NetherBrickFence::NetherBrickFence(false, false, true, true).ID: return 4523;
+ case NetherBrickFence::NetherBrickFence(false, false, true, false).ID: return 4524;
+ case NetherBrickFence::NetherBrickFence(false, false, false, true).ID: return 4527;
+ case NetherBrickFence::NetherBrickFence(false, false, false, false).ID: return 4528;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Top).ID: return 7331;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Bottom).ID: return 7333;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double).ID: return 7335;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 4530;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 4532;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 4534;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 4536;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 4538;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 4540;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 4542;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 4544;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 4546;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 4548;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 4550;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 4552;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 4554;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 4556;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 4558;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 4560;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 4562;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 4564;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 4566;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 4568;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 4570;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 4572;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 4574;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 4576;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 4578;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 4580;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 4582;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 4584;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 4586;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 4588;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 4590;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 4592;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 4594;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 4596;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 4598;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 4600;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 4602;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 4604;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 4606;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 4608;
+ case NetherBricks::NetherBricks().ID: return 4496;
+ case NetherPortal::NetherPortal(NetherPortal::Axis::X).ID: return 3497;
+ case NetherPortal::NetherPortal(NetherPortal::Axis::Z).ID: return 3498;
+ case NetherQuartzOre::NetherQuartzOre().ID: return 5685;
+ case NetherWart::NetherWart(0).ID: return 4609;
+ case NetherWart::NetherWart(1).ID: return 4610;
+ case NetherWart::NetherWart(2).ID: return 4611;
+ case NetherWart::NetherWart(3).ID: return 4612;
+ case NetherWartBlock::NetherWartBlock().ID: return 8194;
+ case Netherrack::Netherrack().ID: return 3494;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, true).ID: return 248;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, false).ID: return 249;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, true).ID: return 250;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, false).ID: return 251;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, true).ID: return 252;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, false).ID: return 253;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, true).ID: return 254;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, false).ID: return 255;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, true).ID: return 256;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, false).ID: return 257;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, true).ID: return 258;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, false).ID: return 259;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, true).ID: return 260;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, false).ID: return 261;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, true).ID: return 262;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, false).ID: return 263;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, true).ID: return 264;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, false).ID: return 265;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, true).ID: return 266;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, false).ID: return 267;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, true).ID: return 268;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, false).ID: return 269;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, true).ID: return 270;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, false).ID: return 271;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, true).ID: return 272;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, false).ID: return 273;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, true).ID: return 274;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, false).ID: return 275;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, true).ID: return 276;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, false).ID: return 277;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, true).ID: return 278;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, false).ID: return 279;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, true).ID: return 280;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, false).ID: return 281;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, true).ID: return 282;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, false).ID: return 283;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, true).ID: return 284;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, false).ID: return 285;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, true).ID: return 286;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, false).ID: return 287;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, true).ID: return 288;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, false).ID: return 289;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, true).ID: return 290;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, false).ID: return 291;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, true).ID: return 292;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, false).ID: return 293;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, true).ID: return 294;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, false).ID: return 295;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, true).ID: return 296;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, false).ID: return 297;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, true).ID: return 298;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, false).ID: return 299;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, true).ID: return 300;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, false).ID: return 301;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, true).ID: return 302;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, false).ID: return 303;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, true).ID: return 304;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, false).ID: return 305;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, true).ID: return 306;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, false).ID: return 307;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, true).ID: return 308;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, false).ID: return 309;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, true).ID: return 310;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, false).ID: return 311;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, true).ID: return 312;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, false).ID: return 313;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, true).ID: return 314;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, false).ID: return 315;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, true).ID: return 316;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, false).ID: return 317;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, true).ID: return 318;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, false).ID: return 319;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, true).ID: return 320;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, false).ID: return 321;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, true).ID: return 322;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, false).ID: return 323;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, true).ID: return 324;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, false).ID: return 325;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, true).ID: return 326;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, false).ID: return 327;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, true).ID: return 328;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, false).ID: return 329;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, true).ID: return 330;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, false).ID: return 331;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, true).ID: return 332;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, false).ID: return 333;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, true).ID: return 334;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, false).ID: return 335;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, true).ID: return 336;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, false).ID: return 337;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, true).ID: return 338;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, false).ID: return 339;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, true).ID: return 340;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, false).ID: return 341;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, true).ID: return 342;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, false).ID: return 343;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, true).ID: return 344;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, false).ID: return 345;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, true).ID: return 346;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, false).ID: return 347;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, true).ID: return 348;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, false).ID: return 349;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, true).ID: return 350;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, false).ID: return 351;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, true).ID: return 352;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, false).ID: return 353;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, true).ID: return 354;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, false).ID: return 355;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, true).ID: return 356;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, false).ID: return 357;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, true).ID: return 358;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, false).ID: return 359;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, true).ID: return 360;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, false).ID: return 361;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, true).ID: return 362;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, false).ID: return 363;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, true).ID: return 364;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, false).ID: return 365;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, true).ID: return 366;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, false).ID: return 367;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, true).ID: return 368;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, false).ID: return 369;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, true).ID: return 370;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, false).ID: return 371;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, true).ID: return 372;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, false).ID: return 373;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, true).ID: return 374;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, false).ID: return 375;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, true).ID: return 376;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, false).ID: return 377;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, true).ID: return 378;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, false).ID: return 379;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, true).ID: return 380;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, false).ID: return 381;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, true).ID: return 382;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, false).ID: return 383;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, true).ID: return 384;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, false).ID: return 385;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, true).ID: return 386;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, false).ID: return 387;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, true).ID: return 388;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, false).ID: return 389;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, true).ID: return 390;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, false).ID: return 391;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, true).ID: return 392;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, false).ID: return 393;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, true).ID: return 394;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, false).ID: return 395;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, true).ID: return 396;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, false).ID: return 397;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, true).ID: return 398;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, false).ID: return 399;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, true).ID: return 400;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, false).ID: return 401;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, true).ID: return 402;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, false).ID: return 403;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, true).ID: return 404;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, false).ID: return 405;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, true).ID: return 406;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, false).ID: return 407;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, true).ID: return 408;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, false).ID: return 409;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, true).ID: return 410;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, false).ID: return 411;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, true).ID: return 412;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, false).ID: return 413;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, true).ID: return 414;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, false).ID: return 415;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, true).ID: return 416;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, false).ID: return 417;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, true).ID: return 418;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, false).ID: return 419;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, true).ID: return 420;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, false).ID: return 421;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, true).ID: return 422;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, false).ID: return 423;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, true).ID: return 424;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, false).ID: return 425;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, true).ID: return 426;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, false).ID: return 427;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, true).ID: return 428;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, false).ID: return 429;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, true).ID: return 430;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, false).ID: return 431;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, true).ID: return 432;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, false).ID: return 433;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, true).ID: return 434;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, false).ID: return 435;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, true).ID: return 436;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, false).ID: return 437;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, true).ID: return 438;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, false).ID: return 439;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, true).ID: return 440;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, false).ID: return 441;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, true).ID: return 442;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, false).ID: return 443;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, true).ID: return 444;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, false).ID: return 445;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, true).ID: return 446;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, false).ID: return 447;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, true).ID: return 448;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, false).ID: return 449;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, true).ID: return 450;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, false).ID: return 451;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, true).ID: return 452;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, false).ID: return 453;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, true).ID: return 454;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, false).ID: return 455;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, true).ID: return 456;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, false).ID: return 457;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, true).ID: return 458;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, false).ID: return 459;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, true).ID: return 460;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, false).ID: return 461;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, true).ID: return 462;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, false).ID: return 463;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, true).ID: return 464;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, false).ID: return 465;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, true).ID: return 466;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, false).ID: return 467;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, true).ID: return 468;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, false).ID: return 469;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, true).ID: return 470;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, false).ID: return 471;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, true).ID: return 472;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, false).ID: return 473;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, true).ID: return 474;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, false).ID: return 475;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, true).ID: return 476;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, false).ID: return 477;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, true).ID: return 478;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, false).ID: return 479;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, true).ID: return 480;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, false).ID: return 481;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, true).ID: return 482;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, false).ID: return 483;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, true).ID: return 484;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, false).ID: return 485;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, true).ID: return 486;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, false).ID: return 487;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, true).ID: return 488;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, false).ID: return 489;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, true).ID: return 490;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, false).ID: return 491;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, true).ID: return 492;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, false).ID: return 493;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, true).ID: return 494;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, false).ID: return 495;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, true).ID: return 496;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, false).ID: return 497;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, true).ID: return 498;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, false).ID: return 499;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, true).ID: return 500;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, false).ID: return 501;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, true).ID: return 502;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, false).ID: return 503;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, true).ID: return 504;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, false).ID: return 505;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, true).ID: return 506;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, false).ID: return 507;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, true).ID: return 508;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, false).ID: return 509;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, true).ID: return 510;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, false).ID: return 511;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, true).ID: return 512;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, false).ID: return 513;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, true).ID: return 514;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, false).ID: return 515;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, true).ID: return 516;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, false).ID: return 517;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, true).ID: return 518;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, false).ID: return 519;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, true).ID: return 520;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, false).ID: return 521;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, true).ID: return 522;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, false).ID: return 523;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, true).ID: return 524;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, false).ID: return 525;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, true).ID: return 526;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, false).ID: return 527;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, true).ID: return 528;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, false).ID: return 529;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, true).ID: return 530;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, false).ID: return 531;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, true).ID: return 532;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, false).ID: return 533;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, true).ID: return 534;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, false).ID: return 535;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, true).ID: return 536;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, false).ID: return 537;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, true).ID: return 538;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, false).ID: return 539;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, true).ID: return 540;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, false).ID: return 541;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, true).ID: return 542;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, false).ID: return 543;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, true).ID: return 544;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, false).ID: return 545;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, true).ID: return 546;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, false).ID: return 547;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, true).ID: return 548;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, false).ID: return 549;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, true).ID: return 550;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, false).ID: return 551;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, true).ID: return 552;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, false).ID: return 553;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, true).ID: return 554;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, false).ID: return 555;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, true).ID: return 556;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, false).ID: return 557;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, true).ID: return 558;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, false).ID: return 559;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, true).ID: return 560;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, false).ID: return 561;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, true).ID: return 562;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, false).ID: return 563;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, true).ID: return 564;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, false).ID: return 565;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, true).ID: return 566;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, false).ID: return 567;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, true).ID: return 568;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, false).ID: return 569;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, true).ID: return 570;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, false).ID: return 571;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, true).ID: return 572;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, false).ID: return 573;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, true).ID: return 574;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, false).ID: return 575;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, true).ID: return 576;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, false).ID: return 577;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, true).ID: return 578;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, false).ID: return 579;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, true).ID: return 580;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, false).ID: return 581;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, true).ID: return 582;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, false).ID: return 583;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, true).ID: return 584;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, false).ID: return 585;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, true).ID: return 586;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, false).ID: return 587;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, true).ID: return 588;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, false).ID: return 589;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, true).ID: return 590;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, false).ID: return 591;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, true).ID: return 592;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, false).ID: return 593;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, true).ID: return 594;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, false).ID: return 595;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, true).ID: return 596;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, false).ID: return 597;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, true).ID: return 598;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, false).ID: return 599;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, true).ID: return 600;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, false).ID: return 601;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, true).ID: return 602;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, false).ID: return 603;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, true).ID: return 604;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, false).ID: return 605;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, true).ID: return 606;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, false).ID: return 607;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, true).ID: return 608;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, false).ID: return 609;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, true).ID: return 610;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, false).ID: return 611;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, true).ID: return 612;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, false).ID: return 613;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, true).ID: return 614;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, false).ID: return 615;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, true).ID: return 616;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, false).ID: return 617;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, true).ID: return 618;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, false).ID: return 619;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, true).ID: return 620;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, false).ID: return 621;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, true).ID: return 622;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, false).ID: return 623;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, true).ID: return 624;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, false).ID: return 625;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, true).ID: return 626;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, false).ID: return 627;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, true).ID: return 628;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, false).ID: return 629;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, true).ID: return 630;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, false).ID: return 631;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, true).ID: return 632;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, false).ID: return 633;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, true).ID: return 634;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, false).ID: return 635;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, true).ID: return 636;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, false).ID: return 637;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, true).ID: return 638;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, false).ID: return 639;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, true).ID: return 640;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, false).ID: return 641;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, true).ID: return 642;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, false).ID: return 643;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, true).ID: return 644;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, false).ID: return 645;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, true).ID: return 646;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, false).ID: return 647;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, true).ID: return 648;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, false).ID: return 649;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, true).ID: return 650;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, false).ID: return 651;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, true).ID: return 652;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, false).ID: return 653;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, true).ID: return 654;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, false).ID: return 655;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, true).ID: return 656;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, false).ID: return 657;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, true).ID: return 658;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, false).ID: return 659;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, true).ID: return 660;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, false).ID: return 661;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, true).ID: return 662;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, false).ID: return 663;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, true).ID: return 664;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, false).ID: return 665;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, true).ID: return 666;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, false).ID: return 667;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, true).ID: return 668;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, false).ID: return 669;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, true).ID: return 670;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, false).ID: return 671;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, true).ID: return 672;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, false).ID: return 673;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, true).ID: return 674;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, false).ID: return 675;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, true).ID: return 676;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, false).ID: return 677;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, true).ID: return 678;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, false).ID: return 679;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, true).ID: return 680;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, false).ID: return 681;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, true).ID: return 682;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, false).ID: return 683;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, true).ID: return 684;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, false).ID: return 685;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, true).ID: return 686;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, false).ID: return 687;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, true).ID: return 688;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, false).ID: return 689;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, true).ID: return 690;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, false).ID: return 691;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, true).ID: return 692;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, false).ID: return 693;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, true).ID: return 694;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, false).ID: return 695;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, true).ID: return 696;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, false).ID: return 697;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, true).ID: return 698;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, false).ID: return 699;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, true).ID: return 700;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, false).ID: return 701;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, true).ID: return 702;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, false).ID: return 703;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, true).ID: return 704;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, false).ID: return 705;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, true).ID: return 706;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, false).ID: return 707;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, true).ID: return 708;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, false).ID: return 709;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, true).ID: return 710;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, false).ID: return 711;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, true).ID: return 712;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, false).ID: return 713;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, true).ID: return 714;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, false).ID: return 715;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, true).ID: return 716;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, false).ID: return 717;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, true).ID: return 718;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, false).ID: return 719;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, true).ID: return 720;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, false).ID: return 721;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, true).ID: return 722;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, false).ID: return 723;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, true).ID: return 724;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, false).ID: return 725;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, true).ID: return 726;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, false).ID: return 727;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, true).ID: return 728;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, false).ID: return 729;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, true).ID: return 730;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, false).ID: return 731;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, true).ID: return 732;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, false).ID: return 733;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, true).ID: return 734;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, false).ID: return 735;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, true).ID: return 736;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, false).ID: return 737;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, true).ID: return 738;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, false).ID: return 739;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, true).ID: return 740;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, false).ID: return 741;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, true).ID: return 742;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, false).ID: return 743;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, true).ID: return 744;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, false).ID: return 745;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, true).ID: return 746;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, false).ID: return 747;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5304;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5305;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5306;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5307;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5308;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5309;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5310;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5311;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5312;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5313;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5314;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5315;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5316;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5317;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5318;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5319;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5320;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5321;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5322;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5323;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5324;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5325;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5326;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5327;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3108;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3109;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3110;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3111;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3112;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3113;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3114;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3115;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3116;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3117;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3118;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3119;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3120;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3121;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3122;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3123;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3124;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3125;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3126;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3127;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3128;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3129;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3130;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3131;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3132;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3133;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3134;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3135;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3136;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3137;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3138;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3139;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3140;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3141;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3142;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3143;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3144;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3145;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3146;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3147;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3148;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3149;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3150;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3151;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3152;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3153;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3154;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3155;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3156;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3157;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3158;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3159;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3160;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3161;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3162;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3163;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3164;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3165;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3166;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3167;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3168;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3169;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3170;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3171;
+ case OakFence::OakFence(true, true, true, true).ID: return 3463;
+ case OakFence::OakFence(true, true, true, false).ID: return 3464;
+ case OakFence::OakFence(true, true, false, true).ID: return 3467;
+ case OakFence::OakFence(true, true, false, false).ID: return 3468;
+ case OakFence::OakFence(true, false, true, true).ID: return 3471;
+ case OakFence::OakFence(true, false, true, false).ID: return 3472;
+ case OakFence::OakFence(true, false, false, true).ID: return 3475;
+ case OakFence::OakFence(true, false, false, false).ID: return 3476;
+ case OakFence::OakFence(false, true, true, true).ID: return 3479;
+ case OakFence::OakFence(false, true, true, false).ID: return 3480;
+ case OakFence::OakFence(false, true, false, true).ID: return 3483;
+ case OakFence::OakFence(false, true, false, false).ID: return 3484;
+ case OakFence::OakFence(false, false, true, true).ID: return 3487;
+ case OakFence::OakFence(false, false, true, false).ID: return 3488;
+ case OakFence::OakFence(false, false, false, true).ID: return 3491;
+ case OakFence::OakFence(false, false, false, false).ID: return 3492;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 4301;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 4302;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 4303;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 4304;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 4305;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 4306;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 4307;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 4308;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 4309;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 4310;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 4311;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 4312;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 4313;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 4314;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 4315;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 4316;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 4317;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 4318;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 4319;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 4320;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 4321;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 4322;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 4323;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 4324;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 4325;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 4326;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 4327;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 4328;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 4329;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 4330;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 4331;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 4332;
+ case OakLeaves::OakLeaves(1, true).ID: return 144;
+ case OakLeaves::OakLeaves(1, false).ID: return 145;
+ case OakLeaves::OakLeaves(2, true).ID: return 146;
+ case OakLeaves::OakLeaves(2, false).ID: return 147;
+ case OakLeaves::OakLeaves(3, true).ID: return 148;
+ case OakLeaves::OakLeaves(3, false).ID: return 149;
+ case OakLeaves::OakLeaves(4, true).ID: return 150;
+ case OakLeaves::OakLeaves(4, false).ID: return 151;
+ case OakLeaves::OakLeaves(5, true).ID: return 152;
+ case OakLeaves::OakLeaves(5, false).ID: return 153;
+ case OakLeaves::OakLeaves(6, true).ID: return 154;
+ case OakLeaves::OakLeaves(6, false).ID: return 155;
+ case OakLeaves::OakLeaves(7, true).ID: return 156;
+ case OakLeaves::OakLeaves(7, false).ID: return 157;
+ case OakLog::OakLog(OakLog::Axis::X).ID: return 72;
+ case OakLog::OakLog(OakLog::Axis::Y).ID: return 73;
+ case OakLog::OakLog(OakLog::Axis::Z).ID: return 74;
+ case OakPlanks::OakPlanks().ID: return 15;
+ case OakPressurePlate::OakPressurePlate(true).ID: return 3368;
+ case OakPressurePlate::OakPressurePlate(false).ID: return 3369;
+ case OakSapling::OakSapling(0).ID: return 21;
+ case OakSapling::OakSapling(1).ID: return 22;
+ case OakSlab::OakSlab(OakSlab::Type::Top).ID: return 7259;
+ case OakSlab::OakSlab(OakSlab::Type::Bottom).ID: return 7261;
+ case OakSlab::OakSlab(OakSlab::Type::Double).ID: return 7263;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1650;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1652;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1654;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1656;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1658;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1660;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1662;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1664;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1666;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1668;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1670;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1672;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1674;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1676;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1678;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1680;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1682;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1684;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1686;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1688;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1690;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1692;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1694;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1696;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1698;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1700;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1702;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1704;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1706;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1708;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1710;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1712;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1714;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1716;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1718;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1720;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1722;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1724;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1726;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1728;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, true).ID: return 3595;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, false).ID: return 3597;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, true).ID: return 3599;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, false).ID: return 3601;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, true).ID: return 3603;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, false).ID: return 3605;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, true).ID: return 3607;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, false).ID: return 3609;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, true).ID: return 3611;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, false).ID: return 3613;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, true).ID: return 3615;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, false).ID: return 3617;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, true).ID: return 3619;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, false).ID: return 3621;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, true).ID: return 3623;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, false).ID: return 3625;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, true).ID: return 3627;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, false).ID: return 3629;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, true).ID: return 3631;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, false).ID: return 3633;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, true).ID: return 3635;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, false).ID: return 3637;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, true).ID: return 3639;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, false).ID: return 3641;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, true).ID: return 3643;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, false).ID: return 3645;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, true).ID: return 3647;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, false).ID: return 3649;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, true).ID: return 3651;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, false).ID: return 3653;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, true).ID: return 3655;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, false).ID: return 3657;
+ case OakWood::OakWood(OakWood::Axis::X).ID: return 108;
+ case OakWood::OakWood(OakWood::Axis::Y).ID: return 109;
+ case OakWood::OakWood(OakWood::Axis::Z).ID: return 110;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, true).ID: return 8200;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, false).ID: return 8201;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XP, true).ID: return 8202;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XP, false).ID: return 8203;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, true).ID: return 8204;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, false).ID: return 8205;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XM, true).ID: return 8206;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XM, false).ID: return 8207;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YP, true).ID: return 8208;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YP, false).ID: return 8209;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YM, true).ID: return 8210;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YM, false).ID: return 8211;
+ case Obsidian::Obsidian().ID: return 1130;
+ case OrangeBanner::OrangeBanner(0).ID: return 6871;
+ case OrangeBanner::OrangeBanner(1).ID: return 6872;
+ case OrangeBanner::OrangeBanner(2).ID: return 6873;
+ case OrangeBanner::OrangeBanner(3).ID: return 6874;
+ case OrangeBanner::OrangeBanner(4).ID: return 6875;
+ case OrangeBanner::OrangeBanner(5).ID: return 6876;
+ case OrangeBanner::OrangeBanner(6).ID: return 6877;
+ case OrangeBanner::OrangeBanner(7).ID: return 6878;
+ case OrangeBanner::OrangeBanner(8).ID: return 6879;
+ case OrangeBanner::OrangeBanner(9).ID: return 6880;
+ case OrangeBanner::OrangeBanner(10).ID: return 6881;
+ case OrangeBanner::OrangeBanner(11).ID: return 6882;
+ case OrangeBanner::OrangeBanner(12).ID: return 6883;
+ case OrangeBanner::OrangeBanner(13).ID: return 6884;
+ case OrangeBanner::OrangeBanner(14).ID: return 6885;
+ case OrangeBanner::OrangeBanner(15).ID: return 6886;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Head).ID: return 764;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Foot).ID: return 765;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Head).ID: return 766;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Foot).ID: return 767;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Head).ID: return 768;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Foot).ID: return 769;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Head).ID: return 770;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Foot).ID: return 771;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Head).ID: return 772;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Foot).ID: return 773;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Head).ID: return 774;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Foot).ID: return 775;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Head).ID: return 776;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Foot).ID: return 777;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Head).ID: return 778;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Foot).ID: return 779;
+ case OrangeCarpet::OrangeCarpet().ID: return 6825;
+ case OrangeConcrete::OrangeConcrete().ID: return 8379;
+ case OrangeConcretePowder::OrangeConcretePowder().ID: return 8395;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8318;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8319;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8320;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8321;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8224;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8225;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8226;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8227;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8228;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8229;
+ case OrangeStainedGlass::OrangeStainedGlass().ID: return 3579;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, true).ID: return 5855;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, false).ID: return 5856;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, true).ID: return 5859;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, false).ID: return 5860;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, true).ID: return 5863;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, false).ID: return 5864;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, true).ID: return 5867;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, false).ID: return 5868;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, true).ID: return 5871;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, false).ID: return 5872;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, true).ID: return 5875;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, false).ID: return 5876;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, true).ID: return 5879;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, false).ID: return 5880;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, true).ID: return 5883;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, false).ID: return 5884;
+ case OrangeTerracotta::OrangeTerracotta().ID: return 5806;
+ case OrangeTulip::OrangeTulip().ID: return 1117;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7115;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7116;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7117;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7118;
+ case OrangeWool::OrangeWool().ID: return 1084;
+ case OxeyeDaisy::OxeyeDaisy().ID: return 1120;
+ case PackedIce::PackedIce().ID: return 6842;
+ case Peony::Peony(Peony::Half::Upper).ID: return 6849;
+ case Peony::Peony(Peony::Half::Lower).ID: return 6850;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Top).ID: return 7307;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Bottom).ID: return 7309;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double).ID: return 7311;
+ case PinkBanner::PinkBanner(0).ID: return 6951;
+ case PinkBanner::PinkBanner(1).ID: return 6952;
+ case PinkBanner::PinkBanner(2).ID: return 6953;
+ case PinkBanner::PinkBanner(3).ID: return 6954;
+ case PinkBanner::PinkBanner(4).ID: return 6955;
+ case PinkBanner::PinkBanner(5).ID: return 6956;
+ case PinkBanner::PinkBanner(6).ID: return 6957;
+ case PinkBanner::PinkBanner(7).ID: return 6958;
+ case PinkBanner::PinkBanner(8).ID: return 6959;
+ case PinkBanner::PinkBanner(9).ID: return 6960;
+ case PinkBanner::PinkBanner(10).ID: return 6961;
+ case PinkBanner::PinkBanner(11).ID: return 6962;
+ case PinkBanner::PinkBanner(12).ID: return 6963;
+ case PinkBanner::PinkBanner(13).ID: return 6964;
+ case PinkBanner::PinkBanner(14).ID: return 6965;
+ case PinkBanner::PinkBanner(15).ID: return 6966;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Head).ID: return 844;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Foot).ID: return 845;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Head).ID: return 846;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Foot).ID: return 847;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Head).ID: return 848;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Foot).ID: return 849;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Head).ID: return 850;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Foot).ID: return 851;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Head).ID: return 852;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Foot).ID: return 853;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Head).ID: return 854;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Foot).ID: return 855;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Head).ID: return 856;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Foot).ID: return 857;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Head).ID: return 858;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Foot).ID: return 859;
+ case PinkCarpet::PinkCarpet().ID: return 6830;
+ case PinkConcrete::PinkConcrete().ID: return 8384;
+ case PinkConcretePowder::PinkConcretePowder().ID: return 8400;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8338;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8339;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8340;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8341;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8254;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8255;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8256;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8257;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8258;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8259;
+ case PinkStainedGlass::PinkStainedGlass().ID: return 3584;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, true).ID: return 6015;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, false).ID: return 6016;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, true).ID: return 6019;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, false).ID: return 6020;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, true).ID: return 6023;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, false).ID: return 6024;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, true).ID: return 6027;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, false).ID: return 6028;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, true).ID: return 6031;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, false).ID: return 6032;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, true).ID: return 6035;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, false).ID: return 6036;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, true).ID: return 6039;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, false).ID: return 6040;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, true).ID: return 6043;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, false).ID: return 6044;
+ case PinkTerracotta::PinkTerracotta().ID: return 5811;
+ case PinkTulip::PinkTulip().ID: return 1119;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7135;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7136;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7137;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7138;
+ case PinkWool::PinkWool().ID: return 1089;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZM).ID: return 1047;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_XP).ID: return 1048;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZP).ID: return 1049;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_XM).ID: return 1050;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_YP).ID: return 1051;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_YM).ID: return 1052;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZM).ID: return 1053;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_XP).ID: return 1054;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZP).ID: return 1055;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_XM).ID: return 1056;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_YP).ID: return 1057;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_YM).ID: return 1058;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Normal).ID: return 1059;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Sticky).ID: return 1060;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Normal).ID: return 1061;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Sticky).ID: return 1062;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Normal).ID: return 1063;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Sticky).ID: return 1064;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Normal).ID: return 1065;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Sticky).ID: return 1066;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Normal).ID: return 1067;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Sticky).ID: return 1068;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Normal).ID: return 1069;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Sticky).ID: return 1070;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Normal).ID: return 1071;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Sticky).ID: return 1072;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Normal).ID: return 1073;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Sticky).ID: return 1074;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Normal).ID: return 1075;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Sticky).ID: return 1076;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Normal).ID: return 1077;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Sticky).ID: return 1078;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Normal).ID: return 1079;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Sticky).ID: return 1080;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Normal).ID: return 1081;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Sticky).ID: return 1082;
+ case PlayerHead::PlayerHead(0).ID: return 5512;
+ case PlayerHead::PlayerHead(1).ID: return 5513;
+ case PlayerHead::PlayerHead(2).ID: return 5514;
+ case PlayerHead::PlayerHead(3).ID: return 5515;
+ case PlayerHead::PlayerHead(4).ID: return 5516;
+ case PlayerHead::PlayerHead(5).ID: return 5517;
+ case PlayerHead::PlayerHead(6).ID: return 5518;
+ case PlayerHead::PlayerHead(7).ID: return 5519;
+ case PlayerHead::PlayerHead(8).ID: return 5520;
+ case PlayerHead::PlayerHead(9).ID: return 5521;
+ case PlayerHead::PlayerHead(10).ID: return 5522;
+ case PlayerHead::PlayerHead(11).ID: return 5523;
+ case PlayerHead::PlayerHead(12).ID: return 5524;
+ case PlayerHead::PlayerHead(13).ID: return 5525;
+ case PlayerHead::PlayerHead(14).ID: return 5526;
+ case PlayerHead::PlayerHead(15).ID: return 5527;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 5508;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 5509;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 5510;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 5511;
+ case Podzol::Podzol(true).ID: return 12;
+ case Podzol::Podzol(false).ID: return 13;
+ case PolishedAndesite::PolishedAndesite().ID: return 7;
+ case PolishedDiorite::PolishedDiorite().ID: return 5;
+ case PolishedGranite::PolishedGranite().ID: return 3;
+ case Poppy::Poppy().ID: return 1112;
+ case Potatoes::Potatoes(0).ID: return 5296;
+ case Potatoes::Potatoes(1).ID: return 5297;
+ case Potatoes::Potatoes(2).ID: return 5298;
+ case Potatoes::Potatoes(3).ID: return 5299;
+ case Potatoes::Potatoes(4).ID: return 5300;
+ case Potatoes::Potatoes(5).ID: return 5301;
+ case Potatoes::Potatoes(6).ID: return 5302;
+ case Potatoes::Potatoes(7).ID: return 5303;
+ case PottedAcaciaSapling::PottedAcaciaSapling().ID: return 5271;
+ case PottedAllium::PottedAllium().ID: return 5277;
+ case PottedAzureBluet::PottedAzureBluet().ID: return 5278;
+ case PottedBirchSapling::PottedBirchSapling().ID: return 5269;
+ case PottedBlueOrchid::PottedBlueOrchid().ID: return 5276;
+ case PottedBrownMushroom::PottedBrownMushroom().ID: return 5285;
+ case PottedCactus::PottedCactus().ID: return 5287;
+ case PottedDandelion::PottedDandelion().ID: return 5274;
+ case PottedDarkOakSapling::PottedDarkOakSapling().ID: return 5272;
+ case PottedDeadBush::PottedDeadBush().ID: return 5286;
+ case PottedFern::PottedFern().ID: return 5273;
+ case PottedJungleSapling::PottedJungleSapling().ID: return 5270;
+ case PottedOakSapling::PottedOakSapling().ID: return 5267;
+ case PottedOrangeTulip::PottedOrangeTulip().ID: return 5280;
+ case PottedOxeyeDaisy::PottedOxeyeDaisy().ID: return 5283;
+ case PottedPinkTulip::PottedPinkTulip().ID: return 5282;
+ case PottedPoppy::PottedPoppy().ID: return 5275;
+ case PottedRedMushroom::PottedRedMushroom().ID: return 5284;
+ case PottedRedTulip::PottedRedTulip().ID: return 5279;
+ case PottedSpruceSapling::PottedSpruceSapling().ID: return 5268;
+ case PottedWhiteTulip::PottedWhiteTulip().ID: return 5281;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::NorthSouth).ID: return 1004;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::EastWest).ID: return 1005;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingEast).ID: return 1006;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingWest).ID: return 1007;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingNorth).ID: return 1008;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingSouth).ID: return 1009;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::NorthSouth).ID: return 1010;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::EastWest).ID: return 1011;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingEast).ID: return 1012;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingWest).ID: return 1013;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingNorth).ID: return 1014;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingSouth).ID: return 1015;
+ case Prismarine::Prismarine().ID: return 6559;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Top).ID: return 6809;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Bottom).ID: return 6811;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Double).ID: return 6813;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 6643;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6645;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 6647;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6649;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 6651;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 6653;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6655;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 6657;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6659;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 6661;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 6663;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6665;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 6667;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6669;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 6671;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 6673;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6675;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 6677;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6679;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 6681;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 6683;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6685;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 6687;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6689;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 6691;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 6693;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6695;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 6697;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6699;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 6701;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 6703;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6705;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 6707;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6709;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 6711;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 6713;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 6715;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 6717;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 6719;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 6721;
+ case PrismarineBricks::PrismarineBricks().ID: return 6560;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Top).ID: return 6803;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Bottom).ID: return 6805;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Double).ID: return 6807;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 6563;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 6565;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 6567;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 6569;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 6571;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 6573;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 6575;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 6577;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 6579;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 6581;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 6583;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 6585;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 6587;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 6589;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 6591;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 6593;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 6595;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 6597;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 6599;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 6601;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 6603;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 6605;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 6607;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 6609;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 6611;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 6613;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 6615;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 6617;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 6619;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 6621;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 6623;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 6625;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 6627;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 6629;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 6631;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 6633;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 6635;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 6637;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 6639;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 6641;
+ case Pumpkin::Pumpkin().ID: return 3493;
+ case PumpkinStem::PumpkinStem(0).ID: return 4253;
+ case PumpkinStem::PumpkinStem(1).ID: return 4254;
+ case PumpkinStem::PumpkinStem(2).ID: return 4255;
+ case PumpkinStem::PumpkinStem(3).ID: return 4256;
+ case PumpkinStem::PumpkinStem(4).ID: return 4257;
+ case PumpkinStem::PumpkinStem(5).ID: return 4258;
+ case PumpkinStem::PumpkinStem(6).ID: return 4259;
+ case PumpkinStem::PumpkinStem(7).ID: return 4260;
+ case PurpleBanner::PurpleBanner(0).ID: return 7015;
+ case PurpleBanner::PurpleBanner(1).ID: return 7016;
+ case PurpleBanner::PurpleBanner(2).ID: return 7017;
+ case PurpleBanner::PurpleBanner(3).ID: return 7018;
+ case PurpleBanner::PurpleBanner(4).ID: return 7019;
+ case PurpleBanner::PurpleBanner(5).ID: return 7020;
+ case PurpleBanner::PurpleBanner(6).ID: return 7021;
+ case PurpleBanner::PurpleBanner(7).ID: return 7022;
+ case PurpleBanner::PurpleBanner(8).ID: return 7023;
+ case PurpleBanner::PurpleBanner(9).ID: return 7024;
+ case PurpleBanner::PurpleBanner(10).ID: return 7025;
+ case PurpleBanner::PurpleBanner(11).ID: return 7026;
+ case PurpleBanner::PurpleBanner(12).ID: return 7027;
+ case PurpleBanner::PurpleBanner(13).ID: return 7028;
+ case PurpleBanner::PurpleBanner(14).ID: return 7029;
+ case PurpleBanner::PurpleBanner(15).ID: return 7030;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Head).ID: return 908;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Foot).ID: return 909;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Head).ID: return 910;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Foot).ID: return 911;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Head).ID: return 912;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Foot).ID: return 913;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Head).ID: return 914;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Foot).ID: return 915;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Head).ID: return 916;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Foot).ID: return 917;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Head).ID: return 918;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Foot).ID: return 919;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Head).ID: return 920;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Foot).ID: return 921;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Head).ID: return 922;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Foot).ID: return 923;
+ case PurpleCarpet::PurpleCarpet().ID: return 6834;
+ case PurpleConcrete::PurpleConcrete().ID: return 8388;
+ case PurpleConcretePowder::PurpleConcretePowder().ID: return 8404;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8354;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8355;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8356;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8357;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8278;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8279;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8280;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8281;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8282;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8283;
+ case PurpleStainedGlass::PurpleStainedGlass().ID: return 3588;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, true).ID: return 6143;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, false).ID: return 6144;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, true).ID: return 6147;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, false).ID: return 6148;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, true).ID: return 6151;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, false).ID: return 6152;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, true).ID: return 6155;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, false).ID: return 6156;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, true).ID: return 6159;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, false).ID: return 6160;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, true).ID: return 6163;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, false).ID: return 6164;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, true).ID: return 6167;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, false).ID: return 6168;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, true).ID: return 6171;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, false).ID: return 6172;
+ case PurpleTerracotta::PurpleTerracotta().ID: return 5815;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7151;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7152;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7153;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7154;
+ case PurpleWool::PurpleWool().ID: return 1093;
+ case PurpurBlock::PurpurBlock().ID: return 8074;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::X).ID: return 8075;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Y).ID: return 8076;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Z).ID: return 8077;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Top).ID: return 7349;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Bottom).ID: return 7351;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Double).ID: return 7353;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8079;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8081;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8083;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8085;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8087;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8089;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8091;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8093;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8095;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8097;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8099;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8101;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8103;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8105;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8107;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8109;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8111;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8113;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8115;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8117;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8119;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8121;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8123;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8125;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8127;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8129;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8131;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8133;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8135;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8137;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8139;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8141;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8143;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8145;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8147;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8149;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8151;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8153;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8155;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8157;
+ case QuartzBlock::QuartzBlock().ID: return 5696;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::X).ID: return 5698;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Y).ID: return 5699;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Z).ID: return 5700;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Top).ID: return 7337;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Bottom).ID: return 7339;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Double).ID: return 7341;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 5702;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 5704;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 5706;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 5708;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 5710;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 5712;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 5714;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 5716;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 5718;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 5720;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 5722;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 5724;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 5726;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 5728;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 5730;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 5732;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 5734;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 5736;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 5738;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 5740;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 5742;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 5744;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 5746;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 5748;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 5750;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 5752;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 5754;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 5756;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 5758;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 5760;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 5762;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 5764;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 5766;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 5768;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 5770;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 5772;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 5774;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 5776;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 5778;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 5780;
+ case Rail::Rail(Rail::Shape::NorthSouth).ID: return 3180;
+ case Rail::Rail(Rail::Shape::EastWest).ID: return 3181;
+ case Rail::Rail(Rail::Shape::AscendingEast).ID: return 3182;
+ case Rail::Rail(Rail::Shape::AscendingWest).ID: return 3183;
+ case Rail::Rail(Rail::Shape::AscendingNorth).ID: return 3184;
+ case Rail::Rail(Rail::Shape::AscendingSouth).ID: return 3185;
+ case Rail::Rail(Rail::Shape::SouthEast).ID: return 3186;
+ case Rail::Rail(Rail::Shape::SouthWest).ID: return 3187;
+ case Rail::Rail(Rail::Shape::NorthWest).ID: return 3188;
+ case Rail::Rail(Rail::Shape::NorthEast).ID: return 3189;
+ case RedBanner::RedBanner(0).ID: return 7079;
+ case RedBanner::RedBanner(1).ID: return 7080;
+ case RedBanner::RedBanner(2).ID: return 7081;
+ case RedBanner::RedBanner(3).ID: return 7082;
+ case RedBanner::RedBanner(4).ID: return 7083;
+ case RedBanner::RedBanner(5).ID: return 7084;
+ case RedBanner::RedBanner(6).ID: return 7085;
+ case RedBanner::RedBanner(7).ID: return 7086;
+ case RedBanner::RedBanner(8).ID: return 7087;
+ case RedBanner::RedBanner(9).ID: return 7088;
+ case RedBanner::RedBanner(10).ID: return 7089;
+ case RedBanner::RedBanner(11).ID: return 7090;
+ case RedBanner::RedBanner(12).ID: return 7091;
+ case RedBanner::RedBanner(13).ID: return 7092;
+ case RedBanner::RedBanner(14).ID: return 7093;
+ case RedBanner::RedBanner(15).ID: return 7094;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Head).ID: return 972;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Foot).ID: return 973;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Head).ID: return 974;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Foot).ID: return 975;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Head).ID: return 976;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Foot).ID: return 977;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Head).ID: return 978;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Foot).ID: return 979;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Head).ID: return 980;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Foot).ID: return 981;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Head).ID: return 982;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Foot).ID: return 983;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Head).ID: return 984;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Foot).ID: return 985;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Head).ID: return 986;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Foot).ID: return 987;
+ case RedCarpet::RedCarpet().ID: return 6838;
+ case RedConcrete::RedConcrete().ID: return 8392;
+ case RedConcretePowder::RedConcretePowder().ID: return 8408;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8370;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8371;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8372;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8373;
+ case RedMushroom::RedMushroom().ID: return 1122;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, true).ID: return 4052;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, false).ID: return 4053;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, true).ID: return 4054;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, false).ID: return 4055;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, true).ID: return 4056;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, false).ID: return 4057;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, true).ID: return 4058;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, false).ID: return 4059;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, true).ID: return 4060;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, false).ID: return 4061;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, true).ID: return 4062;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, false).ID: return 4063;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, true).ID: return 4064;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, false).ID: return 4065;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, true).ID: return 4066;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, false).ID: return 4067;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, true).ID: return 4068;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, false).ID: return 4069;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, true).ID: return 4070;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, false).ID: return 4071;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, true).ID: return 4072;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, false).ID: return 4073;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, true).ID: return 4074;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, false).ID: return 4075;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, true).ID: return 4076;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, false).ID: return 4077;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, true).ID: return 4078;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, false).ID: return 4079;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, true).ID: return 4080;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, false).ID: return 4081;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, true).ID: return 4082;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, false).ID: return 4083;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, true).ID: return 4084;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, false).ID: return 4085;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, true).ID: return 4086;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, false).ID: return 4087;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, true).ID: return 4088;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, false).ID: return 4089;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, true).ID: return 4090;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, false).ID: return 4091;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, true).ID: return 4092;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, false).ID: return 4093;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, true).ID: return 4094;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, false).ID: return 4095;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, true).ID: return 4096;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, false).ID: return 4097;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, true).ID: return 4098;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, false).ID: return 4099;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, true).ID: return 4100;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, false).ID: return 4101;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, true).ID: return 4102;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, false).ID: return 4103;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, true).ID: return 4104;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, false).ID: return 4105;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, true).ID: return 4106;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, false).ID: return 4107;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, true).ID: return 4108;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, false).ID: return 4109;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, true).ID: return 4110;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, false).ID: return 4111;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, true).ID: return 4112;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, false).ID: return 4113;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, true).ID: return 4114;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false).ID: return 4115;
+ case RedNetherBricks::RedNetherBricks().ID: return 8195;
+ case RedSand::RedSand().ID: return 67;
+ case RedSandstone::RedSandstone().ID: return 7175;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Top).ID: return 7343;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Bottom).ID: return 7345;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Double).ID: return 7347;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7179;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7181;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7183;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7185;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7187;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7189;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7191;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7193;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7195;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7197;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7199;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7201;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7203;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7205;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7207;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7209;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7211;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7213;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7215;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7217;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7219;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7221;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7223;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7225;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7227;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7229;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7231;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7233;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7235;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7237;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7239;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7241;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7243;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7245;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7247;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7249;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7251;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7253;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7255;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7257;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8302;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8303;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8304;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8305;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8306;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8307;
+ case RedStainedGlass::RedStainedGlass().ID: return 3592;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, true, true).ID: return 6271;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, true, false).ID: return 6272;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, false, true).ID: return 6275;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, false, false).ID: return 6276;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, true, true).ID: return 6279;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, true, false).ID: return 6280;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, false, true).ID: return 6283;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, false, false).ID: return 6284;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, true, true).ID: return 6287;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, true, false).ID: return 6288;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, false, true).ID: return 6291;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, false, false).ID: return 6292;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, true, true).ID: return 6295;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, true, false).ID: return 6296;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, false, true).ID: return 6299;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, false, false).ID: return 6300;
+ case RedTerracotta::RedTerracotta().ID: return 5819;
+ case RedTulip::RedTulip().ID: return 1116;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7167;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7168;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7169;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7170;
+ case RedWool::RedWool().ID: return 1097;
+ case RedstoneBlock::RedstoneBlock().ID: return 5684;
+ case RedstoneLamp::RedstoneLamp(true).ID: return 4637;
+ case RedstoneLamp::RedstoneLamp(false).ID: return 4638;
+ case RedstoneOre::RedstoneOre(true).ID: return 3380;
+ case RedstoneOre::RedstoneOre(false).ID: return 3381;
+ case RedstoneTorch::RedstoneTorch(true).ID: return 3382;
+ case RedstoneTorch::RedstoneTorch(false).ID: return 3383;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, true).ID: return 3384;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, false).ID: return 3385;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, true).ID: return 3386;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, false).ID: return 3387;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, true).ID: return 3388;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, false).ID: return 3389;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, true).ID: return 3390;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, false).ID: return 3391;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1753;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1754;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1755;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1756;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1757;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1758;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1759;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1760;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1761;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1762;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1763;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1764;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1765;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1766;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1767;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1768;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1769;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1770;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1771;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1772;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1773;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1774;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1775;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1776;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1777;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1778;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1779;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1780;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1781;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1782;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1783;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1784;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1785;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1786;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1787;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1788;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1789;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1790;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1791;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1792;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1793;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1794;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1795;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1796;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1797;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1798;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1799;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1800;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1801;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1802;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1803;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1804;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1805;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1806;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1807;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1808;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1809;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1810;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1811;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1812;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1813;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1814;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1815;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1816;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1817;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1818;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1819;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1820;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1821;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1822;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1823;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1824;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1825;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1826;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1827;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1828;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1829;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1830;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1831;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1832;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1833;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1834;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1835;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1836;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1837;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1838;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1839;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1840;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1841;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1842;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1843;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1844;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1845;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1846;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1847;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1848;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1849;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1850;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1851;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1852;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1853;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1854;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1855;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1856;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1857;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1858;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1859;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1860;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1861;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1862;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1863;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1864;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1865;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1866;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1867;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1868;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1869;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1870;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1871;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1872;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1873;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1874;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1875;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1876;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1877;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1878;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1879;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1880;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1881;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1882;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1883;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1884;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1885;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1886;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1887;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1888;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1889;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1890;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1891;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1892;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1893;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1894;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1895;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1896;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1897;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1898;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1899;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1900;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1901;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1902;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1903;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1904;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1905;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1906;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1907;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1908;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1909;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1910;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1911;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1912;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1913;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1914;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1915;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1916;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1917;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1918;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1919;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1920;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1921;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1922;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1923;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1924;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1925;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1926;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1927;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1928;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1929;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1930;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1931;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1932;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1933;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1934;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1935;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1936;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1937;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1938;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1939;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1940;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1941;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1942;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1943;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1944;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1945;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1946;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1947;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1948;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1949;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1950;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1951;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1952;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1953;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1954;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1955;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1956;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1957;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1958;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1959;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1960;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1961;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1962;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1963;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1964;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1965;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1966;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1967;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1968;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1969;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1970;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1971;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1972;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1973;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1974;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1975;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1976;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1977;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1978;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1979;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1980;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1981;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1982;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1983;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1984;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1985;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1986;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1987;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1988;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1989;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1990;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 1991;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 1992;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 1993;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 1994;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 1995;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 1996;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 1997;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 1998;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 1999;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2000;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2001;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2002;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2003;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2004;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2005;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2006;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2007;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2008;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2009;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2010;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2011;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2012;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2013;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2014;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2015;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2016;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2017;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2018;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2019;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2020;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2021;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2022;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2023;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2024;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2025;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2026;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2027;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2028;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2029;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2030;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2031;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2032;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2033;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2034;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2035;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2036;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2037;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2038;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2039;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2040;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2041;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2042;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2043;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2044;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2045;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2046;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2047;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2048;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2049;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2050;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2051;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2052;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2053;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2054;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2055;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2056;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2057;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2058;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2059;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2060;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2061;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2062;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2063;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2064;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2065;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2066;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2067;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2068;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2069;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2070;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2071;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2072;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2073;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2074;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2075;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2076;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2077;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2078;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2079;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2080;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2081;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2082;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2083;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2084;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2085;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2086;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2087;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2088;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2089;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2090;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2091;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2092;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2093;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2094;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2095;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2096;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2097;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2098;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2099;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2100;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2101;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2102;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2103;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2104;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2105;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2106;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2107;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2108;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2109;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2110;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2111;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2112;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2113;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2114;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2115;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2116;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2117;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2118;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2119;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2120;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2121;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2122;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2123;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2124;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2125;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2126;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2127;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2128;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2129;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2130;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2131;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2132;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2133;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2134;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2135;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2136;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2137;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2138;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2139;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2140;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2141;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2142;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2143;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2144;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2145;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2146;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2147;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2148;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2149;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2150;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2151;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2152;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2153;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2154;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2155;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2156;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2157;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2158;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2159;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2160;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2161;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2162;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2163;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2164;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2165;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2166;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2167;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2168;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2169;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2170;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2171;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2172;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2173;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2174;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2175;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2176;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2177;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2178;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2179;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2180;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2181;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2182;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2183;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2184;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2185;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2186;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2187;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2188;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2189;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2190;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2191;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2192;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2193;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2194;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2195;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2196;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2197;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2198;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2199;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2200;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2201;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2202;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2203;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2204;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2205;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2206;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2207;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2208;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2209;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2210;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2211;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2212;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2213;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2214;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2215;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2216;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2217;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2218;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2219;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2220;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2221;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2222;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2223;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2224;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2225;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2226;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2227;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2228;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2229;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2230;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2231;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2232;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2233;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2234;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2235;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2236;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2237;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2238;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2239;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2240;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2241;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2242;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2243;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2244;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2245;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2246;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2247;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2248;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2249;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2250;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2251;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2252;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2253;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2254;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2255;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2256;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2257;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2258;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2259;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2260;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2261;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2262;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2263;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2264;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2265;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2266;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2267;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2268;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2269;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2270;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2271;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2272;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2273;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2274;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2275;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2276;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2277;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2278;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2279;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2280;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2281;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2282;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2283;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2284;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2285;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2286;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2287;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2288;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2289;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2290;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2291;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2292;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2293;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2294;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2295;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2296;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2297;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2298;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2299;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2300;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2301;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2302;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2303;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2304;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2305;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2306;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2307;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2308;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2309;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2310;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2311;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2312;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2313;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2314;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2315;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2316;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2317;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2318;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2319;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2320;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2321;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2322;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2323;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2324;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2325;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2326;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2327;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2328;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2329;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2330;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2331;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2332;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2333;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2334;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2335;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2336;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2337;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2338;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2339;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2340;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2341;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2342;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2343;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2344;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2345;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2346;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2347;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2348;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2349;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2350;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2351;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2352;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2353;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2354;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2355;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2356;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2357;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2358;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2359;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2360;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2361;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2362;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2363;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2364;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2365;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2366;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2367;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2368;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2369;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2370;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2371;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2372;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2373;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2374;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2375;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2376;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2377;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2378;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2379;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2380;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2381;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2382;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2383;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2384;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2385;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2386;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2387;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2388;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2389;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2390;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2391;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2392;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2393;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2394;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2395;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2396;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2397;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2398;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2399;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2400;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2401;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2402;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2403;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2404;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2405;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2406;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2407;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2408;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2409;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2410;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2411;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2412;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2413;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2414;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2415;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2416;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2417;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2418;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2419;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2420;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2421;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2422;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2423;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2424;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2425;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2426;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2427;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2428;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2429;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2430;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2431;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2432;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2433;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2434;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2435;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2436;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2437;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2438;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2439;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2440;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2441;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2442;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2443;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2444;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2445;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2446;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2447;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2448;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2449;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2450;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2451;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2452;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2453;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2454;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2455;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2456;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2457;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2458;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2459;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2460;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2461;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2462;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2463;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2464;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2465;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2466;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2467;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2468;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2469;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2470;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2471;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2472;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2473;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2474;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2475;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2476;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2477;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2478;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2479;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2480;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2481;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2482;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2483;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2484;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2485;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2486;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2487;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2488;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2489;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2490;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2491;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2492;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2493;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2494;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2495;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2496;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2497;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2498;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2499;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2500;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2501;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2502;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2503;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2504;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2505;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2506;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2507;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2508;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2509;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2510;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2511;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2512;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2513;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2514;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2515;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2516;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2517;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2518;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2519;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2520;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2521;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2522;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2523;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2524;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2525;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2526;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2527;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2528;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2529;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2530;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2531;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2532;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2533;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2534;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2535;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2536;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2537;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2538;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2539;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2540;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2541;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2542;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2543;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2544;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2545;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2546;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2547;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2548;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2549;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2550;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2551;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2552;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2553;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2554;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2555;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2556;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2557;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2558;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2559;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2560;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2561;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2562;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2563;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2564;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2565;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2566;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2567;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2568;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2569;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2570;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2571;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2572;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2573;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2574;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2575;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2576;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2577;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2578;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2579;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2580;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2581;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2582;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2583;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2584;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2585;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2586;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2587;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2588;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2589;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2590;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2591;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2592;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2593;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2594;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2595;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2596;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2597;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2598;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2599;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2600;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2601;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2602;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2603;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2604;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2605;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2606;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2607;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2608;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2609;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2610;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2611;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2612;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2613;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2614;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2615;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2616;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2617;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2618;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2619;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2620;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2621;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2622;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2623;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2624;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2625;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2626;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2627;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2628;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2629;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2630;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2631;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2632;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2633;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2634;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2635;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2636;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2637;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2638;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2639;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2640;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2641;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2642;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2643;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2644;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2645;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2646;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2647;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2648;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2649;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2650;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2651;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2652;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2653;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2654;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2655;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2656;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2657;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2658;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2659;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2660;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2661;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2662;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2663;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2664;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2665;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2666;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2667;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2668;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2669;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2670;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2671;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2672;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2673;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2674;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2675;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2676;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2677;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2678;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2679;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2680;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2681;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2682;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2683;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2684;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2685;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2686;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2687;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2688;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2689;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2690;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2691;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2692;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2693;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2694;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2695;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2696;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2697;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2698;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2699;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2700;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2701;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2702;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2703;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2704;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2705;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2706;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2707;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2708;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2709;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2710;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2711;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2712;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2713;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2714;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2715;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2716;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2717;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2718;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2719;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2720;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2721;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2722;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2723;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2724;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2725;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2726;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2727;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2728;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2729;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2730;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2731;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2732;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2733;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2734;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2735;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2736;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2737;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2738;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2739;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2740;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2741;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2742;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2743;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2744;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2745;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2746;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2747;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2748;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2749;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2750;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2751;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2752;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2753;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2754;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2755;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2756;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2757;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2758;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2759;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2760;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2761;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2762;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2763;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2764;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2765;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2766;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2767;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2768;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2769;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2770;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2771;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2772;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2773;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2774;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2775;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2776;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2777;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2778;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2779;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2780;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2781;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2782;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2783;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2784;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2785;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2786;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2787;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2788;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2789;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2790;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2791;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2792;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2793;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2794;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2795;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2796;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2797;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2798;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2799;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2800;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2801;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2802;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2803;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2804;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2805;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2806;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2807;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2808;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2809;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2810;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2811;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2812;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2813;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2814;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2815;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2816;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2817;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2818;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2819;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2820;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2821;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2822;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2823;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2824;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2825;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2826;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2827;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2828;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2829;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2830;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2831;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2832;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2833;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2834;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2835;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2836;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2837;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2838;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2839;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2840;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2841;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2842;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2843;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2844;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2845;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2846;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2847;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2848;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2849;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2850;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2851;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2852;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2853;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2854;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2855;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2856;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2857;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2858;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2859;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2860;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2861;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2862;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2863;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2864;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2865;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2866;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2867;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2868;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2869;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2870;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2871;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2872;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2873;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2874;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2875;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2876;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2877;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2878;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2879;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2880;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2881;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2882;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2883;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2884;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2885;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2886;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2887;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2888;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2889;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2890;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2891;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2892;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2893;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2894;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2895;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2896;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2897;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2898;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2899;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2900;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2901;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2902;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2903;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2904;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2905;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2906;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2907;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2908;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2909;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2910;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2911;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2912;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2913;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2914;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2915;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2916;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2917;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2918;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2919;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2920;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2921;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2922;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2923;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2924;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2925;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2926;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2927;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2928;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2929;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2930;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2931;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2932;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2933;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2934;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2935;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2936;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2937;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2938;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2939;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2940;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2941;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2942;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2943;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2944;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2945;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2946;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2947;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2948;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2949;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2950;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2951;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2952;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2953;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2954;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2955;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2956;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2957;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2958;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2959;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2960;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2961;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2962;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2963;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2964;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2965;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2966;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2967;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2968;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2969;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2970;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2971;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2972;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2973;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2974;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2975;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2976;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2977;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2978;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2979;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2980;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2981;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2982;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2983;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2984;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2985;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2986;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2987;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2988;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2989;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2990;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2991;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2992;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2993;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2994;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2995;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2996;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2997;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2998;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2999;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3000;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3001;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3002;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3003;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3004;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3005;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3006;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3007;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3008;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3009;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3010;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3011;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3012;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3013;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3014;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3015;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3016;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3017;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3018;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3019;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3020;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3021;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3022;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3023;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3024;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3025;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3026;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3027;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3028;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3029;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3030;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3031;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3032;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3033;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3034;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3035;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3036;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3037;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3038;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3039;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3040;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3041;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3042;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3043;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3044;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3045;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3046;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3047;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3048;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 3514;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 3515;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 3516;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 3517;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 3518;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 3519;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 3520;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 3521;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 3522;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 3523;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 3524;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 3525;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 3526;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 3527;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 3528;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 3529;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 3530;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 3531;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 3532;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 3533;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 3534;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 3535;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 3536;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 3537;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 3538;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 3539;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 3540;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 3541;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 3542;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 3543;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 3544;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 3545;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 3546;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 3547;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 3548;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 3549;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 3550;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 3551;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 3552;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 3553;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 3554;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 3555;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 3556;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 3557;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 3558;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 3559;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 3560;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 3561;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 3562;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 3563;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 3564;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 3565;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 3566;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 3567;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 3568;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 3569;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 3570;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 3571;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 3572;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 3573;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 3574;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 3575;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 3576;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 3577;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 8165;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 8166;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 8167;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 8168;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 8169;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 8170;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 8171;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 8172;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 8173;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 8174;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 8175;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 8176;
+ case RoseBush::RoseBush(RoseBush::Half::Upper).ID: return 6847;
+ case RoseBush::RoseBush(RoseBush::Half::Lower).ID: return 6848;
+ case Sand::Sand().ID: return 66;
+ case Sandstone::Sandstone().ID: return 245;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Top).ID: return 7301;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Bottom).ID: return 7303;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Double).ID: return 7305;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 4652;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 4654;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 4656;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 4658;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 4660;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 4662;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 4664;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 4666;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 4668;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 4670;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 4672;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 4674;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 4676;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 4678;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 4680;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 4682;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 4684;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 4686;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 4688;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 4690;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 4692;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 4694;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 4696;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 4698;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 4700;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 4702;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 4704;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 4706;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 4708;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 4710;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 4712;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 4714;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 4716;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 4718;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 4720;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 4722;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 4724;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 4726;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 4728;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 4730;
+ case SeaLantern::SeaLantern().ID: return 6820;
+ case SeaPickle::SeaPickle(1).ID: return 8581;
+ case SeaPickle::SeaPickle(2).ID: return 8583;
+ case SeaPickle::SeaPickle(3).ID: return 8585;
+ case SeaPickle::SeaPickle(4).ID: return 8587;
+ case Seagrass::Seagrass().ID: return 1044;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8212;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8213;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8214;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8215;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8216;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8217;
+ case OakSign::OakSign(0).ID: return 3077;
+ case OakSign::OakSign(1).ID: return 3079;
+ case OakSign::OakSign(2).ID: return 3081;
+ case OakSign::OakSign(3).ID: return 3083;
+ case OakSign::OakSign(4).ID: return 3085;
+ case OakSign::OakSign(5).ID: return 3087;
+ case OakSign::OakSign(6).ID: return 3089;
+ case OakSign::OakSign(7).ID: return 3091;
+ case OakSign::OakSign(8).ID: return 3093;
+ case OakSign::OakSign(9).ID: return 3095;
+ case OakSign::OakSign(10).ID: return 3097;
+ case OakSign::OakSign(11).ID: return 3099;
+ case OakSign::OakSign(12).ID: return 3101;
+ case OakSign::OakSign(13).ID: return 3103;
+ case OakSign::OakSign(14).ID: return 3105;
+ case OakSign::OakSign(15).ID: return 3107;
+ case SkeletonSkull::SkeletonSkull(0).ID: return 5452;
+ case SkeletonSkull::SkeletonSkull(1).ID: return 5453;
+ case SkeletonSkull::SkeletonSkull(2).ID: return 5454;
+ case SkeletonSkull::SkeletonSkull(3).ID: return 5455;
+ case SkeletonSkull::SkeletonSkull(4).ID: return 5456;
+ case SkeletonSkull::SkeletonSkull(5).ID: return 5457;
+ case SkeletonSkull::SkeletonSkull(6).ID: return 5458;
+ case SkeletonSkull::SkeletonSkull(7).ID: return 5459;
+ case SkeletonSkull::SkeletonSkull(8).ID: return 5460;
+ case SkeletonSkull::SkeletonSkull(9).ID: return 5461;
+ case SkeletonSkull::SkeletonSkull(10).ID: return 5462;
+ case SkeletonSkull::SkeletonSkull(11).ID: return 5463;
+ case SkeletonSkull::SkeletonSkull(12).ID: return 5464;
+ case SkeletonSkull::SkeletonSkull(13).ID: return 5465;
+ case SkeletonSkull::SkeletonSkull(14).ID: return 5466;
+ case SkeletonSkull::SkeletonSkull(15).ID: return 5467;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM).ID: return 5448;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP).ID: return 5449;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XM).ID: return 5450;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XP).ID: return 5451;
+ case SlimeBlock::SlimeBlock().ID: return 6493;
+ case SmoothQuartz::SmoothQuartz().ID: return 7356;
+ case SmoothRedSandstone::SmoothRedSandstone().ID: return 7357;
+ case SmoothSandstone::SmoothSandstone().ID: return 7355;
+ case SmoothStone::SmoothStone().ID: return 7354;
+ case Snow::Snow(1).ID: return 3416;
+ case Snow::Snow(2).ID: return 3417;
+ case Snow::Snow(3).ID: return 3418;
+ case Snow::Snow(4).ID: return 3419;
+ case Snow::Snow(5).ID: return 3420;
+ case Snow::Snow(6).ID: return 3421;
+ case Snow::Snow(7).ID: return 3422;
+ case Snow::Snow(8).ID: return 3423;
+ case SnowBlock::SnowBlock().ID: return 3425;
+ case SoulSand::SoulSand().ID: return 3495;
+ case Spawner::Spawner().ID: return 1648;
+ case Sponge::Sponge().ID: return 228;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5328;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5329;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5330;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5331;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5332;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5333;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5334;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5335;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5336;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5337;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5338;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5339;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5340;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5341;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5342;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5343;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5344;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5345;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5346;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5347;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5348;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5349;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5350;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5351;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 7678;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 7679;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 7680;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 7681;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 7682;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 7683;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 7684;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 7685;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 7686;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 7687;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 7688;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 7689;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 7690;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 7691;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 7692;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 7693;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 7694;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 7695;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 7696;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 7697;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 7698;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 7699;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 7700;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 7701;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 7702;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 7703;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 7704;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 7705;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 7706;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 7707;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 7708;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 7709;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 7710;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 7711;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 7712;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 7713;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 7714;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 7715;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 7716;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 7717;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 7718;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 7719;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 7720;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 7721;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 7722;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 7723;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 7724;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 7725;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 7726;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 7727;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 7728;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 7729;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 7730;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 7731;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 7732;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 7733;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 7734;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 7735;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 7736;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 7737;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 7738;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 7739;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 7740;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 7741;
+ case SpruceFence::SpruceFence(true, true, true, true).ID: return 7520;
+ case SpruceFence::SpruceFence(true, true, true, false).ID: return 7521;
+ case SpruceFence::SpruceFence(true, true, false, true).ID: return 7524;
+ case SpruceFence::SpruceFence(true, true, false, false).ID: return 7525;
+ case SpruceFence::SpruceFence(true, false, true, true).ID: return 7528;
+ case SpruceFence::SpruceFence(true, false, true, false).ID: return 7529;
+ case SpruceFence::SpruceFence(true, false, false, true).ID: return 7532;
+ case SpruceFence::SpruceFence(true, false, false, false).ID: return 7533;
+ case SpruceFence::SpruceFence(false, true, true, true).ID: return 7536;
+ case SpruceFence::SpruceFence(false, true, true, false).ID: return 7537;
+ case SpruceFence::SpruceFence(false, true, false, true).ID: return 7540;
+ case SpruceFence::SpruceFence(false, true, false, false).ID: return 7541;
+ case SpruceFence::SpruceFence(false, false, true, true).ID: return 7544;
+ case SpruceFence::SpruceFence(false, false, true, false).ID: return 7545;
+ case SpruceFence::SpruceFence(false, false, false, true).ID: return 7548;
+ case SpruceFence::SpruceFence(false, false, false, false).ID: return 7549;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7358;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7359;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7360;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7361;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7362;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7363;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7364;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7365;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7366;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7367;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7368;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7369;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7370;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7371;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7372;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7373;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7374;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7375;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7376;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7377;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7378;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7379;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7380;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7381;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7382;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7383;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7384;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7385;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7386;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7387;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7388;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7389;
+ case SpruceLeaves::SpruceLeaves(1, true).ID: return 158;
+ case SpruceLeaves::SpruceLeaves(1, false).ID: return 159;
+ case SpruceLeaves::SpruceLeaves(2, true).ID: return 160;
+ case SpruceLeaves::SpruceLeaves(2, false).ID: return 161;
+ case SpruceLeaves::SpruceLeaves(3, true).ID: return 162;
+ case SpruceLeaves::SpruceLeaves(3, false).ID: return 163;
+ case SpruceLeaves::SpruceLeaves(4, true).ID: return 164;
+ case SpruceLeaves::SpruceLeaves(4, false).ID: return 165;
+ case SpruceLeaves::SpruceLeaves(5, true).ID: return 166;
+ case SpruceLeaves::SpruceLeaves(5, false).ID: return 167;
+ case SpruceLeaves::SpruceLeaves(6, true).ID: return 168;
+ case SpruceLeaves::SpruceLeaves(6, false).ID: return 169;
+ case SpruceLeaves::SpruceLeaves(7, true).ID: return 170;
+ case SpruceLeaves::SpruceLeaves(7, false).ID: return 171;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::X).ID: return 75;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::Y).ID: return 76;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::Z).ID: return 77;
+ case SprucePlanks::SprucePlanks().ID: return 16;
+ case SprucePressurePlate::SprucePressurePlate(true).ID: return 3370;
+ case SprucePressurePlate::SprucePressurePlate(false).ID: return 3371;
+ case SpruceSapling::SpruceSapling(0).ID: return 23;
+ case SpruceSapling::SpruceSapling(1).ID: return 24;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Top).ID: return 7265;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Bottom).ID: return 7267;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Double).ID: return 7269;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 4886;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 4888;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 4890;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 4892;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 4894;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 4896;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 4898;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 4900;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 4902;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 4904;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 4906;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 4908;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 4910;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 4912;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 4914;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 4916;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 4918;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 4920;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 4922;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 4924;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 4926;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 4928;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 4930;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 4932;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 4934;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 4936;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 4938;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 4940;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 4942;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 4944;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 4946;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 4948;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 4950;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 4952;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 4954;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 4956;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 4958;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 4960;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 4962;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 4964;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, true).ID: return 3659;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, false).ID: return 3661;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, true).ID: return 3663;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, false).ID: return 3665;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, true).ID: return 3667;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, false).ID: return 3669;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, true).ID: return 3671;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, false).ID: return 3673;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, true).ID: return 3675;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, false).ID: return 3677;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, true).ID: return 3679;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, false).ID: return 3681;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, true).ID: return 3683;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, false).ID: return 3685;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, true).ID: return 3687;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, false).ID: return 3689;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, true).ID: return 3691;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, false).ID: return 3693;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, true).ID: return 3695;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, false).ID: return 3697;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, true).ID: return 3699;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, false).ID: return 3701;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, true).ID: return 3703;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, false).ID: return 3705;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, true).ID: return 3707;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, false).ID: return 3709;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, true).ID: return 3711;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, false).ID: return 3713;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, true).ID: return 3715;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, false).ID: return 3717;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, true).ID: return 3719;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, false).ID: return 3721;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::X).ID: return 111;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::Y).ID: return 112;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::Z).ID: return 113;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZM).ID: return 1028;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XP).ID: return 1029;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZP).ID: return 1030;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XM).ID: return 1031;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YP).ID: return 1032;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YM).ID: return 1033;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZM).ID: return 1034;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XP).ID: return 1035;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZP).ID: return 1036;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XM).ID: return 1037;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YP).ID: return 1038;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YM).ID: return 1039;
+ case Stone::Stone().ID: return 1;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Top).ID: return 7325;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Bottom).ID: return 7327;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double).ID: return 7329;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4414;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4416;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4418;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4420;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4422;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4424;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4426;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4428;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4430;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4432;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4434;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4436;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4438;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4440;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4442;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4444;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4446;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4448;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4450;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4452;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4454;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4456;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4458;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4460;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4462;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4464;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4466;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4468;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4470;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4472;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4474;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4476;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4478;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4480;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4482;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4484;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4486;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4488;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4490;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4492;
+ case StoneBricks::StoneBricks().ID: return 3984;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3392;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3393;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3394;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3395;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 3396;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 3397;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 3398;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 3399;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3400;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3401;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3402;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3403;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 3404;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 3405;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 3406;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 3407;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3408;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3409;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3410;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3411;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 3412;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 3413;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 3414;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 3415;
+ case StonePressurePlate::StonePressurePlate(true).ID: return 3302;
+ case StonePressurePlate::StonePressurePlate(false).ID: return 3303;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Top).ID: return 7295;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Bottom).ID: return 7297;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Double).ID: return 7299;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::X).ID: return 99;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Y).ID: return 100;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Z).ID: return 101;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::X).ID: return 138;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Y).ID: return 139;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Z).ID: return 140;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::X).ID: return 93;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Y).ID: return 94;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Z).ID: return 95;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::X).ID: return 132;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Y).ID: return 133;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Z).ID: return 134;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::X).ID: return 102;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Y).ID: return 103;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Z).ID: return 104;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::X).ID: return 141;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Y).ID: return 142;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Z).ID: return 143;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::X).ID: return 96;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Y).ID: return 97;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Z).ID: return 98;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::X).ID: return 135;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Y).ID: return 136;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Z).ID: return 137;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::X).ID: return 105;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Y).ID: return 106;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Z).ID: return 107;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::X).ID: return 126;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Y).ID: return 127;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Z).ID: return 128;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::X).ID: return 90;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Y).ID: return 91;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Z).ID: return 92;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::X).ID: return 129;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Y).ID: return 130;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Z).ID: return 131;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Save).ID: return 8595;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Load).ID: return 8596;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Corner).ID: return 8597;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Data).ID: return 8598;
+ case StructureVoid::StructureVoid().ID: return 8199;
+ case SugarCane::SugarCane(0).ID: return 3443;
+ case SugarCane::SugarCane(1).ID: return 3444;
+ case SugarCane::SugarCane(2).ID: return 3445;
+ case SugarCane::SugarCane(3).ID: return 3446;
+ case SugarCane::SugarCane(4).ID: return 3447;
+ case SugarCane::SugarCane(5).ID: return 3448;
+ case SugarCane::SugarCane(6).ID: return 3449;
+ case SugarCane::SugarCane(7).ID: return 3450;
+ case SugarCane::SugarCane(8).ID: return 3451;
+ case SugarCane::SugarCane(9).ID: return 3452;
+ case SugarCane::SugarCane(10).ID: return 3453;
+ case SugarCane::SugarCane(11).ID: return 3454;
+ case SugarCane::SugarCane(12).ID: return 3455;
+ case SugarCane::SugarCane(13).ID: return 3456;
+ case SugarCane::SugarCane(14).ID: return 3457;
+ case SugarCane::SugarCane(15).ID: return 3458;
+ case Sunflower::Sunflower(Sunflower::Half::Upper).ID: return 6843;
+ case Sunflower::Sunflower(Sunflower::Half::Lower).ID: return 6844;
+ case TNT::TNT(true).ID: return 1126;
+ case TNT::TNT(false).ID: return 1127;
+ case TallGrass::TallGrass(TallGrass::Half::Upper).ID: return 6851;
+ case TallGrass::TallGrass(TallGrass::Half::Lower).ID: return 6852;
+ case TallSeagrass::TallSeagrass(TallSeagrass::Half::Upper).ID: return 1045;
+ case TallSeagrass::TallSeagrass(TallSeagrass::Half::Lower).ID: return 1046;
+ case Terracotta::Terracotta().ID: return 6840;
+ case Torch::Torch().ID: return 1131;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Single).ID: return 5581;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Left).ID: return 5583;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Right).ID: return 5585;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Single).ID: return 5587;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Left).ID: return 5589;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Right).ID: return 5591;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Single).ID: return 5593;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Left).ID: return 5595;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Right).ID: return 5597;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Single).ID: return 5599;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Left).ID: return 5601;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Right).ID: return 5603;
+ case Tripwire::Tripwire(true, true, true, true, true, true, true).ID: return 4756;
+ case Tripwire::Tripwire(true, true, true, true, true, true, false).ID: return 4757;
+ case Tripwire::Tripwire(true, true, true, true, true, false, true).ID: return 4758;
+ case Tripwire::Tripwire(true, true, true, true, true, false, false).ID: return 4759;
+ case Tripwire::Tripwire(true, true, true, true, false, true, true).ID: return 4760;
+ case Tripwire::Tripwire(true, true, true, true, false, true, false).ID: return 4761;
+ case Tripwire::Tripwire(true, true, true, true, false, false, true).ID: return 4762;
+ case Tripwire::Tripwire(true, true, true, true, false, false, false).ID: return 4763;
+ case Tripwire::Tripwire(true, true, true, false, true, true, true).ID: return 4764;
+ case Tripwire::Tripwire(true, true, true, false, true, true, false).ID: return 4765;
+ case Tripwire::Tripwire(true, true, true, false, true, false, true).ID: return 4766;
+ case Tripwire::Tripwire(true, true, true, false, true, false, false).ID: return 4767;
+ case Tripwire::Tripwire(true, true, true, false, false, true, true).ID: return 4768;
+ case Tripwire::Tripwire(true, true, true, false, false, true, false).ID: return 4769;
+ case Tripwire::Tripwire(true, true, true, false, false, false, true).ID: return 4770;
+ case Tripwire::Tripwire(true, true, true, false, false, false, false).ID: return 4771;
+ case Tripwire::Tripwire(true, true, false, true, true, true, true).ID: return 4772;
+ case Tripwire::Tripwire(true, true, false, true, true, true, false).ID: return 4773;
+ case Tripwire::Tripwire(true, true, false, true, true, false, true).ID: return 4774;
+ case Tripwire::Tripwire(true, true, false, true, true, false, false).ID: return 4775;
+ case Tripwire::Tripwire(true, true, false, true, false, true, true).ID: return 4776;
+ case Tripwire::Tripwire(true, true, false, true, false, true, false).ID: return 4777;
+ case Tripwire::Tripwire(true, true, false, true, false, false, true).ID: return 4778;
+ case Tripwire::Tripwire(true, true, false, true, false, false, false).ID: return 4779;
+ case Tripwire::Tripwire(true, true, false, false, true, true, true).ID: return 4780;
+ case Tripwire::Tripwire(true, true, false, false, true, true, false).ID: return 4781;
+ case Tripwire::Tripwire(true, true, false, false, true, false, true).ID: return 4782;
+ case Tripwire::Tripwire(true, true, false, false, true, false, false).ID: return 4783;
+ case Tripwire::Tripwire(true, true, false, false, false, true, true).ID: return 4784;
+ case Tripwire::Tripwire(true, true, false, false, false, true, false).ID: return 4785;
+ case Tripwire::Tripwire(true, true, false, false, false, false, true).ID: return 4786;
+ case Tripwire::Tripwire(true, true, false, false, false, false, false).ID: return 4787;
+ case Tripwire::Tripwire(true, false, true, true, true, true, true).ID: return 4788;
+ case Tripwire::Tripwire(true, false, true, true, true, true, false).ID: return 4789;
+ case Tripwire::Tripwire(true, false, true, true, true, false, true).ID: return 4790;
+ case Tripwire::Tripwire(true, false, true, true, true, false, false).ID: return 4791;
+ case Tripwire::Tripwire(true, false, true, true, false, true, true).ID: return 4792;
+ case Tripwire::Tripwire(true, false, true, true, false, true, false).ID: return 4793;
+ case Tripwire::Tripwire(true, false, true, true, false, false, true).ID: return 4794;
+ case Tripwire::Tripwire(true, false, true, true, false, false, false).ID: return 4795;
+ case Tripwire::Tripwire(true, false, true, false, true, true, true).ID: return 4796;
+ case Tripwire::Tripwire(true, false, true, false, true, true, false).ID: return 4797;
+ case Tripwire::Tripwire(true, false, true, false, true, false, true).ID: return 4798;
+ case Tripwire::Tripwire(true, false, true, false, true, false, false).ID: return 4799;
+ case Tripwire::Tripwire(true, false, true, false, false, true, true).ID: return 4800;
+ case Tripwire::Tripwire(true, false, true, false, false, true, false).ID: return 4801;
+ case Tripwire::Tripwire(true, false, true, false, false, false, true).ID: return 4802;
+ case Tripwire::Tripwire(true, false, true, false, false, false, false).ID: return 4803;
+ case Tripwire::Tripwire(true, false, false, true, true, true, true).ID: return 4804;
+ case Tripwire::Tripwire(true, false, false, true, true, true, false).ID: return 4805;
+ case Tripwire::Tripwire(true, false, false, true, true, false, true).ID: return 4806;
+ case Tripwire::Tripwire(true, false, false, true, true, false, false).ID: return 4807;
+ case Tripwire::Tripwire(true, false, false, true, false, true, true).ID: return 4808;
+ case Tripwire::Tripwire(true, false, false, true, false, true, false).ID: return 4809;
+ case Tripwire::Tripwire(true, false, false, true, false, false, true).ID: return 4810;
+ case Tripwire::Tripwire(true, false, false, true, false, false, false).ID: return 4811;
+ case Tripwire::Tripwire(true, false, false, false, true, true, true).ID: return 4812;
+ case Tripwire::Tripwire(true, false, false, false, true, true, false).ID: return 4813;
+ case Tripwire::Tripwire(true, false, false, false, true, false, true).ID: return 4814;
+ case Tripwire::Tripwire(true, false, false, false, true, false, false).ID: return 4815;
+ case Tripwire::Tripwire(true, false, false, false, false, true, true).ID: return 4816;
+ case Tripwire::Tripwire(true, false, false, false, false, true, false).ID: return 4817;
+ case Tripwire::Tripwire(true, false, false, false, false, false, true).ID: return 4818;
+ case Tripwire::Tripwire(true, false, false, false, false, false, false).ID: return 4819;
+ case Tripwire::Tripwire(false, true, true, true, true, true, true).ID: return 4820;
+ case Tripwire::Tripwire(false, true, true, true, true, true, false).ID: return 4821;
+ case Tripwire::Tripwire(false, true, true, true, true, false, true).ID: return 4822;
+ case Tripwire::Tripwire(false, true, true, true, true, false, false).ID: return 4823;
+ case Tripwire::Tripwire(false, true, true, true, false, true, true).ID: return 4824;
+ case Tripwire::Tripwire(false, true, true, true, false, true, false).ID: return 4825;
+ case Tripwire::Tripwire(false, true, true, true, false, false, true).ID: return 4826;
+ case Tripwire::Tripwire(false, true, true, true, false, false, false).ID: return 4827;
+ case Tripwire::Tripwire(false, true, true, false, true, true, true).ID: return 4828;
+ case Tripwire::Tripwire(false, true, true, false, true, true, false).ID: return 4829;
+ case Tripwire::Tripwire(false, true, true, false, true, false, true).ID: return 4830;
+ case Tripwire::Tripwire(false, true, true, false, true, false, false).ID: return 4831;
+ case Tripwire::Tripwire(false, true, true, false, false, true, true).ID: return 4832;
+ case Tripwire::Tripwire(false, true, true, false, false, true, false).ID: return 4833;
+ case Tripwire::Tripwire(false, true, true, false, false, false, true).ID: return 4834;
+ case Tripwire::Tripwire(false, true, true, false, false, false, false).ID: return 4835;
+ case Tripwire::Tripwire(false, true, false, true, true, true, true).ID: return 4836;
+ case Tripwire::Tripwire(false, true, false, true, true, true, false).ID: return 4837;
+ case Tripwire::Tripwire(false, true, false, true, true, false, true).ID: return 4838;
+ case Tripwire::Tripwire(false, true, false, true, true, false, false).ID: return 4839;
+ case Tripwire::Tripwire(false, true, false, true, false, true, true).ID: return 4840;
+ case Tripwire::Tripwire(false, true, false, true, false, true, false).ID: return 4841;
+ case Tripwire::Tripwire(false, true, false, true, false, false, true).ID: return 4842;
+ case Tripwire::Tripwire(false, true, false, true, false, false, false).ID: return 4843;
+ case Tripwire::Tripwire(false, true, false, false, true, true, true).ID: return 4844;
+ case Tripwire::Tripwire(false, true, false, false, true, true, false).ID: return 4845;
+ case Tripwire::Tripwire(false, true, false, false, true, false, true).ID: return 4846;
+ case Tripwire::Tripwire(false, true, false, false, true, false, false).ID: return 4847;
+ case Tripwire::Tripwire(false, true, false, false, false, true, true).ID: return 4848;
+ case Tripwire::Tripwire(false, true, false, false, false, true, false).ID: return 4849;
+ case Tripwire::Tripwire(false, true, false, false, false, false, true).ID: return 4850;
+ case Tripwire::Tripwire(false, true, false, false, false, false, false).ID: return 4851;
+ case Tripwire::Tripwire(false, false, true, true, true, true, true).ID: return 4852;
+ case Tripwire::Tripwire(false, false, true, true, true, true, false).ID: return 4853;
+ case Tripwire::Tripwire(false, false, true, true, true, false, true).ID: return 4854;
+ case Tripwire::Tripwire(false, false, true, true, true, false, false).ID: return 4855;
+ case Tripwire::Tripwire(false, false, true, true, false, true, true).ID: return 4856;
+ case Tripwire::Tripwire(false, false, true, true, false, true, false).ID: return 4857;
+ case Tripwire::Tripwire(false, false, true, true, false, false, true).ID: return 4858;
+ case Tripwire::Tripwire(false, false, true, true, false, false, false).ID: return 4859;
+ case Tripwire::Tripwire(false, false, true, false, true, true, true).ID: return 4860;
+ case Tripwire::Tripwire(false, false, true, false, true, true, false).ID: return 4861;
+ case Tripwire::Tripwire(false, false, true, false, true, false, true).ID: return 4862;
+ case Tripwire::Tripwire(false, false, true, false, true, false, false).ID: return 4863;
+ case Tripwire::Tripwire(false, false, true, false, false, true, true).ID: return 4864;
+ case Tripwire::Tripwire(false, false, true, false, false, true, false).ID: return 4865;
+ case Tripwire::Tripwire(false, false, true, false, false, false, true).ID: return 4866;
+ case Tripwire::Tripwire(false, false, true, false, false, false, false).ID: return 4867;
+ case Tripwire::Tripwire(false, false, false, true, true, true, true).ID: return 4868;
+ case Tripwire::Tripwire(false, false, false, true, true, true, false).ID: return 4869;
+ case Tripwire::Tripwire(false, false, false, true, true, false, true).ID: return 4870;
+ case Tripwire::Tripwire(false, false, false, true, true, false, false).ID: return 4871;
+ case Tripwire::Tripwire(false, false, false, true, false, true, true).ID: return 4872;
+ case Tripwire::Tripwire(false, false, false, true, false, true, false).ID: return 4873;
+ case Tripwire::Tripwire(false, false, false, true, false, false, true).ID: return 4874;
+ case Tripwire::Tripwire(false, false, false, true, false, false, false).ID: return 4875;
+ case Tripwire::Tripwire(false, false, false, false, true, true, true).ID: return 4876;
+ case Tripwire::Tripwire(false, false, false, false, true, true, false).ID: return 4877;
+ case Tripwire::Tripwire(false, false, false, false, true, false, true).ID: return 4878;
+ case Tripwire::Tripwire(false, false, false, false, true, false, false).ID: return 4879;
+ case Tripwire::Tripwire(false, false, false, false, false, true, true).ID: return 4880;
+ case Tripwire::Tripwire(false, false, false, false, false, true, false).ID: return 4881;
+ case Tripwire::Tripwire(false, false, false, false, false, false, true).ID: return 4882;
+ case Tripwire::Tripwire(false, false, false, false, false, false, false).ID: return 4883;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, true).ID: return 4740;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, false).ID: return 4741;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, true).ID: return 4742;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, false).ID: return 4743;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, true).ID: return 4744;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, false).ID: return 4745;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, true).ID: return 4746;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, false).ID: return 4747;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, true).ID: return 4748;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, false).ID: return 4749;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, true).ID: return 4750;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, false).ID: return 4751;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, true).ID: return 4752;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, false).ID: return 4753;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, true).ID: return 4754;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, false).ID: return 4755;
+ case TubeCoral::TubeCoral().ID: return 8471;
+ case TubeCoralBlock::TubeCoralBlock().ID: return 8455;
+ case TubeCoralFan::TubeCoralFan().ID: return 8571;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 8521;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 8523;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 8525;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 8527;
+ case TurtleEgg::TurtleEgg(1, 0).ID: return 8438;
+ case TurtleEgg::TurtleEgg(1, 1).ID: return 8439;
+ case TurtleEgg::TurtleEgg(1, 2).ID: return 8440;
+ case TurtleEgg::TurtleEgg(2, 0).ID: return 8441;
+ case TurtleEgg::TurtleEgg(2, 1).ID: return 8442;
+ case TurtleEgg::TurtleEgg(2, 2).ID: return 8443;
+ case TurtleEgg::TurtleEgg(3, 0).ID: return 8444;
+ case TurtleEgg::TurtleEgg(3, 1).ID: return 8445;
+ case TurtleEgg::TurtleEgg(3, 2).ID: return 8446;
+ case TurtleEgg::TurtleEgg(4, 0).ID: return 8447;
+ case TurtleEgg::TurtleEgg(4, 1).ID: return 8448;
+ case TurtleEgg::TurtleEgg(4, 2).ID: return 8449;
+ case Vine::Vine(true, true, true, true, true).ID: return 4269;
+ case Vine::Vine(true, true, true, true, false).ID: return 4270;
+ case Vine::Vine(true, true, true, false, true).ID: return 4271;
+ case Vine::Vine(true, true, true, false, false).ID: return 4272;
+ case Vine::Vine(true, true, false, true, true).ID: return 4273;
+ case Vine::Vine(true, true, false, true, false).ID: return 4274;
+ case Vine::Vine(true, true, false, false, true).ID: return 4275;
+ case Vine::Vine(true, true, false, false, false).ID: return 4276;
+ case Vine::Vine(true, false, true, true, true).ID: return 4277;
+ case Vine::Vine(true, false, true, true, false).ID: return 4278;
+ case Vine::Vine(true, false, true, false, true).ID: return 4279;
+ case Vine::Vine(true, false, true, false, false).ID: return 4280;
+ case Vine::Vine(true, false, false, true, true).ID: return 4281;
+ case Vine::Vine(true, false, false, true, false).ID: return 4282;
+ case Vine::Vine(true, false, false, false, true).ID: return 4283;
+ case Vine::Vine(true, false, false, false, false).ID: return 4284;
+ case Vine::Vine(false, true, true, true, true).ID: return 4285;
+ case Vine::Vine(false, true, true, true, false).ID: return 4286;
+ case Vine::Vine(false, true, true, false, true).ID: return 4287;
+ case Vine::Vine(false, true, true, false, false).ID: return 4288;
+ case Vine::Vine(false, true, false, true, true).ID: return 4289;
+ case Vine::Vine(false, true, false, true, false).ID: return 4290;
+ case Vine::Vine(false, true, false, false, true).ID: return 4291;
+ case Vine::Vine(false, true, false, false, false).ID: return 4292;
+ case Vine::Vine(false, false, true, true, true).ID: return 4293;
+ case Vine::Vine(false, false, true, true, false).ID: return 4294;
+ case Vine::Vine(false, false, true, false, true).ID: return 4295;
+ case Vine::Vine(false, false, true, false, false).ID: return 4296;
+ case Vine::Vine(false, false, false, true, true).ID: return 4297;
+ case Vine::Vine(false, false, false, true, false).ID: return 4298;
+ case Vine::Vine(false, false, false, false, true).ID: return 4299;
+ case Vine::Vine(false, false, false, false, false).ID: return 4300;
+ case VoidAir::VoidAir().ID: return 8591;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3271;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3273;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3275;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3277;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZM).ID: return 1132;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZP).ID: return 1133;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XM).ID: return 1134;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XP).ID: return 1135;
+ case Water::Water(0).ID: return 34;
+ case Water::Water(1).ID: return 35;
+ case Water::Water(2).ID: return 36;
+ case Water::Water(3).ID: return 37;
+ case Water::Water(4).ID: return 38;
+ case Water::Water(5).ID: return 39;
+ case Water::Water(6).ID: return 40;
+ case Water::Water(7).ID: return 41;
+ case Water::Water(8).ID: return 42;
+ case Water::Water(9).ID: return 43;
+ case Water::Water(10).ID: return 44;
+ case Water::Water(11).ID: return 45;
+ case Water::Water(12).ID: return 46;
+ case Water::Water(13).ID: return 47;
+ case Water::Water(14).ID: return 48;
+ case Water::Water(15).ID: return 49;
+ case WetSponge::WetSponge().ID: return 229;
+ case Wheat::Wheat(0).ID: return 3052;
+ case Wheat::Wheat(1).ID: return 3053;
+ case Wheat::Wheat(2).ID: return 3054;
+ case Wheat::Wheat(3).ID: return 3055;
+ case Wheat::Wheat(4).ID: return 3056;
+ case Wheat::Wheat(5).ID: return 3057;
+ case Wheat::Wheat(6).ID: return 3058;
+ case Wheat::Wheat(7).ID: return 3059;
+ case WhiteBanner::WhiteBanner(0).ID: return 6855;
+ case WhiteBanner::WhiteBanner(1).ID: return 6856;
+ case WhiteBanner::WhiteBanner(2).ID: return 6857;
+ case WhiteBanner::WhiteBanner(3).ID: return 6858;
+ case WhiteBanner::WhiteBanner(4).ID: return 6859;
+ case WhiteBanner::WhiteBanner(5).ID: return 6860;
+ case WhiteBanner::WhiteBanner(6).ID: return 6861;
+ case WhiteBanner::WhiteBanner(7).ID: return 6862;
+ case WhiteBanner::WhiteBanner(8).ID: return 6863;
+ case WhiteBanner::WhiteBanner(9).ID: return 6864;
+ case WhiteBanner::WhiteBanner(10).ID: return 6865;
+ case WhiteBanner::WhiteBanner(11).ID: return 6866;
+ case WhiteBanner::WhiteBanner(12).ID: return 6867;
+ case WhiteBanner::WhiteBanner(13).ID: return 6868;
+ case WhiteBanner::WhiteBanner(14).ID: return 6869;
+ case WhiteBanner::WhiteBanner(15).ID: return 6870;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Head).ID: return 748;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Foot).ID: return 749;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Head).ID: return 750;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Foot).ID: return 751;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Head).ID: return 752;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Foot).ID: return 753;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Head).ID: return 754;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Foot).ID: return 755;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Head).ID: return 756;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Foot).ID: return 757;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Head).ID: return 758;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Foot).ID: return 759;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Head).ID: return 760;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Foot).ID: return 761;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Head).ID: return 762;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Foot).ID: return 763;
+ case WhiteCarpet::WhiteCarpet().ID: return 6824;
+ case WhiteConcrete::WhiteConcrete().ID: return 8378;
+ case WhiteConcretePowder::WhiteConcretePowder().ID: return 8394;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8314;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8315;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8316;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8317;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8218;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8219;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8220;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8221;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8222;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8223;
+ case WhiteStainedGlass::WhiteStainedGlass().ID: return 3578;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, true).ID: return 5823;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, false).ID: return 5824;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, true).ID: return 5827;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, false).ID: return 5828;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, true).ID: return 5831;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, false).ID: return 5832;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, true).ID: return 5835;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, false).ID: return 5836;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, true).ID: return 5839;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, false).ID: return 5840;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, true).ID: return 5843;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, false).ID: return 5844;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, true).ID: return 5847;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, false).ID: return 5848;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, true).ID: return 5851;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, false).ID: return 5852;
+ case WhiteTerracotta::WhiteTerracotta().ID: return 5805;
+ case WhiteTulip::WhiteTulip().ID: return 1118;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7111;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7112;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7113;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7114;
+ case WhiteWool::WhiteWool().ID: return 1083;
+ case WitherSkeletonSkull::WitherSkeletonSkull(0).ID: return 5472;
+ case WitherSkeletonSkull::WitherSkeletonSkull(1).ID: return 5473;
+ case WitherSkeletonSkull::WitherSkeletonSkull(2).ID: return 5474;
+ case WitherSkeletonSkull::WitherSkeletonSkull(3).ID: return 5475;
+ case WitherSkeletonSkull::WitherSkeletonSkull(4).ID: return 5476;
+ case WitherSkeletonSkull::WitherSkeletonSkull(5).ID: return 5477;
+ case WitherSkeletonSkull::WitherSkeletonSkull(6).ID: return 5478;
+ case WitherSkeletonSkull::WitherSkeletonSkull(7).ID: return 5479;
+ case WitherSkeletonSkull::WitherSkeletonSkull(8).ID: return 5480;
+ case WitherSkeletonSkull::WitherSkeletonSkull(9).ID: return 5481;
+ case WitherSkeletonSkull::WitherSkeletonSkull(10).ID: return 5482;
+ case WitherSkeletonSkull::WitherSkeletonSkull(11).ID: return 5483;
+ case WitherSkeletonSkull::WitherSkeletonSkull(12).ID: return 5484;
+ case WitherSkeletonSkull::WitherSkeletonSkull(13).ID: return 5485;
+ case WitherSkeletonSkull::WitherSkeletonSkull(14).ID: return 5486;
+ case WitherSkeletonSkull::WitherSkeletonSkull(15).ID: return 5487;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM).ID: return 5468;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP).ID: return 5469;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XM).ID: return 5470;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XP).ID: return 5471;
+ case YellowBanner::YellowBanner(0).ID: return 6919;
+ case YellowBanner::YellowBanner(1).ID: return 6920;
+ case YellowBanner::YellowBanner(2).ID: return 6921;
+ case YellowBanner::YellowBanner(3).ID: return 6922;
+ case YellowBanner::YellowBanner(4).ID: return 6923;
+ case YellowBanner::YellowBanner(5).ID: return 6924;
+ case YellowBanner::YellowBanner(6).ID: return 6925;
+ case YellowBanner::YellowBanner(7).ID: return 6926;
+ case YellowBanner::YellowBanner(8).ID: return 6927;
+ case YellowBanner::YellowBanner(9).ID: return 6928;
+ case YellowBanner::YellowBanner(10).ID: return 6929;
+ case YellowBanner::YellowBanner(11).ID: return 6930;
+ case YellowBanner::YellowBanner(12).ID: return 6931;
+ case YellowBanner::YellowBanner(13).ID: return 6932;
+ case YellowBanner::YellowBanner(14).ID: return 6933;
+ case YellowBanner::YellowBanner(15).ID: return 6934;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Head).ID: return 812;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Foot).ID: return 813;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Head).ID: return 814;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Foot).ID: return 815;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Head).ID: return 816;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Foot).ID: return 817;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Head).ID: return 818;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Foot).ID: return 819;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Head).ID: return 820;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Foot).ID: return 821;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Head).ID: return 822;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Foot).ID: return 823;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Head).ID: return 824;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Foot).ID: return 825;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Head).ID: return 826;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Foot).ID: return 827;
+ case YellowCarpet::YellowCarpet().ID: return 6828;
+ case YellowConcrete::YellowConcrete().ID: return 8382;
+ case YellowConcretePowder::YellowConcretePowder().ID: return 8398;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8330;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8331;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8332;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8333;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8242;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8243;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8244;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8245;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8246;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8247;
+ case YellowStainedGlass::YellowStainedGlass().ID: return 3582;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, true).ID: return 5951;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, false).ID: return 5952;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, true).ID: return 5955;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, false).ID: return 5956;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, true).ID: return 5959;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, false).ID: return 5960;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, true).ID: return 5963;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, false).ID: return 5964;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, true).ID: return 5967;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, false).ID: return 5968;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, true).ID: return 5971;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, false).ID: return 5972;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, true).ID: return 5975;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, false).ID: return 5976;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, true).ID: return 5979;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, false).ID: return 5980;
+ case YellowTerracotta::YellowTerracotta().ID: return 5809;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7127;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7128;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7129;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7130;
+ case YellowWool::YellowWool().ID: return 1087;
+ case ZombieHead::ZombieHead(0).ID: return 5492;
+ case ZombieHead::ZombieHead(1).ID: return 5493;
+ case ZombieHead::ZombieHead(2).ID: return 5494;
+ case ZombieHead::ZombieHead(3).ID: return 5495;
+ case ZombieHead::ZombieHead(4).ID: return 5496;
+ case ZombieHead::ZombieHead(5).ID: return 5497;
+ case ZombieHead::ZombieHead(6).ID: return 5498;
+ case ZombieHead::ZombieHead(7).ID: return 5499;
+ case ZombieHead::ZombieHead(8).ID: return 5500;
+ case ZombieHead::ZombieHead(9).ID: return 5501;
+ case ZombieHead::ZombieHead(10).ID: return 5502;
+ case ZombieHead::ZombieHead(11).ID: return 5503;
+ case ZombieHead::ZombieHead(12).ID: return 5504;
+ case ZombieHead::ZombieHead(13).ID: return 5505;
+ case ZombieHead::ZombieHead(14).ID: return 5506;
+ case ZombieHead::ZombieHead(15).ID: return 5507;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 5488;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 5489;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 5490;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 5491;
default: return 0;
}
}
- UInt32 FromItem(const Item ID)
+ UInt32 From(const Item ID)
{
switch (ID)
{
diff --git a/src/Protocol/Palettes/Palette_1_13_1.h b/src/Protocol/Palettes/Palette_1_13_1.h
index 2e01fef49..02085aa2b 100644
--- a/src/Protocol/Palettes/Palette_1_13_1.h
+++ b/src/Protocol/Palettes/Palette_1_13_1.h
@@ -1,12 +1,13 @@
#pragma once
-#include "../../Registries/Items.h"
-#include "../../Registries/Statistics.h"
+#include "BlockState.h"
+#include "Registries/Items.h"
+#include "Registries/Statistics.h"
namespace Palette_1_13_1
{
- UInt32 FromBlock(short ID);
- UInt32 FromItem(Item ID);
+ UInt32 From(BlockState Block);
+ UInt32 From(Item ID);
UInt32 From(Statistic ID);
Item ToItem(UInt32 ID);
}
diff --git a/src/Protocol/Palettes/Palette_1_14.cpp b/src/Protocol/Palettes/Palette_1_14.cpp
index 29e9fcef9..02c871331 100644
--- a/src/Protocol/Palettes/Palette_1_14.cpp
+++ b/src/Protocol/Palettes/Palette_1_14.cpp
@@ -1,8626 +1,8626 @@
#include "Globals.h"
#include "Palette_1_14.h"
-#include "../../Registries/Blocks.h"
+#include "Registries/BlockStates.h"
namespace Palette_1_14
{
- UInt32 FromBlock(const short ID)
+ UInt32 From(const BlockState Block)
{
using namespace Block;
- switch (ID)
+ switch (Block.ID)
{
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5906;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5907;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5908;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5909;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5910;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5911;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5912;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5913;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5914;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5915;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5916;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5917;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5918;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5919;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5920;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5921;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5922;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5923;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5924;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5925;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5926;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5927;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5928;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5929;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8394;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8395;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8396;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8397;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8398;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8399;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8400;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8401;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8402;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8403;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8404;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8405;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8406;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8407;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8408;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8409;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8410;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8411;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8412;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8413;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8414;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8415;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8416;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8417;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8418;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8419;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8420;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8421;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8422;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8423;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8424;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8425;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8426;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8427;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8428;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8429;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8430;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8431;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8432;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8433;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8434;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8435;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8436;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8437;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8438;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8439;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8440;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8441;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8442;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8443;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8444;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8445;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8446;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8447;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8448;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8449;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8450;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8451;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8452;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8453;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8454;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8455;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8456;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8457;
- case AcaciaFence::AcaciaFence(true, true, true, true): return 8140;
- case AcaciaFence::AcaciaFence(true, true, true, false): return 8141;
- case AcaciaFence::AcaciaFence(true, true, false, true): return 8144;
- case AcaciaFence::AcaciaFence(true, true, false, false): return 8145;
- case AcaciaFence::AcaciaFence(true, false, true, true): return 8148;
- case AcaciaFence::AcaciaFence(true, false, true, false): return 8149;
- case AcaciaFence::AcaciaFence(true, false, false, true): return 8152;
- case AcaciaFence::AcaciaFence(true, false, false, false): return 8153;
- case AcaciaFence::AcaciaFence(false, true, true, true): return 8156;
- case AcaciaFence::AcaciaFence(false, true, true, false): return 8157;
- case AcaciaFence::AcaciaFence(false, true, false, true): return 8160;
- case AcaciaFence::AcaciaFence(false, true, false, false): return 8161;
- case AcaciaFence::AcaciaFence(false, false, true, true): return 8164;
- case AcaciaFence::AcaciaFence(false, false, true, false): return 8165;
- case AcaciaFence::AcaciaFence(false, false, false, true): return 8168;
- case AcaciaFence::AcaciaFence(false, false, false, false): return 8169;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7978;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7979;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7980;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7981;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7982;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7983;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7984;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7985;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7986;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7987;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7988;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7989;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7990;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7991;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7992;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7993;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7994;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7995;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7996;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7997;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7998;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7999;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8000;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8001;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8002;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8003;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8004;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8005;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8006;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8007;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8008;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8009;
- case AcaciaLeaves::AcaciaLeaves(1, true): return 200;
- case AcaciaLeaves::AcaciaLeaves(1, false): return 201;
- case AcaciaLeaves::AcaciaLeaves(2, true): return 202;
- case AcaciaLeaves::AcaciaLeaves(2, false): return 203;
- case AcaciaLeaves::AcaciaLeaves(3, true): return 204;
- case AcaciaLeaves::AcaciaLeaves(3, false): return 205;
- case AcaciaLeaves::AcaciaLeaves(4, true): return 206;
- case AcaciaLeaves::AcaciaLeaves(4, false): return 207;
- case AcaciaLeaves::AcaciaLeaves(5, true): return 208;
- case AcaciaLeaves::AcaciaLeaves(5, false): return 209;
- case AcaciaLeaves::AcaciaLeaves(6, true): return 210;
- case AcaciaLeaves::AcaciaLeaves(6, false): return 211;
- case AcaciaLeaves::AcaciaLeaves(7, true): return 212;
- case AcaciaLeaves::AcaciaLeaves(7, false): return 213;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::X): return 84;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Y): return 85;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Z): return 86;
- case AcaciaPlanks::AcaciaPlanks(): return 19;
- case AcaciaPressurePlate::AcaciaPressurePlate(true): return 3879;
- case AcaciaPressurePlate::AcaciaPressurePlate(false): return 3880;
- case AcaciaSapling::AcaciaSapling(0): return 29;
- case AcaciaSapling::AcaciaSapling(1): return 30;
- case AcaciaSign::AcaciaSign(0): return 3476;
- case AcaciaSign::AcaciaSign(1): return 3478;
- case AcaciaSign::AcaciaSign(2): return 3480;
- case AcaciaSign::AcaciaSign(3): return 3482;
- case AcaciaSign::AcaciaSign(4): return 3484;
- case AcaciaSign::AcaciaSign(5): return 3486;
- case AcaciaSign::AcaciaSign(6): return 3488;
- case AcaciaSign::AcaciaSign(7): return 3490;
- case AcaciaSign::AcaciaSign(8): return 3492;
- case AcaciaSign::AcaciaSign(9): return 3494;
- case AcaciaSign::AcaciaSign(10): return 3496;
- case AcaciaSign::AcaciaSign(11): return 3498;
- case AcaciaSign::AcaciaSign(12): return 3500;
- case AcaciaSign::AcaciaSign(13): return 3502;
- case AcaciaSign::AcaciaSign(14): return 3504;
- case AcaciaSign::AcaciaSign(15): return 3506;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Top): return 7789;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Bottom): return 7791;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Double): return 7793;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6840;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6842;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6844;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6846;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6848;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6850;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6852;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6854;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6856;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6858;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6860;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6862;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6864;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6866;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6868;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6870;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6872;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6874;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6876;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6878;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6880;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6882;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6884;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6886;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6888;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6890;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6892;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6894;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6896;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6898;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6900;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6902;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6904;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6906;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6908;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6910;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6912;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6914;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6916;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6918;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, true): return 4354;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, false): return 4356;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, true): return 4358;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, false): return 4360;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, true): return 4362;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, false): return 4364;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, true): return 4366;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, false): return 4368;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, true): return 4370;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, false): return 4372;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, true): return 4374;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, false): return 4376;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, true): return 4378;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, false): return 4380;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, true): return 4382;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, false): return 4384;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, true): return 4386;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, false): return 4388;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, true): return 4390;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, false): return 4392;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, true): return 4394;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, false): return 4396;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, true): return 4398;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, false): return 4400;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, true): return 4402;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, false): return 4404;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, true): return 4406;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, false): return 4408;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, true): return 4410;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, false): return 4412;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, true): return 4414;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, false): return 4416;
- case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZM): return 3758;
- case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZP): return 3760;
- case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XM): return 3762;
- case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XP): return 3764;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::X): return 120;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Y): return 121;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Z): return 122;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::NorthSouth): return 6287;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::EastWest): return 6288;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingEast): return 6289;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingWest): return 6290;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingNorth): return 6291;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingSouth): return 6292;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::NorthSouth): return 6293;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::EastWest): return 6294;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingEast): return 6295;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingWest): return 6296;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingNorth): return 6297;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingSouth): return 6298;
- case Air::Air(): return -0;
- case Allium::Allium(): return 1414;
- case Andesite::Andesite(): return 6;
- case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Top): return 10308;
- case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Bottom): return 10310;
- case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Double): return 10312;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 9934;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 9936;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 9938;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 9940;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 9942;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 9944;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 9946;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 9948;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 9950;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 9952;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 9954;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 9956;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 9958;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 9960;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 9962;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 9964;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 9966;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 9968;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 9970;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 9972;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 9974;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 9976;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 9978;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 9980;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 9982;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 9984;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 9986;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 9988;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 9990;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 9992;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 9994;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 9996;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 9998;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 10000;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 10002;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 10004;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 10006;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 10008;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 10010;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 10012;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 10781;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 10782;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 10785;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 10786;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 10789;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None): return 10790;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 10793;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None): return 10794;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 10797;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 10798;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 10801;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 10802;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 10805;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None): return 10806;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 10809;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None): return 10810;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 10813;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 10814;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 10817;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 10818;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 10821;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None): return 10822;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 10825;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None): return 10826;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 10829;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 10830;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 10833;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 10834;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 10837;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None): return 10838;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 10841;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None): return 10842;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZM): return 6074;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZP): return 6075;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_XM): return 6076;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_XP): return 6077;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZM): return 4752;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZP): return 4753;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XM): return 4754;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XP): return 4755;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZM): return 4748;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZP): return 4749;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XM): return 4750;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XP): return 4751;
- case AzureBluet::AzureBluet(): return 1415;
- case Bamboo::Bamboo(0, Bamboo::Leaves::None, 0): return 9116;
- case Bamboo::Bamboo(0, Bamboo::Leaves::None, 1): return 9117;
- case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 0): return 9118;
- case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 1): return 9119;
- case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 0): return 9120;
- case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 1): return 9121;
- case Bamboo::Bamboo(1, Bamboo::Leaves::None, 0): return 9122;
- case Bamboo::Bamboo(1, Bamboo::Leaves::None, 1): return 9123;
- case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 0): return 9124;
- case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 1): return 9125;
- case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 0): return 9126;
- case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 1): return 9127;
- case BambooSapling::BambooSapling(): return 9115;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, true): return 11135;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, false): return 11136;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, true): return 11137;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, false): return 11138;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, true): return 11139;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, false): return 11140;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, true): return 11141;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, false): return 11142;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, true): return 11143;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, false): return 11144;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, true): return 11145;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, false): return 11146;
- case Barrier::Barrier(): return 7000;
- case Beacon::Beacon(): return 5640;
- case Bedrock::Bedrock(): return 33;
- case Beetroots::Beetroots(0): return 8683;
- case Beetroots::Beetroots(1): return 8684;
- case Beetroots::Beetroots(2): return 8685;
- case Beetroots::Beetroots(3): return 8686;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 11198;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 11199;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XM, false): return 11200;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XP, false): return 11201;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 11202;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 11203;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 11204;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 11205;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZM, false): return 11206;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZP, false): return 11207;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XM, false): return 11208;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XP, false): return 11209;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZM, false): return 11210;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZP, false): return 11211;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XM, false): return 11212;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XP, false): return 11213;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5858;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5859;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5860;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5861;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5862;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5863;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5864;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5865;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5866;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5867;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5868;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5869;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5870;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5871;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5872;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5873;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5874;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5875;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5876;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5877;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5878;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5879;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5880;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5881;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8266;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8267;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8268;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8269;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8270;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8271;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8272;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8273;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8274;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8275;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8276;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8277;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8278;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8279;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8280;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8281;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8282;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8283;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8284;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8285;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8286;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8287;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8288;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8289;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8290;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8291;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8292;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8293;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8294;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8295;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8296;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8297;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8298;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8299;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8300;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8301;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8302;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8303;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8304;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8305;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8306;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8307;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8308;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8309;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8310;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8311;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8312;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8313;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8314;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8315;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8316;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8317;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8318;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8319;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8320;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8321;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8322;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8323;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8324;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8325;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8326;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8327;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8328;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8329;
- case BirchFence::BirchFence(true, true, true, true): return 8076;
- case BirchFence::BirchFence(true, true, true, false): return 8077;
- case BirchFence::BirchFence(true, true, false, true): return 8080;
- case BirchFence::BirchFence(true, true, false, false): return 8081;
- case BirchFence::BirchFence(true, false, true, true): return 8084;
- case BirchFence::BirchFence(true, false, true, false): return 8085;
- case BirchFence::BirchFence(true, false, false, true): return 8088;
- case BirchFence::BirchFence(true, false, false, false): return 8089;
- case BirchFence::BirchFence(false, true, true, true): return 8092;
- case BirchFence::BirchFence(false, true, true, false): return 8093;
- case BirchFence::BirchFence(false, true, false, true): return 8096;
- case BirchFence::BirchFence(false, true, false, false): return 8097;
- case BirchFence::BirchFence(false, false, true, true): return 8100;
- case BirchFence::BirchFence(false, false, true, false): return 8101;
- case BirchFence::BirchFence(false, false, false, true): return 8104;
- case BirchFence::BirchFence(false, false, false, false): return 8105;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7914;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7915;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7916;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7917;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7918;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7919;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7920;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7921;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7922;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7923;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7924;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7925;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7926;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7927;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7928;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7929;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7930;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7931;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7932;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7933;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7934;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7935;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7936;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7937;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7938;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7939;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7940;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7941;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7942;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7943;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7944;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7945;
- case BirchLeaves::BirchLeaves(1, true): return 172;
- case BirchLeaves::BirchLeaves(1, false): return 173;
- case BirchLeaves::BirchLeaves(2, true): return 174;
- case BirchLeaves::BirchLeaves(2, false): return 175;
- case BirchLeaves::BirchLeaves(3, true): return 176;
- case BirchLeaves::BirchLeaves(3, false): return 177;
- case BirchLeaves::BirchLeaves(4, true): return 178;
- case BirchLeaves::BirchLeaves(4, false): return 179;
- case BirchLeaves::BirchLeaves(5, true): return 180;
- case BirchLeaves::BirchLeaves(5, false): return 181;
- case BirchLeaves::BirchLeaves(6, true): return 182;
- case BirchLeaves::BirchLeaves(6, false): return 183;
- case BirchLeaves::BirchLeaves(7, true): return 184;
- case BirchLeaves::BirchLeaves(7, false): return 185;
- case BirchLog::BirchLog(BirchLog::Axis::X): return 78;
- case BirchLog::BirchLog(BirchLog::Axis::Y): return 79;
- case BirchLog::BirchLog(BirchLog::Axis::Z): return 80;
- case BirchPlanks::BirchPlanks(): return 17;
- case BirchPressurePlate::BirchPressurePlate(true): return 3875;
- case BirchPressurePlate::BirchPressurePlate(false): return 3876;
- case BirchSapling::BirchSapling(0): return 25;
- case BirchSapling::BirchSapling(1): return 26;
- case BirchSign::BirchSign(0): return 3444;
- case BirchSign::BirchSign(1): return 3446;
- case BirchSign::BirchSign(2): return 3448;
- case BirchSign::BirchSign(3): return 3450;
- case BirchSign::BirchSign(4): return 3452;
- case BirchSign::BirchSign(5): return 3454;
- case BirchSign::BirchSign(6): return 3456;
- case BirchSign::BirchSign(7): return 3458;
- case BirchSign::BirchSign(8): return 3460;
- case BirchSign::BirchSign(9): return 3462;
- case BirchSign::BirchSign(10): return 3464;
- case BirchSign::BirchSign(11): return 3466;
- case BirchSign::BirchSign(12): return 3468;
- case BirchSign::BirchSign(13): return 3470;
- case BirchSign::BirchSign(14): return 3472;
- case BirchSign::BirchSign(15): return 3474;
- case BirchSlab::BirchSlab(BirchSlab::Type::Top): return 7777;
- case BirchSlab::BirchSlab(BirchSlab::Type::Bottom): return 7779;
- case BirchSlab::BirchSlab(BirchSlab::Type::Double): return 7781;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5469;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5471;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5473;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5475;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5477;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5479;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5481;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5483;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5485;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5487;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5489;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5491;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5493;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5495;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5497;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5499;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5501;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5503;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5505;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5507;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5509;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5511;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5513;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5515;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5517;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5519;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5521;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5523;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5525;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5527;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5529;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5531;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5533;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5535;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5537;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5539;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5541;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5543;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5545;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5547;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, true): return 4226;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, false): return 4228;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, true): return 4230;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, false): return 4232;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, true): return 4234;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, false): return 4236;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, true): return 4238;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, false): return 4240;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, true): return 4242;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, false): return 4244;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, true): return 4246;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, false): return 4248;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, true): return 4250;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, false): return 4252;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, true): return 4254;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, false): return 4256;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, true): return 4258;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, false): return 4260;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, true): return 4262;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, false): return 4264;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, true): return 4266;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, false): return 4268;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, true): return 4270;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, false): return 4272;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, true): return 4274;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, false): return 4276;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, true): return 4278;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, false): return 4280;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, true): return 4282;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, false): return 4284;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, true): return 4286;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, false): return 4288;
- case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZM): return 3750;
- case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZP): return 3752;
- case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XM): return 3754;
- case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XP): return 3756;
- case BirchWood::BirchWood(BirchWood::Axis::X): return 114;
- case BirchWood::BirchWood(BirchWood::Axis::Y): return 115;
- case BirchWood::BirchWood(BirchWood::Axis::Z): return 116;
- case BlackBanner::BlackBanner(0): return 7601;
- case BlackBanner::BlackBanner(1): return 7602;
- case BlackBanner::BlackBanner(2): return 7603;
- case BlackBanner::BlackBanner(3): return 7604;
- case BlackBanner::BlackBanner(4): return 7605;
- case BlackBanner::BlackBanner(5): return 7606;
- case BlackBanner::BlackBanner(6): return 7607;
- case BlackBanner::BlackBanner(7): return 7608;
- case BlackBanner::BlackBanner(8): return 7609;
- case BlackBanner::BlackBanner(9): return 7610;
- case BlackBanner::BlackBanner(10): return 7611;
- case BlackBanner::BlackBanner(11): return 7612;
- case BlackBanner::BlackBanner(12): return 7613;
- case BlackBanner::BlackBanner(13): return 7614;
- case BlackBanner::BlackBanner(14): return 7615;
- case BlackBanner::BlackBanner(15): return 7616;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Head): return 1288;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Foot): return 1289;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Head): return 1290;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Foot): return 1291;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Head): return 1292;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Foot): return 1293;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Head): return 1294;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Foot): return 1295;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Head): return 1296;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Foot): return 1297;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Head): return 1298;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Foot): return 1299;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Head): return 1300;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Foot): return 1301;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Head): return 1302;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Foot): return 1303;
- case BlackCarpet::BlackCarpet(): return 7345;
- case BlackConcrete::BlackConcrete(): return 8917;
- case BlackConcretePowder::BlackConcretePowder(): return 8933;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8898;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8899;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8900;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8901;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8832;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8833;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8834;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8835;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8836;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8837;
- case BlackStainedGlass::BlackStainedGlass(): return 4096;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, true): return 6809;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, false): return 6810;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, true): return 6813;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, false): return 6814;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, true): return 6817;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, false): return 6818;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, true): return 6821;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, false): return 6822;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, true): return 6825;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, false): return 6826;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, true): return 6829;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, false): return 6830;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, true): return 6833;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, false): return 6834;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, true): return 6837;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, false): return 6838;
- case BlackTerracotta::BlackTerracotta(): return 6326;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7677;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7678;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XM): return 7679;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XP): return 7680;
- case BlackWool::BlackWool(): return 1398;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, true): return 11155;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, false): return 11156;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, true): return 11157;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, false): return 11158;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, true): return 11159;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, false): return 11160;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, true): return 11161;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, false): return 11162;
- case BlueBanner::BlueBanner(0): return 7537;
- case BlueBanner::BlueBanner(1): return 7538;
- case BlueBanner::BlueBanner(2): return 7539;
- case BlueBanner::BlueBanner(3): return 7540;
- case BlueBanner::BlueBanner(4): return 7541;
- case BlueBanner::BlueBanner(5): return 7542;
- case BlueBanner::BlueBanner(6): return 7543;
- case BlueBanner::BlueBanner(7): return 7544;
- case BlueBanner::BlueBanner(8): return 7545;
- case BlueBanner::BlueBanner(9): return 7546;
- case BlueBanner::BlueBanner(10): return 7547;
- case BlueBanner::BlueBanner(11): return 7548;
- case BlueBanner::BlueBanner(12): return 7549;
- case BlueBanner::BlueBanner(13): return 7550;
- case BlueBanner::BlueBanner(14): return 7551;
- case BlueBanner::BlueBanner(15): return 7552;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Head): return 1224;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Foot): return 1225;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Head): return 1226;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Foot): return 1227;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Head): return 1228;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Foot): return 1229;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Head): return 1230;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Foot): return 1231;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Head): return 1232;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Foot): return 1233;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Head): return 1234;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Foot): return 1235;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Head): return 1236;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Foot): return 1237;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Head): return 1238;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Foot): return 1239;
- case BlueCarpet::BlueCarpet(): return 7341;
- case BlueConcrete::BlueConcrete(): return 8913;
- case BlueConcretePowder::BlueConcretePowder(): return 8929;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8882;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8883;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8884;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8885;
- case BlueIce::BlueIce(): return 9112;
- case BlueOrchid::BlueOrchid(): return 1413;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8808;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8809;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8810;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8811;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8812;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8813;
- case BlueStainedGlass::BlueStainedGlass(): return 4092;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, true): return 6681;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, false): return 6682;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, true): return 6685;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, false): return 6686;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, true): return 6689;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, false): return 6690;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, true): return 6693;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, false): return 6694;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, true): return 6697;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, false): return 6698;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, true): return 6701;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, false): return 6702;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, true): return 6705;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, false): return 6706;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, true): return 6709;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, false): return 6710;
- case BlueTerracotta::BlueTerracotta(): return 6322;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7661;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7662;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 7663;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 7664;
- case BlueWool::BlueWool(): return 1394;
- case BoneBlock::BoneBlock(BoneBlock::Axis::X): return 8720;
- case BoneBlock::BoneBlock(BoneBlock::Axis::Y): return 8721;
- case BoneBlock::BoneBlock(BoneBlock::Axis::Z): return 8722;
- case Bookshelf::Bookshelf(): return 1431;
- case BrainCoral::BrainCoral(): return 8997;
- case BrainCoralBlock::BrainCoralBlock(): return 8980;
- case BrainCoralFan::BrainCoralFan(): return 9017;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9073;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9075;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9077;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9079;
- case BrewingStand::BrewingStand(true, true, true): return 5117;
- case BrewingStand::BrewingStand(true, true, false): return 5118;
- case BrewingStand::BrewingStand(true, false, true): return 5119;
- case BrewingStand::BrewingStand(true, false, false): return 5120;
- case BrewingStand::BrewingStand(false, true, true): return 5121;
- case BrewingStand::BrewingStand(false, true, false): return 5122;
- case BrewingStand::BrewingStand(false, false, true): return 5123;
- case BrewingStand::BrewingStand(false, false, false): return 5124;
- case BrickSlab::BrickSlab(BrickSlab::Type::Top): return 7837;
- case BrickSlab::BrickSlab(BrickSlab::Type::Bottom): return 7839;
- case BrickSlab::BrickSlab(BrickSlab::Type::Double): return 7841;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4837;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4839;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4841;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4843;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4845;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4847;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4849;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4851;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4853;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4855;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4857;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4859;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4861;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4863;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4865;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4867;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4869;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4871;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4873;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4875;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4877;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4879;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4881;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4883;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4885;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4887;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4889;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4891;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4893;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4895;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4897;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4899;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4901;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4903;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4905;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4907;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4909;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4911;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4913;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4915;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low): return 10333;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None): return 10334;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low): return 10337;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None): return 10338;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low): return 10341;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None): return 10342;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low): return 10345;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None): return 10346;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low): return 10349;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None): return 10350;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low): return 10353;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None): return 10354;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low): return 10357;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None): return 10358;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low): return 10361;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None): return 10362;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low): return 10365;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None): return 10366;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low): return 10369;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None): return 10370;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low): return 10373;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None): return 10374;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low): return 10377;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None): return 10378;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low): return 10381;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None): return 10382;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low): return 10385;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None): return 10386;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low): return 10389;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None): return 10390;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low): return 10393;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None): return 10394;
- case Bricks::Bricks(): return 1428;
- case BrownBanner::BrownBanner(0): return 7553;
- case BrownBanner::BrownBanner(1): return 7554;
- case BrownBanner::BrownBanner(2): return 7555;
- case BrownBanner::BrownBanner(3): return 7556;
- case BrownBanner::BrownBanner(4): return 7557;
- case BrownBanner::BrownBanner(5): return 7558;
- case BrownBanner::BrownBanner(6): return 7559;
- case BrownBanner::BrownBanner(7): return 7560;
- case BrownBanner::BrownBanner(8): return 7561;
- case BrownBanner::BrownBanner(9): return 7562;
- case BrownBanner::BrownBanner(10): return 7563;
- case BrownBanner::BrownBanner(11): return 7564;
- case BrownBanner::BrownBanner(12): return 7565;
- case BrownBanner::BrownBanner(13): return 7566;
- case BrownBanner::BrownBanner(14): return 7567;
- case BrownBanner::BrownBanner(15): return 7568;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Head): return 1240;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Foot): return 1241;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Head): return 1242;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Foot): return 1243;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Head): return 1244;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Foot): return 1245;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Head): return 1246;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Foot): return 1247;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Head): return 1248;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Foot): return 1249;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Head): return 1250;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Foot): return 1251;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Head): return 1252;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Foot): return 1253;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Head): return 1254;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Foot): return 1255;
- case BrownCarpet::BrownCarpet(): return 7342;
- case BrownConcrete::BrownConcrete(): return 8914;
- case BrownConcretePowder::BrownConcretePowder(): return 8930;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8886;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8887;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8888;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8889;
- case BrownMushroom::BrownMushroom(): return 1424;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, true): return 4491;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, false): return 4492;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, true): return 4493;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, false): return 4494;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, true): return 4495;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, false): return 4496;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, true): return 4497;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, false): return 4498;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, true): return 4499;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, false): return 4500;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, true): return 4501;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, false): return 4502;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, true): return 4503;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, false): return 4504;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, true): return 4505;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, false): return 4506;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, true): return 4507;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, false): return 4508;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, true): return 4509;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, false): return 4510;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, true): return 4511;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, false): return 4512;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, true): return 4513;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, false): return 4514;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, true): return 4515;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, false): return 4516;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, true): return 4517;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, false): return 4518;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, true): return 4519;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, false): return 4520;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, true): return 4521;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, false): return 4522;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, true): return 4523;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, false): return 4524;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, true): return 4525;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, false): return 4526;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, true): return 4527;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, false): return 4528;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, true): return 4529;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, false): return 4530;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, true): return 4531;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, false): return 4532;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, true): return 4533;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, false): return 4534;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, true): return 4535;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, false): return 4536;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, true): return 4537;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, false): return 4538;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, true): return 4539;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, false): return 4540;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, true): return 4541;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, false): return 4542;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, true): return 4543;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, false): return 4544;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, true): return 4545;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, false): return 4546;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, true): return 4547;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, false): return 4548;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, true): return 4549;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, false): return 4550;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, true): return 4551;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, false): return 4552;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, true): return 4553;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false): return 4554;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8814;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8815;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8816;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8817;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8818;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8819;
- case BrownStainedGlass::BrownStainedGlass(): return 4093;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, true): return 6713;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, false): return 6714;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, true): return 6717;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, false): return 6718;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, true): return 6721;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, false): return 6722;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, true): return 6725;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, false): return 6726;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, true): return 6729;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, false): return 6730;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, true): return 6733;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, false): return 6734;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, true): return 6737;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, false): return 6738;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, true): return 6741;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, false): return 6742;
- case BrownTerracotta::BrownTerracotta(): return 6323;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7665;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7666;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XM): return 7667;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XP): return 7668;
- case BrownWool::BrownWool(): return 1395;
- case BubbleColumn::BubbleColumn(true): return 9131;
- case BubbleColumn::BubbleColumn(false): return 9132;
- case BubbleCoral::BubbleCoral(): return 8999;
- case BubbleCoralBlock::BubbleCoralBlock(): return 8981;
- case BubbleCoralFan::BubbleCoralFan(): return 9019;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9081;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9083;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9085;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9087;
- case Cactus::Cactus(0): return 3929;
- case Cactus::Cactus(1): return 3930;
- case Cactus::Cactus(2): return 3931;
- case Cactus::Cactus(3): return 3932;
- case Cactus::Cactus(4): return 3933;
- case Cactus::Cactus(5): return 3934;
- case Cactus::Cactus(6): return 3935;
- case Cactus::Cactus(7): return 3936;
- case Cactus::Cactus(8): return 3937;
- case Cactus::Cactus(9): return 3938;
- case Cactus::Cactus(10): return 3939;
- case Cactus::Cactus(11): return 3940;
- case Cactus::Cactus(12): return 3941;
- case Cactus::Cactus(13): return 3942;
- case Cactus::Cactus(14): return 3943;
- case Cactus::Cactus(15): return 3944;
- case Cake::Cake(0): return 4010;
- case Cake::Cake(1): return 4011;
- case Cake::Cake(2): return 4012;
- case Cake::Cake(3): return 4013;
- case Cake::Cake(4): return 4014;
- case Cake::Cake(5): return 4015;
- case Cake::Cake(6): return 4016;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, true): return 11217;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, false): return 11219;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, true): return 11221;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, false): return 11223;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, true): return 11225;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, false): return 11227;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, true): return 11229;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, false): return 11231;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, true): return 11233;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, false): return 11235;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, true): return 11237;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, false): return 11239;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, true): return 11241;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, false): return 11243;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, true): return 11245;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, false): return 11247;
- case Carrots::Carrots(0): return 5794;
- case Carrots::Carrots(1): return 5795;
- case Carrots::Carrots(2): return 5796;
- case Carrots::Carrots(3): return 5797;
- case Carrots::Carrots(4): return 5798;
- case Carrots::Carrots(5): return 5799;
- case Carrots::Carrots(6): return 5800;
- case Carrots::Carrots(7): return 5801;
- case CartographyTable::CartographyTable(): return 11163;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZM): return 4002;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZP): return 4003;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XM): return 4004;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XP): return 4005;
- case Cauldron::Cauldron(0): return 5125;
- case Cauldron::Cauldron(1): return 5126;
- case Cauldron::Cauldron(2): return 5127;
- case Cauldron::Cauldron(3): return 5128;
- case CaveAir::CaveAir(): return 9130;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 8701;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 8702;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 8703;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 8704;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 8705;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 8706;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 8707;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 8708;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 8709;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 8710;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 8711;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 8712;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Single): return 2033;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Left): return 2035;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Right): return 2037;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Single): return 2039;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Left): return 2041;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Right): return 2043;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Single): return 2045;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Left): return 2047;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Right): return 2049;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Single): return 2051;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Left): return 2053;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Right): return 2055;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZM): return 6078;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZP): return 6079;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XM): return 6080;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XP): return 6081;
- case ChiseledQuartzBlock::ChiseledQuartzBlock(): return 6203;
- case ChiseledRedSandstone::ChiseledRedSandstone(): return 7682;
- case ChiseledSandstone::ChiseledSandstone(): return 246;
- case ChiseledStoneBricks::ChiseledStoneBricks(): return 4484;
- case ChorusFlower::ChorusFlower(0): return 8592;
- case ChorusFlower::ChorusFlower(1): return 8593;
- case ChorusFlower::ChorusFlower(2): return 8594;
- case ChorusFlower::ChorusFlower(3): return 8595;
- case ChorusFlower::ChorusFlower(4): return 8596;
- case ChorusFlower::ChorusFlower(5): return 8597;
- case ChorusPlant::ChorusPlant(true, true, true, true, true, true): return 8528;
- case ChorusPlant::ChorusPlant(true, true, true, true, true, false): return 8529;
- case ChorusPlant::ChorusPlant(true, true, true, true, false, true): return 8530;
- case ChorusPlant::ChorusPlant(true, true, true, true, false, false): return 8531;
- case ChorusPlant::ChorusPlant(true, true, true, false, true, true): return 8532;
- case ChorusPlant::ChorusPlant(true, true, true, false, true, false): return 8533;
- case ChorusPlant::ChorusPlant(true, true, true, false, false, true): return 8534;
- case ChorusPlant::ChorusPlant(true, true, true, false, false, false): return 8535;
- case ChorusPlant::ChorusPlant(true, true, false, true, true, true): return 8536;
- case ChorusPlant::ChorusPlant(true, true, false, true, true, false): return 8537;
- case ChorusPlant::ChorusPlant(true, true, false, true, false, true): return 8538;
- case ChorusPlant::ChorusPlant(true, true, false, true, false, false): return 8539;
- case ChorusPlant::ChorusPlant(true, true, false, false, true, true): return 8540;
- case ChorusPlant::ChorusPlant(true, true, false, false, true, false): return 8541;
- case ChorusPlant::ChorusPlant(true, true, false, false, false, true): return 8542;
- case ChorusPlant::ChorusPlant(true, true, false, false, false, false): return 8543;
- case ChorusPlant::ChorusPlant(true, false, true, true, true, true): return 8544;
- case ChorusPlant::ChorusPlant(true, false, true, true, true, false): return 8545;
- case ChorusPlant::ChorusPlant(true, false, true, true, false, true): return 8546;
- case ChorusPlant::ChorusPlant(true, false, true, true, false, false): return 8547;
- case ChorusPlant::ChorusPlant(true, false, true, false, true, true): return 8548;
- case ChorusPlant::ChorusPlant(true, false, true, false, true, false): return 8549;
- case ChorusPlant::ChorusPlant(true, false, true, false, false, true): return 8550;
- case ChorusPlant::ChorusPlant(true, false, true, false, false, false): return 8551;
- case ChorusPlant::ChorusPlant(true, false, false, true, true, true): return 8552;
- case ChorusPlant::ChorusPlant(true, false, false, true, true, false): return 8553;
- case ChorusPlant::ChorusPlant(true, false, false, true, false, true): return 8554;
- case ChorusPlant::ChorusPlant(true, false, false, true, false, false): return 8555;
- case ChorusPlant::ChorusPlant(true, false, false, false, true, true): return 8556;
- case ChorusPlant::ChorusPlant(true, false, false, false, true, false): return 8557;
- case ChorusPlant::ChorusPlant(true, false, false, false, false, true): return 8558;
- case ChorusPlant::ChorusPlant(true, false, false, false, false, false): return 8559;
- case ChorusPlant::ChorusPlant(false, true, true, true, true, true): return 8560;
- case ChorusPlant::ChorusPlant(false, true, true, true, true, false): return 8561;
- case ChorusPlant::ChorusPlant(false, true, true, true, false, true): return 8562;
- case ChorusPlant::ChorusPlant(false, true, true, true, false, false): return 8563;
- case ChorusPlant::ChorusPlant(false, true, true, false, true, true): return 8564;
- case ChorusPlant::ChorusPlant(false, true, true, false, true, false): return 8565;
- case ChorusPlant::ChorusPlant(false, true, true, false, false, true): return 8566;
- case ChorusPlant::ChorusPlant(false, true, true, false, false, false): return 8567;
- case ChorusPlant::ChorusPlant(false, true, false, true, true, true): return 8568;
- case ChorusPlant::ChorusPlant(false, true, false, true, true, false): return 8569;
- case ChorusPlant::ChorusPlant(false, true, false, true, false, true): return 8570;
- case ChorusPlant::ChorusPlant(false, true, false, true, false, false): return 8571;
- case ChorusPlant::ChorusPlant(false, true, false, false, true, true): return 8572;
- case ChorusPlant::ChorusPlant(false, true, false, false, true, false): return 8573;
- case ChorusPlant::ChorusPlant(false, true, false, false, false, true): return 8574;
- case ChorusPlant::ChorusPlant(false, true, false, false, false, false): return 8575;
- case ChorusPlant::ChorusPlant(false, false, true, true, true, true): return 8576;
- case ChorusPlant::ChorusPlant(false, false, true, true, true, false): return 8577;
- case ChorusPlant::ChorusPlant(false, false, true, true, false, true): return 8578;
- case ChorusPlant::ChorusPlant(false, false, true, true, false, false): return 8579;
- case ChorusPlant::ChorusPlant(false, false, true, false, true, true): return 8580;
- case ChorusPlant::ChorusPlant(false, false, true, false, true, false): return 8581;
- case ChorusPlant::ChorusPlant(false, false, true, false, false, true): return 8582;
- case ChorusPlant::ChorusPlant(false, false, true, false, false, false): return 8583;
- case ChorusPlant::ChorusPlant(false, false, false, true, true, true): return 8584;
- case ChorusPlant::ChorusPlant(false, false, false, true, true, false): return 8585;
- case ChorusPlant::ChorusPlant(false, false, false, true, false, true): return 8586;
- case ChorusPlant::ChorusPlant(false, false, false, true, false, false): return 8587;
- case ChorusPlant::ChorusPlant(false, false, false, false, true, true): return 8588;
- case ChorusPlant::ChorusPlant(false, false, false, false, true, false): return 8589;
- case ChorusPlant::ChorusPlant(false, false, false, false, false, true): return 8590;
- case ChorusPlant::ChorusPlant(false, false, false, false, false, false): return 8591;
- case Clay::Clay(): return 3945;
- case CoalBlock::CoalBlock(): return 7347;
- case CoalOre::CoalOre(): return 71;
- case CoarseDirt::CoarseDirt(): return 11;
- case Cobblestone::Cobblestone(): return 14;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Top): return 7831;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Bottom): return 7833;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double): return 7835;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3654;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3656;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3658;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3660;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3662;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3664;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3666;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3668;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3670;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3672;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3674;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3676;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3678;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3680;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3682;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3684;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3686;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3688;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3690;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3692;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3694;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3696;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3698;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3700;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3702;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3704;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3706;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3708;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3710;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3712;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3714;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3716;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3718;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3720;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3722;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3724;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3726;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3728;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3730;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3732;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5643;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5644;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5647;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5648;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5651;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5652;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5655;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5656;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5659;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5660;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5663;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5664;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5667;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5668;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5671;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5672;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5675;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5676;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5679;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5680;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5683;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5684;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5687;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5688;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5691;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5692;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5695;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5696;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5699;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5700;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5703;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5704;
- case Cobweb::Cobweb(): return 1340;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZM): return 5142;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZP): return 5143;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XM): return 5144;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XP): return 5145;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZM): return 5146;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZP): return 5147;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XM): return 5148;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XP): return 5149;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZM): return 5150;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZP): return 5151;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XM): return 5152;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XP): return 5153;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 5628;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 5629;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 5630;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 5631;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 5632;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 5633;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 5634;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 5635;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 5636;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 5637;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 5638;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 5639;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true): return 6142;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false): return 6143;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true): return 6144;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false): return 6145;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true): return 6146;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false): return 6147;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true): return 6148;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false): return 6149;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true): return 6150;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false): return 6151;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true): return 6152;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false): return 6153;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true): return 6154;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false): return 6155;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true): return 6156;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false): return 6157;
- case Composter::Composter(0): return 11262;
- case Composter::Composter(1): return 11263;
- case Composter::Composter(2): return 11264;
- case Composter::Composter(3): return 11265;
- case Composter::Composter(4): return 11266;
- case Composter::Composter(5): return 11267;
- case Composter::Composter(6): return 11268;
- case Composter::Composter(7): return 11269;
- case Composter::Composter(8): return 11270;
- case Conduit::Conduit(): return 9114;
- case Cornflower::Cornflower(): return 1421;
- case CrackedStoneBricks::CrackedStoneBricks(): return 4483;
- case CraftingTable::CraftingTable(): return 3354;
- case CreeperHead::CreeperHead(0): return 6034;
- case CreeperHead::CreeperHead(1): return 6035;
- case CreeperHead::CreeperHead(2): return 6036;
- case CreeperHead::CreeperHead(3): return 6037;
- case CreeperHead::CreeperHead(4): return 6038;
- case CreeperHead::CreeperHead(5): return 6039;
- case CreeperHead::CreeperHead(6): return 6040;
- case CreeperHead::CreeperHead(7): return 6041;
- case CreeperHead::CreeperHead(8): return 6042;
- case CreeperHead::CreeperHead(9): return 6043;
- case CreeperHead::CreeperHead(10): return 6044;
- case CreeperHead::CreeperHead(11): return 6045;
- case CreeperHead::CreeperHead(12): return 6046;
- case CreeperHead::CreeperHead(13): return 6047;
- case CreeperHead::CreeperHead(14): return 6048;
- case CreeperHead::CreeperHead(15): return 6049;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZM): return 6050;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZP): return 6051;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XM): return 6052;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XP): return 6053;
- case CutRedSandstone::CutRedSandstone(): return 7683;
- case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Top): return 7867;
- case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Bottom): return 7869;
- case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Double): return 7871;
- case CutSandstone::CutSandstone(): return 247;
- case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Top): return 7819;
- case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Bottom): return 7821;
- case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Double): return 7823;
- case CyanBanner::CyanBanner(0): return 7505;
- case CyanBanner::CyanBanner(1): return 7506;
- case CyanBanner::CyanBanner(2): return 7507;
- case CyanBanner::CyanBanner(3): return 7508;
- case CyanBanner::CyanBanner(4): return 7509;
- case CyanBanner::CyanBanner(5): return 7510;
- case CyanBanner::CyanBanner(6): return 7511;
- case CyanBanner::CyanBanner(7): return 7512;
- case CyanBanner::CyanBanner(8): return 7513;
- case CyanBanner::CyanBanner(9): return 7514;
- case CyanBanner::CyanBanner(10): return 7515;
- case CyanBanner::CyanBanner(11): return 7516;
- case CyanBanner::CyanBanner(12): return 7517;
- case CyanBanner::CyanBanner(13): return 7518;
- case CyanBanner::CyanBanner(14): return 7519;
- case CyanBanner::CyanBanner(15): return 7520;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Head): return 1192;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Foot): return 1193;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Head): return 1194;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Foot): return 1195;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Head): return 1196;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Foot): return 1197;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Head): return 1198;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Foot): return 1199;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Head): return 1200;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Foot): return 1201;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Head): return 1202;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Foot): return 1203;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Head): return 1204;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Foot): return 1205;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Head): return 1206;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Foot): return 1207;
- case CyanCarpet::CyanCarpet(): return 7339;
- case CyanConcrete::CyanConcrete(): return 8911;
- case CyanConcretePowder::CyanConcretePowder(): return 8927;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8874;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8875;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8876;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8877;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8796;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8797;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8798;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8799;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8800;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8801;
- case CyanStainedGlass::CyanStainedGlass(): return 4090;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, true): return 6617;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, false): return 6618;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, true): return 6621;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, false): return 6622;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, true): return 6625;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, false): return 6626;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, true): return 6629;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, false): return 6630;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, true): return 6633;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, false): return 6634;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, true): return 6637;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, false): return 6638;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, true): return 6641;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, false): return 6642;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, true): return 6645;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, false): return 6646;
- case CyanTerracotta::CyanTerracotta(): return 6320;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7653;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7654;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XM): return 7655;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XP): return 7656;
- case CyanWool::CyanWool(): return 1392;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZM): return 6082;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZP): return 6083;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XM): return 6084;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XP): return 6085;
- case Dandelion::Dandelion(): return 1411;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5930;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5931;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5932;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5933;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5934;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5935;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5936;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5937;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5938;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5939;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5940;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5941;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5942;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5943;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5944;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5945;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5946;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5947;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5948;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5949;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5950;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5951;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5952;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5953;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 8458;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 8459;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 8460;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 8461;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 8462;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 8463;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 8464;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 8465;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 8466;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 8467;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 8468;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 8469;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 8470;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 8471;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 8472;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 8473;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 8474;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 8475;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 8476;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 8477;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 8478;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 8479;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 8480;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 8481;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 8482;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 8483;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 8484;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 8485;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 8486;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 8487;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 8488;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 8489;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 8490;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 8491;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 8492;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 8493;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 8494;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 8495;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 8496;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 8497;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 8498;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 8499;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 8500;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 8501;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 8502;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 8503;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 8504;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 8505;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 8506;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 8507;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 8508;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 8509;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 8510;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 8511;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 8512;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 8513;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 8514;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 8515;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 8516;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 8517;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 8518;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 8519;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 8520;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 8521;
- case DarkOakFence::DarkOakFence(true, true, true, true): return 8172;
- case DarkOakFence::DarkOakFence(true, true, true, false): return 8173;
- case DarkOakFence::DarkOakFence(true, true, false, true): return 8176;
- case DarkOakFence::DarkOakFence(true, true, false, false): return 8177;
- case DarkOakFence::DarkOakFence(true, false, true, true): return 8180;
- case DarkOakFence::DarkOakFence(true, false, true, false): return 8181;
- case DarkOakFence::DarkOakFence(true, false, false, true): return 8184;
- case DarkOakFence::DarkOakFence(true, false, false, false): return 8185;
- case DarkOakFence::DarkOakFence(false, true, true, true): return 8188;
- case DarkOakFence::DarkOakFence(false, true, true, false): return 8189;
- case DarkOakFence::DarkOakFence(false, true, false, true): return 8192;
- case DarkOakFence::DarkOakFence(false, true, false, false): return 8193;
- case DarkOakFence::DarkOakFence(false, false, true, true): return 8196;
- case DarkOakFence::DarkOakFence(false, false, true, false): return 8197;
- case DarkOakFence::DarkOakFence(false, false, false, true): return 8200;
- case DarkOakFence::DarkOakFence(false, false, false, false): return 8201;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 8010;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 8011;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 8012;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 8013;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 8014;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 8015;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 8016;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 8017;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 8018;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 8019;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 8020;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 8021;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 8022;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 8023;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 8024;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 8025;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 8026;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 8027;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 8028;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 8029;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 8030;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 8031;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8032;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8033;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8034;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8035;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8036;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8037;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8038;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8039;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8040;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8041;
- case DarkOakLeaves::DarkOakLeaves(1, true): return 214;
- case DarkOakLeaves::DarkOakLeaves(1, false): return 215;
- case DarkOakLeaves::DarkOakLeaves(2, true): return 216;
- case DarkOakLeaves::DarkOakLeaves(2, false): return 217;
- case DarkOakLeaves::DarkOakLeaves(3, true): return 218;
- case DarkOakLeaves::DarkOakLeaves(3, false): return 219;
- case DarkOakLeaves::DarkOakLeaves(4, true): return 220;
- case DarkOakLeaves::DarkOakLeaves(4, false): return 221;
- case DarkOakLeaves::DarkOakLeaves(5, true): return 222;
- case DarkOakLeaves::DarkOakLeaves(5, false): return 223;
- case DarkOakLeaves::DarkOakLeaves(6, true): return 224;
- case DarkOakLeaves::DarkOakLeaves(6, false): return 225;
- case DarkOakLeaves::DarkOakLeaves(7, true): return 226;
- case DarkOakLeaves::DarkOakLeaves(7, false): return 227;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::X): return 87;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Y): return 88;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Z): return 89;
- case DarkOakPlanks::DarkOakPlanks(): return 20;
- case DarkOakPressurePlate::DarkOakPressurePlate(true): return 3881;
- case DarkOakPressurePlate::DarkOakPressurePlate(false): return 3882;
- case DarkOakSapling::DarkOakSapling(0): return 31;
- case DarkOakSapling::DarkOakSapling(1): return 32;
- case DarkOakSign::DarkOakSign(0): return 3540;
- case DarkOakSign::DarkOakSign(1): return 3542;
- case DarkOakSign::DarkOakSign(2): return 3544;
- case DarkOakSign::DarkOakSign(3): return 3546;
- case DarkOakSign::DarkOakSign(4): return 3548;
- case DarkOakSign::DarkOakSign(5): return 3550;
- case DarkOakSign::DarkOakSign(6): return 3552;
- case DarkOakSign::DarkOakSign(7): return 3554;
- case DarkOakSign::DarkOakSign(8): return 3556;
- case DarkOakSign::DarkOakSign(9): return 3558;
- case DarkOakSign::DarkOakSign(10): return 3560;
- case DarkOakSign::DarkOakSign(11): return 3562;
- case DarkOakSign::DarkOakSign(12): return 3564;
- case DarkOakSign::DarkOakSign(13): return 3566;
- case DarkOakSign::DarkOakSign(14): return 3568;
- case DarkOakSign::DarkOakSign(15): return 3570;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Top): return 7795;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Bottom): return 7797;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Double): return 7799;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6920;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6922;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6924;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6926;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6928;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6930;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6932;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6934;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6936;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6938;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6940;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6942;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6944;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6946;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6948;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6950;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6952;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6954;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6956;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6958;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6960;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6962;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6964;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6966;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6968;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6970;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6972;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6974;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6976;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6978;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6980;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6982;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6984;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6986;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6988;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6990;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6992;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6994;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6996;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6998;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, true): return 4418;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, false): return 4420;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, true): return 4422;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, false): return 4424;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, true): return 4426;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, false): return 4428;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, true): return 4430;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, false): return 4432;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, true): return 4434;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, false): return 4436;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, true): return 4438;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, false): return 4440;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, true): return 4442;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, false): return 4444;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, true): return 4446;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, false): return 4448;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, true): return 4450;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, false): return 4452;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, true): return 4454;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, false): return 4456;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, true): return 4458;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, false): return 4460;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, true): return 4462;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, false): return 4464;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, true): return 4466;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, false): return 4468;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, true): return 4470;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, false): return 4472;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, true): return 4474;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, false): return 4476;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, true): return 4478;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, false): return 4480;
- case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZM): return 3774;
- case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZP): return 3776;
- case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XM): return 3778;
- case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XP): return 3780;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::X): return 123;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Y): return 124;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Z): return 125;
- case DarkPrismarine::DarkPrismarine(): return 7067;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Top): return 7321;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Bottom): return 7323;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Double): return 7325;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7229;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7231;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7233;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7235;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7237;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7239;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7241;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7243;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7245;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7247;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7249;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7251;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7253;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7255;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7257;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7259;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7261;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7263;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7265;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7267;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7269;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7271;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7273;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7275;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7277;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7279;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7281;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7283;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7285;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7287;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7289;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7291;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7293;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7295;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7297;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7299;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7301;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7303;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7305;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7307;
- case DaylightDetector::DaylightDetector(true, 0): return 6158;
- case DaylightDetector::DaylightDetector(true, 1): return 6159;
- case DaylightDetector::DaylightDetector(true, 2): return 6160;
- case DaylightDetector::DaylightDetector(true, 3): return 6161;
- case DaylightDetector::DaylightDetector(true, 4): return 6162;
- case DaylightDetector::DaylightDetector(true, 5): return 6163;
- case DaylightDetector::DaylightDetector(true, 6): return 6164;
- case DaylightDetector::DaylightDetector(true, 7): return 6165;
- case DaylightDetector::DaylightDetector(true, 8): return 6166;
- case DaylightDetector::DaylightDetector(true, 9): return 6167;
- case DaylightDetector::DaylightDetector(true, 10): return 6168;
- case DaylightDetector::DaylightDetector(true, 11): return 6169;
- case DaylightDetector::DaylightDetector(true, 12): return 6170;
- case DaylightDetector::DaylightDetector(true, 13): return 6171;
- case DaylightDetector::DaylightDetector(true, 14): return 6172;
- case DaylightDetector::DaylightDetector(true, 15): return 6173;
- case DaylightDetector::DaylightDetector(false, 0): return 6174;
- case DaylightDetector::DaylightDetector(false, 1): return 6175;
- case DaylightDetector::DaylightDetector(false, 2): return 6176;
- case DaylightDetector::DaylightDetector(false, 3): return 6177;
- case DaylightDetector::DaylightDetector(false, 4): return 6178;
- case DaylightDetector::DaylightDetector(false, 5): return 6179;
- case DaylightDetector::DaylightDetector(false, 6): return 6180;
- case DaylightDetector::DaylightDetector(false, 7): return 6181;
- case DaylightDetector::DaylightDetector(false, 8): return 6182;
- case DaylightDetector::DaylightDetector(false, 9): return 6183;
- case DaylightDetector::DaylightDetector(false, 10): return 6184;
- case DaylightDetector::DaylightDetector(false, 11): return 6185;
- case DaylightDetector::DaylightDetector(false, 12): return 6186;
- case DaylightDetector::DaylightDetector(false, 13): return 6187;
- case DaylightDetector::DaylightDetector(false, 14): return 6188;
- case DaylightDetector::DaylightDetector(false, 15): return 6189;
- case DeadBrainCoral::DeadBrainCoral(): return 8987;
- case DeadBrainCoralBlock::DeadBrainCoralBlock(): return 8975;
- case DeadBrainCoralFan::DeadBrainCoralFan(): return 9007;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9033;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9035;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9037;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9039;
- case DeadBubbleCoral::DeadBubbleCoral(): return 8989;
- case DeadBubbleCoralBlock::DeadBubbleCoralBlock(): return 8976;
- case DeadBubbleCoralFan::DeadBubbleCoralFan(): return 9009;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9041;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9043;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9045;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9047;
- case DeadBush::DeadBush(): return 1343;
- case DeadFireCoral::DeadFireCoral(): return 8991;
- case DeadFireCoralBlock::DeadFireCoralBlock(): return 8977;
- case DeadFireCoralFan::DeadFireCoralFan(): return 9011;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9049;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9051;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9053;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9055;
- case DeadHornCoral::DeadHornCoral(): return 8993;
- case DeadHornCoralBlock::DeadHornCoralBlock(): return 8978;
- case DeadHornCoralFan::DeadHornCoralFan(): return 9013;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9057;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9059;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9061;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9063;
- case DeadTubeCoral::DeadTubeCoral(): return 8985;
- case DeadTubeCoralBlock::DeadTubeCoralBlock(): return 8974;
- case DeadTubeCoralFan::DeadTubeCoralFan(): return 9005;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9025;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9027;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9029;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9031;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::NorthSouth): return 1316;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::EastWest): return 1317;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingEast): return 1318;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingWest): return 1319;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingNorth): return 1320;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingSouth): return 1321;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::NorthSouth): return 1322;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::EastWest): return 1323;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingEast): return 1324;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingWest): return 1325;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingNorth): return 1326;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingSouth): return 1327;
- case DiamondBlock::DiamondBlock(): return 3353;
- case DiamondOre::DiamondOre(): return 3352;
- case Diorite::Diorite(): return 4;
- case DioriteSlab::DioriteSlab(DioriteSlab::Type::Top): return 10326;
- case DioriteSlab::DioriteSlab(DioriteSlab::Type::Bottom): return 10328;
- case DioriteSlab::DioriteSlab(DioriteSlab::Type::Double): return 10330;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10174;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10176;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10178;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10180;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10182;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10184;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10186;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10188;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10190;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10192;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10194;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10196;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10198;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10200;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10202;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10204;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10206;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10208;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10210;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10212;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10214;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10216;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10218;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10220;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10222;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10224;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10226;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10228;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10230;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10232;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10234;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10236;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10238;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10240;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10242;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10244;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10246;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10248;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10250;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10252;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low): return 11037;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None): return 11038;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low): return 11041;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None): return 11042;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low): return 11045;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None): return 11046;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low): return 11049;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None): return 11050;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low): return 11053;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None): return 11054;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low): return 11057;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None): return 11058;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low): return 11061;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None): return 11062;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low): return 11065;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None): return 11066;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low): return 11069;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None): return 11070;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low): return 11073;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None): return 11074;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low): return 11077;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None): return 11078;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low): return 11081;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None): return 11082;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low): return 11085;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None): return 11086;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low): return 11089;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None): return 11090;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low): return 11093;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None): return 11094;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low): return 11097;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None): return 11098;
- case Dirt::Dirt(): return 10;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, true): return 233;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, false): return 234;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, true): return 235;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, false): return 236;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, true): return 237;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, false): return 238;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, true): return 239;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, false): return 240;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, true): return 241;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, false): return 242;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, true): return 243;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, false): return 244;
- case DragonEgg::DragonEgg(): return 5139;
- case DragonHead::DragonHead(0): return 6054;
- case DragonHead::DragonHead(1): return 6055;
- case DragonHead::DragonHead(2): return 6056;
- case DragonHead::DragonHead(3): return 6057;
- case DragonHead::DragonHead(4): return 6058;
- case DragonHead::DragonHead(5): return 6059;
- case DragonHead::DragonHead(6): return 6060;
- case DragonHead::DragonHead(7): return 6061;
- case DragonHead::DragonHead(8): return 6062;
- case DragonHead::DragonHead(9): return 6063;
- case DragonHead::DragonHead(10): return 6064;
- case DragonHead::DragonHead(11): return 6065;
- case DragonHead::DragonHead(12): return 6066;
- case DragonHead::DragonHead(13): return 6067;
- case DragonHead::DragonHead(14): return 6068;
- case DragonHead::DragonHead(15): return 6069;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZM): return 6070;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZP): return 6071;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XM): return 6072;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XP): return 6073;
- case DriedKelpBlock::DriedKelpBlock(): return 8961;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, true): return 6299;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, false): return 6300;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, true): return 6301;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, false): return 6302;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, true): return 6303;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, false): return 6304;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, true): return 6305;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, false): return 6306;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, true): return 6307;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, false): return 6308;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, true): return 6309;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, false): return 6310;
- case EmeraldBlock::EmeraldBlock(): return 5387;
- case EmeraldOre::EmeraldOre(): return 5234;
- case EnchantingTable::EnchantingTable(): return 5116;
- case EndGateway::EndGateway(): return 8688;
- case EndPortal::EndPortal(): return 5129;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZM): return 5130;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZP): return 5131;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XM): return 5132;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XP): return 5133;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZM): return 5134;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZP): return 5135;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XM): return 5136;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XP): return 5137;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZM): return 8522;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_XP): return 8523;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZP): return 8524;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_XM): return 8525;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_YP): return 8526;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_YM): return 8527;
- case EndStone::EndStone(): return 5138;
- case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Top): return 10284;
- case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Bottom): return 10286;
- case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Double): return 10288;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 9534;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 9536;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 9538;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 9540;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 9542;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 9544;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 9546;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 9548;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 9550;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 9552;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 9554;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 9556;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 9558;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 9560;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 9562;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 9564;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 9566;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 9568;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 9570;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 9572;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 9574;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 9576;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 9578;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 9580;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 9582;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 9584;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 9586;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 9588;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 9590;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 9592;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 9594;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 9596;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 9598;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 9600;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 9602;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 9604;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 9606;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 9608;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 9610;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 9612;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 10973;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 10974;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 10977;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 10978;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 10981;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 10982;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 10985;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 10986;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 10989;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 10990;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 10993;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 10994;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 10997;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 10998;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 11001;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 11002;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 11005;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 11006;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 11009;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 11010;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 11013;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 11014;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 11017;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 11018;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 11021;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 11022;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 11025;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 11026;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 11029;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 11030;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 11033;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 11034;
- case EndStoneBricks::EndStoneBricks(): return 8682;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZM): return 5236;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZP): return 5238;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XM): return 5240;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XP): return 5242;
- case Farmland::Farmland(0): return 3363;
- case Farmland::Farmland(1): return 3364;
- case Farmland::Farmland(2): return 3365;
- case Farmland::Farmland(3): return 3366;
- case Farmland::Farmland(4): return 3367;
- case Farmland::Farmland(5): return 3368;
- case Farmland::Farmland(6): return 3369;
- case Farmland::Farmland(7): return 3370;
- case Fern::Fern(): return 1342;
- case Fire::Fire(0, true, true, true, true, true): return 1439;
- case Fire::Fire(0, true, true, true, true, false): return 1440;
- case Fire::Fire(0, true, true, true, false, true): return 1441;
- case Fire::Fire(0, true, true, true, false, false): return 1442;
- case Fire::Fire(0, true, true, false, true, true): return 1443;
- case Fire::Fire(0, true, true, false, true, false): return 1444;
- case Fire::Fire(0, true, true, false, false, true): return 1445;
- case Fire::Fire(0, true, true, false, false, false): return 1446;
- case Fire::Fire(0, true, false, true, true, true): return 1447;
- case Fire::Fire(0, true, false, true, true, false): return 1448;
- case Fire::Fire(0, true, false, true, false, true): return 1449;
- case Fire::Fire(0, true, false, true, false, false): return 1450;
- case Fire::Fire(0, true, false, false, true, true): return 1451;
- case Fire::Fire(0, true, false, false, true, false): return 1452;
- case Fire::Fire(0, true, false, false, false, true): return 1453;
- case Fire::Fire(0, true, false, false, false, false): return 1454;
- case Fire::Fire(0, false, true, true, true, true): return 1455;
- case Fire::Fire(0, false, true, true, true, false): return 1456;
- case Fire::Fire(0, false, true, true, false, true): return 1457;
- case Fire::Fire(0, false, true, true, false, false): return 1458;
- case Fire::Fire(0, false, true, false, true, true): return 1459;
- case Fire::Fire(0, false, true, false, true, false): return 1460;
- case Fire::Fire(0, false, true, false, false, true): return 1461;
- case Fire::Fire(0, false, true, false, false, false): return 1462;
- case Fire::Fire(0, false, false, true, true, true): return 1463;
- case Fire::Fire(0, false, false, true, true, false): return 1464;
- case Fire::Fire(0, false, false, true, false, true): return 1465;
- case Fire::Fire(0, false, false, true, false, false): return 1466;
- case Fire::Fire(0, false, false, false, true, true): return 1467;
- case Fire::Fire(0, false, false, false, true, false): return 1468;
- case Fire::Fire(0, false, false, false, false, true): return 1469;
- case Fire::Fire(0, false, false, false, false, false): return 1470;
- case Fire::Fire(1, true, true, true, true, true): return 1471;
- case Fire::Fire(1, true, true, true, true, false): return 1472;
- case Fire::Fire(1, true, true, true, false, true): return 1473;
- case Fire::Fire(1, true, true, true, false, false): return 1474;
- case Fire::Fire(1, true, true, false, true, true): return 1475;
- case Fire::Fire(1, true, true, false, true, false): return 1476;
- case Fire::Fire(1, true, true, false, false, true): return 1477;
- case Fire::Fire(1, true, true, false, false, false): return 1478;
- case Fire::Fire(1, true, false, true, true, true): return 1479;
- case Fire::Fire(1, true, false, true, true, false): return 1480;
- case Fire::Fire(1, true, false, true, false, true): return 1481;
- case Fire::Fire(1, true, false, true, false, false): return 1482;
- case Fire::Fire(1, true, false, false, true, true): return 1483;
- case Fire::Fire(1, true, false, false, true, false): return 1484;
- case Fire::Fire(1, true, false, false, false, true): return 1485;
- case Fire::Fire(1, true, false, false, false, false): return 1486;
- case Fire::Fire(1, false, true, true, true, true): return 1487;
- case Fire::Fire(1, false, true, true, true, false): return 1488;
- case Fire::Fire(1, false, true, true, false, true): return 1489;
- case Fire::Fire(1, false, true, true, false, false): return 1490;
- case Fire::Fire(1, false, true, false, true, true): return 1491;
- case Fire::Fire(1, false, true, false, true, false): return 1492;
- case Fire::Fire(1, false, true, false, false, true): return 1493;
- case Fire::Fire(1, false, true, false, false, false): return 1494;
- case Fire::Fire(1, false, false, true, true, true): return 1495;
- case Fire::Fire(1, false, false, true, true, false): return 1496;
- case Fire::Fire(1, false, false, true, false, true): return 1497;
- case Fire::Fire(1, false, false, true, false, false): return 1498;
- case Fire::Fire(1, false, false, false, true, true): return 1499;
- case Fire::Fire(1, false, false, false, true, false): return 1500;
- case Fire::Fire(1, false, false, false, false, true): return 1501;
- case Fire::Fire(1, false, false, false, false, false): return 1502;
- case Fire::Fire(2, true, true, true, true, true): return 1503;
- case Fire::Fire(2, true, true, true, true, false): return 1504;
- case Fire::Fire(2, true, true, true, false, true): return 1505;
- case Fire::Fire(2, true, true, true, false, false): return 1506;
- case Fire::Fire(2, true, true, false, true, true): return 1507;
- case Fire::Fire(2, true, true, false, true, false): return 1508;
- case Fire::Fire(2, true, true, false, false, true): return 1509;
- case Fire::Fire(2, true, true, false, false, false): return 1510;
- case Fire::Fire(2, true, false, true, true, true): return 1511;
- case Fire::Fire(2, true, false, true, true, false): return 1512;
- case Fire::Fire(2, true, false, true, false, true): return 1513;
- case Fire::Fire(2, true, false, true, false, false): return 1514;
- case Fire::Fire(2, true, false, false, true, true): return 1515;
- case Fire::Fire(2, true, false, false, true, false): return 1516;
- case Fire::Fire(2, true, false, false, false, true): return 1517;
- case Fire::Fire(2, true, false, false, false, false): return 1518;
- case Fire::Fire(2, false, true, true, true, true): return 1519;
- case Fire::Fire(2, false, true, true, true, false): return 1520;
- case Fire::Fire(2, false, true, true, false, true): return 1521;
- case Fire::Fire(2, false, true, true, false, false): return 1522;
- case Fire::Fire(2, false, true, false, true, true): return 1523;
- case Fire::Fire(2, false, true, false, true, false): return 1524;
- case Fire::Fire(2, false, true, false, false, true): return 1525;
- case Fire::Fire(2, false, true, false, false, false): return 1526;
- case Fire::Fire(2, false, false, true, true, true): return 1527;
- case Fire::Fire(2, false, false, true, true, false): return 1528;
- case Fire::Fire(2, false, false, true, false, true): return 1529;
- case Fire::Fire(2, false, false, true, false, false): return 1530;
- case Fire::Fire(2, false, false, false, true, true): return 1531;
- case Fire::Fire(2, false, false, false, true, false): return 1532;
- case Fire::Fire(2, false, false, false, false, true): return 1533;
- case Fire::Fire(2, false, false, false, false, false): return 1534;
- case Fire::Fire(3, true, true, true, true, true): return 1535;
- case Fire::Fire(3, true, true, true, true, false): return 1536;
- case Fire::Fire(3, true, true, true, false, true): return 1537;
- case Fire::Fire(3, true, true, true, false, false): return 1538;
- case Fire::Fire(3, true, true, false, true, true): return 1539;
- case Fire::Fire(3, true, true, false, true, false): return 1540;
- case Fire::Fire(3, true, true, false, false, true): return 1541;
- case Fire::Fire(3, true, true, false, false, false): return 1542;
- case Fire::Fire(3, true, false, true, true, true): return 1543;
- case Fire::Fire(3, true, false, true, true, false): return 1544;
- case Fire::Fire(3, true, false, true, false, true): return 1545;
- case Fire::Fire(3, true, false, true, false, false): return 1546;
- case Fire::Fire(3, true, false, false, true, true): return 1547;
- case Fire::Fire(3, true, false, false, true, false): return 1548;
- case Fire::Fire(3, true, false, false, false, true): return 1549;
- case Fire::Fire(3, true, false, false, false, false): return 1550;
- case Fire::Fire(3, false, true, true, true, true): return 1551;
- case Fire::Fire(3, false, true, true, true, false): return 1552;
- case Fire::Fire(3, false, true, true, false, true): return 1553;
- case Fire::Fire(3, false, true, true, false, false): return 1554;
- case Fire::Fire(3, false, true, false, true, true): return 1555;
- case Fire::Fire(3, false, true, false, true, false): return 1556;
- case Fire::Fire(3, false, true, false, false, true): return 1557;
- case Fire::Fire(3, false, true, false, false, false): return 1558;
- case Fire::Fire(3, false, false, true, true, true): return 1559;
- case Fire::Fire(3, false, false, true, true, false): return 1560;
- case Fire::Fire(3, false, false, true, false, true): return 1561;
- case Fire::Fire(3, false, false, true, false, false): return 1562;
- case Fire::Fire(3, false, false, false, true, true): return 1563;
- case Fire::Fire(3, false, false, false, true, false): return 1564;
- case Fire::Fire(3, false, false, false, false, true): return 1565;
- case Fire::Fire(3, false, false, false, false, false): return 1566;
- case Fire::Fire(4, true, true, true, true, true): return 1567;
- case Fire::Fire(4, true, true, true, true, false): return 1568;
- case Fire::Fire(4, true, true, true, false, true): return 1569;
- case Fire::Fire(4, true, true, true, false, false): return 1570;
- case Fire::Fire(4, true, true, false, true, true): return 1571;
- case Fire::Fire(4, true, true, false, true, false): return 1572;
- case Fire::Fire(4, true, true, false, false, true): return 1573;
- case Fire::Fire(4, true, true, false, false, false): return 1574;
- case Fire::Fire(4, true, false, true, true, true): return 1575;
- case Fire::Fire(4, true, false, true, true, false): return 1576;
- case Fire::Fire(4, true, false, true, false, true): return 1577;
- case Fire::Fire(4, true, false, true, false, false): return 1578;
- case Fire::Fire(4, true, false, false, true, true): return 1579;
- case Fire::Fire(4, true, false, false, true, false): return 1580;
- case Fire::Fire(4, true, false, false, false, true): return 1581;
- case Fire::Fire(4, true, false, false, false, false): return 1582;
- case Fire::Fire(4, false, true, true, true, true): return 1583;
- case Fire::Fire(4, false, true, true, true, false): return 1584;
- case Fire::Fire(4, false, true, true, false, true): return 1585;
- case Fire::Fire(4, false, true, true, false, false): return 1586;
- case Fire::Fire(4, false, true, false, true, true): return 1587;
- case Fire::Fire(4, false, true, false, true, false): return 1588;
- case Fire::Fire(4, false, true, false, false, true): return 1589;
- case Fire::Fire(4, false, true, false, false, false): return 1590;
- case Fire::Fire(4, false, false, true, true, true): return 1591;
- case Fire::Fire(4, false, false, true, true, false): return 1592;
- case Fire::Fire(4, false, false, true, false, true): return 1593;
- case Fire::Fire(4, false, false, true, false, false): return 1594;
- case Fire::Fire(4, false, false, false, true, true): return 1595;
- case Fire::Fire(4, false, false, false, true, false): return 1596;
- case Fire::Fire(4, false, false, false, false, true): return 1597;
- case Fire::Fire(4, false, false, false, false, false): return 1598;
- case Fire::Fire(5, true, true, true, true, true): return 1599;
- case Fire::Fire(5, true, true, true, true, false): return 1600;
- case Fire::Fire(5, true, true, true, false, true): return 1601;
- case Fire::Fire(5, true, true, true, false, false): return 1602;
- case Fire::Fire(5, true, true, false, true, true): return 1603;
- case Fire::Fire(5, true, true, false, true, false): return 1604;
- case Fire::Fire(5, true, true, false, false, true): return 1605;
- case Fire::Fire(5, true, true, false, false, false): return 1606;
- case Fire::Fire(5, true, false, true, true, true): return 1607;
- case Fire::Fire(5, true, false, true, true, false): return 1608;
- case Fire::Fire(5, true, false, true, false, true): return 1609;
- case Fire::Fire(5, true, false, true, false, false): return 1610;
- case Fire::Fire(5, true, false, false, true, true): return 1611;
- case Fire::Fire(5, true, false, false, true, false): return 1612;
- case Fire::Fire(5, true, false, false, false, true): return 1613;
- case Fire::Fire(5, true, false, false, false, false): return 1614;
- case Fire::Fire(5, false, true, true, true, true): return 1615;
- case Fire::Fire(5, false, true, true, true, false): return 1616;
- case Fire::Fire(5, false, true, true, false, true): return 1617;
- case Fire::Fire(5, false, true, true, false, false): return 1618;
- case Fire::Fire(5, false, true, false, true, true): return 1619;
- case Fire::Fire(5, false, true, false, true, false): return 1620;
- case Fire::Fire(5, false, true, false, false, true): return 1621;
- case Fire::Fire(5, false, true, false, false, false): return 1622;
- case Fire::Fire(5, false, false, true, true, true): return 1623;
- case Fire::Fire(5, false, false, true, true, false): return 1624;
- case Fire::Fire(5, false, false, true, false, true): return 1625;
- case Fire::Fire(5, false, false, true, false, false): return 1626;
- case Fire::Fire(5, false, false, false, true, true): return 1627;
- case Fire::Fire(5, false, false, false, true, false): return 1628;
- case Fire::Fire(5, false, false, false, false, true): return 1629;
- case Fire::Fire(5, false, false, false, false, false): return 1630;
- case Fire::Fire(6, true, true, true, true, true): return 1631;
- case Fire::Fire(6, true, true, true, true, false): return 1632;
- case Fire::Fire(6, true, true, true, false, true): return 1633;
- case Fire::Fire(6, true, true, true, false, false): return 1634;
- case Fire::Fire(6, true, true, false, true, true): return 1635;
- case Fire::Fire(6, true, true, false, true, false): return 1636;
- case Fire::Fire(6, true, true, false, false, true): return 1637;
- case Fire::Fire(6, true, true, false, false, false): return 1638;
- case Fire::Fire(6, true, false, true, true, true): return 1639;
- case Fire::Fire(6, true, false, true, true, false): return 1640;
- case Fire::Fire(6, true, false, true, false, true): return 1641;
- case Fire::Fire(6, true, false, true, false, false): return 1642;
- case Fire::Fire(6, true, false, false, true, true): return 1643;
- case Fire::Fire(6, true, false, false, true, false): return 1644;
- case Fire::Fire(6, true, false, false, false, true): return 1645;
- case Fire::Fire(6, true, false, false, false, false): return 1646;
- case Fire::Fire(6, false, true, true, true, true): return 1647;
- case Fire::Fire(6, false, true, true, true, false): return 1648;
- case Fire::Fire(6, false, true, true, false, true): return 1649;
- case Fire::Fire(6, false, true, true, false, false): return 1650;
- case Fire::Fire(6, false, true, false, true, true): return 1651;
- case Fire::Fire(6, false, true, false, true, false): return 1652;
- case Fire::Fire(6, false, true, false, false, true): return 1653;
- case Fire::Fire(6, false, true, false, false, false): return 1654;
- case Fire::Fire(6, false, false, true, true, true): return 1655;
- case Fire::Fire(6, false, false, true, true, false): return 1656;
- case Fire::Fire(6, false, false, true, false, true): return 1657;
- case Fire::Fire(6, false, false, true, false, false): return 1658;
- case Fire::Fire(6, false, false, false, true, true): return 1659;
- case Fire::Fire(6, false, false, false, true, false): return 1660;
- case Fire::Fire(6, false, false, false, false, true): return 1661;
- case Fire::Fire(6, false, false, false, false, false): return 1662;
- case Fire::Fire(7, true, true, true, true, true): return 1663;
- case Fire::Fire(7, true, true, true, true, false): return 1664;
- case Fire::Fire(7, true, true, true, false, true): return 1665;
- case Fire::Fire(7, true, true, true, false, false): return 1666;
- case Fire::Fire(7, true, true, false, true, true): return 1667;
- case Fire::Fire(7, true, true, false, true, false): return 1668;
- case Fire::Fire(7, true, true, false, false, true): return 1669;
- case Fire::Fire(7, true, true, false, false, false): return 1670;
- case Fire::Fire(7, true, false, true, true, true): return 1671;
- case Fire::Fire(7, true, false, true, true, false): return 1672;
- case Fire::Fire(7, true, false, true, false, true): return 1673;
- case Fire::Fire(7, true, false, true, false, false): return 1674;
- case Fire::Fire(7, true, false, false, true, true): return 1675;
- case Fire::Fire(7, true, false, false, true, false): return 1676;
- case Fire::Fire(7, true, false, false, false, true): return 1677;
- case Fire::Fire(7, true, false, false, false, false): return 1678;
- case Fire::Fire(7, false, true, true, true, true): return 1679;
- case Fire::Fire(7, false, true, true, true, false): return 1680;
- case Fire::Fire(7, false, true, true, false, true): return 1681;
- case Fire::Fire(7, false, true, true, false, false): return 1682;
- case Fire::Fire(7, false, true, false, true, true): return 1683;
- case Fire::Fire(7, false, true, false, true, false): return 1684;
- case Fire::Fire(7, false, true, false, false, true): return 1685;
- case Fire::Fire(7, false, true, false, false, false): return 1686;
- case Fire::Fire(7, false, false, true, true, true): return 1687;
- case Fire::Fire(7, false, false, true, true, false): return 1688;
- case Fire::Fire(7, false, false, true, false, true): return 1689;
- case Fire::Fire(7, false, false, true, false, false): return 1690;
- case Fire::Fire(7, false, false, false, true, true): return 1691;
- case Fire::Fire(7, false, false, false, true, false): return 1692;
- case Fire::Fire(7, false, false, false, false, true): return 1693;
- case Fire::Fire(7, false, false, false, false, false): return 1694;
- case Fire::Fire(8, true, true, true, true, true): return 1695;
- case Fire::Fire(8, true, true, true, true, false): return 1696;
- case Fire::Fire(8, true, true, true, false, true): return 1697;
- case Fire::Fire(8, true, true, true, false, false): return 1698;
- case Fire::Fire(8, true, true, false, true, true): return 1699;
- case Fire::Fire(8, true, true, false, true, false): return 1700;
- case Fire::Fire(8, true, true, false, false, true): return 1701;
- case Fire::Fire(8, true, true, false, false, false): return 1702;
- case Fire::Fire(8, true, false, true, true, true): return 1703;
- case Fire::Fire(8, true, false, true, true, false): return 1704;
- case Fire::Fire(8, true, false, true, false, true): return 1705;
- case Fire::Fire(8, true, false, true, false, false): return 1706;
- case Fire::Fire(8, true, false, false, true, true): return 1707;
- case Fire::Fire(8, true, false, false, true, false): return 1708;
- case Fire::Fire(8, true, false, false, false, true): return 1709;
- case Fire::Fire(8, true, false, false, false, false): return 1710;
- case Fire::Fire(8, false, true, true, true, true): return 1711;
- case Fire::Fire(8, false, true, true, true, false): return 1712;
- case Fire::Fire(8, false, true, true, false, true): return 1713;
- case Fire::Fire(8, false, true, true, false, false): return 1714;
- case Fire::Fire(8, false, true, false, true, true): return 1715;
- case Fire::Fire(8, false, true, false, true, false): return 1716;
- case Fire::Fire(8, false, true, false, false, true): return 1717;
- case Fire::Fire(8, false, true, false, false, false): return 1718;
- case Fire::Fire(8, false, false, true, true, true): return 1719;
- case Fire::Fire(8, false, false, true, true, false): return 1720;
- case Fire::Fire(8, false, false, true, false, true): return 1721;
- case Fire::Fire(8, false, false, true, false, false): return 1722;
- case Fire::Fire(8, false, false, false, true, true): return 1723;
- case Fire::Fire(8, false, false, false, true, false): return 1724;
- case Fire::Fire(8, false, false, false, false, true): return 1725;
- case Fire::Fire(8, false, false, false, false, false): return 1726;
- case Fire::Fire(9, true, true, true, true, true): return 1727;
- case Fire::Fire(9, true, true, true, true, false): return 1728;
- case Fire::Fire(9, true, true, true, false, true): return 1729;
- case Fire::Fire(9, true, true, true, false, false): return 1730;
- case Fire::Fire(9, true, true, false, true, true): return 1731;
- case Fire::Fire(9, true, true, false, true, false): return 1732;
- case Fire::Fire(9, true, true, false, false, true): return 1733;
- case Fire::Fire(9, true, true, false, false, false): return 1734;
- case Fire::Fire(9, true, false, true, true, true): return 1735;
- case Fire::Fire(9, true, false, true, true, false): return 1736;
- case Fire::Fire(9, true, false, true, false, true): return 1737;
- case Fire::Fire(9, true, false, true, false, false): return 1738;
- case Fire::Fire(9, true, false, false, true, true): return 1739;
- case Fire::Fire(9, true, false, false, true, false): return 1740;
- case Fire::Fire(9, true, false, false, false, true): return 1741;
- case Fire::Fire(9, true, false, false, false, false): return 1742;
- case Fire::Fire(9, false, true, true, true, true): return 1743;
- case Fire::Fire(9, false, true, true, true, false): return 1744;
- case Fire::Fire(9, false, true, true, false, true): return 1745;
- case Fire::Fire(9, false, true, true, false, false): return 1746;
- case Fire::Fire(9, false, true, false, true, true): return 1747;
- case Fire::Fire(9, false, true, false, true, false): return 1748;
- case Fire::Fire(9, false, true, false, false, true): return 1749;
- case Fire::Fire(9, false, true, false, false, false): return 1750;
- case Fire::Fire(9, false, false, true, true, true): return 1751;
- case Fire::Fire(9, false, false, true, true, false): return 1752;
- case Fire::Fire(9, false, false, true, false, true): return 1753;
- case Fire::Fire(9, false, false, true, false, false): return 1754;
- case Fire::Fire(9, false, false, false, true, true): return 1755;
- case Fire::Fire(9, false, false, false, true, false): return 1756;
- case Fire::Fire(9, false, false, false, false, true): return 1757;
- case Fire::Fire(9, false, false, false, false, false): return 1758;
- case Fire::Fire(10, true, true, true, true, true): return 1759;
- case Fire::Fire(10, true, true, true, true, false): return 1760;
- case Fire::Fire(10, true, true, true, false, true): return 1761;
- case Fire::Fire(10, true, true, true, false, false): return 1762;
- case Fire::Fire(10, true, true, false, true, true): return 1763;
- case Fire::Fire(10, true, true, false, true, false): return 1764;
- case Fire::Fire(10, true, true, false, false, true): return 1765;
- case Fire::Fire(10, true, true, false, false, false): return 1766;
- case Fire::Fire(10, true, false, true, true, true): return 1767;
- case Fire::Fire(10, true, false, true, true, false): return 1768;
- case Fire::Fire(10, true, false, true, false, true): return 1769;
- case Fire::Fire(10, true, false, true, false, false): return 1770;
- case Fire::Fire(10, true, false, false, true, true): return 1771;
- case Fire::Fire(10, true, false, false, true, false): return 1772;
- case Fire::Fire(10, true, false, false, false, true): return 1773;
- case Fire::Fire(10, true, false, false, false, false): return 1774;
- case Fire::Fire(10, false, true, true, true, true): return 1775;
- case Fire::Fire(10, false, true, true, true, false): return 1776;
- case Fire::Fire(10, false, true, true, false, true): return 1777;
- case Fire::Fire(10, false, true, true, false, false): return 1778;
- case Fire::Fire(10, false, true, false, true, true): return 1779;
- case Fire::Fire(10, false, true, false, true, false): return 1780;
- case Fire::Fire(10, false, true, false, false, true): return 1781;
- case Fire::Fire(10, false, true, false, false, false): return 1782;
- case Fire::Fire(10, false, false, true, true, true): return 1783;
- case Fire::Fire(10, false, false, true, true, false): return 1784;
- case Fire::Fire(10, false, false, true, false, true): return 1785;
- case Fire::Fire(10, false, false, true, false, false): return 1786;
- case Fire::Fire(10, false, false, false, true, true): return 1787;
- case Fire::Fire(10, false, false, false, true, false): return 1788;
- case Fire::Fire(10, false, false, false, false, true): return 1789;
- case Fire::Fire(10, false, false, false, false, false): return 1790;
- case Fire::Fire(11, true, true, true, true, true): return 1791;
- case Fire::Fire(11, true, true, true, true, false): return 1792;
- case Fire::Fire(11, true, true, true, false, true): return 1793;
- case Fire::Fire(11, true, true, true, false, false): return 1794;
- case Fire::Fire(11, true, true, false, true, true): return 1795;
- case Fire::Fire(11, true, true, false, true, false): return 1796;
- case Fire::Fire(11, true, true, false, false, true): return 1797;
- case Fire::Fire(11, true, true, false, false, false): return 1798;
- case Fire::Fire(11, true, false, true, true, true): return 1799;
- case Fire::Fire(11, true, false, true, true, false): return 1800;
- case Fire::Fire(11, true, false, true, false, true): return 1801;
- case Fire::Fire(11, true, false, true, false, false): return 1802;
- case Fire::Fire(11, true, false, false, true, true): return 1803;
- case Fire::Fire(11, true, false, false, true, false): return 1804;
- case Fire::Fire(11, true, false, false, false, true): return 1805;
- case Fire::Fire(11, true, false, false, false, false): return 1806;
- case Fire::Fire(11, false, true, true, true, true): return 1807;
- case Fire::Fire(11, false, true, true, true, false): return 1808;
- case Fire::Fire(11, false, true, true, false, true): return 1809;
- case Fire::Fire(11, false, true, true, false, false): return 1810;
- case Fire::Fire(11, false, true, false, true, true): return 1811;
- case Fire::Fire(11, false, true, false, true, false): return 1812;
- case Fire::Fire(11, false, true, false, false, true): return 1813;
- case Fire::Fire(11, false, true, false, false, false): return 1814;
- case Fire::Fire(11, false, false, true, true, true): return 1815;
- case Fire::Fire(11, false, false, true, true, false): return 1816;
- case Fire::Fire(11, false, false, true, false, true): return 1817;
- case Fire::Fire(11, false, false, true, false, false): return 1818;
- case Fire::Fire(11, false, false, false, true, true): return 1819;
- case Fire::Fire(11, false, false, false, true, false): return 1820;
- case Fire::Fire(11, false, false, false, false, true): return 1821;
- case Fire::Fire(11, false, false, false, false, false): return 1822;
- case Fire::Fire(12, true, true, true, true, true): return 1823;
- case Fire::Fire(12, true, true, true, true, false): return 1824;
- case Fire::Fire(12, true, true, true, false, true): return 1825;
- case Fire::Fire(12, true, true, true, false, false): return 1826;
- case Fire::Fire(12, true, true, false, true, true): return 1827;
- case Fire::Fire(12, true, true, false, true, false): return 1828;
- case Fire::Fire(12, true, true, false, false, true): return 1829;
- case Fire::Fire(12, true, true, false, false, false): return 1830;
- case Fire::Fire(12, true, false, true, true, true): return 1831;
- case Fire::Fire(12, true, false, true, true, false): return 1832;
- case Fire::Fire(12, true, false, true, false, true): return 1833;
- case Fire::Fire(12, true, false, true, false, false): return 1834;
- case Fire::Fire(12, true, false, false, true, true): return 1835;
- case Fire::Fire(12, true, false, false, true, false): return 1836;
- case Fire::Fire(12, true, false, false, false, true): return 1837;
- case Fire::Fire(12, true, false, false, false, false): return 1838;
- case Fire::Fire(12, false, true, true, true, true): return 1839;
- case Fire::Fire(12, false, true, true, true, false): return 1840;
- case Fire::Fire(12, false, true, true, false, true): return 1841;
- case Fire::Fire(12, false, true, true, false, false): return 1842;
- case Fire::Fire(12, false, true, false, true, true): return 1843;
- case Fire::Fire(12, false, true, false, true, false): return 1844;
- case Fire::Fire(12, false, true, false, false, true): return 1845;
- case Fire::Fire(12, false, true, false, false, false): return 1846;
- case Fire::Fire(12, false, false, true, true, true): return 1847;
- case Fire::Fire(12, false, false, true, true, false): return 1848;
- case Fire::Fire(12, false, false, true, false, true): return 1849;
- case Fire::Fire(12, false, false, true, false, false): return 1850;
- case Fire::Fire(12, false, false, false, true, true): return 1851;
- case Fire::Fire(12, false, false, false, true, false): return 1852;
- case Fire::Fire(12, false, false, false, false, true): return 1853;
- case Fire::Fire(12, false, false, false, false, false): return 1854;
- case Fire::Fire(13, true, true, true, true, true): return 1855;
- case Fire::Fire(13, true, true, true, true, false): return 1856;
- case Fire::Fire(13, true, true, true, false, true): return 1857;
- case Fire::Fire(13, true, true, true, false, false): return 1858;
- case Fire::Fire(13, true, true, false, true, true): return 1859;
- case Fire::Fire(13, true, true, false, true, false): return 1860;
- case Fire::Fire(13, true, true, false, false, true): return 1861;
- case Fire::Fire(13, true, true, false, false, false): return 1862;
- case Fire::Fire(13, true, false, true, true, true): return 1863;
- case Fire::Fire(13, true, false, true, true, false): return 1864;
- case Fire::Fire(13, true, false, true, false, true): return 1865;
- case Fire::Fire(13, true, false, true, false, false): return 1866;
- case Fire::Fire(13, true, false, false, true, true): return 1867;
- case Fire::Fire(13, true, false, false, true, false): return 1868;
- case Fire::Fire(13, true, false, false, false, true): return 1869;
- case Fire::Fire(13, true, false, false, false, false): return 1870;
- case Fire::Fire(13, false, true, true, true, true): return 1871;
- case Fire::Fire(13, false, true, true, true, false): return 1872;
- case Fire::Fire(13, false, true, true, false, true): return 1873;
- case Fire::Fire(13, false, true, true, false, false): return 1874;
- case Fire::Fire(13, false, true, false, true, true): return 1875;
- case Fire::Fire(13, false, true, false, true, false): return 1876;
- case Fire::Fire(13, false, true, false, false, true): return 1877;
- case Fire::Fire(13, false, true, false, false, false): return 1878;
- case Fire::Fire(13, false, false, true, true, true): return 1879;
- case Fire::Fire(13, false, false, true, true, false): return 1880;
- case Fire::Fire(13, false, false, true, false, true): return 1881;
- case Fire::Fire(13, false, false, true, false, false): return 1882;
- case Fire::Fire(13, false, false, false, true, true): return 1883;
- case Fire::Fire(13, false, false, false, true, false): return 1884;
- case Fire::Fire(13, false, false, false, false, true): return 1885;
- case Fire::Fire(13, false, false, false, false, false): return 1886;
- case Fire::Fire(14, true, true, true, true, true): return 1887;
- case Fire::Fire(14, true, true, true, true, false): return 1888;
- case Fire::Fire(14, true, true, true, false, true): return 1889;
- case Fire::Fire(14, true, true, true, false, false): return 1890;
- case Fire::Fire(14, true, true, false, true, true): return 1891;
- case Fire::Fire(14, true, true, false, true, false): return 1892;
- case Fire::Fire(14, true, true, false, false, true): return 1893;
- case Fire::Fire(14, true, true, false, false, false): return 1894;
- case Fire::Fire(14, true, false, true, true, true): return 1895;
- case Fire::Fire(14, true, false, true, true, false): return 1896;
- case Fire::Fire(14, true, false, true, false, true): return 1897;
- case Fire::Fire(14, true, false, true, false, false): return 1898;
- case Fire::Fire(14, true, false, false, true, true): return 1899;
- case Fire::Fire(14, true, false, false, true, false): return 1900;
- case Fire::Fire(14, true, false, false, false, true): return 1901;
- case Fire::Fire(14, true, false, false, false, false): return 1902;
- case Fire::Fire(14, false, true, true, true, true): return 1903;
- case Fire::Fire(14, false, true, true, true, false): return 1904;
- case Fire::Fire(14, false, true, true, false, true): return 1905;
- case Fire::Fire(14, false, true, true, false, false): return 1906;
- case Fire::Fire(14, false, true, false, true, true): return 1907;
- case Fire::Fire(14, false, true, false, true, false): return 1908;
- case Fire::Fire(14, false, true, false, false, true): return 1909;
- case Fire::Fire(14, false, true, false, false, false): return 1910;
- case Fire::Fire(14, false, false, true, true, true): return 1911;
- case Fire::Fire(14, false, false, true, true, false): return 1912;
- case Fire::Fire(14, false, false, true, false, true): return 1913;
- case Fire::Fire(14, false, false, true, false, false): return 1914;
- case Fire::Fire(14, false, false, false, true, true): return 1915;
- case Fire::Fire(14, false, false, false, true, false): return 1916;
- case Fire::Fire(14, false, false, false, false, true): return 1917;
- case Fire::Fire(14, false, false, false, false, false): return 1918;
- case Fire::Fire(15, true, true, true, true, true): return 1919;
- case Fire::Fire(15, true, true, true, true, false): return 1920;
- case Fire::Fire(15, true, true, true, false, true): return 1921;
- case Fire::Fire(15, true, true, true, false, false): return 1922;
- case Fire::Fire(15, true, true, false, true, true): return 1923;
- case Fire::Fire(15, true, true, false, true, false): return 1924;
- case Fire::Fire(15, true, true, false, false, true): return 1925;
- case Fire::Fire(15, true, true, false, false, false): return 1926;
- case Fire::Fire(15, true, false, true, true, true): return 1927;
- case Fire::Fire(15, true, false, true, true, false): return 1928;
- case Fire::Fire(15, true, false, true, false, true): return 1929;
- case Fire::Fire(15, true, false, true, false, false): return 1930;
- case Fire::Fire(15, true, false, false, true, true): return 1931;
- case Fire::Fire(15, true, false, false, true, false): return 1932;
- case Fire::Fire(15, true, false, false, false, true): return 1933;
- case Fire::Fire(15, true, false, false, false, false): return 1934;
- case Fire::Fire(15, false, true, true, true, true): return 1935;
- case Fire::Fire(15, false, true, true, true, false): return 1936;
- case Fire::Fire(15, false, true, true, false, true): return 1937;
- case Fire::Fire(15, false, true, true, false, false): return 1938;
- case Fire::Fire(15, false, true, false, true, true): return 1939;
- case Fire::Fire(15, false, true, false, true, false): return 1940;
- case Fire::Fire(15, false, true, false, false, true): return 1941;
- case Fire::Fire(15, false, true, false, false, false): return 1942;
- case Fire::Fire(15, false, false, true, true, true): return 1943;
- case Fire::Fire(15, false, false, true, true, false): return 1944;
- case Fire::Fire(15, false, false, true, false, true): return 1945;
- case Fire::Fire(15, false, false, true, false, false): return 1946;
- case Fire::Fire(15, false, false, false, true, true): return 1947;
- case Fire::Fire(15, false, false, false, true, false): return 1948;
- case Fire::Fire(15, false, false, false, false, true): return 1949;
- case Fire::Fire(15, false, false, false, false, false): return 1950;
- case FireCoral::FireCoral(): return 9001;
- case FireCoralBlock::FireCoralBlock(): return 8982;
- case FireCoralFan::FireCoralFan(): return 9021;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9089;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9091;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9093;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9095;
- case FletchingTable::FletchingTable(): return 11164;
- case FlowerPot::FlowerPot(): return 5769;
- case FrostedIce::FrostedIce(0): return 8713;
- case FrostedIce::FrostedIce(1): return 8714;
- case FrostedIce::FrostedIce(2): return 8715;
- case FrostedIce::FrostedIce(3): return 8716;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, true): return 3371;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, false): return 3372;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, true): return 3373;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, false): return 3374;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, true): return 3375;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, false): return 3376;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, true): return 3377;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, false): return 3378;
- case Glass::Glass(): return 230;
- case GlassPane::GlassPane(true, true, true, true): return 4717;
- case GlassPane::GlassPane(true, true, true, false): return 4718;
- case GlassPane::GlassPane(true, true, false, true): return 4721;
- case GlassPane::GlassPane(true, true, false, false): return 4722;
- case GlassPane::GlassPane(true, false, true, true): return 4725;
- case GlassPane::GlassPane(true, false, true, false): return 4726;
- case GlassPane::GlassPane(true, false, false, true): return 4729;
- case GlassPane::GlassPane(true, false, false, false): return 4730;
- case GlassPane::GlassPane(false, true, true, true): return 4733;
- case GlassPane::GlassPane(false, true, true, false): return 4734;
- case GlassPane::GlassPane(false, true, false, true): return 4737;
- case GlassPane::GlassPane(false, true, false, false): return 4738;
- case GlassPane::GlassPane(false, false, true, true): return 4741;
- case GlassPane::GlassPane(false, false, true, false): return 4742;
- case GlassPane::GlassPane(false, false, false, true): return 4745;
- case GlassPane::GlassPane(false, false, false, false): return 4746;
- case Glowstone::Glowstone(): return 3999;
- case GoldBlock::GoldBlock(): return 1426;
- case GoldOre::GoldOre(): return 69;
- case Granite::Granite(): return 2;
- case GraniteSlab::GraniteSlab(GraniteSlab::Type::Top): return 10302;
- case GraniteSlab::GraniteSlab(GraniteSlab::Type::Bottom): return 10304;
- case GraniteSlab::GraniteSlab(GraniteSlab::Type::Double): return 10306;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 9854;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 9856;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 9858;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 9860;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 9862;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 9864;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 9866;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 9868;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 9870;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 9872;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 9874;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 9876;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 9878;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 9880;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 9882;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 9884;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 9886;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 9888;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 9890;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 9892;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 9894;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 9896;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 9898;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 9900;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 9902;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 9904;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 9906;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 9908;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 9910;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 9912;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 9914;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 9916;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 9918;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 9920;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 9922;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 9924;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 9926;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 9928;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 9930;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 9932;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low): return 10589;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None): return 10590;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low): return 10593;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None): return 10594;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low): return 10597;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None): return 10598;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low): return 10601;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None): return 10602;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low): return 10605;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None): return 10606;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low): return 10609;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None): return 10610;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low): return 10613;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None): return 10614;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low): return 10617;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None): return 10618;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low): return 10621;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None): return 10622;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low): return 10625;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None): return 10626;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low): return 10629;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None): return 10630;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low): return 10633;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None): return 10634;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low): return 10637;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None): return 10638;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low): return 10641;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None): return 10642;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low): return 10645;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None): return 10646;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low): return 10649;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None): return 10650;
- case Grass::Grass(): return 1341;
- case GrassBlock::GrassBlock(true): return 8;
- case GrassBlock::GrassBlock(false): return 9;
- case GrassPath::GrassPath(): return 8687;
- case Gravel::Gravel(): return 68;
- case GrayBanner::GrayBanner(0): return 7473;
- case GrayBanner::GrayBanner(1): return 7474;
- case GrayBanner::GrayBanner(2): return 7475;
- case GrayBanner::GrayBanner(3): return 7476;
- case GrayBanner::GrayBanner(4): return 7477;
- case GrayBanner::GrayBanner(5): return 7478;
- case GrayBanner::GrayBanner(6): return 7479;
- case GrayBanner::GrayBanner(7): return 7480;
- case GrayBanner::GrayBanner(8): return 7481;
- case GrayBanner::GrayBanner(9): return 7482;
- case GrayBanner::GrayBanner(10): return 7483;
- case GrayBanner::GrayBanner(11): return 7484;
- case GrayBanner::GrayBanner(12): return 7485;
- case GrayBanner::GrayBanner(13): return 7486;
- case GrayBanner::GrayBanner(14): return 7487;
- case GrayBanner::GrayBanner(15): return 7488;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Head): return 1160;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Foot): return 1161;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Head): return 1162;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Foot): return 1163;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Head): return 1164;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Foot): return 1165;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Head): return 1166;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Foot): return 1167;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Head): return 1168;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Foot): return 1169;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Head): return 1170;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Foot): return 1171;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Head): return 1172;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Foot): return 1173;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Head): return 1174;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Foot): return 1175;
- case GrayCarpet::GrayCarpet(): return 7337;
- case GrayConcrete::GrayConcrete(): return 8909;
- case GrayConcretePowder::GrayConcretePowder(): return 8925;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8866;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8867;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8868;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8869;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8784;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8785;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8786;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8787;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8788;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8789;
- case GrayStainedGlass::GrayStainedGlass(): return 4088;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, true): return 6553;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, false): return 6554;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, true): return 6557;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, false): return 6558;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, true): return 6561;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, false): return 6562;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, true): return 6565;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, false): return 6566;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, true): return 6569;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, false): return 6570;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, true): return 6573;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, false): return 6574;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, true): return 6577;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, false): return 6578;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, true): return 6581;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, false): return 6582;
- case GrayTerracotta::GrayTerracotta(): return 6318;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7645;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7646;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 7647;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 7648;
- case GrayWool::GrayWool(): return 1390;
- case GreenBanner::GreenBanner(0): return 7569;
- case GreenBanner::GreenBanner(1): return 7570;
- case GreenBanner::GreenBanner(2): return 7571;
- case GreenBanner::GreenBanner(3): return 7572;
- case GreenBanner::GreenBanner(4): return 7573;
- case GreenBanner::GreenBanner(5): return 7574;
- case GreenBanner::GreenBanner(6): return 7575;
- case GreenBanner::GreenBanner(7): return 7576;
- case GreenBanner::GreenBanner(8): return 7577;
- case GreenBanner::GreenBanner(9): return 7578;
- case GreenBanner::GreenBanner(10): return 7579;
- case GreenBanner::GreenBanner(11): return 7580;
- case GreenBanner::GreenBanner(12): return 7581;
- case GreenBanner::GreenBanner(13): return 7582;
- case GreenBanner::GreenBanner(14): return 7583;
- case GreenBanner::GreenBanner(15): return 7584;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Head): return 1256;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Foot): return 1257;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Head): return 1258;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Foot): return 1259;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Head): return 1260;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Foot): return 1261;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Head): return 1262;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Foot): return 1263;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Head): return 1264;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Foot): return 1265;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Head): return 1266;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Foot): return 1267;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Head): return 1268;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Foot): return 1269;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Head): return 1270;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Foot): return 1271;
- case GreenCarpet::GreenCarpet(): return 7343;
- case GreenConcrete::GreenConcrete(): return 8915;
- case GreenConcretePowder::GreenConcretePowder(): return 8931;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8890;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8891;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8892;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8893;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8820;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8821;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8822;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8823;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8824;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8825;
- case GreenStainedGlass::GreenStainedGlass(): return 4094;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, true): return 6745;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, false): return 6746;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, true): return 6749;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, false): return 6750;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, true): return 6753;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, false): return 6754;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, true): return 6757;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, false): return 6758;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, true): return 6761;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, false): return 6762;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, true): return 6765;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, false): return 6766;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, true): return 6769;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, false): return 6770;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, true): return 6773;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, false): return 6774;
- case GreenTerracotta::GreenTerracotta(): return 6324;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7669;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7670;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XM): return 7671;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XP): return 7672;
- case GreenWool::GreenWool(): return 1396;
- case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZM): return 11165;
- case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZP): return 11166;
- case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XM): return 11167;
- case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XP): return 11168;
- case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZM): return 11169;
- case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZP): return 11170;
- case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XM): return 11171;
- case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XP): return 11172;
- case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM): return 11173;
- case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP): return 11174;
- case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XM): return 11175;
- case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XP): return 11176;
- case HayBale::HayBale(HayBale::Axis::X): return 7327;
- case HayBale::HayBale(HayBale::Axis::Y): return 7328;
- case HayBale::HayBale(HayBale::Axis::Z): return 7329;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(0): return 6126;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(1): return 6127;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(2): return 6128;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(3): return 6129;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(4): return 6130;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(5): return 6131;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(6): return 6132;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(7): return 6133;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(8): return 6134;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(9): return 6135;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(10): return 6136;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(11): return 6137;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(12): return 6138;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(13): return 6139;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(14): return 6140;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(15): return 6141;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_YM): return 6192;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZM): return 6193;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZP): return 6194;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XM): return 6195;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XP): return 6196;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_YM): return 6197;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZM): return 6198;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZP): return 6199;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XM): return 6200;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XP): return 6201;
- case HornCoral::HornCoral(): return 9003;
- case HornCoralBlock::HornCoralBlock(): return 8983;
- case HornCoralFan::HornCoralFan(): return 9023;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9097;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9099;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9101;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9103;
- case Ice::Ice(): return 3927;
- case InfestedChiseledStoneBricks::InfestedChiseledStoneBricks(): return 4490;
- case InfestedCobblestone::InfestedCobblestone(): return 4486;
- case InfestedCrackedStoneBricks::InfestedCrackedStoneBricks(): return 4489;
- case InfestedMossyStoneBricks::InfestedMossyStoneBricks(): return 4488;
- case InfestedStone::InfestedStone(): return 4485;
- case InfestedStoneBricks::InfestedStoneBricks(): return 4487;
- case IronBars::IronBars(true, true, true, true): return 4685;
- case IronBars::IronBars(true, true, true, false): return 4686;
- case IronBars::IronBars(true, true, false, true): return 4689;
- case IronBars::IronBars(true, true, false, false): return 4690;
- case IronBars::IronBars(true, false, true, true): return 4693;
- case IronBars::IronBars(true, false, true, false): return 4694;
- case IronBars::IronBars(true, false, false, true): return 4697;
- case IronBars::IronBars(true, false, false, false): return 4698;
- case IronBars::IronBars(false, true, true, true): return 4701;
- case IronBars::IronBars(false, true, true, false): return 4702;
- case IronBars::IronBars(false, true, false, true): return 4705;
- case IronBars::IronBars(false, true, false, false): return 4706;
- case IronBars::IronBars(false, false, true, true): return 4709;
- case IronBars::IronBars(false, false, true, false): return 4710;
- case IronBars::IronBars(false, false, false, true): return 4713;
- case IronBars::IronBars(false, false, false, false): return 4714;
- case IronBlock::IronBlock(): return 1427;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3807;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3808;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3809;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3810;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3811;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3812;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3813;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3814;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3815;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3816;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3817;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3818;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3819;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3820;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3821;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3822;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3823;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3824;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3825;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3826;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3827;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3828;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3829;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3830;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3831;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3832;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3833;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3834;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3835;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3836;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3837;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3838;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3839;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3840;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3841;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3842;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3843;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3844;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3845;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3846;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3847;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3848;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3849;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3850;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3851;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3852;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3853;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3854;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3855;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3856;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3857;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3858;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3859;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3860;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3861;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3862;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3863;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3864;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3865;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3866;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3867;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3868;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3869;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3870;
- case IronOre::IronOre(): return 70;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, true): return 7002;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, false): return 7004;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, true): return 7006;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, false): return 7008;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, true): return 7010;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, false): return 7012;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, true): return 7014;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, false): return 7016;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, true): return 7018;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, false): return 7020;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, true): return 7022;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, false): return 7024;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, true): return 7026;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, false): return 7028;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, true): return 7030;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, false): return 7032;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, true): return 7034;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, false): return 7036;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, true): return 7038;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, false): return 7040;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, true): return 7042;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, false): return 7044;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, true): return 7046;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, false): return 7048;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, true): return 7050;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, false): return 7052;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, true): return 7054;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, false): return 7056;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, true): return 7058;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, false): return 7060;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, true): return 7062;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, false): return 7064;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZM): return 4006;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZP): return 4007;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XM): return 4008;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XP): return 4009;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::NorthUp): return 11256;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::EastUp): return 11257;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::SouthUp): return 11258;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::WestUp): return 11259;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::UpSouth): return 11260;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::DownSouth): return 11261;
- case Jukebox::Jukebox(true): return 3962;
- case Jukebox::Jukebox(false): return 3963;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5882;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5883;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5884;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5885;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5886;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5887;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5888;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5889;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5890;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5891;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5892;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5893;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5894;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5895;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5896;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5897;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5898;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5899;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5900;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5901;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5902;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5903;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5904;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5905;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8330;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8331;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8332;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8333;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8334;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8335;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8336;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8337;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8338;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8339;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8340;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8341;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8342;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8343;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8344;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8345;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8346;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8347;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8348;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8349;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8350;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8351;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8352;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8353;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8354;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8355;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8356;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8357;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8358;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8359;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8360;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8361;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8362;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8363;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8364;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8365;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8366;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8367;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8368;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8369;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8370;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8371;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8372;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8373;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8374;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8375;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8376;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8377;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8378;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8379;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8380;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8381;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8382;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8383;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8384;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8385;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8386;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8387;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8388;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8389;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8390;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8391;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8392;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8393;
- case JungleFence::JungleFence(true, true, true, true): return 8108;
- case JungleFence::JungleFence(true, true, true, false): return 8109;
- case JungleFence::JungleFence(true, true, false, true): return 8112;
- case JungleFence::JungleFence(true, true, false, false): return 8113;
- case JungleFence::JungleFence(true, false, true, true): return 8116;
- case JungleFence::JungleFence(true, false, true, false): return 8117;
- case JungleFence::JungleFence(true, false, false, true): return 8120;
- case JungleFence::JungleFence(true, false, false, false): return 8121;
- case JungleFence::JungleFence(false, true, true, true): return 8124;
- case JungleFence::JungleFence(false, true, true, false): return 8125;
- case JungleFence::JungleFence(false, true, false, true): return 8128;
- case JungleFence::JungleFence(false, true, false, false): return 8129;
- case JungleFence::JungleFence(false, false, true, true): return 8132;
- case JungleFence::JungleFence(false, false, true, false): return 8133;
- case JungleFence::JungleFence(false, false, false, true): return 8136;
- case JungleFence::JungleFence(false, false, false, false): return 8137;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7946;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7947;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7948;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7949;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7950;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7951;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7952;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7953;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7954;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7955;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7956;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7957;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7958;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7959;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7960;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7961;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7962;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7963;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7964;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7965;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7966;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7967;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7968;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7969;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7970;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7971;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7972;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7973;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7974;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7975;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7976;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7977;
- case JungleLeaves::JungleLeaves(1, true): return 186;
- case JungleLeaves::JungleLeaves(1, false): return 187;
- case JungleLeaves::JungleLeaves(2, true): return 188;
- case JungleLeaves::JungleLeaves(2, false): return 189;
- case JungleLeaves::JungleLeaves(3, true): return 190;
- case JungleLeaves::JungleLeaves(3, false): return 191;
- case JungleLeaves::JungleLeaves(4, true): return 192;
- case JungleLeaves::JungleLeaves(4, false): return 193;
- case JungleLeaves::JungleLeaves(5, true): return 194;
- case JungleLeaves::JungleLeaves(5, false): return 195;
- case JungleLeaves::JungleLeaves(6, true): return 196;
- case JungleLeaves::JungleLeaves(6, false): return 197;
- case JungleLeaves::JungleLeaves(7, true): return 198;
- case JungleLeaves::JungleLeaves(7, false): return 199;
- case JungleLog::JungleLog(JungleLog::Axis::X): return 81;
- case JungleLog::JungleLog(JungleLog::Axis::Y): return 82;
- case JungleLog::JungleLog(JungleLog::Axis::Z): return 83;
- case JunglePlanks::JunglePlanks(): return 18;
- case JunglePressurePlate::JunglePressurePlate(true): return 3877;
- case JunglePressurePlate::JunglePressurePlate(false): return 3878;
- case JungleSapling::JungleSapling(0): return 27;
- case JungleSapling::JungleSapling(1): return 28;
- case JungleSign::JungleSign(0): return 3508;
- case JungleSign::JungleSign(1): return 3510;
- case JungleSign::JungleSign(2): return 3512;
- case JungleSign::JungleSign(3): return 3514;
- case JungleSign::JungleSign(4): return 3516;
- case JungleSign::JungleSign(5): return 3518;
- case JungleSign::JungleSign(6): return 3520;
- case JungleSign::JungleSign(7): return 3522;
- case JungleSign::JungleSign(8): return 3524;
- case JungleSign::JungleSign(9): return 3526;
- case JungleSign::JungleSign(10): return 3528;
- case JungleSign::JungleSign(11): return 3530;
- case JungleSign::JungleSign(12): return 3532;
- case JungleSign::JungleSign(13): return 3534;
- case JungleSign::JungleSign(14): return 3536;
- case JungleSign::JungleSign(15): return 3538;
- case JungleSlab::JungleSlab(JungleSlab::Type::Top): return 7783;
- case JungleSlab::JungleSlab(JungleSlab::Type::Bottom): return 7785;
- case JungleSlab::JungleSlab(JungleSlab::Type::Double): return 7787;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5549;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5551;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5553;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5555;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5557;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5559;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5561;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5563;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5565;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5567;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5569;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5571;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5573;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5575;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5577;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5579;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5581;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5583;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5585;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5587;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5589;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5591;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5593;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5595;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5597;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5599;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5601;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5603;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5605;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5607;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5609;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5611;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5613;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5615;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5617;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5619;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5621;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5623;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5625;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5627;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, true): return 4290;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, false): return 4292;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, true): return 4294;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, false): return 4296;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, true): return 4298;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, false): return 4300;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, true): return 4302;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, false): return 4304;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, true): return 4306;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, false): return 4308;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, true): return 4310;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, false): return 4312;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, true): return 4314;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, false): return 4316;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, true): return 4318;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, false): return 4320;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, true): return 4322;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, false): return 4324;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, true): return 4326;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, false): return 4328;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, true): return 4330;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, false): return 4332;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, true): return 4334;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, false): return 4336;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, true): return 4338;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, false): return 4340;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, true): return 4342;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, false): return 4344;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, true): return 4346;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, false): return 4348;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, true): return 4350;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, false): return 4352;
- case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZM): return 3766;
- case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZP): return 3768;
- case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XM): return 3770;
- case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XP): return 3772;
- case JungleWood::JungleWood(JungleWood::Axis::X): return 117;
- case JungleWood::JungleWood(JungleWood::Axis::Y): return 118;
- case JungleWood::JungleWood(JungleWood::Axis::Z): return 119;
- case Kelp::Kelp(0): return 8934;
- case Kelp::Kelp(1): return 8935;
- case Kelp::Kelp(2): return 8936;
- case Kelp::Kelp(3): return 8937;
- case Kelp::Kelp(4): return 8938;
- case Kelp::Kelp(5): return 8939;
- case Kelp::Kelp(6): return 8940;
- case Kelp::Kelp(7): return 8941;
- case Kelp::Kelp(8): return 8942;
- case Kelp::Kelp(9): return 8943;
- case Kelp::Kelp(10): return 8944;
- case Kelp::Kelp(11): return 8945;
- case Kelp::Kelp(12): return 8946;
- case Kelp::Kelp(13): return 8947;
- case Kelp::Kelp(14): return 8948;
- case Kelp::Kelp(15): return 8949;
- case Kelp::Kelp(16): return 8950;
- case Kelp::Kelp(17): return 8951;
- case Kelp::Kelp(18): return 8952;
- case Kelp::Kelp(19): return 8953;
- case Kelp::Kelp(20): return 8954;
- case Kelp::Kelp(21): return 8955;
- case Kelp::Kelp(22): return 8956;
- case Kelp::Kelp(23): return 8957;
- case Kelp::Kelp(24): return 8958;
- case Kelp::Kelp(25): return 8959;
- case KelpPlant::KelpPlant(): return 8960;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZM): return 3636;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZP): return 3638;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_XM): return 3640;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_XP): return 3642;
- case Lantern::Lantern(true): return 11214;
- case Lantern::Lantern(false): return 11215;
- case LapisBlock::LapisBlock(): return 232;
- case LapisOre::LapisOre(): return 231;
- case LargeFern::LargeFern(LargeFern::Half::Upper): return 7359;
- case LargeFern::LargeFern(LargeFern::Half::Lower): return 7360;
- case Lava::Lava(0): return 50;
- case Lava::Lava(1): return 51;
- case Lava::Lava(2): return 52;
- case Lava::Lava(3): return 53;
- case Lava::Lava(4): return 54;
- case Lava::Lava(5): return 55;
- case Lava::Lava(6): return 56;
- case Lava::Lava(7): return 57;
- case Lava::Lava(8): return 58;
- case Lava::Lava(9): return 59;
- case Lava::Lava(10): return 60;
- case Lava::Lava(11): return 61;
- case Lava::Lava(12): return 62;
- case Lava::Lava(13): return 63;
- case Lava::Lava(14): return 64;
- case Lava::Lava(15): return 65;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, true): return 11177;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, false): return 11178;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, true): return 11179;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, false): return 11180;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, true): return 11181;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, false): return 11182;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, true): return 11183;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, false): return 11184;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, true): return 11185;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, false): return 11186;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, true): return 11187;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, false): return 11188;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, true): return 11189;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, false): return 11190;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, true): return 11191;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, false): return 11192;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3781;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3782;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3783;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3784;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3785;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3786;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3787;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3788;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3789;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3790;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3791;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3792;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3793;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3794;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3795;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3796;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3797;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3798;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3799;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3800;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3801;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3802;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3803;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3804;
- case LightBlueBanner::LightBlueBanner(0): return 7409;
- case LightBlueBanner::LightBlueBanner(1): return 7410;
- case LightBlueBanner::LightBlueBanner(2): return 7411;
- case LightBlueBanner::LightBlueBanner(3): return 7412;
- case LightBlueBanner::LightBlueBanner(4): return 7413;
- case LightBlueBanner::LightBlueBanner(5): return 7414;
- case LightBlueBanner::LightBlueBanner(6): return 7415;
- case LightBlueBanner::LightBlueBanner(7): return 7416;
- case LightBlueBanner::LightBlueBanner(8): return 7417;
- case LightBlueBanner::LightBlueBanner(9): return 7418;
- case LightBlueBanner::LightBlueBanner(10): return 7419;
- case LightBlueBanner::LightBlueBanner(11): return 7420;
- case LightBlueBanner::LightBlueBanner(12): return 7421;
- case LightBlueBanner::LightBlueBanner(13): return 7422;
- case LightBlueBanner::LightBlueBanner(14): return 7423;
- case LightBlueBanner::LightBlueBanner(15): return 7424;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Head): return 1096;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Foot): return 1097;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Head): return 1098;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Foot): return 1099;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Head): return 1100;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Foot): return 1101;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Head): return 1102;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Foot): return 1103;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Head): return 1104;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Foot): return 1105;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Head): return 1106;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Foot): return 1107;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Head): return 1108;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Foot): return 1109;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Head): return 1110;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Foot): return 1111;
- case LightBlueCarpet::LightBlueCarpet(): return 7333;
- case LightBlueConcrete::LightBlueConcrete(): return 8905;
- case LightBlueConcretePowder::LightBlueConcretePowder(): return 8921;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8850;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8851;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8852;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8853;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8760;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8761;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8762;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8763;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8764;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8765;
- case LightBlueStainedGlass::LightBlueStainedGlass(): return 4084;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, true): return 6425;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, false): return 6426;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, true): return 6429;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, false): return 6430;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, true): return 6433;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, false): return 6434;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, true): return 6437;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, false): return 6438;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, true): return 6441;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, false): return 6442;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, true): return 6445;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, false): return 6446;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, true): return 6449;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, false): return 6450;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, true): return 6453;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, false): return 6454;
- case LightBlueTerracotta::LightBlueTerracotta(): return 6314;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7629;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7630;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 7631;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 7632;
- case LightBlueWool::LightBlueWool(): return 1386;
- case LightGrayBanner::LightGrayBanner(0): return 7489;
- case LightGrayBanner::LightGrayBanner(1): return 7490;
- case LightGrayBanner::LightGrayBanner(2): return 7491;
- case LightGrayBanner::LightGrayBanner(3): return 7492;
- case LightGrayBanner::LightGrayBanner(4): return 7493;
- case LightGrayBanner::LightGrayBanner(5): return 7494;
- case LightGrayBanner::LightGrayBanner(6): return 7495;
- case LightGrayBanner::LightGrayBanner(7): return 7496;
- case LightGrayBanner::LightGrayBanner(8): return 7497;
- case LightGrayBanner::LightGrayBanner(9): return 7498;
- case LightGrayBanner::LightGrayBanner(10): return 7499;
- case LightGrayBanner::LightGrayBanner(11): return 7500;
- case LightGrayBanner::LightGrayBanner(12): return 7501;
- case LightGrayBanner::LightGrayBanner(13): return 7502;
- case LightGrayBanner::LightGrayBanner(14): return 7503;
- case LightGrayBanner::LightGrayBanner(15): return 7504;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Head): return 1176;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Foot): return 1177;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Head): return 1178;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Foot): return 1179;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Head): return 1180;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Foot): return 1181;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Head): return 1182;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Foot): return 1183;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Head): return 1184;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Foot): return 1185;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Head): return 1186;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Foot): return 1187;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Head): return 1188;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Foot): return 1189;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Head): return 1190;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Foot): return 1191;
- case LightGrayCarpet::LightGrayCarpet(): return 7338;
- case LightGrayConcrete::LightGrayConcrete(): return 8910;
- case LightGrayConcretePowder::LightGrayConcretePowder(): return 8926;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8870;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8871;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8872;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8873;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8790;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8791;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8792;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8793;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8794;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8795;
- case LightGrayStainedGlass::LightGrayStainedGlass(): return 4089;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, true): return 6585;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, false): return 6586;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, true): return 6589;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, false): return 6590;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, true): return 6593;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, false): return 6594;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, true): return 6597;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, false): return 6598;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, true): return 6601;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, false): return 6602;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, true): return 6605;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, false): return 6606;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, true): return 6609;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, false): return 6610;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, true): return 6613;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, false): return 6614;
- case LightGrayTerracotta::LightGrayTerracotta(): return 6319;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7649;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7650;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 7651;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 7652;
- case LightGrayWool::LightGrayWool(): return 1391;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(0): return 6110;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(1): return 6111;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(2): return 6112;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(3): return 6113;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(4): return 6114;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(5): return 6115;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(6): return 6116;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(7): return 6117;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(8): return 6118;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(9): return 6119;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(10): return 6120;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(11): return 6121;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(12): return 6122;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(13): return 6123;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(14): return 6124;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(15): return 6125;
- case Lilac::Lilac(Lilac::Half::Upper): return 7351;
- case Lilac::Lilac(Lilac::Half::Lower): return 7352;
- case LilyOfTheValley::LilyOfTheValley(): return 1423;
- case LilyPad::LilyPad(): return 4998;
- case LimeBanner::LimeBanner(0): return 7441;
- case LimeBanner::LimeBanner(1): return 7442;
- case LimeBanner::LimeBanner(2): return 7443;
- case LimeBanner::LimeBanner(3): return 7444;
- case LimeBanner::LimeBanner(4): return 7445;
- case LimeBanner::LimeBanner(5): return 7446;
- case LimeBanner::LimeBanner(6): return 7447;
- case LimeBanner::LimeBanner(7): return 7448;
- case LimeBanner::LimeBanner(8): return 7449;
- case LimeBanner::LimeBanner(9): return 7450;
- case LimeBanner::LimeBanner(10): return 7451;
- case LimeBanner::LimeBanner(11): return 7452;
- case LimeBanner::LimeBanner(12): return 7453;
- case LimeBanner::LimeBanner(13): return 7454;
- case LimeBanner::LimeBanner(14): return 7455;
- case LimeBanner::LimeBanner(15): return 7456;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Head): return 1128;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Foot): return 1129;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Head): return 1130;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Foot): return 1131;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Head): return 1132;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Foot): return 1133;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Head): return 1134;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Foot): return 1135;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Head): return 1136;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Foot): return 1137;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Head): return 1138;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Foot): return 1139;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Head): return 1140;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Foot): return 1141;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Head): return 1142;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Foot): return 1143;
- case LimeCarpet::LimeCarpet(): return 7335;
- case LimeConcrete::LimeConcrete(): return 8907;
- case LimeConcretePowder::LimeConcretePowder(): return 8923;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8858;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8859;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8860;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8861;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8772;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8773;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8774;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8775;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8776;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8777;
- case LimeStainedGlass::LimeStainedGlass(): return 4086;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, true): return 6489;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, false): return 6490;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, true): return 6493;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, false): return 6494;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, true): return 6497;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, false): return 6498;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, true): return 6501;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, false): return 6502;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, true): return 6505;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, false): return 6506;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, true): return 6509;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, false): return 6510;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, true): return 6513;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, false): return 6514;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, true): return 6517;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, false): return 6518;
- case LimeTerracotta::LimeTerracotta(): return 6316;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7637;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7638;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XM): return 7639;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XP): return 7640;
- case LimeWool::LimeWool(): return 1388;
- case Loom::Loom(eBlockFace::BLOCK_FACE_ZM): return 11131;
- case Loom::Loom(eBlockFace::BLOCK_FACE_ZP): return 11132;
- case Loom::Loom(eBlockFace::BLOCK_FACE_XM): return 11133;
- case Loom::Loom(eBlockFace::BLOCK_FACE_XP): return 11134;
- case MagentaBanner::MagentaBanner(0): return 7393;
- case MagentaBanner::MagentaBanner(1): return 7394;
- case MagentaBanner::MagentaBanner(2): return 7395;
- case MagentaBanner::MagentaBanner(3): return 7396;
- case MagentaBanner::MagentaBanner(4): return 7397;
- case MagentaBanner::MagentaBanner(5): return 7398;
- case MagentaBanner::MagentaBanner(6): return 7399;
- case MagentaBanner::MagentaBanner(7): return 7400;
- case MagentaBanner::MagentaBanner(8): return 7401;
- case MagentaBanner::MagentaBanner(9): return 7402;
- case MagentaBanner::MagentaBanner(10): return 7403;
- case MagentaBanner::MagentaBanner(11): return 7404;
- case MagentaBanner::MagentaBanner(12): return 7405;
- case MagentaBanner::MagentaBanner(13): return 7406;
- case MagentaBanner::MagentaBanner(14): return 7407;
- case MagentaBanner::MagentaBanner(15): return 7408;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Head): return 1080;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Foot): return 1081;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Head): return 1082;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Foot): return 1083;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Head): return 1084;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Foot): return 1085;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Head): return 1086;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Foot): return 1087;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Head): return 1088;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Foot): return 1089;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Head): return 1090;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Foot): return 1091;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Head): return 1092;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Foot): return 1093;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Head): return 1094;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Foot): return 1095;
- case MagentaCarpet::MagentaCarpet(): return 7332;
- case MagentaConcrete::MagentaConcrete(): return 8904;
- case MagentaConcretePowder::MagentaConcretePowder(): return 8920;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8846;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8847;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8848;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8849;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8754;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8755;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8756;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8757;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8758;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8759;
- case MagentaStainedGlass::MagentaStainedGlass(): return 4083;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, true): return 6393;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, false): return 6394;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, true): return 6397;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, false): return 6398;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, true): return 6401;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, false): return 6402;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, true): return 6405;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, false): return 6406;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, true): return 6409;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, false): return 6410;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, true): return 6413;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, false): return 6414;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, true): return 6417;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, false): return 6418;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, true): return 6421;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, false): return 6422;
- case MagentaTerracotta::MagentaTerracotta(): return 6313;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7625;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7626;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XM): return 7627;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XP): return 7628;
- case MagentaWool::MagentaWool(): return 1385;
- case MagmaBlock::MagmaBlock(): return 8717;
- case Melon::Melon(): return 4747;
- case MelonStem::MelonStem(0): return 4764;
- case MelonStem::MelonStem(1): return 4765;
- case MelonStem::MelonStem(2): return 4766;
- case MelonStem::MelonStem(3): return 4767;
- case MelonStem::MelonStem(4): return 4768;
- case MelonStem::MelonStem(5): return 4769;
- case MelonStem::MelonStem(6): return 4770;
- case MelonStem::MelonStem(7): return 4771;
- case MossyCobblestone::MossyCobblestone(): return 1432;
- case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Top): return 10278;
- case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Bottom): return 10280;
- case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Double): return 10282;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 9454;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 9456;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 9458;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 9460;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 9462;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 9464;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 9466;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 9468;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 9470;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 9472;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 9474;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 9476;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 9478;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 9480;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 9482;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 9484;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 9486;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 9488;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 9490;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 9492;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 9494;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 9496;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 9498;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 9500;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 9502;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 9504;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 9506;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 9508;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 9510;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 9512;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 9514;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 9516;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 9518;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 9520;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 9522;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 9524;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 9526;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 9528;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 9530;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 9532;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5707;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5708;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5711;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5712;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5715;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5716;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5719;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5720;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5723;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5724;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5727;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5728;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5731;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5732;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5735;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5736;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5739;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5740;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5743;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5744;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5747;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5748;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5751;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5752;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5755;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5756;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5759;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5760;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5763;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5764;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5767;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5768;
- case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Top): return 10266;
- case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Bottom): return 10268;
- case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Double): return 10270;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9294;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9296;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9298;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9300;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9302;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9304;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9306;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9308;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9310;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9312;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9314;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9316;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9318;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9320;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9322;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9324;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9326;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9328;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9330;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9332;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9334;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9336;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9338;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9340;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9342;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9344;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9346;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9348;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9350;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9352;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9354;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9356;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9358;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9360;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9362;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9364;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9366;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9368;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9370;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9372;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 10525;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 10526;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 10529;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 10530;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 10533;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 10534;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 10537;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 10538;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 10541;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 10542;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 10545;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 10546;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 10549;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 10550;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 10553;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 10554;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 10557;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 10558;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 10561;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 10562;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 10565;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 10566;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 10569;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 10570;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 10573;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 10574;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 10577;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 10578;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 10581;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 10582;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 10585;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 10586;
- case MossyStoneBricks::MossyStoneBricks(): return 4482;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Normal): return 1399;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Sticky): return 1400;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Normal): return 1401;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Sticky): return 1402;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Normal): return 1403;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Sticky): return 1404;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Normal): return 1405;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Sticky): return 1406;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Normal): return 1407;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Sticky): return 1408;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Normal): return 1409;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Sticky): return 1410;
- case MushroomStem::MushroomStem(true, true, true, true, true, true): return 4619;
- case MushroomStem::MushroomStem(true, true, true, true, true, false): return 4620;
- case MushroomStem::MushroomStem(true, true, true, true, false, true): return 4621;
- case MushroomStem::MushroomStem(true, true, true, true, false, false): return 4622;
- case MushroomStem::MushroomStem(true, true, true, false, true, true): return 4623;
- case MushroomStem::MushroomStem(true, true, true, false, true, false): return 4624;
- case MushroomStem::MushroomStem(true, true, true, false, false, true): return 4625;
- case MushroomStem::MushroomStem(true, true, true, false, false, false): return 4626;
- case MushroomStem::MushroomStem(true, true, false, true, true, true): return 4627;
- case MushroomStem::MushroomStem(true, true, false, true, true, false): return 4628;
- case MushroomStem::MushroomStem(true, true, false, true, false, true): return 4629;
- case MushroomStem::MushroomStem(true, true, false, true, false, false): return 4630;
- case MushroomStem::MushroomStem(true, true, false, false, true, true): return 4631;
- case MushroomStem::MushroomStem(true, true, false, false, true, false): return 4632;
- case MushroomStem::MushroomStem(true, true, false, false, false, true): return 4633;
- case MushroomStem::MushroomStem(true, true, false, false, false, false): return 4634;
- case MushroomStem::MushroomStem(true, false, true, true, true, true): return 4635;
- case MushroomStem::MushroomStem(true, false, true, true, true, false): return 4636;
- case MushroomStem::MushroomStem(true, false, true, true, false, true): return 4637;
- case MushroomStem::MushroomStem(true, false, true, true, false, false): return 4638;
- case MushroomStem::MushroomStem(true, false, true, false, true, true): return 4639;
- case MushroomStem::MushroomStem(true, false, true, false, true, false): return 4640;
- case MushroomStem::MushroomStem(true, false, true, false, false, true): return 4641;
- case MushroomStem::MushroomStem(true, false, true, false, false, false): return 4642;
- case MushroomStem::MushroomStem(true, false, false, true, true, true): return 4643;
- case MushroomStem::MushroomStem(true, false, false, true, true, false): return 4644;
- case MushroomStem::MushroomStem(true, false, false, true, false, true): return 4645;
- case MushroomStem::MushroomStem(true, false, false, true, false, false): return 4646;
- case MushroomStem::MushroomStem(true, false, false, false, true, true): return 4647;
- case MushroomStem::MushroomStem(true, false, false, false, true, false): return 4648;
- case MushroomStem::MushroomStem(true, false, false, false, false, true): return 4649;
- case MushroomStem::MushroomStem(true, false, false, false, false, false): return 4650;
- case MushroomStem::MushroomStem(false, true, true, true, true, true): return 4651;
- case MushroomStem::MushroomStem(false, true, true, true, true, false): return 4652;
- case MushroomStem::MushroomStem(false, true, true, true, false, true): return 4653;
- case MushroomStem::MushroomStem(false, true, true, true, false, false): return 4654;
- case MushroomStem::MushroomStem(false, true, true, false, true, true): return 4655;
- case MushroomStem::MushroomStem(false, true, true, false, true, false): return 4656;
- case MushroomStem::MushroomStem(false, true, true, false, false, true): return 4657;
- case MushroomStem::MushroomStem(false, true, true, false, false, false): return 4658;
- case MushroomStem::MushroomStem(false, true, false, true, true, true): return 4659;
- case MushroomStem::MushroomStem(false, true, false, true, true, false): return 4660;
- case MushroomStem::MushroomStem(false, true, false, true, false, true): return 4661;
- case MushroomStem::MushroomStem(false, true, false, true, false, false): return 4662;
- case MushroomStem::MushroomStem(false, true, false, false, true, true): return 4663;
- case MushroomStem::MushroomStem(false, true, false, false, true, false): return 4664;
- case MushroomStem::MushroomStem(false, true, false, false, false, true): return 4665;
- case MushroomStem::MushroomStem(false, true, false, false, false, false): return 4666;
- case MushroomStem::MushroomStem(false, false, true, true, true, true): return 4667;
- case MushroomStem::MushroomStem(false, false, true, true, true, false): return 4668;
- case MushroomStem::MushroomStem(false, false, true, true, false, true): return 4669;
- case MushroomStem::MushroomStem(false, false, true, true, false, false): return 4670;
- case MushroomStem::MushroomStem(false, false, true, false, true, true): return 4671;
- case MushroomStem::MushroomStem(false, false, true, false, true, false): return 4672;
- case MushroomStem::MushroomStem(false, false, true, false, false, true): return 4673;
- case MushroomStem::MushroomStem(false, false, true, false, false, false): return 4674;
- case MushroomStem::MushroomStem(false, false, false, true, true, true): return 4675;
- case MushroomStem::MushroomStem(false, false, false, true, true, false): return 4676;
- case MushroomStem::MushroomStem(false, false, false, true, false, true): return 4677;
- case MushroomStem::MushroomStem(false, false, false, true, false, false): return 4678;
- case MushroomStem::MushroomStem(false, false, false, false, true, true): return 4679;
- case MushroomStem::MushroomStem(false, false, false, false, true, false): return 4680;
- case MushroomStem::MushroomStem(false, false, false, false, false, true): return 4681;
- case MushroomStem::MushroomStem(false, false, false, false, false, false): return 4682;
- case Mycelium::Mycelium(true): return 4996;
- case Mycelium::Mycelium(false): return 4997;
- case NetherBrickFence::NetherBrickFence(true, true, true, true): return 5002;
- case NetherBrickFence::NetherBrickFence(true, true, true, false): return 5003;
- case NetherBrickFence::NetherBrickFence(true, true, false, true): return 5006;
- case NetherBrickFence::NetherBrickFence(true, true, false, false): return 5007;
- case NetherBrickFence::NetherBrickFence(true, false, true, true): return 5010;
- case NetherBrickFence::NetherBrickFence(true, false, true, false): return 5011;
- case NetherBrickFence::NetherBrickFence(true, false, false, true): return 5014;
- case NetherBrickFence::NetherBrickFence(true, false, false, false): return 5015;
- case NetherBrickFence::NetherBrickFence(false, true, true, true): return 5018;
- case NetherBrickFence::NetherBrickFence(false, true, true, false): return 5019;
- case NetherBrickFence::NetherBrickFence(false, true, false, true): return 5022;
- case NetherBrickFence::NetherBrickFence(false, true, false, false): return 5023;
- case NetherBrickFence::NetherBrickFence(false, false, true, true): return 5026;
- case NetherBrickFence::NetherBrickFence(false, false, true, false): return 5027;
- case NetherBrickFence::NetherBrickFence(false, false, false, true): return 5030;
- case NetherBrickFence::NetherBrickFence(false, false, false, false): return 5031;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Top): return 7849;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Bottom): return 7851;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double): return 7853;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5033;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5035;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5037;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5039;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5041;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5043;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5045;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5047;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5049;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5051;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5053;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5055;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5057;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5059;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5061;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5063;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5065;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5067;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5069;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5071;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5073;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5075;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5077;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5079;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5081;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5083;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5085;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5087;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5089;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5091;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5093;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5095;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5097;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5099;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5101;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5103;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5105;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5107;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5109;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5111;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 10717;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 10718;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 10721;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 10722;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 10725;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 10726;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 10729;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 10730;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 10733;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 10734;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 10737;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 10738;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 10741;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 10742;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 10745;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 10746;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 10749;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 10750;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 10753;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 10754;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 10757;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 10758;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 10761;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 10762;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 10765;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 10766;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 10769;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 10770;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 10773;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 10774;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 10777;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 10778;
- case NetherBricks::NetherBricks(): return 4999;
- case NetherPortal::NetherPortal(NetherPortal::Axis::X): return 4000;
- case NetherPortal::NetherPortal(NetherPortal::Axis::Z): return 4001;
- case NetherQuartzOre::NetherQuartzOre(): return 6191;
- case NetherWart::NetherWart(0): return 5112;
- case NetherWart::NetherWart(1): return 5113;
- case NetherWart::NetherWart(2): return 5114;
- case NetherWart::NetherWart(3): return 5115;
- case NetherWartBlock::NetherWartBlock(): return 8718;
- case Netherrack::Netherrack(): return 3997;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, true): return 248;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, false): return 249;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, true): return 250;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, false): return 251;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, true): return 252;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, false): return 253;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, true): return 254;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, false): return 255;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, true): return 256;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, false): return 257;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, true): return 258;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, false): return 259;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, true): return 260;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, false): return 261;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, true): return 262;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, false): return 263;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, true): return 264;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, false): return 265;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, true): return 266;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, false): return 267;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, true): return 268;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, false): return 269;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, true): return 270;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, false): return 271;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, true): return 272;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, false): return 273;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, true): return 274;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, false): return 275;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, true): return 276;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, false): return 277;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, true): return 278;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, false): return 279;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, true): return 280;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, false): return 281;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, true): return 282;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, false): return 283;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, true): return 284;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, false): return 285;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, true): return 286;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, false): return 287;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, true): return 288;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, false): return 289;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, true): return 290;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, false): return 291;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, true): return 292;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, false): return 293;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, true): return 294;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, false): return 295;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, true): return 296;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, false): return 297;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, true): return 298;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, false): return 299;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, true): return 300;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, false): return 301;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, true): return 302;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, false): return 303;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, true): return 304;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, false): return 305;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, true): return 306;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, false): return 307;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, true): return 308;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, false): return 309;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, true): return 310;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, false): return 311;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, true): return 312;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, false): return 313;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, true): return 314;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, false): return 315;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, true): return 316;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, false): return 317;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, true): return 318;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, false): return 319;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, true): return 320;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, false): return 321;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, true): return 322;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, false): return 323;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, true): return 324;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, false): return 325;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, true): return 326;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, false): return 327;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, true): return 328;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, false): return 329;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, true): return 330;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, false): return 331;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, true): return 332;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, false): return 333;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, true): return 334;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, false): return 335;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, true): return 336;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, false): return 337;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, true): return 338;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, false): return 339;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, true): return 340;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, false): return 341;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, true): return 342;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, false): return 343;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, true): return 344;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, false): return 345;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, true): return 346;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, false): return 347;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, true): return 348;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, false): return 349;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, true): return 350;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, false): return 351;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, true): return 352;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, false): return 353;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, true): return 354;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, false): return 355;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, true): return 356;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, false): return 357;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, true): return 358;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, false): return 359;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, true): return 360;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, false): return 361;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, true): return 362;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, false): return 363;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, true): return 364;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, false): return 365;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, true): return 366;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, false): return 367;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, true): return 368;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, false): return 369;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, true): return 370;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, false): return 371;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, true): return 372;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, false): return 373;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, true): return 374;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, false): return 375;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, true): return 376;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, false): return 377;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, true): return 378;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, false): return 379;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, true): return 380;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, false): return 381;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, true): return 382;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, false): return 383;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, true): return 384;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, false): return 385;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, true): return 386;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, false): return 387;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, true): return 388;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, false): return 389;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, true): return 390;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, false): return 391;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, true): return 392;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, false): return 393;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, true): return 394;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, false): return 395;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, true): return 396;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, false): return 397;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, true): return 398;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, false): return 399;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, true): return 400;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, false): return 401;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, true): return 402;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, false): return 403;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, true): return 404;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, false): return 405;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, true): return 406;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, false): return 407;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, true): return 408;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, false): return 409;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, true): return 410;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, false): return 411;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, true): return 412;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, false): return 413;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, true): return 414;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, false): return 415;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, true): return 416;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, false): return 417;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, true): return 418;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, false): return 419;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, true): return 420;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, false): return 421;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, true): return 422;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, false): return 423;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, true): return 424;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, false): return 425;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, true): return 426;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, false): return 427;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, true): return 428;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, false): return 429;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, true): return 430;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, false): return 431;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, true): return 432;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, false): return 433;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, true): return 434;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, false): return 435;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, true): return 436;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, false): return 437;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, true): return 438;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, false): return 439;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, true): return 440;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, false): return 441;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, true): return 442;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, false): return 443;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, true): return 444;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, false): return 445;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, true): return 446;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, false): return 447;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, true): return 448;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, false): return 449;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, true): return 450;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, false): return 451;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, true): return 452;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, false): return 453;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, true): return 454;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, false): return 455;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, true): return 456;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, false): return 457;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, true): return 458;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, false): return 459;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, true): return 460;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, false): return 461;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, true): return 462;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, false): return 463;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, true): return 464;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, false): return 465;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, true): return 466;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, false): return 467;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, true): return 468;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, false): return 469;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, true): return 470;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, false): return 471;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, true): return 472;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, false): return 473;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, true): return 474;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, false): return 475;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, true): return 476;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, false): return 477;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, true): return 478;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, false): return 479;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, true): return 480;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, false): return 481;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, true): return 482;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, false): return 483;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, true): return 484;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, false): return 485;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, true): return 486;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, false): return 487;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, true): return 488;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, false): return 489;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, true): return 490;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, false): return 491;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, true): return 492;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, false): return 493;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, true): return 494;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, false): return 495;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, true): return 496;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, false): return 497;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, true): return 498;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, false): return 499;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, true): return 500;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, false): return 501;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, true): return 502;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, false): return 503;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, true): return 504;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, false): return 505;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, true): return 506;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, false): return 507;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, true): return 508;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, false): return 509;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, true): return 510;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, false): return 511;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, true): return 512;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, false): return 513;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, true): return 514;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, false): return 515;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, true): return 516;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, false): return 517;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, true): return 518;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, false): return 519;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, true): return 520;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, false): return 521;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, true): return 522;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, false): return 523;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, true): return 524;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, false): return 525;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, true): return 526;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, false): return 527;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, true): return 528;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, false): return 529;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, true): return 530;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, false): return 531;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, true): return 532;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, false): return 533;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, true): return 534;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, false): return 535;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, true): return 536;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, false): return 537;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, true): return 538;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, false): return 539;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, true): return 540;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, false): return 541;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, true): return 542;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, false): return 543;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, true): return 544;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, false): return 545;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, true): return 546;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, false): return 547;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, true): return 548;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, false): return 549;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, true): return 550;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, false): return 551;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, true): return 552;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, false): return 553;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, true): return 554;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, false): return 555;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, true): return 556;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, false): return 557;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, true): return 558;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, false): return 559;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, true): return 560;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, false): return 561;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, true): return 562;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, false): return 563;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, true): return 564;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, false): return 565;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, true): return 566;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, false): return 567;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, true): return 568;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, false): return 569;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, true): return 570;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, false): return 571;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, true): return 572;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, false): return 573;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, true): return 574;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, false): return 575;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, true): return 576;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, false): return 577;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, true): return 578;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, false): return 579;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, true): return 580;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, false): return 581;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, true): return 582;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, false): return 583;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, true): return 584;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, false): return 585;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, true): return 586;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, false): return 587;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, true): return 588;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, false): return 589;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, true): return 590;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, false): return 591;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, true): return 592;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, false): return 593;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, true): return 594;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, false): return 595;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, true): return 596;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, false): return 597;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, true): return 598;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, false): return 599;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, true): return 600;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, false): return 601;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, true): return 602;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, false): return 603;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, true): return 604;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, false): return 605;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, true): return 606;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, false): return 607;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, true): return 608;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, false): return 609;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, true): return 610;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, false): return 611;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, true): return 612;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, false): return 613;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, true): return 614;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, false): return 615;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, true): return 616;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, false): return 617;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, true): return 618;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, false): return 619;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, true): return 620;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, false): return 621;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, true): return 622;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, false): return 623;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, true): return 624;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, false): return 625;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, true): return 626;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, false): return 627;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, true): return 628;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, false): return 629;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, true): return 630;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, false): return 631;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, true): return 632;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, false): return 633;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, true): return 634;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, false): return 635;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, true): return 636;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, false): return 637;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, true): return 638;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, false): return 639;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, true): return 640;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, false): return 641;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, true): return 642;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, false): return 643;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, true): return 644;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, false): return 645;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, true): return 646;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, false): return 647;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, true): return 648;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, false): return 649;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, true): return 650;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, false): return 651;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, true): return 652;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, false): return 653;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, true): return 654;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, false): return 655;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, true): return 656;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, false): return 657;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, true): return 658;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, false): return 659;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, true): return 660;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, false): return 661;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, true): return 662;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, false): return 663;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, true): return 664;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, false): return 665;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, true): return 666;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, false): return 667;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, true): return 668;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, false): return 669;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, true): return 670;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, false): return 671;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, true): return 672;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, false): return 673;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, true): return 674;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, false): return 675;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, true): return 676;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, false): return 677;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, true): return 678;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, false): return 679;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, true): return 680;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, false): return 681;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, true): return 682;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, false): return 683;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, true): return 684;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, false): return 685;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, true): return 686;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, false): return 687;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, true): return 688;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, false): return 689;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, true): return 690;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, false): return 691;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, true): return 692;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, false): return 693;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, true): return 694;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, false): return 695;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, true): return 696;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, false): return 697;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, true): return 698;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, false): return 699;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, true): return 700;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, false): return 701;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, true): return 702;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, false): return 703;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, true): return 704;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, false): return 705;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, true): return 706;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, false): return 707;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, true): return 708;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, false): return 709;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, true): return 710;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, false): return 711;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, true): return 712;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, false): return 713;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, true): return 714;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, false): return 715;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, true): return 716;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, false): return 717;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, true): return 718;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, false): return 719;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, true): return 720;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, false): return 721;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, true): return 722;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, false): return 723;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, true): return 724;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, false): return 725;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, true): return 726;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, false): return 727;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, true): return 728;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, false): return 729;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, true): return 730;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, false): return 731;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, true): return 732;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, false): return 733;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, true): return 734;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, false): return 735;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, true): return 736;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, false): return 737;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, true): return 738;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, false): return 739;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, true): return 740;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, false): return 741;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, true): return 742;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, false): return 743;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, true): return 744;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, false): return 745;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, true): return 746;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, false): return 747;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, true): return 748;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, false): return 749;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, true): return 750;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, false): return 751;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, true): return 752;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, false): return 753;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, true): return 754;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, false): return 755;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, true): return 756;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, false): return 757;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, true): return 758;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, false): return 759;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, true): return 760;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, false): return 761;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, true): return 762;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, false): return 763;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, true): return 764;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, false): return 765;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, true): return 766;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, false): return 767;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, true): return 768;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, false): return 769;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, true): return 770;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, false): return 771;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, true): return 772;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, false): return 773;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, true): return 774;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, false): return 775;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, true): return 776;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, false): return 777;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, true): return 778;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, false): return 779;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, true): return 780;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, false): return 781;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, true): return 782;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, false): return 783;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, true): return 784;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, false): return 785;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, true): return 786;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, false): return 787;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, true): return 788;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, false): return 789;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, true): return 790;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, false): return 791;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, true): return 792;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, false): return 793;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, true): return 794;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, false): return 795;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, true): return 796;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, false): return 797;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, true): return 798;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, false): return 799;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, true): return 800;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, false): return 801;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, true): return 802;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, false): return 803;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, true): return 804;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, false): return 805;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, true): return 806;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, false): return 807;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, true): return 808;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, false): return 809;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, true): return 810;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, false): return 811;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, true): return 812;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, false): return 813;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, true): return 814;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, false): return 815;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, true): return 816;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, false): return 817;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, true): return 818;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, false): return 819;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, true): return 820;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, false): return 821;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, true): return 822;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, false): return 823;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, true): return 824;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, false): return 825;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, true): return 826;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, false): return 827;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, true): return 828;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, false): return 829;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, true): return 830;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, false): return 831;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, true): return 832;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, false): return 833;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, true): return 834;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, false): return 835;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, true): return 836;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, false): return 837;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, true): return 838;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, false): return 839;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, true): return 840;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, false): return 841;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, true): return 842;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, false): return 843;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, true): return 844;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, false): return 845;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, true): return 846;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, false): return 847;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, true): return 848;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, false): return 849;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, true): return 850;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, false): return 851;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, true): return 852;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, false): return 853;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, true): return 854;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, false): return 855;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, true): return 856;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, false): return 857;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, true): return 858;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, false): return 859;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, true): return 860;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, false): return 861;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, true): return 862;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, false): return 863;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, true): return 864;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, false): return 865;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, true): return 866;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, false): return 867;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, true): return 868;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, false): return 869;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, true): return 870;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, false): return 871;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, true): return 872;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, false): return 873;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, true): return 874;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, false): return 875;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, true): return 876;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, false): return 877;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, true): return 878;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, false): return 879;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, true): return 880;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, false): return 881;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, true): return 882;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, false): return 883;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, true): return 884;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, false): return 885;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, true): return 886;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, false): return 887;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, true): return 888;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, false): return 889;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, true): return 890;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, false): return 891;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, true): return 892;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, false): return 893;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, true): return 894;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, false): return 895;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, true): return 896;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, false): return 897;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, true): return 898;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, false): return 899;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, true): return 900;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, false): return 901;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, true): return 902;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, false): return 903;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, true): return 904;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, false): return 905;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, true): return 906;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, false): return 907;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, true): return 908;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, false): return 909;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, true): return 910;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, false): return 911;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, true): return 912;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, false): return 913;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, true): return 914;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, false): return 915;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, true): return 916;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, false): return 917;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, true): return 918;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, false): return 919;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, true): return 920;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, false): return 921;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, true): return 922;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, false): return 923;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, true): return 924;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, false): return 925;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, true): return 926;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, false): return 927;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, true): return 928;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, false): return 929;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, true): return 930;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, false): return 931;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, true): return 932;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, false): return 933;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, true): return 934;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, false): return 935;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, true): return 936;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, false): return 937;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, true): return 938;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, false): return 939;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, true): return 940;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, false): return 941;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, true): return 942;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, false): return 943;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, true): return 944;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, false): return 945;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, true): return 946;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, false): return 947;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, true): return 948;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, false): return 949;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, true): return 950;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, false): return 951;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, true): return 952;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, false): return 953;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, true): return 954;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, false): return 955;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, true): return 956;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, false): return 957;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, true): return 958;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, false): return 959;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, true): return 960;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, false): return 961;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, true): return 962;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, false): return 963;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, true): return 964;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, false): return 965;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, true): return 966;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, false): return 967;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, true): return 968;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, false): return 969;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, true): return 970;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, false): return 971;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, true): return 972;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, false): return 973;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, true): return 974;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, false): return 975;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, true): return 976;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, false): return 977;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, true): return 978;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, false): return 979;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, true): return 980;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, false): return 981;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, true): return 982;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, false): return 983;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, true): return 984;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, false): return 985;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, true): return 986;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, false): return 987;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, true): return 988;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, false): return 989;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, true): return 990;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, false): return 991;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, true): return 992;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, false): return 993;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, true): return 994;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, false): return 995;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, true): return 996;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, false): return 997;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, true): return 998;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, false): return 999;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, true): return 1000;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, false): return 1001;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, true): return 1002;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, false): return 1003;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, true): return 1004;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, false): return 1005;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, true): return 1006;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, false): return 1007;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, true): return 1008;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, false): return 1009;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, true): return 1010;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, false): return 1011;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, true): return 1012;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, false): return 1013;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, true): return 1014;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, false): return 1015;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, true): return 1016;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, false): return 1017;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, true): return 1018;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, false): return 1019;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, true): return 1020;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, false): return 1021;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, true): return 1022;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, false): return 1023;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, true): return 1024;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, false): return 1025;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, true): return 1026;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, false): return 1027;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, true): return 1028;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, false): return 1029;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, true): return 1030;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, false): return 1031;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, true): return 1032;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, false): return 1033;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, true): return 1034;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, false): return 1035;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, true): return 1036;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, false): return 1037;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, true): return 1038;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, false): return 1039;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, true): return 1040;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, false): return 1041;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, true): return 1042;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, false): return 1043;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, true): return 1044;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, false): return 1045;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, true): return 1046;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, false): return 1047;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5810;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5811;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5812;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5813;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5814;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5815;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5816;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5817;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5818;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5819;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5820;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5821;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5822;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5823;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5824;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5825;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5826;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5827;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5828;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5829;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5830;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5831;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5832;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5833;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3571;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3572;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3573;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3574;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3575;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3576;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3577;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3578;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3579;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3580;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3581;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3582;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3583;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3584;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3585;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3586;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3587;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3588;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3589;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3590;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3591;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3592;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3593;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3594;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3595;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3596;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3597;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3598;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3599;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3600;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3601;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3602;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3603;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3604;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3605;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3606;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3607;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3608;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3609;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3610;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3611;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3612;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3613;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3614;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3615;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3616;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3617;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3618;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3619;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3620;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3621;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3622;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3623;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3624;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3625;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3626;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3627;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3628;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3629;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3630;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3631;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3632;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3633;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3634;
- case OakFence::OakFence(true, true, true, true): return 3966;
- case OakFence::OakFence(true, true, true, false): return 3967;
- case OakFence::OakFence(true, true, false, true): return 3970;
- case OakFence::OakFence(true, true, false, false): return 3971;
- case OakFence::OakFence(true, false, true, true): return 3974;
- case OakFence::OakFence(true, false, true, false): return 3975;
- case OakFence::OakFence(true, false, false, true): return 3978;
- case OakFence::OakFence(true, false, false, false): return 3979;
- case OakFence::OakFence(false, true, true, true): return 3982;
- case OakFence::OakFence(false, true, true, false): return 3983;
- case OakFence::OakFence(false, true, false, true): return 3986;
- case OakFence::OakFence(false, true, false, false): return 3987;
- case OakFence::OakFence(false, false, true, true): return 3990;
- case OakFence::OakFence(false, false, true, false): return 3991;
- case OakFence::OakFence(false, false, false, true): return 3994;
- case OakFence::OakFence(false, false, false, false): return 3995;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 4804;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 4805;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 4806;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 4807;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 4808;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 4809;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 4810;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 4811;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 4812;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 4813;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 4814;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 4815;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 4816;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 4817;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 4818;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 4819;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 4820;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 4821;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 4822;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 4823;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 4824;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 4825;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 4826;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 4827;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 4828;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 4829;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 4830;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 4831;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 4832;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 4833;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 4834;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 4835;
- case OakLeaves::OakLeaves(1, true): return 144;
- case OakLeaves::OakLeaves(1, false): return 145;
- case OakLeaves::OakLeaves(2, true): return 146;
- case OakLeaves::OakLeaves(2, false): return 147;
- case OakLeaves::OakLeaves(3, true): return 148;
- case OakLeaves::OakLeaves(3, false): return 149;
- case OakLeaves::OakLeaves(4, true): return 150;
- case OakLeaves::OakLeaves(4, false): return 151;
- case OakLeaves::OakLeaves(5, true): return 152;
- case OakLeaves::OakLeaves(5, false): return 153;
- case OakLeaves::OakLeaves(6, true): return 154;
- case OakLeaves::OakLeaves(6, false): return 155;
- case OakLeaves::OakLeaves(7, true): return 156;
- case OakLeaves::OakLeaves(7, false): return 157;
- case OakLog::OakLog(OakLog::Axis::X): return 72;
- case OakLog::OakLog(OakLog::Axis::Y): return 73;
- case OakLog::OakLog(OakLog::Axis::Z): return 74;
- case OakPlanks::OakPlanks(): return 15;
- case OakPressurePlate::OakPressurePlate(true): return 3871;
- case OakPressurePlate::OakPressurePlate(false): return 3872;
- case OakSapling::OakSapling(0): return 21;
- case OakSapling::OakSapling(1): return 22;
- case OakSign::OakSign(0): return 3380;
- case OakSign::OakSign(1): return 3382;
- case OakSign::OakSign(2): return 3384;
- case OakSign::OakSign(3): return 3386;
- case OakSign::OakSign(4): return 3388;
- case OakSign::OakSign(5): return 3390;
- case OakSign::OakSign(6): return 3392;
- case OakSign::OakSign(7): return 3394;
- case OakSign::OakSign(8): return 3396;
- case OakSign::OakSign(9): return 3398;
- case OakSign::OakSign(10): return 3400;
- case OakSign::OakSign(11): return 3402;
- case OakSign::OakSign(12): return 3404;
- case OakSign::OakSign(13): return 3406;
- case OakSign::OakSign(14): return 3408;
- case OakSign::OakSign(15): return 3410;
- case OakSlab::OakSlab(OakSlab::Type::Top): return 7765;
- case OakSlab::OakSlab(OakSlab::Type::Bottom): return 7767;
- case OakSlab::OakSlab(OakSlab::Type::Double): return 7769;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1953;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1955;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1957;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1959;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1961;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1963;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1965;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1967;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1969;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1971;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1973;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1975;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1977;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1979;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1981;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1983;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1985;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1987;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1989;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1991;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1993;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1995;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1997;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1999;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 2001;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 2003;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 2005;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 2007;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 2009;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 2011;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 2013;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 2015;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 2017;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 2019;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 2021;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 2023;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 2025;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 2027;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 2029;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 2031;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, true): return 4098;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, false): return 4100;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, true): return 4102;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, false): return 4104;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, true): return 4106;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, false): return 4108;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, true): return 4110;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, false): return 4112;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, true): return 4114;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, false): return 4116;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, true): return 4118;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, false): return 4120;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, true): return 4122;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, false): return 4124;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, true): return 4126;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, false): return 4128;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, true): return 4130;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, false): return 4132;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, true): return 4134;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, false): return 4136;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, true): return 4138;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, false): return 4140;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, true): return 4142;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, false): return 4144;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, true): return 4146;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, false): return 4148;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, true): return 4150;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, false): return 4152;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, true): return 4154;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, false): return 4156;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, true): return 4158;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, false): return 4160;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZM): return 3734;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZP): return 3736;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XM): return 3738;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XP): return 3740;
- case OakWood::OakWood(OakWood::Axis::X): return 108;
- case OakWood::OakWood(OakWood::Axis::Y): return 109;
- case OakWood::OakWood(OakWood::Axis::Z): return 110;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, true): return 8724;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, false): return 8725;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XP, true): return 8726;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XP, false): return 8727;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, true): return 8728;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, false): return 8729;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XM, true): return 8730;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XM, false): return 8731;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YP, true): return 8732;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YP, false): return 8733;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YM, true): return 8734;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YM, false): return 8735;
- case Obsidian::Obsidian(): return 1433;
- case OrangeBanner::OrangeBanner(0): return 7377;
- case OrangeBanner::OrangeBanner(1): return 7378;
- case OrangeBanner::OrangeBanner(2): return 7379;
- case OrangeBanner::OrangeBanner(3): return 7380;
- case OrangeBanner::OrangeBanner(4): return 7381;
- case OrangeBanner::OrangeBanner(5): return 7382;
- case OrangeBanner::OrangeBanner(6): return 7383;
- case OrangeBanner::OrangeBanner(7): return 7384;
- case OrangeBanner::OrangeBanner(8): return 7385;
- case OrangeBanner::OrangeBanner(9): return 7386;
- case OrangeBanner::OrangeBanner(10): return 7387;
- case OrangeBanner::OrangeBanner(11): return 7388;
- case OrangeBanner::OrangeBanner(12): return 7389;
- case OrangeBanner::OrangeBanner(13): return 7390;
- case OrangeBanner::OrangeBanner(14): return 7391;
- case OrangeBanner::OrangeBanner(15): return 7392;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Head): return 1064;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Foot): return 1065;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Head): return 1066;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Foot): return 1067;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Head): return 1068;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Foot): return 1069;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Head): return 1070;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Foot): return 1071;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Head): return 1072;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Foot): return 1073;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Head): return 1074;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Foot): return 1075;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Head): return 1076;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Foot): return 1077;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Head): return 1078;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Foot): return 1079;
- case OrangeCarpet::OrangeCarpet(): return 7331;
- case OrangeConcrete::OrangeConcrete(): return 8903;
- case OrangeConcretePowder::OrangeConcretePowder(): return 8919;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8842;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8843;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8844;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8845;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8748;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8749;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8750;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8751;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8752;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8753;
- case OrangeStainedGlass::OrangeStainedGlass(): return 4082;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, true): return 6361;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, false): return 6362;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, true): return 6365;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, false): return 6366;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, true): return 6369;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, false): return 6370;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, true): return 6373;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, false): return 6374;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, true): return 6377;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, false): return 6378;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, true): return 6381;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, false): return 6382;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, true): return 6385;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, false): return 6386;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, true): return 6389;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, false): return 6390;
- case OrangeTerracotta::OrangeTerracotta(): return 6312;
- case OrangeTulip::OrangeTulip(): return 1417;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7621;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7622;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XM): return 7623;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XP): return 7624;
- case OrangeWool::OrangeWool(): return 1384;
- case OxeyeDaisy::OxeyeDaisy(): return 1420;
- case PackedIce::PackedIce(): return 7348;
- case Peony::Peony(Peony::Half::Upper): return 7355;
- case Peony::Peony(Peony::Half::Lower): return 7356;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Top): return 7825;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Bottom): return 7827;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double): return 7829;
- case PinkBanner::PinkBanner(0): return 7457;
- case PinkBanner::PinkBanner(1): return 7458;
- case PinkBanner::PinkBanner(2): return 7459;
- case PinkBanner::PinkBanner(3): return 7460;
- case PinkBanner::PinkBanner(4): return 7461;
- case PinkBanner::PinkBanner(5): return 7462;
- case PinkBanner::PinkBanner(6): return 7463;
- case PinkBanner::PinkBanner(7): return 7464;
- case PinkBanner::PinkBanner(8): return 7465;
- case PinkBanner::PinkBanner(9): return 7466;
- case PinkBanner::PinkBanner(10): return 7467;
- case PinkBanner::PinkBanner(11): return 7468;
- case PinkBanner::PinkBanner(12): return 7469;
- case PinkBanner::PinkBanner(13): return 7470;
- case PinkBanner::PinkBanner(14): return 7471;
- case PinkBanner::PinkBanner(15): return 7472;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Head): return 1144;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Foot): return 1145;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Head): return 1146;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Foot): return 1147;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Head): return 1148;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Foot): return 1149;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Head): return 1150;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Foot): return 1151;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Head): return 1152;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Foot): return 1153;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Head): return 1154;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Foot): return 1155;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Head): return 1156;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Foot): return 1157;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Head): return 1158;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Foot): return 1159;
- case PinkCarpet::PinkCarpet(): return 7336;
- case PinkConcrete::PinkConcrete(): return 8908;
- case PinkConcretePowder::PinkConcretePowder(): return 8924;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8862;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8863;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8864;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8865;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8778;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8779;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8780;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8781;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8782;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8783;
- case PinkStainedGlass::PinkStainedGlass(): return 4087;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, true): return 6521;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, false): return 6522;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, true): return 6525;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, false): return 6526;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, true): return 6529;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, false): return 6530;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, true): return 6533;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, false): return 6534;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, true): return 6537;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, false): return 6538;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, true): return 6541;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, false): return 6542;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, true): return 6545;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, false): return 6546;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, true): return 6549;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, false): return 6550;
- case PinkTerracotta::PinkTerracotta(): return 6317;
- case PinkTulip::PinkTulip(): return 1419;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7641;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7642;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XM): return 7643;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XP): return 7644;
- case PinkWool::PinkWool(): return 1389;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZM): return 1347;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_XP): return 1348;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZP): return 1349;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_XM): return 1350;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_YP): return 1351;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_YM): return 1352;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZM): return 1353;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_XP): return 1354;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZP): return 1355;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_XM): return 1356;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_YP): return 1357;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_YM): return 1358;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Normal): return 1359;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Sticky): return 1360;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Normal): return 1361;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Sticky): return 1362;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Normal): return 1363;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Sticky): return 1364;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Normal): return 1365;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Sticky): return 1366;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Normal): return 1367;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Sticky): return 1368;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Normal): return 1369;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Sticky): return 1370;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Normal): return 1371;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Sticky): return 1372;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Normal): return 1373;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Sticky): return 1374;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Normal): return 1375;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Sticky): return 1376;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Normal): return 1377;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Sticky): return 1378;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Normal): return 1379;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Sticky): return 1380;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Normal): return 1381;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Sticky): return 1382;
- case PlayerHead::PlayerHead(0): return 6014;
- case PlayerHead::PlayerHead(1): return 6015;
- case PlayerHead::PlayerHead(2): return 6016;
- case PlayerHead::PlayerHead(3): return 6017;
- case PlayerHead::PlayerHead(4): return 6018;
- case PlayerHead::PlayerHead(5): return 6019;
- case PlayerHead::PlayerHead(6): return 6020;
- case PlayerHead::PlayerHead(7): return 6021;
- case PlayerHead::PlayerHead(8): return 6022;
- case PlayerHead::PlayerHead(9): return 6023;
- case PlayerHead::PlayerHead(10): return 6024;
- case PlayerHead::PlayerHead(11): return 6025;
- case PlayerHead::PlayerHead(12): return 6026;
- case PlayerHead::PlayerHead(13): return 6027;
- case PlayerHead::PlayerHead(14): return 6028;
- case PlayerHead::PlayerHead(15): return 6029;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZM): return 6030;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZP): return 6031;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XM): return 6032;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XP): return 6033;
- case Podzol::Podzol(true): return 12;
- case Podzol::Podzol(false): return 13;
- case PolishedAndesite::PolishedAndesite(): return 7;
- case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Top): return 10320;
- case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Bottom): return 10322;
- case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Double): return 10324;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10094;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10096;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10098;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10100;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10102;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10104;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10106;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10108;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10110;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10112;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10114;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10116;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10118;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10120;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10122;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10124;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10126;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10128;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10130;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10132;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10134;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10136;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10138;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10140;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10142;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10144;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10146;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10148;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10150;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10152;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10154;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10156;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10158;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10160;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10162;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10164;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10166;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10168;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10170;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10172;
- case PolishedDiorite::PolishedDiorite(): return 5;
- case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Top): return 10272;
- case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Bottom): return 10274;
- case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Double): return 10276;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9374;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9376;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9378;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9380;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9382;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9384;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9386;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9388;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9390;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9392;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9394;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9396;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9398;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9400;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9402;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9404;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9406;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9408;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9410;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9412;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9414;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9416;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9418;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9420;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9422;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9424;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9426;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9428;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9430;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9432;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9434;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9436;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9438;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9440;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9442;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9444;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9446;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9448;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9450;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9452;
- case PolishedGranite::PolishedGranite(): return 3;
- case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Top): return 10254;
- case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Bottom): return 10256;
- case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Double): return 10258;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9134;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9136;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9138;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9140;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9142;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9144;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9146;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9148;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9150;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9152;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9154;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9156;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9158;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9160;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9162;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9164;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9166;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9168;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9170;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9172;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9174;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9176;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9178;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9180;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9182;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9184;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9186;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9188;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9190;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9192;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9194;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9196;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9198;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9200;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9202;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9204;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9206;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9208;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9210;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9212;
- case Poppy::Poppy(): return 1412;
- case Potatoes::Potatoes(0): return 5802;
- case Potatoes::Potatoes(1): return 5803;
- case Potatoes::Potatoes(2): return 5804;
- case Potatoes::Potatoes(3): return 5805;
- case Potatoes::Potatoes(4): return 5806;
- case Potatoes::Potatoes(5): return 5807;
- case Potatoes::Potatoes(6): return 5808;
- case Potatoes::Potatoes(7): return 5809;
- case PottedAcaciaSapling::PottedAcaciaSapling(): return 5774;
- case PottedAllium::PottedAllium(): return 5780;
- case PottedAzureBluet::PottedAzureBluet(): return 5781;
- case PottedBamboo::PottedBamboo(): return 9128;
- case PottedBirchSapling::PottedBirchSapling(): return 5772;
- case PottedBlueOrchid::PottedBlueOrchid(): return 5779;
- case PottedBrownMushroom::PottedBrownMushroom(): return 5791;
- case PottedCactus::PottedCactus(): return 5793;
- case PottedCornflower::PottedCornflower(): return 5787;
- case PottedDandelion::PottedDandelion(): return 5777;
- case PottedDarkOakSapling::PottedDarkOakSapling(): return 5775;
- case PottedDeadBush::PottedDeadBush(): return 5792;
- case PottedFern::PottedFern(): return 5776;
- case PottedJungleSapling::PottedJungleSapling(): return 5773;
- case PottedLilyOfTheValley::PottedLilyOfTheValley(): return 5788;
- case PottedOakSapling::PottedOakSapling(): return 5770;
- case PottedOrangeTulip::PottedOrangeTulip(): return 5783;
- case PottedOxeyeDaisy::PottedOxeyeDaisy(): return 5786;
- case PottedPinkTulip::PottedPinkTulip(): return 5785;
- case PottedPoppy::PottedPoppy(): return 5778;
- case PottedRedMushroom::PottedRedMushroom(): return 5790;
- case PottedRedTulip::PottedRedTulip(): return 5782;
- case PottedSpruceSapling::PottedSpruceSapling(): return 5771;
- case PottedWhiteTulip::PottedWhiteTulip(): return 5784;
- case PottedWitherRose::PottedWitherRose(): return 5789;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::NorthSouth): return 1304;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::EastWest): return 1305;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingEast): return 1306;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingWest): return 1307;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingNorth): return 1308;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingSouth): return 1309;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::NorthSouth): return 1310;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::EastWest): return 1311;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingEast): return 1312;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingWest): return 1313;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingNorth): return 1314;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingSouth): return 1315;
- case Prismarine::Prismarine(): return 7065;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Top): return 7315;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Bottom): return 7317;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Double): return 7319;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7149;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7151;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7153;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7155;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7157;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7159;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7161;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7163;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7165;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7167;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7169;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7171;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7173;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7175;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7177;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7179;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7181;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7183;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7185;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7187;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7189;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7191;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7193;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7195;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7197;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7199;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7201;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7203;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7205;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7207;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7209;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7211;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7213;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7215;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7217;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7219;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7221;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7223;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7225;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7227;
- case PrismarineBricks::PrismarineBricks(): return 7066;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Top): return 7309;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Bottom): return 7311;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Double): return 7313;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7069;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7071;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7073;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7075;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7077;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7079;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7081;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7083;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7085;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7087;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7089;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7091;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7093;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7095;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7097;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7099;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7101;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7103;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7105;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7107;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7109;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7111;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7113;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7115;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7117;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7119;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7121;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7123;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7125;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7127;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7129;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7131;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7133;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7135;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7137;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7139;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7141;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7143;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7145;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7147;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 10397;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 10398;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 10401;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 10402;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 10405;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None): return 10406;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 10409;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None): return 10410;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 10413;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 10414;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 10417;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 10418;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 10421;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None): return 10422;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 10425;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None): return 10426;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 10429;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 10430;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 10433;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 10434;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 10437;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None): return 10438;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 10441;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None): return 10442;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 10445;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 10446;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 10449;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 10450;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 10453;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None): return 10454;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 10457;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None): return 10458;
- case Pumpkin::Pumpkin(): return 3996;
- case PumpkinStem::PumpkinStem(0): return 4756;
- case PumpkinStem::PumpkinStem(1): return 4757;
- case PumpkinStem::PumpkinStem(2): return 4758;
- case PumpkinStem::PumpkinStem(3): return 4759;
- case PumpkinStem::PumpkinStem(4): return 4760;
- case PumpkinStem::PumpkinStem(5): return 4761;
- case PumpkinStem::PumpkinStem(6): return 4762;
- case PumpkinStem::PumpkinStem(7): return 4763;
- case PurpleBanner::PurpleBanner(0): return 7521;
- case PurpleBanner::PurpleBanner(1): return 7522;
- case PurpleBanner::PurpleBanner(2): return 7523;
- case PurpleBanner::PurpleBanner(3): return 7524;
- case PurpleBanner::PurpleBanner(4): return 7525;
- case PurpleBanner::PurpleBanner(5): return 7526;
- case PurpleBanner::PurpleBanner(6): return 7527;
- case PurpleBanner::PurpleBanner(7): return 7528;
- case PurpleBanner::PurpleBanner(8): return 7529;
- case PurpleBanner::PurpleBanner(9): return 7530;
- case PurpleBanner::PurpleBanner(10): return 7531;
- case PurpleBanner::PurpleBanner(11): return 7532;
- case PurpleBanner::PurpleBanner(12): return 7533;
- case PurpleBanner::PurpleBanner(13): return 7534;
- case PurpleBanner::PurpleBanner(14): return 7535;
- case PurpleBanner::PurpleBanner(15): return 7536;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Head): return 1208;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Foot): return 1209;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Head): return 1210;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Foot): return 1211;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Head): return 1212;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Foot): return 1213;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Head): return 1214;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Foot): return 1215;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Head): return 1216;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Foot): return 1217;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Head): return 1218;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Foot): return 1219;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Head): return 1220;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Foot): return 1221;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Head): return 1222;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Foot): return 1223;
- case PurpleCarpet::PurpleCarpet(): return 7340;
- case PurpleConcrete::PurpleConcrete(): return 8912;
- case PurpleConcretePowder::PurpleConcretePowder(): return 8928;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8878;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8879;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8880;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8881;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8802;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8803;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8804;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8805;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8806;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8807;
- case PurpleStainedGlass::PurpleStainedGlass(): return 4091;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, true): return 6649;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, false): return 6650;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, true): return 6653;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, false): return 6654;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, true): return 6657;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, false): return 6658;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, true): return 6661;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, false): return 6662;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, true): return 6665;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, false): return 6666;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, true): return 6669;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, false): return 6670;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, true): return 6673;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, false): return 6674;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, true): return 6677;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, false): return 6678;
- case PurpleTerracotta::PurpleTerracotta(): return 6321;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7657;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7658;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XM): return 7659;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XP): return 7660;
- case PurpleWool::PurpleWool(): return 1393;
- case PurpurBlock::PurpurBlock(): return 8598;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::X): return 8599;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Y): return 8600;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Z): return 8601;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Top): return 7873;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Bottom): return 7875;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Double): return 7877;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8603;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8605;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8607;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8609;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8611;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8613;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8615;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8617;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8619;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8621;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8623;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8625;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8627;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8629;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8631;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8633;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8635;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8637;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8639;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8641;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8643;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8645;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8647;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8649;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8651;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8653;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8655;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8657;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8659;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8661;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8663;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8665;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8667;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8669;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8671;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8673;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8675;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8677;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8679;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8681;
- case QuartzBlock::QuartzBlock(): return 6202;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::X): return 6204;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Y): return 6205;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Z): return 6206;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Top): return 7855;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Bottom): return 7857;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Double): return 7859;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6208;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6210;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6212;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6214;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6216;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6218;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6220;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6222;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6224;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6226;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6228;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6230;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6232;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6234;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6236;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6238;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6240;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6242;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6244;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6246;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6248;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6250;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6252;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6254;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6256;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6258;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6260;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6262;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6264;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6266;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6268;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6270;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6272;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6274;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6276;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6278;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6280;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6282;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6284;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6286;
- case Rail::Rail(Rail::Shape::NorthSouth): return 3643;
- case Rail::Rail(Rail::Shape::EastWest): return 3644;
- case Rail::Rail(Rail::Shape::AscendingEast): return 3645;
- case Rail::Rail(Rail::Shape::AscendingWest): return 3646;
- case Rail::Rail(Rail::Shape::AscendingNorth): return 3647;
- case Rail::Rail(Rail::Shape::AscendingSouth): return 3648;
- case Rail::Rail(Rail::Shape::SouthEast): return 3649;
- case Rail::Rail(Rail::Shape::SouthWest): return 3650;
- case Rail::Rail(Rail::Shape::NorthWest): return 3651;
- case Rail::Rail(Rail::Shape::NorthEast): return 3652;
- case RedBanner::RedBanner(0): return 7585;
- case RedBanner::RedBanner(1): return 7586;
- case RedBanner::RedBanner(2): return 7587;
- case RedBanner::RedBanner(3): return 7588;
- case RedBanner::RedBanner(4): return 7589;
- case RedBanner::RedBanner(5): return 7590;
- case RedBanner::RedBanner(6): return 7591;
- case RedBanner::RedBanner(7): return 7592;
- case RedBanner::RedBanner(8): return 7593;
- case RedBanner::RedBanner(9): return 7594;
- case RedBanner::RedBanner(10): return 7595;
- case RedBanner::RedBanner(11): return 7596;
- case RedBanner::RedBanner(12): return 7597;
- case RedBanner::RedBanner(13): return 7598;
- case RedBanner::RedBanner(14): return 7599;
- case RedBanner::RedBanner(15): return 7600;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Head): return 1272;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Foot): return 1273;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Head): return 1274;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Foot): return 1275;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Head): return 1276;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Foot): return 1277;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Head): return 1278;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Foot): return 1279;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Head): return 1280;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Foot): return 1281;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Head): return 1282;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Foot): return 1283;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Head): return 1284;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Foot): return 1285;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Head): return 1286;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Foot): return 1287;
- case RedCarpet::RedCarpet(): return 7344;
- case RedConcrete::RedConcrete(): return 8916;
- case RedConcretePowder::RedConcretePowder(): return 8932;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8894;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8895;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8896;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8897;
- case RedMushroom::RedMushroom(): return 1425;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, true): return 4555;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, false): return 4556;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, true): return 4557;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, false): return 4558;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, true): return 4559;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, false): return 4560;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, true): return 4561;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, false): return 4562;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, true): return 4563;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, false): return 4564;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, true): return 4565;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, false): return 4566;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, true): return 4567;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, false): return 4568;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, true): return 4569;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, false): return 4570;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, true): return 4571;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, false): return 4572;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, true): return 4573;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, false): return 4574;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, true): return 4575;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, false): return 4576;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, true): return 4577;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, false): return 4578;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, true): return 4579;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, false): return 4580;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, true): return 4581;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, false): return 4582;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, true): return 4583;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, false): return 4584;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, true): return 4585;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, false): return 4586;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, true): return 4587;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, false): return 4588;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, true): return 4589;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, false): return 4590;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, true): return 4591;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, false): return 4592;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, true): return 4593;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, false): return 4594;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, true): return 4595;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, false): return 4596;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, true): return 4597;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, false): return 4598;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, true): return 4599;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, false): return 4600;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, true): return 4601;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, false): return 4602;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, true): return 4603;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, false): return 4604;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, true): return 4605;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, false): return 4606;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, true): return 4607;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, false): return 4608;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, true): return 4609;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, false): return 4610;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, true): return 4611;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, false): return 4612;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, true): return 4613;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, false): return 4614;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, true): return 4615;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, false): return 4616;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, true): return 4617;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false): return 4618;
- case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Top): return 10314;
- case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Bottom): return 10316;
- case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Double): return 10318;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10014;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10016;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10018;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10020;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10022;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10024;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10026;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10028;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10030;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10032;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10034;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10036;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10038;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10040;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10042;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10044;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10046;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10048;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10050;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10052;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10054;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10056;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10058;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10060;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10062;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10064;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10066;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10068;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10070;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10072;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10074;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10076;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10078;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10080;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10082;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10084;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10086;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10088;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10090;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10092;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 10845;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 10846;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 10849;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 10850;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 10853;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 10854;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 10857;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 10858;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 10861;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 10862;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 10865;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 10866;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 10869;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 10870;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 10873;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 10874;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 10877;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 10878;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 10881;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 10882;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 10885;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 10886;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 10889;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 10890;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 10893;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 10894;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 10897;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 10898;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 10901;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 10902;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 10905;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 10906;
- case RedNetherBricks::RedNetherBricks(): return 8719;
- case RedSand::RedSand(): return 67;
- case RedSandstone::RedSandstone(): return 7681;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Top): return 7861;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Bottom): return 7863;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Double): return 7865;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7685;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7687;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7689;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7691;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7693;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7695;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7697;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7699;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7701;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7703;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7705;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7707;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7709;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7711;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7713;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7715;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7717;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7719;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7721;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7723;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7725;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7727;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7729;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7731;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7733;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7735;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7737;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7739;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7741;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7743;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7745;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7747;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7749;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7751;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7753;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7755;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7757;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7759;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7761;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7763;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 10461;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 10462;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 10465;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 10466;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 10469;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 10470;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 10473;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 10474;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 10477;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 10478;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 10481;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 10482;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 10485;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 10486;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 10489;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 10490;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 10493;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 10494;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 10497;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 10498;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 10501;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 10502;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 10505;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 10506;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 10509;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 10510;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 10513;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 10514;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 10517;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 10518;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 10521;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 10522;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8826;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8827;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8828;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8829;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8830;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8831;
- case RedStainedGlass::RedStainedGlass(): return 4095;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, true, true): return 6777;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, true, false): return 6778;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, false, true): return 6781;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, false, false): return 6782;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, true, true): return 6785;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, true, false): return 6786;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, false, true): return 6789;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, false, false): return 6790;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, true, true): return 6793;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, true, false): return 6794;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, false, true): return 6797;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, false, false): return 6798;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, true, true): return 6801;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, true, false): return 6802;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, false, true): return 6805;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, false, false): return 6806;
- case RedTerracotta::RedTerracotta(): return 6325;
- case RedTulip::RedTulip(): return 1416;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7673;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7674;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XM): return 7675;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XP): return 7676;
- case RedWool::RedWool(): return 1397;
- case RedstoneBlock::RedstoneBlock(): return 6190;
- case RedstoneLamp::RedstoneLamp(true): return 5140;
- case RedstoneLamp::RedstoneLamp(false): return 5141;
- case RedstoneOre::RedstoneOre(true): return 3883;
- case RedstoneOre::RedstoneOre(false): return 3884;
- case RedstoneTorch::RedstoneTorch(true): return 3885;
- case RedstoneTorch::RedstoneTorch(false): return 3886;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, true): return 3887;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, false): return 3888;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, true): return 3889;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, false): return 3890;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, true): return 3891;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, false): return 3892;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, true): return 3893;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, false): return 3894;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2056;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2057;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2058;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2059;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2060;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2061;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2062;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2063;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2064;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2065;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2066;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2067;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2068;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2069;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2070;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2071;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2072;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2073;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2074;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2075;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2076;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2077;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2078;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2079;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2080;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2081;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2082;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2083;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2084;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2085;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2086;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2087;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2088;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2089;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2090;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2091;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2092;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2093;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2094;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2095;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2096;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2097;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2098;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2099;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2100;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2101;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2102;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2103;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2104;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2105;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2106;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2107;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2108;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2109;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2110;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2111;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2112;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2113;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2114;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2115;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2116;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2117;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2118;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2119;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2120;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2121;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2122;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2123;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2124;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2125;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2126;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2127;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2128;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2129;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2130;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2131;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2132;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2133;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2134;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2135;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2136;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2137;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2138;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2139;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2140;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2141;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2142;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2143;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2144;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2145;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2146;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2147;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2148;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2149;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2150;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2151;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2152;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2153;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2154;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2155;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2156;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2157;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2158;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2159;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2160;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2161;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2162;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2163;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2164;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2165;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2166;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2167;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2168;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2169;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2170;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2171;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2172;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2173;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2174;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2175;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2176;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2177;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2178;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2179;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2180;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2181;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2182;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2183;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2184;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2185;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2186;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2187;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2188;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2189;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2190;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2191;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2192;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2193;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2194;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2195;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2196;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2197;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2198;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2199;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2200;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2201;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2202;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2203;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2204;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2205;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2206;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2207;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2208;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2209;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2210;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2211;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2212;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2213;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2214;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2215;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2216;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2217;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2218;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2219;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2220;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2221;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2222;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2223;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2224;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2225;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2226;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2227;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2228;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2229;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2230;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2231;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2232;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2233;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2234;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2235;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2236;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2237;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2238;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2239;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2240;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2241;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2242;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2243;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2244;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2245;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2246;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2247;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2248;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2249;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2250;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2251;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2252;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2253;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2254;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2255;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2256;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2257;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2258;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2259;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2260;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2261;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2262;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2263;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2264;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2265;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2266;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2267;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2268;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2269;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2270;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2271;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2272;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2273;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2274;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2275;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2276;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2277;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2278;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2279;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2280;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2281;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2282;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2283;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2284;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2285;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2286;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2287;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2288;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2289;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2290;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2291;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2292;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2293;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2294;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2295;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2296;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2297;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2298;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2299;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2300;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2301;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2302;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2303;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2304;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2305;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2306;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2307;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2308;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2309;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2310;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2311;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2312;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2313;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2314;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2315;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2316;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2317;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2318;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2319;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2320;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2321;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2322;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2323;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2324;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2325;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2326;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2327;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2328;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2329;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2330;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2331;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2332;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2333;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2334;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2335;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2336;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2337;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2338;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2339;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2340;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2341;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2342;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2343;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2344;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2345;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2346;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2347;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2348;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2349;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2350;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2351;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2352;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2353;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2354;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2355;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2356;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2357;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2358;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2359;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2360;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2361;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2362;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2363;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2364;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2365;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2366;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2367;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2368;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2369;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2370;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2371;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2372;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2373;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2374;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2375;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2376;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2377;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2378;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2379;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2380;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2381;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2382;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2383;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2384;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2385;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2386;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2387;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2388;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2389;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2390;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2391;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2392;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2393;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2394;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2395;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2396;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2397;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2398;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2399;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2400;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2401;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2402;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2403;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2404;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2405;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2406;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2407;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2408;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2409;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2410;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2411;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2412;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2413;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2414;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2415;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2416;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2417;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2418;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2419;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2420;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2421;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2422;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2423;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2424;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2425;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2426;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2427;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2428;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2429;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2430;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2431;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2432;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2433;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2434;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2435;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2436;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2437;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2438;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2439;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2440;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2441;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2442;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2443;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2444;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2445;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2446;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2447;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2448;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2449;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2450;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2451;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2452;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2453;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2454;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2455;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2456;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2457;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2458;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2459;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2460;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2461;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2462;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2463;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2464;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2465;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2466;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2467;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2468;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2469;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2470;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2471;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2472;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2473;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2474;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2475;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2476;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2477;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2478;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2479;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2480;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2481;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2482;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2483;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2484;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2485;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2486;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2487;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2488;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2489;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2490;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2491;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2492;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2493;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2494;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2495;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2496;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2497;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2498;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2499;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2500;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2501;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2502;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2503;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2504;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2505;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2506;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2507;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2508;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2509;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2510;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2511;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2512;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2513;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2514;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2515;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2516;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2517;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2518;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2519;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2520;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2521;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2522;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2523;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2524;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2525;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2526;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2527;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2528;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2529;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2530;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2531;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2532;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2533;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2534;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2535;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2536;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2537;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2538;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2539;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2540;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2541;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2542;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2543;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2544;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2545;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2546;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2547;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2548;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2549;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2550;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2551;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2552;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2553;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2554;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2555;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2556;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2557;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2558;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2559;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2560;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2561;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2562;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2563;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2564;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2565;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2566;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2567;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2568;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2569;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2570;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2571;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2572;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2573;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2574;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2575;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2576;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2577;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2578;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2579;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2580;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2581;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2582;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2583;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2584;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2585;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2586;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2587;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2588;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2589;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2590;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2591;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2592;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2593;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2594;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2595;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2596;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2597;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2598;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2599;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2600;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2601;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2602;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2603;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2604;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2605;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2606;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2607;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2608;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2609;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2610;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2611;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2612;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2613;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2614;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2615;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2616;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2617;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2618;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2619;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2620;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2621;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2622;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2623;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2624;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2625;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2626;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2627;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2628;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2629;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2630;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2631;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2632;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2633;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2634;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2635;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2636;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2637;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2638;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2639;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2640;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2641;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2642;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2643;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2644;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2645;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2646;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2647;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2648;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2649;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2650;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2651;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2652;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2653;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2654;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2655;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2656;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2657;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2658;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2659;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2660;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2661;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2662;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2663;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2664;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2665;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2666;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2667;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2668;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2669;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2670;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2671;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2672;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2673;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2674;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2675;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2676;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2677;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2678;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2679;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2680;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2681;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2682;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2683;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2684;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2685;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2686;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2687;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2688;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2689;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2690;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2691;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2692;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2693;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2694;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2695;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2696;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2697;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2698;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2699;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2700;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2701;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2702;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2703;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2704;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2705;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2706;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2707;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2708;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2709;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2710;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2711;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2712;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2713;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2714;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2715;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2716;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2717;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2718;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2719;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2720;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2721;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2722;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2723;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2724;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2725;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2726;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2727;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2728;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2729;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2730;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2731;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2732;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2733;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2734;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2735;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2736;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2737;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2738;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2739;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2740;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2741;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2742;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2743;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2744;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2745;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2746;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2747;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2748;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2749;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2750;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2751;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2752;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2753;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2754;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2755;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2756;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2757;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2758;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2759;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2760;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2761;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2762;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2763;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2764;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2765;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2766;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2767;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2768;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2769;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2770;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2771;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2772;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2773;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2774;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2775;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2776;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2777;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2778;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2779;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2780;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2781;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2782;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2783;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2784;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2785;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2786;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2787;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2788;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2789;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2790;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2791;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2792;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2793;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2794;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2795;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2796;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2797;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2798;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2799;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2800;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2801;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2802;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2803;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2804;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2805;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2806;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2807;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2808;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2809;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2810;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2811;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2812;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2813;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2814;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2815;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2816;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2817;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2818;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2819;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2820;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2821;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2822;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2823;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2824;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2825;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2826;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2827;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2828;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2829;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2830;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2831;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2832;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2833;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2834;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2835;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2836;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2837;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2838;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2839;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2840;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2841;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2842;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2843;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2844;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2845;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2846;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2847;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2848;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2849;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2850;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2851;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2852;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2853;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2854;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2855;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2856;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2857;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2858;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2859;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2860;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2861;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2862;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2863;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2864;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2865;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2866;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2867;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2868;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2869;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2870;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2871;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2872;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2873;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2874;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2875;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2876;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2877;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2878;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2879;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2880;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2881;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2882;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2883;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2884;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2885;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2886;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2887;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2888;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2889;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2890;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2891;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2892;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2893;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2894;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2895;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2896;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2897;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2898;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2899;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2900;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2901;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2902;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2903;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2904;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2905;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2906;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2907;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2908;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2909;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2910;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2911;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2912;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2913;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2914;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2915;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2916;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2917;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2918;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2919;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2920;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2921;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2922;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2923;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2924;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2925;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2926;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2927;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2928;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2929;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2930;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2931;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2932;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2933;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2934;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2935;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2936;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2937;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2938;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2939;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2940;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2941;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2942;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2943;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2944;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2945;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2946;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2947;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2948;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2949;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2950;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2951;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2952;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2953;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2954;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2955;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2956;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2957;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2958;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2959;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2960;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2961;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2962;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2963;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2964;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2965;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2966;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2967;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2968;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2969;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2970;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2971;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2972;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2973;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2974;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2975;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2976;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2977;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2978;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2979;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2980;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2981;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2982;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2983;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2984;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2985;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2986;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2987;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2988;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2989;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2990;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2991;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2992;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2993;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2994;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2995;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2996;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2997;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2998;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2999;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 3000;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3001;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3002;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 3003;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3004;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3005;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 3006;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 3007;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 3008;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 3009;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3010;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3011;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 3012;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3013;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3014;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 3015;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3016;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3017;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3018;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3019;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3020;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3021;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3022;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3023;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3024;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3025;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3026;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3027;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3028;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3029;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3030;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3031;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3032;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3033;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3034;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3035;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3036;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3037;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3038;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3039;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3040;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3041;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3042;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3043;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3044;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3045;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3046;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3047;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3048;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3049;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3050;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3051;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3052;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3053;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3054;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3055;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3056;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3057;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3058;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3059;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3060;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3061;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3062;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3063;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3064;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3065;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 3066;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3067;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3068;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 3069;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 3070;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 3071;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 3072;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3073;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3074;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 3075;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3076;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3077;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 3078;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 3079;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 3080;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 3081;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3082;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3083;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 3084;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3085;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3086;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 3087;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 3088;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 3089;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 3090;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3091;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3092;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 3093;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3094;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3095;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 3096;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 3097;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 3098;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 3099;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3100;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3101;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 3102;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3103;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3104;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 3105;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 3106;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 3107;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 3108;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3109;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3110;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 3111;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3112;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3113;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 3114;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 3115;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 3116;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 3117;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3118;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3119;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 3120;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3121;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3122;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 3123;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 3124;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 3125;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 3126;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3127;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3128;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 3129;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3130;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3131;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 3132;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 3133;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 3134;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 3135;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3136;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3137;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 3138;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3139;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3140;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 3141;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 3142;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 3143;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 3144;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3145;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3146;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 3147;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3148;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3149;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 3150;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 3151;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 3152;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 3153;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3154;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3155;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 3156;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3157;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3158;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 3159;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3160;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3161;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3162;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3163;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3164;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3165;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3166;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3167;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3168;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3169;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3170;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3171;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3172;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3173;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3174;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3175;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3176;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3177;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3178;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3179;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3180;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3181;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3182;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3183;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3184;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3185;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3186;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3187;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3188;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3189;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3190;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3191;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3192;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3193;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3194;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3195;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3196;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3197;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3198;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3199;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3200;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3201;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3202;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3203;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3204;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3205;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3206;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3207;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3208;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3209;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 3210;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3211;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3212;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 3213;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 3214;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 3215;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 3216;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3217;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3218;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 3219;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3220;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3221;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 3222;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 3223;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 3224;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 3225;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3226;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3227;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 3228;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3229;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3230;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 3231;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 3232;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 3233;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 3234;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3235;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3236;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 3237;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3238;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3239;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 3240;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 3241;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 3242;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 3243;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3244;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3245;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 3246;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3247;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3248;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 3249;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 3250;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 3251;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 3252;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3253;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3254;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 3255;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3256;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3257;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 3258;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 3259;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 3260;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 3261;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3262;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3263;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 3264;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3265;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3266;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 3267;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 3268;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 3269;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 3270;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3271;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3272;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 3273;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3274;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3275;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 3276;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 3277;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 3278;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 3279;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3280;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3281;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 3282;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3283;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3284;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 3285;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 3286;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 3287;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 3288;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3289;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3290;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 3291;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3292;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3293;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 3294;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 3295;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 3296;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 3297;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3298;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3299;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 3300;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3301;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3302;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 3303;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3304;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3305;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3306;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3307;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3308;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3309;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3310;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3311;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3312;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3313;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3314;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3315;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3316;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3317;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3318;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3319;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3320;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3321;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3322;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3323;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3324;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3325;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3326;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3327;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3328;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3329;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3330;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3331;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3332;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3333;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3334;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3335;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3336;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3337;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3338;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3339;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3340;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3341;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3342;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3343;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3344;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3345;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3346;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3347;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3348;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3349;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3350;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3351;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, true): return 4017;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, false): return 4018;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, true): return 4019;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, false): return 4020;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, true): return 4021;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, false): return 4022;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, true): return 4023;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, false): return 4024;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, true): return 4025;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, false): return 4026;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, true): return 4027;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, false): return 4028;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, true): return 4029;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, false): return 4030;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, true): return 4031;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, false): return 4032;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, true): return 4033;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, false): return 4034;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, true): return 4035;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, false): return 4036;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, true): return 4037;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, false): return 4038;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, true): return 4039;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, false): return 4040;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, true): return 4041;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, false): return 4042;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, true): return 4043;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, false): return 4044;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, true): return 4045;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, false): return 4046;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, true): return 4047;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, false): return 4048;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, true): return 4049;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, false): return 4050;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, true): return 4051;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, false): return 4052;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, true): return 4053;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, false): return 4054;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, true): return 4055;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, false): return 4056;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, true): return 4057;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, false): return 4058;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, true): return 4059;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, false): return 4060;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, true): return 4061;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, false): return 4062;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, true): return 4063;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, false): return 4064;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, true): return 4065;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, false): return 4066;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, true): return 4067;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, false): return 4068;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, true): return 4069;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, false): return 4070;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, true): return 4071;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, false): return 4072;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, true): return 4073;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, false): return 4074;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, true): return 4075;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, false): return 4076;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, true): return 4077;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, false): return 4078;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, true): return 4079;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, false): return 4080;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 8689;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 8690;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 8691;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 8692;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 8693;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 8694;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 8695;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 8696;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 8697;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 8698;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 8699;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 8700;
- case RoseBush::RoseBush(RoseBush::Half::Upper): return 7353;
- case RoseBush::RoseBush(RoseBush::Half::Lower): return 7354;
- case Sand::Sand(): return 66;
- case Sandstone::Sandstone(): return 245;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Top): return 7813;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Bottom): return 7815;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Double): return 7817;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5155;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5157;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5159;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5161;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5163;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5165;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5167;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5169;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5171;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5173;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5175;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5177;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5179;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5181;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5183;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5185;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5187;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5189;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5191;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5193;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5195;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5197;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5199;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5201;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5203;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5205;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5207;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5209;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5211;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5213;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5215;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5217;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5219;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5221;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5223;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5225;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5227;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5229;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5231;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5233;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 10909;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 10910;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 10913;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 10914;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 10917;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None): return 10918;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 10921;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None): return 10922;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 10925;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 10926;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 10929;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 10930;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 10933;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None): return 10934;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 10937;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None): return 10938;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 10941;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 10942;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 10945;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 10946;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 10949;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None): return 10950;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 10953;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None): return 10954;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 10957;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 10958;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 10961;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 10962;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 10965;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None): return 10966;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 10969;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None): return 10970;
- case Scaffolding::Scaffolding(true, 0): return 11100;
- case Scaffolding::Scaffolding(true, 1): return 11102;
- case Scaffolding::Scaffolding(true, 2): return 11104;
- case Scaffolding::Scaffolding(true, 3): return 11106;
- case Scaffolding::Scaffolding(true, 4): return 11108;
- case Scaffolding::Scaffolding(true, 5): return 11110;
- case Scaffolding::Scaffolding(true, 6): return 11112;
- case Scaffolding::Scaffolding(true, 7): return 11114;
- case Scaffolding::Scaffolding(false, 0): return 11116;
- case Scaffolding::Scaffolding(false, 1): return 11118;
- case Scaffolding::Scaffolding(false, 2): return 11120;
- case Scaffolding::Scaffolding(false, 3): return 11122;
- case Scaffolding::Scaffolding(false, 4): return 11124;
- case Scaffolding::Scaffolding(false, 5): return 11126;
- case Scaffolding::Scaffolding(false, 6): return 11128;
- case Scaffolding::Scaffolding(false, 7): return 11130;
- case SeaLantern::SeaLantern(): return 7326;
- case SeaPickle::SeaPickle(1): return 9105;
- case SeaPickle::SeaPickle(2): return 9107;
- case SeaPickle::SeaPickle(3): return 9109;
- case SeaPickle::SeaPickle(4): return 9111;
- case Seagrass::Seagrass(): return 1344;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8736;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8737;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8738;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8739;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8740;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8741;
- case SkeletonSkull::SkeletonSkull(0): return 5954;
- case SkeletonSkull::SkeletonSkull(1): return 5955;
- case SkeletonSkull::SkeletonSkull(2): return 5956;
- case SkeletonSkull::SkeletonSkull(3): return 5957;
- case SkeletonSkull::SkeletonSkull(4): return 5958;
- case SkeletonSkull::SkeletonSkull(5): return 5959;
- case SkeletonSkull::SkeletonSkull(6): return 5960;
- case SkeletonSkull::SkeletonSkull(7): return 5961;
- case SkeletonSkull::SkeletonSkull(8): return 5962;
- case SkeletonSkull::SkeletonSkull(9): return 5963;
- case SkeletonSkull::SkeletonSkull(10): return 5964;
- case SkeletonSkull::SkeletonSkull(11): return 5965;
- case SkeletonSkull::SkeletonSkull(12): return 5966;
- case SkeletonSkull::SkeletonSkull(13): return 5967;
- case SkeletonSkull::SkeletonSkull(14): return 5968;
- case SkeletonSkull::SkeletonSkull(15): return 5969;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 5970;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 5971;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 5972;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 5973;
- case SlimeBlock::SlimeBlock(): return 6999;
- case SmithingTable::SmithingTable(): return 11193;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, true): return 11147;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, false): return 11148;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, true): return 11149;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, false): return 11150;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, true): return 11151;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, false): return 11152;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, true): return 11153;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, false): return 11154;
- case SmoothQuartz::SmoothQuartz(): return 7880;
- case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Top): return 10296;
- case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Bottom): return 10298;
- case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Double): return 10300;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 9774;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 9776;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 9778;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 9780;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 9782;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 9784;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 9786;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 9788;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 9790;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 9792;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 9794;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 9796;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 9798;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 9800;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 9802;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 9804;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 9806;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 9808;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 9810;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 9812;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 9814;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 9816;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 9818;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 9820;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 9822;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 9824;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 9826;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 9828;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 9830;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 9832;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 9834;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 9836;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 9838;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 9840;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 9842;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 9844;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 9846;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 9848;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 9850;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 9852;
- case SmoothRedSandstone::SmoothRedSandstone(): return 7881;
- case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Top): return 10260;
- case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Bottom): return 10262;
- case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Double): return 10264;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9214;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9216;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9218;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9220;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9222;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9224;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9226;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9228;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9230;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9232;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9234;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9236;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9238;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9240;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9242;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9244;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9246;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9248;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9250;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9252;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9254;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9256;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9258;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9260;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9262;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9264;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9266;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9268;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9270;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9272;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9274;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9276;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9278;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9280;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9282;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9284;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9286;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9288;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9290;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9292;
- case SmoothSandstone::SmoothSandstone(): return 7879;
- case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Top): return 10290;
- case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Bottom): return 10292;
- case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Double): return 10294;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 9694;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 9696;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 9698;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 9700;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 9702;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 9704;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 9706;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 9708;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 9710;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 9712;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 9714;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 9716;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 9718;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 9720;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 9722;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 9724;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 9726;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 9728;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 9730;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 9732;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 9734;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 9736;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 9738;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 9740;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 9742;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 9744;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 9746;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 9748;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 9750;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 9752;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 9754;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 9756;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 9758;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 9760;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 9762;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 9764;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 9766;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 9768;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 9770;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 9772;
- case SmoothStone::SmoothStone(): return 7878;
- case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Top): return 7807;
- case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Bottom): return 7809;
- case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Double): return 7811;
- case Snow::Snow(1): return 3919;
- case Snow::Snow(2): return 3920;
- case Snow::Snow(3): return 3921;
- case Snow::Snow(4): return 3922;
- case Snow::Snow(5): return 3923;
- case Snow::Snow(6): return 3924;
- case Snow::Snow(7): return 3925;
- case Snow::Snow(8): return 3926;
- case SnowBlock::SnowBlock(): return 3928;
- case SoulSand::SoulSand(): return 3998;
- case Spawner::Spawner(): return 1951;
- case Sponge::Sponge(): return 228;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5834;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5835;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5836;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5837;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5838;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5839;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5840;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5841;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5842;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5843;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5844;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5845;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5846;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5847;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5848;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5849;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5850;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5851;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5852;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5853;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5854;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5855;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5856;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5857;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8202;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8203;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8204;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8205;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8206;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8207;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8208;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8209;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8210;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8211;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8212;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8213;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8214;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8215;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8216;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8217;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8218;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8219;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8220;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8221;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8222;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8223;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8224;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8225;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8226;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8227;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8228;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8229;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8230;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8231;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8232;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8233;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8234;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8235;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8236;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8237;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8238;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8239;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8240;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8241;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8242;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8243;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8244;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8245;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8246;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8247;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8248;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8249;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8250;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8251;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8252;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8253;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8254;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8255;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8256;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8257;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8258;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8259;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8260;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8261;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8262;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8263;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8264;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8265;
- case SpruceFence::SpruceFence(true, true, true, true): return 8044;
- case SpruceFence::SpruceFence(true, true, true, false): return 8045;
- case SpruceFence::SpruceFence(true, true, false, true): return 8048;
- case SpruceFence::SpruceFence(true, true, false, false): return 8049;
- case SpruceFence::SpruceFence(true, false, true, true): return 8052;
- case SpruceFence::SpruceFence(true, false, true, false): return 8053;
- case SpruceFence::SpruceFence(true, false, false, true): return 8056;
- case SpruceFence::SpruceFence(true, false, false, false): return 8057;
- case SpruceFence::SpruceFence(false, true, true, true): return 8060;
- case SpruceFence::SpruceFence(false, true, true, false): return 8061;
- case SpruceFence::SpruceFence(false, true, false, true): return 8064;
- case SpruceFence::SpruceFence(false, true, false, false): return 8065;
- case SpruceFence::SpruceFence(false, false, true, true): return 8068;
- case SpruceFence::SpruceFence(false, false, true, false): return 8069;
- case SpruceFence::SpruceFence(false, false, false, true): return 8072;
- case SpruceFence::SpruceFence(false, false, false, false): return 8073;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7882;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7883;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7884;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7885;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7886;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7887;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7888;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7889;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7890;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7891;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7892;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7893;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7894;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7895;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7896;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7897;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7898;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7899;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7900;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7901;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7902;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7903;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7904;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7905;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7906;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7907;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7908;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7909;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7910;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7911;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7912;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7913;
- case SpruceLeaves::SpruceLeaves(1, true): return 158;
- case SpruceLeaves::SpruceLeaves(1, false): return 159;
- case SpruceLeaves::SpruceLeaves(2, true): return 160;
- case SpruceLeaves::SpruceLeaves(2, false): return 161;
- case SpruceLeaves::SpruceLeaves(3, true): return 162;
- case SpruceLeaves::SpruceLeaves(3, false): return 163;
- case SpruceLeaves::SpruceLeaves(4, true): return 164;
- case SpruceLeaves::SpruceLeaves(4, false): return 165;
- case SpruceLeaves::SpruceLeaves(5, true): return 166;
- case SpruceLeaves::SpruceLeaves(5, false): return 167;
- case SpruceLeaves::SpruceLeaves(6, true): return 168;
- case SpruceLeaves::SpruceLeaves(6, false): return 169;
- case SpruceLeaves::SpruceLeaves(7, true): return 170;
- case SpruceLeaves::SpruceLeaves(7, false): return 171;
- case SpruceLog::SpruceLog(SpruceLog::Axis::X): return 75;
- case SpruceLog::SpruceLog(SpruceLog::Axis::Y): return 76;
- case SpruceLog::SpruceLog(SpruceLog::Axis::Z): return 77;
- case SprucePlanks::SprucePlanks(): return 16;
- case SprucePressurePlate::SprucePressurePlate(true): return 3873;
- case SprucePressurePlate::SprucePressurePlate(false): return 3874;
- case SpruceSapling::SpruceSapling(0): return 23;
- case SpruceSapling::SpruceSapling(1): return 24;
- case SpruceSign::SpruceSign(0): return 3412;
- case SpruceSign::SpruceSign(1): return 3414;
- case SpruceSign::SpruceSign(2): return 3416;
- case SpruceSign::SpruceSign(3): return 3418;
- case SpruceSign::SpruceSign(4): return 3420;
- case SpruceSign::SpruceSign(5): return 3422;
- case SpruceSign::SpruceSign(6): return 3424;
- case SpruceSign::SpruceSign(7): return 3426;
- case SpruceSign::SpruceSign(8): return 3428;
- case SpruceSign::SpruceSign(9): return 3430;
- case SpruceSign::SpruceSign(10): return 3432;
- case SpruceSign::SpruceSign(11): return 3434;
- case SpruceSign::SpruceSign(12): return 3436;
- case SpruceSign::SpruceSign(13): return 3438;
- case SpruceSign::SpruceSign(14): return 3440;
- case SpruceSign::SpruceSign(15): return 3442;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Top): return 7771;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Bottom): return 7773;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Double): return 7775;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5389;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5391;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5393;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5395;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5397;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5399;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5401;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5403;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5405;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5407;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5409;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5411;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5413;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5415;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5417;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5419;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5421;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5423;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5425;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5427;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5429;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5431;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5433;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5435;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5437;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5439;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5441;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5443;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5445;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5447;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5449;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5451;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5453;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5455;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5457;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5459;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5461;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5463;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5465;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5467;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, true): return 4162;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, false): return 4164;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, true): return 4166;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, false): return 4168;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, true): return 4170;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, false): return 4172;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, true): return 4174;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, false): return 4176;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, true): return 4178;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, false): return 4180;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, true): return 4182;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, false): return 4184;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, true): return 4186;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, false): return 4188;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, true): return 4190;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, false): return 4192;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, true): return 4194;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, false): return 4196;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, true): return 4198;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, false): return 4200;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, true): return 4202;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, false): return 4204;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, true): return 4206;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, false): return 4208;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, true): return 4210;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, false): return 4212;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, true): return 4214;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, false): return 4216;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, true): return 4218;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, false): return 4220;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, true): return 4222;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, false): return 4224;
- case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZM): return 3742;
- case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZP): return 3744;
- case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XM): return 3746;
- case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XP): return 3748;
- case SpruceWood::SpruceWood(SpruceWood::Axis::X): return 111;
- case SpruceWood::SpruceWood(SpruceWood::Axis::Y): return 112;
- case SpruceWood::SpruceWood(SpruceWood::Axis::Z): return 113;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZM): return 1328;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XP): return 1329;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZP): return 1330;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XM): return 1331;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YP): return 1332;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YM): return 1333;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZM): return 1334;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XP): return 1335;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZP): return 1336;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XM): return 1337;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YP): return 1338;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YM): return 1339;
- case Stone::Stone(): return 1;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Top): return 7843;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Bottom): return 7845;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double): return 7847;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4917;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4919;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4921;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4923;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4925;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4927;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4929;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4931;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4933;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4935;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4937;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4939;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4941;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4943;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4945;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4947;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4949;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4951;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4953;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4955;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4957;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4959;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4961;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4963;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4965;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4967;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4969;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4971;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4973;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4975;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4977;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4979;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4981;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4983;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4985;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4987;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4989;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4991;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4993;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4995;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 10653;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 10654;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 10657;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 10658;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 10661;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 10662;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 10665;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 10666;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 10669;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 10670;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 10673;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 10674;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 10677;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 10678;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 10681;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 10682;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 10685;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 10686;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 10689;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 10690;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 10693;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 10694;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 10697;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 10698;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 10701;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 10702;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 10705;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 10706;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 10709;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 10710;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 10713;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 10714;
- case StoneBricks::StoneBricks(): return 4481;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3895;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3896;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3897;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3898;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3899;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3900;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3901;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3902;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3903;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3904;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3905;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3906;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3907;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3908;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3909;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3910;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3911;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3912;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3913;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3914;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3915;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3916;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3917;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3918;
- case StonePressurePlate::StonePressurePlate(true): return 3805;
- case StonePressurePlate::StonePressurePlate(false): return 3806;
- case StoneSlab::StoneSlab(StoneSlab::Type::Top): return 7801;
- case StoneSlab::StoneSlab(StoneSlab::Type::Bottom): return 7803;
- case StoneSlab::StoneSlab(StoneSlab::Type::Double): return 7805;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 9614;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 9616;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 9618;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 9620;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 9622;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 9624;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 9626;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 9628;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 9630;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 9632;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 9634;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 9636;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 9638;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 9640;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 9642;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 9644;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 9646;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 9648;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 9650;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 9652;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 9654;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 9656;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 9658;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 9660;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 9662;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 9664;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 9666;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 9668;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 9670;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 9672;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 9674;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 9676;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 9678;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 9680;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 9682;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 9684;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 9686;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 9688;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 9690;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 9692;
- case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZM): return 11194;
- case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZP): return 11195;
- case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XM): return 11196;
- case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XP): return 11197;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::X): return 99;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Y): return 100;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Z): return 101;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::X): return 138;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Y): return 139;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Z): return 140;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::X): return 93;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Y): return 94;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Z): return 95;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::X): return 132;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Y): return 133;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Z): return 134;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::X): return 102;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Y): return 103;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Z): return 104;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::X): return 141;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Y): return 142;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Z): return 143;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::X): return 96;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Y): return 97;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Z): return 98;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::X): return 135;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Y): return 136;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Z): return 137;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::X): return 105;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Y): return 106;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Z): return 107;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::X): return 126;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Y): return 127;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Z): return 128;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::X): return 90;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Y): return 91;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Z): return 92;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::X): return 129;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Y): return 130;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Z): return 131;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Save): return 11252;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Load): return 11253;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Corner): return 11254;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Data): return 11255;
- case StructureVoid::StructureVoid(): return 8723;
- case SugarCane::SugarCane(0): return 3946;
- case SugarCane::SugarCane(1): return 3947;
- case SugarCane::SugarCane(2): return 3948;
- case SugarCane::SugarCane(3): return 3949;
- case SugarCane::SugarCane(4): return 3950;
- case SugarCane::SugarCane(5): return 3951;
- case SugarCane::SugarCane(6): return 3952;
- case SugarCane::SugarCane(7): return 3953;
- case SugarCane::SugarCane(8): return 3954;
- case SugarCane::SugarCane(9): return 3955;
- case SugarCane::SugarCane(10): return 3956;
- case SugarCane::SugarCane(11): return 3957;
- case SugarCane::SugarCane(12): return 3958;
- case SugarCane::SugarCane(13): return 3959;
- case SugarCane::SugarCane(14): return 3960;
- case SugarCane::SugarCane(15): return 3961;
- case Sunflower::Sunflower(Sunflower::Half::Upper): return 7349;
- case Sunflower::Sunflower(Sunflower::Half::Lower): return 7350;
- case SweetBerryBush::SweetBerryBush(0): return 11248;
- case SweetBerryBush::SweetBerryBush(1): return 11249;
- case SweetBerryBush::SweetBerryBush(2): return 11250;
- case SweetBerryBush::SweetBerryBush(3): return 11251;
- case TNT::TNT(true): return 1429;
- case TNT::TNT(false): return 1430;
- case TallGrass::TallGrass(TallGrass::Half::Upper): return 7357;
- case TallGrass::TallGrass(TallGrass::Half::Lower): return 7358;
- case TallSeagrass::TallSeagrass(TallSeagrass::Half::Upper): return 1345;
- case TallSeagrass::TallSeagrass(TallSeagrass::Half::Lower): return 1346;
- case Terracotta::Terracotta(): return 7346;
- case Torch::Torch(): return 1434;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Single): return 6087;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Left): return 6089;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Right): return 6091;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Single): return 6093;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Left): return 6095;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Right): return 6097;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Single): return 6099;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Left): return 6101;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Right): return 6103;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Single): return 6105;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Left): return 6107;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Right): return 6109;
- case Tripwire::Tripwire(true, true, true, true, true, true, true): return 5259;
- case Tripwire::Tripwire(true, true, true, true, true, true, false): return 5260;
- case Tripwire::Tripwire(true, true, true, true, true, false, true): return 5261;
- case Tripwire::Tripwire(true, true, true, true, true, false, false): return 5262;
- case Tripwire::Tripwire(true, true, true, true, false, true, true): return 5263;
- case Tripwire::Tripwire(true, true, true, true, false, true, false): return 5264;
- case Tripwire::Tripwire(true, true, true, true, false, false, true): return 5265;
- case Tripwire::Tripwire(true, true, true, true, false, false, false): return 5266;
- case Tripwire::Tripwire(true, true, true, false, true, true, true): return 5267;
- case Tripwire::Tripwire(true, true, true, false, true, true, false): return 5268;
- case Tripwire::Tripwire(true, true, true, false, true, false, true): return 5269;
- case Tripwire::Tripwire(true, true, true, false, true, false, false): return 5270;
- case Tripwire::Tripwire(true, true, true, false, false, true, true): return 5271;
- case Tripwire::Tripwire(true, true, true, false, false, true, false): return 5272;
- case Tripwire::Tripwire(true, true, true, false, false, false, true): return 5273;
- case Tripwire::Tripwire(true, true, true, false, false, false, false): return 5274;
- case Tripwire::Tripwire(true, true, false, true, true, true, true): return 5275;
- case Tripwire::Tripwire(true, true, false, true, true, true, false): return 5276;
- case Tripwire::Tripwire(true, true, false, true, true, false, true): return 5277;
- case Tripwire::Tripwire(true, true, false, true, true, false, false): return 5278;
- case Tripwire::Tripwire(true, true, false, true, false, true, true): return 5279;
- case Tripwire::Tripwire(true, true, false, true, false, true, false): return 5280;
- case Tripwire::Tripwire(true, true, false, true, false, false, true): return 5281;
- case Tripwire::Tripwire(true, true, false, true, false, false, false): return 5282;
- case Tripwire::Tripwire(true, true, false, false, true, true, true): return 5283;
- case Tripwire::Tripwire(true, true, false, false, true, true, false): return 5284;
- case Tripwire::Tripwire(true, true, false, false, true, false, true): return 5285;
- case Tripwire::Tripwire(true, true, false, false, true, false, false): return 5286;
- case Tripwire::Tripwire(true, true, false, false, false, true, true): return 5287;
- case Tripwire::Tripwire(true, true, false, false, false, true, false): return 5288;
- case Tripwire::Tripwire(true, true, false, false, false, false, true): return 5289;
- case Tripwire::Tripwire(true, true, false, false, false, false, false): return 5290;
- case Tripwire::Tripwire(true, false, true, true, true, true, true): return 5291;
- case Tripwire::Tripwire(true, false, true, true, true, true, false): return 5292;
- case Tripwire::Tripwire(true, false, true, true, true, false, true): return 5293;
- case Tripwire::Tripwire(true, false, true, true, true, false, false): return 5294;
- case Tripwire::Tripwire(true, false, true, true, false, true, true): return 5295;
- case Tripwire::Tripwire(true, false, true, true, false, true, false): return 5296;
- case Tripwire::Tripwire(true, false, true, true, false, false, true): return 5297;
- case Tripwire::Tripwire(true, false, true, true, false, false, false): return 5298;
- case Tripwire::Tripwire(true, false, true, false, true, true, true): return 5299;
- case Tripwire::Tripwire(true, false, true, false, true, true, false): return 5300;
- case Tripwire::Tripwire(true, false, true, false, true, false, true): return 5301;
- case Tripwire::Tripwire(true, false, true, false, true, false, false): return 5302;
- case Tripwire::Tripwire(true, false, true, false, false, true, true): return 5303;
- case Tripwire::Tripwire(true, false, true, false, false, true, false): return 5304;
- case Tripwire::Tripwire(true, false, true, false, false, false, true): return 5305;
- case Tripwire::Tripwire(true, false, true, false, false, false, false): return 5306;
- case Tripwire::Tripwire(true, false, false, true, true, true, true): return 5307;
- case Tripwire::Tripwire(true, false, false, true, true, true, false): return 5308;
- case Tripwire::Tripwire(true, false, false, true, true, false, true): return 5309;
- case Tripwire::Tripwire(true, false, false, true, true, false, false): return 5310;
- case Tripwire::Tripwire(true, false, false, true, false, true, true): return 5311;
- case Tripwire::Tripwire(true, false, false, true, false, true, false): return 5312;
- case Tripwire::Tripwire(true, false, false, true, false, false, true): return 5313;
- case Tripwire::Tripwire(true, false, false, true, false, false, false): return 5314;
- case Tripwire::Tripwire(true, false, false, false, true, true, true): return 5315;
- case Tripwire::Tripwire(true, false, false, false, true, true, false): return 5316;
- case Tripwire::Tripwire(true, false, false, false, true, false, true): return 5317;
- case Tripwire::Tripwire(true, false, false, false, true, false, false): return 5318;
- case Tripwire::Tripwire(true, false, false, false, false, true, true): return 5319;
- case Tripwire::Tripwire(true, false, false, false, false, true, false): return 5320;
- case Tripwire::Tripwire(true, false, false, false, false, false, true): return 5321;
- case Tripwire::Tripwire(true, false, false, false, false, false, false): return 5322;
- case Tripwire::Tripwire(false, true, true, true, true, true, true): return 5323;
- case Tripwire::Tripwire(false, true, true, true, true, true, false): return 5324;
- case Tripwire::Tripwire(false, true, true, true, true, false, true): return 5325;
- case Tripwire::Tripwire(false, true, true, true, true, false, false): return 5326;
- case Tripwire::Tripwire(false, true, true, true, false, true, true): return 5327;
- case Tripwire::Tripwire(false, true, true, true, false, true, false): return 5328;
- case Tripwire::Tripwire(false, true, true, true, false, false, true): return 5329;
- case Tripwire::Tripwire(false, true, true, true, false, false, false): return 5330;
- case Tripwire::Tripwire(false, true, true, false, true, true, true): return 5331;
- case Tripwire::Tripwire(false, true, true, false, true, true, false): return 5332;
- case Tripwire::Tripwire(false, true, true, false, true, false, true): return 5333;
- case Tripwire::Tripwire(false, true, true, false, true, false, false): return 5334;
- case Tripwire::Tripwire(false, true, true, false, false, true, true): return 5335;
- case Tripwire::Tripwire(false, true, true, false, false, true, false): return 5336;
- case Tripwire::Tripwire(false, true, true, false, false, false, true): return 5337;
- case Tripwire::Tripwire(false, true, true, false, false, false, false): return 5338;
- case Tripwire::Tripwire(false, true, false, true, true, true, true): return 5339;
- case Tripwire::Tripwire(false, true, false, true, true, true, false): return 5340;
- case Tripwire::Tripwire(false, true, false, true, true, false, true): return 5341;
- case Tripwire::Tripwire(false, true, false, true, true, false, false): return 5342;
- case Tripwire::Tripwire(false, true, false, true, false, true, true): return 5343;
- case Tripwire::Tripwire(false, true, false, true, false, true, false): return 5344;
- case Tripwire::Tripwire(false, true, false, true, false, false, true): return 5345;
- case Tripwire::Tripwire(false, true, false, true, false, false, false): return 5346;
- case Tripwire::Tripwire(false, true, false, false, true, true, true): return 5347;
- case Tripwire::Tripwire(false, true, false, false, true, true, false): return 5348;
- case Tripwire::Tripwire(false, true, false, false, true, false, true): return 5349;
- case Tripwire::Tripwire(false, true, false, false, true, false, false): return 5350;
- case Tripwire::Tripwire(false, true, false, false, false, true, true): return 5351;
- case Tripwire::Tripwire(false, true, false, false, false, true, false): return 5352;
- case Tripwire::Tripwire(false, true, false, false, false, false, true): return 5353;
- case Tripwire::Tripwire(false, true, false, false, false, false, false): return 5354;
- case Tripwire::Tripwire(false, false, true, true, true, true, true): return 5355;
- case Tripwire::Tripwire(false, false, true, true, true, true, false): return 5356;
- case Tripwire::Tripwire(false, false, true, true, true, false, true): return 5357;
- case Tripwire::Tripwire(false, false, true, true, true, false, false): return 5358;
- case Tripwire::Tripwire(false, false, true, true, false, true, true): return 5359;
- case Tripwire::Tripwire(false, false, true, true, false, true, false): return 5360;
- case Tripwire::Tripwire(false, false, true, true, false, false, true): return 5361;
- case Tripwire::Tripwire(false, false, true, true, false, false, false): return 5362;
- case Tripwire::Tripwire(false, false, true, false, true, true, true): return 5363;
- case Tripwire::Tripwire(false, false, true, false, true, true, false): return 5364;
- case Tripwire::Tripwire(false, false, true, false, true, false, true): return 5365;
- case Tripwire::Tripwire(false, false, true, false, true, false, false): return 5366;
- case Tripwire::Tripwire(false, false, true, false, false, true, true): return 5367;
- case Tripwire::Tripwire(false, false, true, false, false, true, false): return 5368;
- case Tripwire::Tripwire(false, false, true, false, false, false, true): return 5369;
- case Tripwire::Tripwire(false, false, true, false, false, false, false): return 5370;
- case Tripwire::Tripwire(false, false, false, true, true, true, true): return 5371;
- case Tripwire::Tripwire(false, false, false, true, true, true, false): return 5372;
- case Tripwire::Tripwire(false, false, false, true, true, false, true): return 5373;
- case Tripwire::Tripwire(false, false, false, true, true, false, false): return 5374;
- case Tripwire::Tripwire(false, false, false, true, false, true, true): return 5375;
- case Tripwire::Tripwire(false, false, false, true, false, true, false): return 5376;
- case Tripwire::Tripwire(false, false, false, true, false, false, true): return 5377;
- case Tripwire::Tripwire(false, false, false, true, false, false, false): return 5378;
- case Tripwire::Tripwire(false, false, false, false, true, true, true): return 5379;
- case Tripwire::Tripwire(false, false, false, false, true, true, false): return 5380;
- case Tripwire::Tripwire(false, false, false, false, true, false, true): return 5381;
- case Tripwire::Tripwire(false, false, false, false, true, false, false): return 5382;
- case Tripwire::Tripwire(false, false, false, false, false, true, true): return 5383;
- case Tripwire::Tripwire(false, false, false, false, false, true, false): return 5384;
- case Tripwire::Tripwire(false, false, false, false, false, false, true): return 5385;
- case Tripwire::Tripwire(false, false, false, false, false, false, false): return 5386;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, true): return 5243;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, false): return 5244;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, true): return 5245;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, false): return 5246;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, true): return 5247;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, false): return 5248;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, true): return 5249;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, false): return 5250;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, true): return 5251;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, false): return 5252;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, true): return 5253;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, false): return 5254;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, true): return 5255;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, false): return 5256;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, true): return 5257;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, false): return 5258;
- case TubeCoral::TubeCoral(): return 8995;
- case TubeCoralBlock::TubeCoralBlock(): return 8979;
- case TubeCoralFan::TubeCoralFan(): return 9015;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9065;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9067;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9069;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9071;
- case TurtleEgg::TurtleEgg(1, 0): return 8962;
- case TurtleEgg::TurtleEgg(1, 1): return 8963;
- case TurtleEgg::TurtleEgg(1, 2): return 8964;
- case TurtleEgg::TurtleEgg(2, 0): return 8965;
- case TurtleEgg::TurtleEgg(2, 1): return 8966;
- case TurtleEgg::TurtleEgg(2, 2): return 8967;
- case TurtleEgg::TurtleEgg(3, 0): return 8968;
- case TurtleEgg::TurtleEgg(3, 1): return 8969;
- case TurtleEgg::TurtleEgg(3, 2): return 8970;
- case TurtleEgg::TurtleEgg(4, 0): return 8971;
- case TurtleEgg::TurtleEgg(4, 1): return 8972;
- case TurtleEgg::TurtleEgg(4, 2): return 8973;
- case Vine::Vine(true, true, true, true, true): return 4772;
- case Vine::Vine(true, true, true, true, false): return 4773;
- case Vine::Vine(true, true, true, false, true): return 4774;
- case Vine::Vine(true, true, true, false, false): return 4775;
- case Vine::Vine(true, true, false, true, true): return 4776;
- case Vine::Vine(true, true, false, true, false): return 4777;
- case Vine::Vine(true, true, false, false, true): return 4778;
- case Vine::Vine(true, true, false, false, false): return 4779;
- case Vine::Vine(true, false, true, true, true): return 4780;
- case Vine::Vine(true, false, true, true, false): return 4781;
- case Vine::Vine(true, false, true, false, true): return 4782;
- case Vine::Vine(true, false, true, false, false): return 4783;
- case Vine::Vine(true, false, false, true, true): return 4784;
- case Vine::Vine(true, false, false, true, false): return 4785;
- case Vine::Vine(true, false, false, false, true): return 4786;
- case Vine::Vine(true, false, false, false, false): return 4787;
- case Vine::Vine(false, true, true, true, true): return 4788;
- case Vine::Vine(false, true, true, true, false): return 4789;
- case Vine::Vine(false, true, true, false, true): return 4790;
- case Vine::Vine(false, true, true, false, false): return 4791;
- case Vine::Vine(false, true, false, true, true): return 4792;
- case Vine::Vine(false, true, false, true, false): return 4793;
- case Vine::Vine(false, true, false, false, true): return 4794;
- case Vine::Vine(false, true, false, false, false): return 4795;
- case Vine::Vine(false, false, true, true, true): return 4796;
- case Vine::Vine(false, false, true, true, false): return 4797;
- case Vine::Vine(false, false, true, false, true): return 4798;
- case Vine::Vine(false, false, true, false, false): return 4799;
- case Vine::Vine(false, false, false, true, true): return 4800;
- case Vine::Vine(false, false, false, true, false): return 4801;
- case Vine::Vine(false, false, false, false, true): return 4802;
- case Vine::Vine(false, false, false, false, false): return 4803;
- case VoidAir::VoidAir(): return 9129;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZM): return 1435;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZP): return 1436;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XM): return 1437;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XP): return 1438;
- case Water::Water(0): return 34;
- case Water::Water(1): return 35;
- case Water::Water(2): return 36;
- case Water::Water(3): return 37;
- case Water::Water(4): return 38;
- case Water::Water(5): return 39;
- case Water::Water(6): return 40;
- case Water::Water(7): return 41;
- case Water::Water(8): return 42;
- case Water::Water(9): return 43;
- case Water::Water(10): return 44;
- case Water::Water(11): return 45;
- case Water::Water(12): return 46;
- case Water::Water(13): return 47;
- case Water::Water(14): return 48;
- case Water::Water(15): return 49;
- case WetSponge::WetSponge(): return 229;
- case Wheat::Wheat(0): return 3355;
- case Wheat::Wheat(1): return 3356;
- case Wheat::Wheat(2): return 3357;
- case Wheat::Wheat(3): return 3358;
- case Wheat::Wheat(4): return 3359;
- case Wheat::Wheat(5): return 3360;
- case Wheat::Wheat(6): return 3361;
- case Wheat::Wheat(7): return 3362;
- case WhiteBanner::WhiteBanner(0): return 7361;
- case WhiteBanner::WhiteBanner(1): return 7362;
- case WhiteBanner::WhiteBanner(2): return 7363;
- case WhiteBanner::WhiteBanner(3): return 7364;
- case WhiteBanner::WhiteBanner(4): return 7365;
- case WhiteBanner::WhiteBanner(5): return 7366;
- case WhiteBanner::WhiteBanner(6): return 7367;
- case WhiteBanner::WhiteBanner(7): return 7368;
- case WhiteBanner::WhiteBanner(8): return 7369;
- case WhiteBanner::WhiteBanner(9): return 7370;
- case WhiteBanner::WhiteBanner(10): return 7371;
- case WhiteBanner::WhiteBanner(11): return 7372;
- case WhiteBanner::WhiteBanner(12): return 7373;
- case WhiteBanner::WhiteBanner(13): return 7374;
- case WhiteBanner::WhiteBanner(14): return 7375;
- case WhiteBanner::WhiteBanner(15): return 7376;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Head): return 1048;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Foot): return 1049;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Head): return 1050;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Foot): return 1051;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Head): return 1052;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Foot): return 1053;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Head): return 1054;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Foot): return 1055;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Head): return 1056;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Foot): return 1057;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Head): return 1058;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Foot): return 1059;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Head): return 1060;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Foot): return 1061;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Head): return 1062;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Foot): return 1063;
- case WhiteCarpet::WhiteCarpet(): return 7330;
- case WhiteConcrete::WhiteConcrete(): return 8902;
- case WhiteConcretePowder::WhiteConcretePowder(): return 8918;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8838;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8839;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8840;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8841;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8742;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8743;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8744;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8745;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8746;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8747;
- case WhiteStainedGlass::WhiteStainedGlass(): return 4081;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, true): return 6329;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, false): return 6330;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, true): return 6333;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, false): return 6334;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, true): return 6337;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, false): return 6338;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, true): return 6341;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, false): return 6342;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, true): return 6345;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, false): return 6346;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, true): return 6349;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, false): return 6350;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, true): return 6353;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, false): return 6354;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, true): return 6357;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, false): return 6358;
- case WhiteTerracotta::WhiteTerracotta(): return 6311;
- case WhiteTulip::WhiteTulip(): return 1418;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7617;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7618;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XM): return 7619;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XP): return 7620;
- case WhiteWool::WhiteWool(): return 1383;
- case WitherRose::WitherRose(): return 1422;
- case WitherSkeletonSkull::WitherSkeletonSkull(0): return 5974;
- case WitherSkeletonSkull::WitherSkeletonSkull(1): return 5975;
- case WitherSkeletonSkull::WitherSkeletonSkull(2): return 5976;
- case WitherSkeletonSkull::WitherSkeletonSkull(3): return 5977;
- case WitherSkeletonSkull::WitherSkeletonSkull(4): return 5978;
- case WitherSkeletonSkull::WitherSkeletonSkull(5): return 5979;
- case WitherSkeletonSkull::WitherSkeletonSkull(6): return 5980;
- case WitherSkeletonSkull::WitherSkeletonSkull(7): return 5981;
- case WitherSkeletonSkull::WitherSkeletonSkull(8): return 5982;
- case WitherSkeletonSkull::WitherSkeletonSkull(9): return 5983;
- case WitherSkeletonSkull::WitherSkeletonSkull(10): return 5984;
- case WitherSkeletonSkull::WitherSkeletonSkull(11): return 5985;
- case WitherSkeletonSkull::WitherSkeletonSkull(12): return 5986;
- case WitherSkeletonSkull::WitherSkeletonSkull(13): return 5987;
- case WitherSkeletonSkull::WitherSkeletonSkull(14): return 5988;
- case WitherSkeletonSkull::WitherSkeletonSkull(15): return 5989;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 5990;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 5991;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 5992;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 5993;
- case YellowBanner::YellowBanner(0): return 7425;
- case YellowBanner::YellowBanner(1): return 7426;
- case YellowBanner::YellowBanner(2): return 7427;
- case YellowBanner::YellowBanner(3): return 7428;
- case YellowBanner::YellowBanner(4): return 7429;
- case YellowBanner::YellowBanner(5): return 7430;
- case YellowBanner::YellowBanner(6): return 7431;
- case YellowBanner::YellowBanner(7): return 7432;
- case YellowBanner::YellowBanner(8): return 7433;
- case YellowBanner::YellowBanner(9): return 7434;
- case YellowBanner::YellowBanner(10): return 7435;
- case YellowBanner::YellowBanner(11): return 7436;
- case YellowBanner::YellowBanner(12): return 7437;
- case YellowBanner::YellowBanner(13): return 7438;
- case YellowBanner::YellowBanner(14): return 7439;
- case YellowBanner::YellowBanner(15): return 7440;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Head): return 1112;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Foot): return 1113;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Head): return 1114;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Foot): return 1115;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Head): return 1116;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Foot): return 1117;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Head): return 1118;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Foot): return 1119;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Head): return 1120;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Foot): return 1121;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Head): return 1122;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Foot): return 1123;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Head): return 1124;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Foot): return 1125;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Head): return 1126;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Foot): return 1127;
- case YellowCarpet::YellowCarpet(): return 7334;
- case YellowConcrete::YellowConcrete(): return 8906;
- case YellowConcretePowder::YellowConcretePowder(): return 8922;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8854;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8855;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8856;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8857;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8766;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8767;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8768;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8769;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8770;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8771;
- case YellowStainedGlass::YellowStainedGlass(): return 4085;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, true): return 6457;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, false): return 6458;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, true): return 6461;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, false): return 6462;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, true): return 6465;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, false): return 6466;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, true): return 6469;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, false): return 6470;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, true): return 6473;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, false): return 6474;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, true): return 6477;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, false): return 6478;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, true): return 6481;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, false): return 6482;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, true): return 6485;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, false): return 6486;
- case YellowTerracotta::YellowTerracotta(): return 6315;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7633;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7634;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XM): return 7635;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XP): return 7636;
- case YellowWool::YellowWool(): return 1387;
- case ZombieHead::ZombieHead(0): return 5994;
- case ZombieHead::ZombieHead(1): return 5995;
- case ZombieHead::ZombieHead(2): return 5996;
- case ZombieHead::ZombieHead(3): return 5997;
- case ZombieHead::ZombieHead(4): return 5998;
- case ZombieHead::ZombieHead(5): return 5999;
- case ZombieHead::ZombieHead(6): return 6000;
- case ZombieHead::ZombieHead(7): return 6001;
- case ZombieHead::ZombieHead(8): return 6002;
- case ZombieHead::ZombieHead(9): return 6003;
- case ZombieHead::ZombieHead(10): return 6004;
- case ZombieHead::ZombieHead(11): return 6005;
- case ZombieHead::ZombieHead(12): return 6006;
- case ZombieHead::ZombieHead(13): return 6007;
- case ZombieHead::ZombieHead(14): return 6008;
- case ZombieHead::ZombieHead(15): return 6009;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZM): return 6010;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZP): return 6011;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XM): return 6012;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XP): return 6013;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5906;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5907;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5908;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5909;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5910;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5911;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5912;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5913;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5914;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5915;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5916;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5917;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5918;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5919;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5920;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5921;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5922;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5923;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5924;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5925;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5926;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5927;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5928;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5929;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 8394;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 8395;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 8396;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 8397;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 8398;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 8399;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 8400;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 8401;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 8402;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 8403;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 8404;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 8405;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 8406;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 8407;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 8408;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 8409;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 8410;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 8411;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 8412;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 8413;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 8414;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 8415;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 8416;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 8417;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 8418;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 8419;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 8420;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 8421;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 8422;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 8423;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 8424;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 8425;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 8426;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 8427;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 8428;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 8429;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 8430;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 8431;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 8432;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 8433;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 8434;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 8435;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 8436;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 8437;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 8438;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 8439;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 8440;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 8441;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 8442;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 8443;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 8444;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 8445;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 8446;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 8447;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 8448;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 8449;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 8450;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 8451;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 8452;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 8453;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 8454;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 8455;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 8456;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 8457;
+ case AcaciaFence::AcaciaFence(true, true, true, true).ID: return 8140;
+ case AcaciaFence::AcaciaFence(true, true, true, false).ID: return 8141;
+ case AcaciaFence::AcaciaFence(true, true, false, true).ID: return 8144;
+ case AcaciaFence::AcaciaFence(true, true, false, false).ID: return 8145;
+ case AcaciaFence::AcaciaFence(true, false, true, true).ID: return 8148;
+ case AcaciaFence::AcaciaFence(true, false, true, false).ID: return 8149;
+ case AcaciaFence::AcaciaFence(true, false, false, true).ID: return 8152;
+ case AcaciaFence::AcaciaFence(true, false, false, false).ID: return 8153;
+ case AcaciaFence::AcaciaFence(false, true, true, true).ID: return 8156;
+ case AcaciaFence::AcaciaFence(false, true, true, false).ID: return 8157;
+ case AcaciaFence::AcaciaFence(false, true, false, true).ID: return 8160;
+ case AcaciaFence::AcaciaFence(false, true, false, false).ID: return 8161;
+ case AcaciaFence::AcaciaFence(false, false, true, true).ID: return 8164;
+ case AcaciaFence::AcaciaFence(false, false, true, false).ID: return 8165;
+ case AcaciaFence::AcaciaFence(false, false, false, true).ID: return 8168;
+ case AcaciaFence::AcaciaFence(false, false, false, false).ID: return 8169;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7978;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7979;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7980;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7981;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7982;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7983;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7984;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7985;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7986;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7987;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7988;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7989;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7990;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7991;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7992;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7993;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7994;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7995;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7996;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7997;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7998;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7999;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 8000;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 8001;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 8002;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 8003;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 8004;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 8005;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 8006;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 8007;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 8008;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 8009;
+ case AcaciaLeaves::AcaciaLeaves(1, true).ID: return 200;
+ case AcaciaLeaves::AcaciaLeaves(1, false).ID: return 201;
+ case AcaciaLeaves::AcaciaLeaves(2, true).ID: return 202;
+ case AcaciaLeaves::AcaciaLeaves(2, false).ID: return 203;
+ case AcaciaLeaves::AcaciaLeaves(3, true).ID: return 204;
+ case AcaciaLeaves::AcaciaLeaves(3, false).ID: return 205;
+ case AcaciaLeaves::AcaciaLeaves(4, true).ID: return 206;
+ case AcaciaLeaves::AcaciaLeaves(4, false).ID: return 207;
+ case AcaciaLeaves::AcaciaLeaves(5, true).ID: return 208;
+ case AcaciaLeaves::AcaciaLeaves(5, false).ID: return 209;
+ case AcaciaLeaves::AcaciaLeaves(6, true).ID: return 210;
+ case AcaciaLeaves::AcaciaLeaves(6, false).ID: return 211;
+ case AcaciaLeaves::AcaciaLeaves(7, true).ID: return 212;
+ case AcaciaLeaves::AcaciaLeaves(7, false).ID: return 213;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::X).ID: return 84;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Y).ID: return 85;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Z).ID: return 86;
+ case AcaciaPlanks::AcaciaPlanks().ID: return 19;
+ case AcaciaPressurePlate::AcaciaPressurePlate(true).ID: return 3879;
+ case AcaciaPressurePlate::AcaciaPressurePlate(false).ID: return 3880;
+ case AcaciaSapling::AcaciaSapling(0).ID: return 29;
+ case AcaciaSapling::AcaciaSapling(1).ID: return 30;
+ case AcaciaSign::AcaciaSign(0).ID: return 3476;
+ case AcaciaSign::AcaciaSign(1).ID: return 3478;
+ case AcaciaSign::AcaciaSign(2).ID: return 3480;
+ case AcaciaSign::AcaciaSign(3).ID: return 3482;
+ case AcaciaSign::AcaciaSign(4).ID: return 3484;
+ case AcaciaSign::AcaciaSign(5).ID: return 3486;
+ case AcaciaSign::AcaciaSign(6).ID: return 3488;
+ case AcaciaSign::AcaciaSign(7).ID: return 3490;
+ case AcaciaSign::AcaciaSign(8).ID: return 3492;
+ case AcaciaSign::AcaciaSign(9).ID: return 3494;
+ case AcaciaSign::AcaciaSign(10).ID: return 3496;
+ case AcaciaSign::AcaciaSign(11).ID: return 3498;
+ case AcaciaSign::AcaciaSign(12).ID: return 3500;
+ case AcaciaSign::AcaciaSign(13).ID: return 3502;
+ case AcaciaSign::AcaciaSign(14).ID: return 3504;
+ case AcaciaSign::AcaciaSign(15).ID: return 3506;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Top).ID: return 7789;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Bottom).ID: return 7791;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Double).ID: return 7793;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6840;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6842;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6844;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6846;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6848;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6850;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6852;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6854;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6856;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6858;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6860;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6862;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6864;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6866;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6868;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6870;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6872;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6874;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6876;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6878;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6880;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6882;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6884;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6886;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6888;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6890;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6892;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6894;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6896;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6898;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6900;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6902;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6904;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6906;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6908;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6910;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6912;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6914;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6916;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6918;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, true).ID: return 4354;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, false).ID: return 4356;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, true).ID: return 4358;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, false).ID: return 4360;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 4362;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 4364;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 4366;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 4368;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, true).ID: return 4370;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, false).ID: return 4372;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, true).ID: return 4374;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, false).ID: return 4376;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 4378;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 4380;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 4382;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 4384;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, true).ID: return 4386;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, false).ID: return 4388;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, true).ID: return 4390;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, false).ID: return 4392;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 4394;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 4396;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 4398;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 4400;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, true).ID: return 4402;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, false).ID: return 4404;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, true).ID: return 4406;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, false).ID: return 4408;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 4410;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 4412;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 4414;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 4416;
+ case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3758;
+ case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3760;
+ case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3762;
+ case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3764;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::X).ID: return 120;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Y).ID: return 121;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Z).ID: return 122;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::NorthSouth).ID: return 6287;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::EastWest).ID: return 6288;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingEast).ID: return 6289;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingWest).ID: return 6290;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingNorth).ID: return 6291;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingSouth).ID: return 6292;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::NorthSouth).ID: return 6293;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::EastWest).ID: return 6294;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingEast).ID: return 6295;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingWest).ID: return 6296;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingNorth).ID: return 6297;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingSouth).ID: return 6298;
+ case Air::Air().ID: return -0;
+ case Allium::Allium().ID: return 1414;
+ case Andesite::Andesite().ID: return 6;
+ case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Top).ID: return 10308;
+ case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Bottom).ID: return 10310;
+ case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Double).ID: return 10312;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight).ID: return 9934;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft).ID: return 9936;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight).ID: return 9938;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft).ID: return 9940;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight).ID: return 9942;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight).ID: return 9944;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft).ID: return 9946;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight).ID: return 9948;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft).ID: return 9950;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight).ID: return 9952;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight).ID: return 9954;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft).ID: return 9956;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight).ID: return 9958;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft).ID: return 9960;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight).ID: return 9962;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight).ID: return 9964;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft).ID: return 9966;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight).ID: return 9968;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft).ID: return 9970;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight).ID: return 9972;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight).ID: return 9974;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft).ID: return 9976;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight).ID: return 9978;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft).ID: return 9980;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight).ID: return 9982;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight).ID: return 9984;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft).ID: return 9986;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight).ID: return 9988;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft).ID: return 9990;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight).ID: return 9992;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight).ID: return 9994;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft).ID: return 9996;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight).ID: return 9998;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft).ID: return 10000;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight).ID: return 10002;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight).ID: return 10004;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft).ID: return 10006;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight).ID: return 10008;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft).ID: return 10010;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight).ID: return 10012;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 10781;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 10782;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 10785;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 10786;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 10789;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 10790;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 10793;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 10794;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 10797;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 10798;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 10801;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 10802;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 10805;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 10806;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 10809;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 10810;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 10813;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 10814;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 10817;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 10818;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 10821;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 10822;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 10825;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 10826;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 10829;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 10830;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 10833;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 10834;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 10837;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 10838;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 10841;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 10842;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZM).ID: return 6074;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZP).ID: return 6075;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_XM).ID: return 6076;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_XP).ID: return 6077;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZM).ID: return 4752;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZP).ID: return 4753;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XM).ID: return 4754;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XP).ID: return 4755;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZM).ID: return 4748;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZP).ID: return 4749;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XM).ID: return 4750;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XP).ID: return 4751;
+ case AzureBluet::AzureBluet().ID: return 1415;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::None, 0).ID: return 9116;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::None, 1).ID: return 9117;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 0).ID: return 9118;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 1).ID: return 9119;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 0).ID: return 9120;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 1).ID: return 9121;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::None, 0).ID: return 9122;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::None, 1).ID: return 9123;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 0).ID: return 9124;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 1).ID: return 9125;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 0).ID: return 9126;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 1).ID: return 9127;
+ case BambooSapling::BambooSapling().ID: return 9115;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, true).ID: return 11135;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, false).ID: return 11136;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, true).ID: return 11137;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, false).ID: return 11138;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, true).ID: return 11139;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, false).ID: return 11140;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, true).ID: return 11141;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, false).ID: return 11142;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, true).ID: return 11143;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, false).ID: return 11144;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, true).ID: return 11145;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, false).ID: return 11146;
+ case Barrier::Barrier().ID: return 7000;
+ case Beacon::Beacon().ID: return 5640;
+ case Bedrock::Bedrock().ID: return 33;
+ case Beetroots::Beetroots(0).ID: return 8683;
+ case Beetroots::Beetroots(1).ID: return 8684;
+ case Beetroots::Beetroots(2).ID: return 8685;
+ case Beetroots::Beetroots(3).ID: return 8686;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 11198;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 11199;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 11200;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 11201;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 11202;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 11203;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 11204;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 11205;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 11206;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 11207;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XM, false).ID: return 11208;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XP, false).ID: return 11209;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 11210;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 11211;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XM, false).ID: return 11212;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XP, false).ID: return 11213;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5858;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5859;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5860;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5861;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5862;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5863;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5864;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5865;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5866;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5867;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5868;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5869;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5870;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5871;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5872;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5873;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5874;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5875;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5876;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5877;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5878;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5879;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5880;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5881;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 8266;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 8267;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 8268;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 8269;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 8270;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 8271;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 8272;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 8273;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 8274;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 8275;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 8276;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 8277;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 8278;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 8279;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 8280;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 8281;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 8282;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 8283;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 8284;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 8285;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 8286;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 8287;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 8288;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 8289;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 8290;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 8291;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 8292;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 8293;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 8294;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 8295;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 8296;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 8297;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 8298;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 8299;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 8300;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 8301;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 8302;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 8303;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 8304;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 8305;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 8306;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 8307;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 8308;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 8309;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 8310;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 8311;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 8312;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 8313;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 8314;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 8315;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 8316;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 8317;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 8318;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 8319;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 8320;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 8321;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 8322;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 8323;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 8324;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 8325;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 8326;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 8327;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 8328;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 8329;
+ case BirchFence::BirchFence(true, true, true, true).ID: return 8076;
+ case BirchFence::BirchFence(true, true, true, false).ID: return 8077;
+ case BirchFence::BirchFence(true, true, false, true).ID: return 8080;
+ case BirchFence::BirchFence(true, true, false, false).ID: return 8081;
+ case BirchFence::BirchFence(true, false, true, true).ID: return 8084;
+ case BirchFence::BirchFence(true, false, true, false).ID: return 8085;
+ case BirchFence::BirchFence(true, false, false, true).ID: return 8088;
+ case BirchFence::BirchFence(true, false, false, false).ID: return 8089;
+ case BirchFence::BirchFence(false, true, true, true).ID: return 8092;
+ case BirchFence::BirchFence(false, true, true, false).ID: return 8093;
+ case BirchFence::BirchFence(false, true, false, true).ID: return 8096;
+ case BirchFence::BirchFence(false, true, false, false).ID: return 8097;
+ case BirchFence::BirchFence(false, false, true, true).ID: return 8100;
+ case BirchFence::BirchFence(false, false, true, false).ID: return 8101;
+ case BirchFence::BirchFence(false, false, false, true).ID: return 8104;
+ case BirchFence::BirchFence(false, false, false, false).ID: return 8105;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7914;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7915;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7916;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7917;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7918;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7919;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7920;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7921;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7922;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7923;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7924;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7925;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7926;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7927;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7928;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7929;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7930;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7931;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7932;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7933;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7934;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7935;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7936;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7937;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7938;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7939;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7940;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7941;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7942;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7943;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7944;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7945;
+ case BirchLeaves::BirchLeaves(1, true).ID: return 172;
+ case BirchLeaves::BirchLeaves(1, false).ID: return 173;
+ case BirchLeaves::BirchLeaves(2, true).ID: return 174;
+ case BirchLeaves::BirchLeaves(2, false).ID: return 175;
+ case BirchLeaves::BirchLeaves(3, true).ID: return 176;
+ case BirchLeaves::BirchLeaves(3, false).ID: return 177;
+ case BirchLeaves::BirchLeaves(4, true).ID: return 178;
+ case BirchLeaves::BirchLeaves(4, false).ID: return 179;
+ case BirchLeaves::BirchLeaves(5, true).ID: return 180;
+ case BirchLeaves::BirchLeaves(5, false).ID: return 181;
+ case BirchLeaves::BirchLeaves(6, true).ID: return 182;
+ case BirchLeaves::BirchLeaves(6, false).ID: return 183;
+ case BirchLeaves::BirchLeaves(7, true).ID: return 184;
+ case BirchLeaves::BirchLeaves(7, false).ID: return 185;
+ case BirchLog::BirchLog(BirchLog::Axis::X).ID: return 78;
+ case BirchLog::BirchLog(BirchLog::Axis::Y).ID: return 79;
+ case BirchLog::BirchLog(BirchLog::Axis::Z).ID: return 80;
+ case BirchPlanks::BirchPlanks().ID: return 17;
+ case BirchPressurePlate::BirchPressurePlate(true).ID: return 3875;
+ case BirchPressurePlate::BirchPressurePlate(false).ID: return 3876;
+ case BirchSapling::BirchSapling(0).ID: return 25;
+ case BirchSapling::BirchSapling(1).ID: return 26;
+ case BirchSign::BirchSign(0).ID: return 3444;
+ case BirchSign::BirchSign(1).ID: return 3446;
+ case BirchSign::BirchSign(2).ID: return 3448;
+ case BirchSign::BirchSign(3).ID: return 3450;
+ case BirchSign::BirchSign(4).ID: return 3452;
+ case BirchSign::BirchSign(5).ID: return 3454;
+ case BirchSign::BirchSign(6).ID: return 3456;
+ case BirchSign::BirchSign(7).ID: return 3458;
+ case BirchSign::BirchSign(8).ID: return 3460;
+ case BirchSign::BirchSign(9).ID: return 3462;
+ case BirchSign::BirchSign(10).ID: return 3464;
+ case BirchSign::BirchSign(11).ID: return 3466;
+ case BirchSign::BirchSign(12).ID: return 3468;
+ case BirchSign::BirchSign(13).ID: return 3470;
+ case BirchSign::BirchSign(14).ID: return 3472;
+ case BirchSign::BirchSign(15).ID: return 3474;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Top).ID: return 7777;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Bottom).ID: return 7779;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Double).ID: return 7781;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5469;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5471;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5473;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5475;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5477;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5479;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5481;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5483;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5485;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5487;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5489;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5491;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5493;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5495;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5497;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5499;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5501;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5503;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5505;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5507;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5509;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5511;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5513;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5515;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5517;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5519;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5521;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5523;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5525;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5527;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5529;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5531;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5533;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5535;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5537;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5539;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5541;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5543;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5545;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5547;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, true).ID: return 4226;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, false).ID: return 4228;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, true).ID: return 4230;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, false).ID: return 4232;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, true).ID: return 4234;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, false).ID: return 4236;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, true).ID: return 4238;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, false).ID: return 4240;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, true).ID: return 4242;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, false).ID: return 4244;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, true).ID: return 4246;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, false).ID: return 4248;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, true).ID: return 4250;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, false).ID: return 4252;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, true).ID: return 4254;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, false).ID: return 4256;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, true).ID: return 4258;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, false).ID: return 4260;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, true).ID: return 4262;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, false).ID: return 4264;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, true).ID: return 4266;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, false).ID: return 4268;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, true).ID: return 4270;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, false).ID: return 4272;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, true).ID: return 4274;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, false).ID: return 4276;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, true).ID: return 4278;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, false).ID: return 4280;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, true).ID: return 4282;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, false).ID: return 4284;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, true).ID: return 4286;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, false).ID: return 4288;
+ case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3750;
+ case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3752;
+ case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3754;
+ case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3756;
+ case BirchWood::BirchWood(BirchWood::Axis::X).ID: return 114;
+ case BirchWood::BirchWood(BirchWood::Axis::Y).ID: return 115;
+ case BirchWood::BirchWood(BirchWood::Axis::Z).ID: return 116;
+ case BlackBanner::BlackBanner(0).ID: return 7601;
+ case BlackBanner::BlackBanner(1).ID: return 7602;
+ case BlackBanner::BlackBanner(2).ID: return 7603;
+ case BlackBanner::BlackBanner(3).ID: return 7604;
+ case BlackBanner::BlackBanner(4).ID: return 7605;
+ case BlackBanner::BlackBanner(5).ID: return 7606;
+ case BlackBanner::BlackBanner(6).ID: return 7607;
+ case BlackBanner::BlackBanner(7).ID: return 7608;
+ case BlackBanner::BlackBanner(8).ID: return 7609;
+ case BlackBanner::BlackBanner(9).ID: return 7610;
+ case BlackBanner::BlackBanner(10).ID: return 7611;
+ case BlackBanner::BlackBanner(11).ID: return 7612;
+ case BlackBanner::BlackBanner(12).ID: return 7613;
+ case BlackBanner::BlackBanner(13).ID: return 7614;
+ case BlackBanner::BlackBanner(14).ID: return 7615;
+ case BlackBanner::BlackBanner(15).ID: return 7616;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Head).ID: return 1288;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Foot).ID: return 1289;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Head).ID: return 1290;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Foot).ID: return 1291;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Head).ID: return 1292;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Foot).ID: return 1293;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Head).ID: return 1294;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Foot).ID: return 1295;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Head).ID: return 1296;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Foot).ID: return 1297;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Head).ID: return 1298;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Foot).ID: return 1299;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Head).ID: return 1300;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Foot).ID: return 1301;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Head).ID: return 1302;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Foot).ID: return 1303;
+ case BlackCarpet::BlackCarpet().ID: return 7345;
+ case BlackConcrete::BlackConcrete().ID: return 8917;
+ case BlackConcretePowder::BlackConcretePowder().ID: return 8933;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8898;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8899;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8900;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8901;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8832;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8833;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8834;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8835;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8836;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8837;
+ case BlackStainedGlass::BlackStainedGlass().ID: return 4096;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, true).ID: return 6809;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, false).ID: return 6810;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, true).ID: return 6813;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, false).ID: return 6814;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, true).ID: return 6817;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, false).ID: return 6818;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, true).ID: return 6821;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, false).ID: return 6822;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, true).ID: return 6825;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, false).ID: return 6826;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, true).ID: return 6829;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, false).ID: return 6830;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, true).ID: return 6833;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, false).ID: return 6834;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, true).ID: return 6837;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, false).ID: return 6838;
+ case BlackTerracotta::BlackTerracotta().ID: return 6326;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7677;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7678;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7679;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7680;
+ case BlackWool::BlackWool().ID: return 1398;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, true).ID: return 11155;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, false).ID: return 11156;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, true).ID: return 11157;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, false).ID: return 11158;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, true).ID: return 11159;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, false).ID: return 11160;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, true).ID: return 11161;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, false).ID: return 11162;
+ case BlueBanner::BlueBanner(0).ID: return 7537;
+ case BlueBanner::BlueBanner(1).ID: return 7538;
+ case BlueBanner::BlueBanner(2).ID: return 7539;
+ case BlueBanner::BlueBanner(3).ID: return 7540;
+ case BlueBanner::BlueBanner(4).ID: return 7541;
+ case BlueBanner::BlueBanner(5).ID: return 7542;
+ case BlueBanner::BlueBanner(6).ID: return 7543;
+ case BlueBanner::BlueBanner(7).ID: return 7544;
+ case BlueBanner::BlueBanner(8).ID: return 7545;
+ case BlueBanner::BlueBanner(9).ID: return 7546;
+ case BlueBanner::BlueBanner(10).ID: return 7547;
+ case BlueBanner::BlueBanner(11).ID: return 7548;
+ case BlueBanner::BlueBanner(12).ID: return 7549;
+ case BlueBanner::BlueBanner(13).ID: return 7550;
+ case BlueBanner::BlueBanner(14).ID: return 7551;
+ case BlueBanner::BlueBanner(15).ID: return 7552;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Head).ID: return 1224;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Foot).ID: return 1225;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Head).ID: return 1226;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Foot).ID: return 1227;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Head).ID: return 1228;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Foot).ID: return 1229;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Head).ID: return 1230;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Foot).ID: return 1231;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Head).ID: return 1232;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Foot).ID: return 1233;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Head).ID: return 1234;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Foot).ID: return 1235;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Head).ID: return 1236;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Foot).ID: return 1237;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Head).ID: return 1238;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Foot).ID: return 1239;
+ case BlueCarpet::BlueCarpet().ID: return 7341;
+ case BlueConcrete::BlueConcrete().ID: return 8913;
+ case BlueConcretePowder::BlueConcretePowder().ID: return 8929;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8882;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8883;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8884;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8885;
+ case BlueIce::BlueIce().ID: return 9112;
+ case BlueOrchid::BlueOrchid().ID: return 1413;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8808;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8809;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8810;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8811;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8812;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8813;
+ case BlueStainedGlass::BlueStainedGlass().ID: return 4092;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, true).ID: return 6681;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, false).ID: return 6682;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, true).ID: return 6685;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, false).ID: return 6686;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, true).ID: return 6689;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, false).ID: return 6690;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, true).ID: return 6693;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, false).ID: return 6694;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, true).ID: return 6697;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, false).ID: return 6698;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, true).ID: return 6701;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, false).ID: return 6702;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, true).ID: return 6705;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, false).ID: return 6706;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, true).ID: return 6709;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, false).ID: return 6710;
+ case BlueTerracotta::BlueTerracotta().ID: return 6322;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7661;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7662;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7663;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7664;
+ case BlueWool::BlueWool().ID: return 1394;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::X).ID: return 8720;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::Y).ID: return 8721;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::Z).ID: return 8722;
+ case Bookshelf::Bookshelf().ID: return 1431;
+ case BrainCoral::BrainCoral().ID: return 8997;
+ case BrainCoralBlock::BrainCoralBlock().ID: return 8980;
+ case BrainCoralFan::BrainCoralFan().ID: return 9017;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9073;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9075;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9077;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9079;
+ case BrewingStand::BrewingStand(true, true, true).ID: return 5117;
+ case BrewingStand::BrewingStand(true, true, false).ID: return 5118;
+ case BrewingStand::BrewingStand(true, false, true).ID: return 5119;
+ case BrewingStand::BrewingStand(true, false, false).ID: return 5120;
+ case BrewingStand::BrewingStand(false, true, true).ID: return 5121;
+ case BrewingStand::BrewingStand(false, true, false).ID: return 5122;
+ case BrewingStand::BrewingStand(false, false, true).ID: return 5123;
+ case BrewingStand::BrewingStand(false, false, false).ID: return 5124;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Top).ID: return 7837;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Bottom).ID: return 7839;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Double).ID: return 7841;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4837;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4839;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4841;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4843;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4845;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4847;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4849;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4851;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4853;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4855;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4857;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4859;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4861;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4863;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4865;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4867;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4869;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4871;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4873;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4875;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4877;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4879;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4881;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4883;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4885;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4887;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4889;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4891;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4893;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4895;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4897;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4899;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4901;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4903;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4905;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4907;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4909;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4911;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4913;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4915;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 10333;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None).ID: return 10334;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 10337;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None).ID: return 10338;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low).ID: return 10341;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None).ID: return 10342;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low).ID: return 10345;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None).ID: return 10346;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 10349;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None).ID: return 10350;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 10353;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None).ID: return 10354;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low).ID: return 10357;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None).ID: return 10358;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low).ID: return 10361;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None).ID: return 10362;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 10365;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None).ID: return 10366;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 10369;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None).ID: return 10370;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low).ID: return 10373;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None).ID: return 10374;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low).ID: return 10377;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None).ID: return 10378;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 10381;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None).ID: return 10382;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 10385;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None).ID: return 10386;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low).ID: return 10389;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None).ID: return 10390;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low).ID: return 10393;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None).ID: return 10394;
+ case Bricks::Bricks().ID: return 1428;
+ case BrownBanner::BrownBanner(0).ID: return 7553;
+ case BrownBanner::BrownBanner(1).ID: return 7554;
+ case BrownBanner::BrownBanner(2).ID: return 7555;
+ case BrownBanner::BrownBanner(3).ID: return 7556;
+ case BrownBanner::BrownBanner(4).ID: return 7557;
+ case BrownBanner::BrownBanner(5).ID: return 7558;
+ case BrownBanner::BrownBanner(6).ID: return 7559;
+ case BrownBanner::BrownBanner(7).ID: return 7560;
+ case BrownBanner::BrownBanner(8).ID: return 7561;
+ case BrownBanner::BrownBanner(9).ID: return 7562;
+ case BrownBanner::BrownBanner(10).ID: return 7563;
+ case BrownBanner::BrownBanner(11).ID: return 7564;
+ case BrownBanner::BrownBanner(12).ID: return 7565;
+ case BrownBanner::BrownBanner(13).ID: return 7566;
+ case BrownBanner::BrownBanner(14).ID: return 7567;
+ case BrownBanner::BrownBanner(15).ID: return 7568;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Head).ID: return 1240;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Foot).ID: return 1241;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Head).ID: return 1242;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Foot).ID: return 1243;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Head).ID: return 1244;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Foot).ID: return 1245;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Head).ID: return 1246;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Foot).ID: return 1247;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Head).ID: return 1248;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Foot).ID: return 1249;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Head).ID: return 1250;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Foot).ID: return 1251;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Head).ID: return 1252;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Foot).ID: return 1253;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Head).ID: return 1254;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Foot).ID: return 1255;
+ case BrownCarpet::BrownCarpet().ID: return 7342;
+ case BrownConcrete::BrownConcrete().ID: return 8914;
+ case BrownConcretePowder::BrownConcretePowder().ID: return 8930;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8886;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8887;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8888;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8889;
+ case BrownMushroom::BrownMushroom().ID: return 1424;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, true).ID: return 4491;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, false).ID: return 4492;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, true).ID: return 4493;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, false).ID: return 4494;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, true).ID: return 4495;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, false).ID: return 4496;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, true).ID: return 4497;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, false).ID: return 4498;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, true).ID: return 4499;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, false).ID: return 4500;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, true).ID: return 4501;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, false).ID: return 4502;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, true).ID: return 4503;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, false).ID: return 4504;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, true).ID: return 4505;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, false).ID: return 4506;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, true).ID: return 4507;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, false).ID: return 4508;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, true).ID: return 4509;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, false).ID: return 4510;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, true).ID: return 4511;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, false).ID: return 4512;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, true).ID: return 4513;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, false).ID: return 4514;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, true).ID: return 4515;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, false).ID: return 4516;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, true).ID: return 4517;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, false).ID: return 4518;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, true).ID: return 4519;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, false).ID: return 4520;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, true).ID: return 4521;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, false).ID: return 4522;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, true).ID: return 4523;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, false).ID: return 4524;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, true).ID: return 4525;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, false).ID: return 4526;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, true).ID: return 4527;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, false).ID: return 4528;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, true).ID: return 4529;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, false).ID: return 4530;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, true).ID: return 4531;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, false).ID: return 4532;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, true).ID: return 4533;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, false).ID: return 4534;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, true).ID: return 4535;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, false).ID: return 4536;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, true).ID: return 4537;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, false).ID: return 4538;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, true).ID: return 4539;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, false).ID: return 4540;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, true).ID: return 4541;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, false).ID: return 4542;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, true).ID: return 4543;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, false).ID: return 4544;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, true).ID: return 4545;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, false).ID: return 4546;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, true).ID: return 4547;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, false).ID: return 4548;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, true).ID: return 4549;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, false).ID: return 4550;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, true).ID: return 4551;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, false).ID: return 4552;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, true).ID: return 4553;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false).ID: return 4554;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8814;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8815;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8816;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8817;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8818;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8819;
+ case BrownStainedGlass::BrownStainedGlass().ID: return 4093;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, true).ID: return 6713;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, false).ID: return 6714;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, true).ID: return 6717;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, false).ID: return 6718;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, true).ID: return 6721;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, false).ID: return 6722;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, true).ID: return 6725;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, false).ID: return 6726;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, true).ID: return 6729;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, false).ID: return 6730;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, true).ID: return 6733;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, false).ID: return 6734;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, true).ID: return 6737;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, false).ID: return 6738;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, true).ID: return 6741;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, false).ID: return 6742;
+ case BrownTerracotta::BrownTerracotta().ID: return 6323;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7665;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7666;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7667;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7668;
+ case BrownWool::BrownWool().ID: return 1395;
+ case BubbleColumn::BubbleColumn(true).ID: return 9131;
+ case BubbleColumn::BubbleColumn(false).ID: return 9132;
+ case BubbleCoral::BubbleCoral().ID: return 8999;
+ case BubbleCoralBlock::BubbleCoralBlock().ID: return 8981;
+ case BubbleCoralFan::BubbleCoralFan().ID: return 9019;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9081;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9083;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9085;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9087;
+ case Cactus::Cactus(0).ID: return 3929;
+ case Cactus::Cactus(1).ID: return 3930;
+ case Cactus::Cactus(2).ID: return 3931;
+ case Cactus::Cactus(3).ID: return 3932;
+ case Cactus::Cactus(4).ID: return 3933;
+ case Cactus::Cactus(5).ID: return 3934;
+ case Cactus::Cactus(6).ID: return 3935;
+ case Cactus::Cactus(7).ID: return 3936;
+ case Cactus::Cactus(8).ID: return 3937;
+ case Cactus::Cactus(9).ID: return 3938;
+ case Cactus::Cactus(10).ID: return 3939;
+ case Cactus::Cactus(11).ID: return 3940;
+ case Cactus::Cactus(12).ID: return 3941;
+ case Cactus::Cactus(13).ID: return 3942;
+ case Cactus::Cactus(14).ID: return 3943;
+ case Cactus::Cactus(15).ID: return 3944;
+ case Cake::Cake(0).ID: return 4010;
+ case Cake::Cake(1).ID: return 4011;
+ case Cake::Cake(2).ID: return 4012;
+ case Cake::Cake(3).ID: return 4013;
+ case Cake::Cake(4).ID: return 4014;
+ case Cake::Cake(5).ID: return 4015;
+ case Cake::Cake(6).ID: return 4016;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 11217;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 11219;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 11221;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 11223;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 11225;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 11227;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 11229;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 11231;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, true).ID: return 11233;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, false).ID: return 11235;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, true).ID: return 11237;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, false).ID: return 11239;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, true).ID: return 11241;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, false).ID: return 11243;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, true).ID: return 11245;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, false).ID: return 11247;
+ case Carrots::Carrots(0).ID: return 5794;
+ case Carrots::Carrots(1).ID: return 5795;
+ case Carrots::Carrots(2).ID: return 5796;
+ case Carrots::Carrots(3).ID: return 5797;
+ case Carrots::Carrots(4).ID: return 5798;
+ case Carrots::Carrots(5).ID: return 5799;
+ case Carrots::Carrots(6).ID: return 5800;
+ case Carrots::Carrots(7).ID: return 5801;
+ case CartographyTable::CartographyTable().ID: return 11163;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZM).ID: return 4002;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZP).ID: return 4003;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XM).ID: return 4004;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XP).ID: return 4005;
+ case Cauldron::Cauldron(0).ID: return 5125;
+ case Cauldron::Cauldron(1).ID: return 5126;
+ case Cauldron::Cauldron(2).ID: return 5127;
+ case Cauldron::Cauldron(3).ID: return 5128;
+ case CaveAir::CaveAir().ID: return 9130;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 8701;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 8702;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 8703;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 8704;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 8705;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 8706;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 8707;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 8708;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 8709;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 8710;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 8711;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 8712;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Single).ID: return 2033;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Left).ID: return 2035;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Right).ID: return 2037;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Single).ID: return 2039;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Left).ID: return 2041;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Right).ID: return 2043;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Single).ID: return 2045;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Left).ID: return 2047;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Right).ID: return 2049;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Single).ID: return 2051;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Left).ID: return 2053;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Right).ID: return 2055;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZM).ID: return 6078;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZP).ID: return 6079;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XM).ID: return 6080;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XP).ID: return 6081;
+ case ChiseledQuartzBlock::ChiseledQuartzBlock().ID: return 6203;
+ case ChiseledRedSandstone::ChiseledRedSandstone().ID: return 7682;
+ case ChiseledSandstone::ChiseledSandstone().ID: return 246;
+ case ChiseledStoneBricks::ChiseledStoneBricks().ID: return 4484;
+ case ChorusFlower::ChorusFlower(0).ID: return 8592;
+ case ChorusFlower::ChorusFlower(1).ID: return 8593;
+ case ChorusFlower::ChorusFlower(2).ID: return 8594;
+ case ChorusFlower::ChorusFlower(3).ID: return 8595;
+ case ChorusFlower::ChorusFlower(4).ID: return 8596;
+ case ChorusFlower::ChorusFlower(5).ID: return 8597;
+ case ChorusPlant::ChorusPlant(true, true, true, true, true, true).ID: return 8528;
+ case ChorusPlant::ChorusPlant(true, true, true, true, true, false).ID: return 8529;
+ case ChorusPlant::ChorusPlant(true, true, true, true, false, true).ID: return 8530;
+ case ChorusPlant::ChorusPlant(true, true, true, true, false, false).ID: return 8531;
+ case ChorusPlant::ChorusPlant(true, true, true, false, true, true).ID: return 8532;
+ case ChorusPlant::ChorusPlant(true, true, true, false, true, false).ID: return 8533;
+ case ChorusPlant::ChorusPlant(true, true, true, false, false, true).ID: return 8534;
+ case ChorusPlant::ChorusPlant(true, true, true, false, false, false).ID: return 8535;
+ case ChorusPlant::ChorusPlant(true, true, false, true, true, true).ID: return 8536;
+ case ChorusPlant::ChorusPlant(true, true, false, true, true, false).ID: return 8537;
+ case ChorusPlant::ChorusPlant(true, true, false, true, false, true).ID: return 8538;
+ case ChorusPlant::ChorusPlant(true, true, false, true, false, false).ID: return 8539;
+ case ChorusPlant::ChorusPlant(true, true, false, false, true, true).ID: return 8540;
+ case ChorusPlant::ChorusPlant(true, true, false, false, true, false).ID: return 8541;
+ case ChorusPlant::ChorusPlant(true, true, false, false, false, true).ID: return 8542;
+ case ChorusPlant::ChorusPlant(true, true, false, false, false, false).ID: return 8543;
+ case ChorusPlant::ChorusPlant(true, false, true, true, true, true).ID: return 8544;
+ case ChorusPlant::ChorusPlant(true, false, true, true, true, false).ID: return 8545;
+ case ChorusPlant::ChorusPlant(true, false, true, true, false, true).ID: return 8546;
+ case ChorusPlant::ChorusPlant(true, false, true, true, false, false).ID: return 8547;
+ case ChorusPlant::ChorusPlant(true, false, true, false, true, true).ID: return 8548;
+ case ChorusPlant::ChorusPlant(true, false, true, false, true, false).ID: return 8549;
+ case ChorusPlant::ChorusPlant(true, false, true, false, false, true).ID: return 8550;
+ case ChorusPlant::ChorusPlant(true, false, true, false, false, false).ID: return 8551;
+ case ChorusPlant::ChorusPlant(true, false, false, true, true, true).ID: return 8552;
+ case ChorusPlant::ChorusPlant(true, false, false, true, true, false).ID: return 8553;
+ case ChorusPlant::ChorusPlant(true, false, false, true, false, true).ID: return 8554;
+ case ChorusPlant::ChorusPlant(true, false, false, true, false, false).ID: return 8555;
+ case ChorusPlant::ChorusPlant(true, false, false, false, true, true).ID: return 8556;
+ case ChorusPlant::ChorusPlant(true, false, false, false, true, false).ID: return 8557;
+ case ChorusPlant::ChorusPlant(true, false, false, false, false, true).ID: return 8558;
+ case ChorusPlant::ChorusPlant(true, false, false, false, false, false).ID: return 8559;
+ case ChorusPlant::ChorusPlant(false, true, true, true, true, true).ID: return 8560;
+ case ChorusPlant::ChorusPlant(false, true, true, true, true, false).ID: return 8561;
+ case ChorusPlant::ChorusPlant(false, true, true, true, false, true).ID: return 8562;
+ case ChorusPlant::ChorusPlant(false, true, true, true, false, false).ID: return 8563;
+ case ChorusPlant::ChorusPlant(false, true, true, false, true, true).ID: return 8564;
+ case ChorusPlant::ChorusPlant(false, true, true, false, true, false).ID: return 8565;
+ case ChorusPlant::ChorusPlant(false, true, true, false, false, true).ID: return 8566;
+ case ChorusPlant::ChorusPlant(false, true, true, false, false, false).ID: return 8567;
+ case ChorusPlant::ChorusPlant(false, true, false, true, true, true).ID: return 8568;
+ case ChorusPlant::ChorusPlant(false, true, false, true, true, false).ID: return 8569;
+ case ChorusPlant::ChorusPlant(false, true, false, true, false, true).ID: return 8570;
+ case ChorusPlant::ChorusPlant(false, true, false, true, false, false).ID: return 8571;
+ case ChorusPlant::ChorusPlant(false, true, false, false, true, true).ID: return 8572;
+ case ChorusPlant::ChorusPlant(false, true, false, false, true, false).ID: return 8573;
+ case ChorusPlant::ChorusPlant(false, true, false, false, false, true).ID: return 8574;
+ case ChorusPlant::ChorusPlant(false, true, false, false, false, false).ID: return 8575;
+ case ChorusPlant::ChorusPlant(false, false, true, true, true, true).ID: return 8576;
+ case ChorusPlant::ChorusPlant(false, false, true, true, true, false).ID: return 8577;
+ case ChorusPlant::ChorusPlant(false, false, true, true, false, true).ID: return 8578;
+ case ChorusPlant::ChorusPlant(false, false, true, true, false, false).ID: return 8579;
+ case ChorusPlant::ChorusPlant(false, false, true, false, true, true).ID: return 8580;
+ case ChorusPlant::ChorusPlant(false, false, true, false, true, false).ID: return 8581;
+ case ChorusPlant::ChorusPlant(false, false, true, false, false, true).ID: return 8582;
+ case ChorusPlant::ChorusPlant(false, false, true, false, false, false).ID: return 8583;
+ case ChorusPlant::ChorusPlant(false, false, false, true, true, true).ID: return 8584;
+ case ChorusPlant::ChorusPlant(false, false, false, true, true, false).ID: return 8585;
+ case ChorusPlant::ChorusPlant(false, false, false, true, false, true).ID: return 8586;
+ case ChorusPlant::ChorusPlant(false, false, false, true, false, false).ID: return 8587;
+ case ChorusPlant::ChorusPlant(false, false, false, false, true, true).ID: return 8588;
+ case ChorusPlant::ChorusPlant(false, false, false, false, true, false).ID: return 8589;
+ case ChorusPlant::ChorusPlant(false, false, false, false, false, true).ID: return 8590;
+ case ChorusPlant::ChorusPlant(false, false, false, false, false, false).ID: return 8591;
+ case Clay::Clay().ID: return 3945;
+ case CoalBlock::CoalBlock().ID: return 7347;
+ case CoalOre::CoalOre().ID: return 71;
+ case CoarseDirt::CoarseDirt().ID: return 11;
+ case Cobblestone::Cobblestone().ID: return 14;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Top).ID: return 7831;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Bottom).ID: return 7833;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double).ID: return 7835;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3654;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3656;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3658;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3660;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3662;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3664;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3666;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3668;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3670;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3672;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3674;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3676;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3678;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3680;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3682;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3684;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3686;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3688;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3690;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3692;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3694;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3696;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3698;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3700;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3702;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3704;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3706;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3708;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3710;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3712;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3714;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3716;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3718;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3720;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3722;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3724;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3726;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3728;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3730;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3732;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5643;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5644;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5647;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5648;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5651;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5652;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5655;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5656;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5659;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5660;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5663;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5664;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5667;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5668;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5671;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5672;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5675;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5676;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5679;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5680;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5683;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5684;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5687;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5688;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5691;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5692;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5695;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5696;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5699;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5700;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5703;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5704;
+ case Cobweb::Cobweb().ID: return 1340;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZM).ID: return 5142;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZP).ID: return 5143;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XM).ID: return 5144;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XP).ID: return 5145;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZM).ID: return 5146;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZP).ID: return 5147;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XM).ID: return 5148;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XP).ID: return 5149;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZM).ID: return 5150;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZP).ID: return 5151;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XM).ID: return 5152;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XP).ID: return 5153;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 5628;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 5629;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 5630;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 5631;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 5632;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 5633;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 5634;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 5635;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 5636;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 5637;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 5638;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 5639;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true).ID: return 6142;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false).ID: return 6143;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true).ID: return 6144;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false).ID: return 6145;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true).ID: return 6146;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false).ID: return 6147;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true).ID: return 6148;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false).ID: return 6149;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true).ID: return 6150;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false).ID: return 6151;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true).ID: return 6152;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false).ID: return 6153;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true).ID: return 6154;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false).ID: return 6155;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true).ID: return 6156;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false).ID: return 6157;
+ case Composter::Composter(0).ID: return 11262;
+ case Composter::Composter(1).ID: return 11263;
+ case Composter::Composter(2).ID: return 11264;
+ case Composter::Composter(3).ID: return 11265;
+ case Composter::Composter(4).ID: return 11266;
+ case Composter::Composter(5).ID: return 11267;
+ case Composter::Composter(6).ID: return 11268;
+ case Composter::Composter(7).ID: return 11269;
+ case Composter::Composter(8).ID: return 11270;
+ case Conduit::Conduit().ID: return 9114;
+ case Cornflower::Cornflower().ID: return 1421;
+ case CrackedStoneBricks::CrackedStoneBricks().ID: return 4483;
+ case CraftingTable::CraftingTable().ID: return 3354;
+ case CreeperHead::CreeperHead(0).ID: return 6034;
+ case CreeperHead::CreeperHead(1).ID: return 6035;
+ case CreeperHead::CreeperHead(2).ID: return 6036;
+ case CreeperHead::CreeperHead(3).ID: return 6037;
+ case CreeperHead::CreeperHead(4).ID: return 6038;
+ case CreeperHead::CreeperHead(5).ID: return 6039;
+ case CreeperHead::CreeperHead(6).ID: return 6040;
+ case CreeperHead::CreeperHead(7).ID: return 6041;
+ case CreeperHead::CreeperHead(8).ID: return 6042;
+ case CreeperHead::CreeperHead(9).ID: return 6043;
+ case CreeperHead::CreeperHead(10).ID: return 6044;
+ case CreeperHead::CreeperHead(11).ID: return 6045;
+ case CreeperHead::CreeperHead(12).ID: return 6046;
+ case CreeperHead::CreeperHead(13).ID: return 6047;
+ case CreeperHead::CreeperHead(14).ID: return 6048;
+ case CreeperHead::CreeperHead(15).ID: return 6049;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 6050;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 6051;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 6052;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 6053;
+ case CutRedSandstone::CutRedSandstone().ID: return 7683;
+ case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Top).ID: return 7867;
+ case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Bottom).ID: return 7869;
+ case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Double).ID: return 7871;
+ case CutSandstone::CutSandstone().ID: return 247;
+ case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Top).ID: return 7819;
+ case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Bottom).ID: return 7821;
+ case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Double).ID: return 7823;
+ case CyanBanner::CyanBanner(0).ID: return 7505;
+ case CyanBanner::CyanBanner(1).ID: return 7506;
+ case CyanBanner::CyanBanner(2).ID: return 7507;
+ case CyanBanner::CyanBanner(3).ID: return 7508;
+ case CyanBanner::CyanBanner(4).ID: return 7509;
+ case CyanBanner::CyanBanner(5).ID: return 7510;
+ case CyanBanner::CyanBanner(6).ID: return 7511;
+ case CyanBanner::CyanBanner(7).ID: return 7512;
+ case CyanBanner::CyanBanner(8).ID: return 7513;
+ case CyanBanner::CyanBanner(9).ID: return 7514;
+ case CyanBanner::CyanBanner(10).ID: return 7515;
+ case CyanBanner::CyanBanner(11).ID: return 7516;
+ case CyanBanner::CyanBanner(12).ID: return 7517;
+ case CyanBanner::CyanBanner(13).ID: return 7518;
+ case CyanBanner::CyanBanner(14).ID: return 7519;
+ case CyanBanner::CyanBanner(15).ID: return 7520;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Head).ID: return 1192;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Foot).ID: return 1193;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Head).ID: return 1194;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Foot).ID: return 1195;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Head).ID: return 1196;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Foot).ID: return 1197;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Head).ID: return 1198;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Foot).ID: return 1199;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Head).ID: return 1200;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Foot).ID: return 1201;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Head).ID: return 1202;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Foot).ID: return 1203;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Head).ID: return 1204;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Foot).ID: return 1205;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Head).ID: return 1206;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Foot).ID: return 1207;
+ case CyanCarpet::CyanCarpet().ID: return 7339;
+ case CyanConcrete::CyanConcrete().ID: return 8911;
+ case CyanConcretePowder::CyanConcretePowder().ID: return 8927;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8874;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8875;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8876;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8877;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8796;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8797;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8798;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8799;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8800;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8801;
+ case CyanStainedGlass::CyanStainedGlass().ID: return 4090;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, true).ID: return 6617;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, false).ID: return 6618;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, true).ID: return 6621;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, false).ID: return 6622;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, true).ID: return 6625;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, false).ID: return 6626;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, true).ID: return 6629;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, false).ID: return 6630;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, true).ID: return 6633;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, false).ID: return 6634;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, true).ID: return 6637;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, false).ID: return 6638;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, true).ID: return 6641;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, false).ID: return 6642;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, true).ID: return 6645;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, false).ID: return 6646;
+ case CyanTerracotta::CyanTerracotta().ID: return 6320;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7653;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7654;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7655;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7656;
+ case CyanWool::CyanWool().ID: return 1392;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZM).ID: return 6082;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZP).ID: return 6083;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XM).ID: return 6084;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XP).ID: return 6085;
+ case Dandelion::Dandelion().ID: return 1411;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5930;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5931;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5932;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5933;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5934;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5935;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5936;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5937;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5938;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5939;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5940;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5941;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5942;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5943;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5944;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5945;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5946;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5947;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5948;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5949;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5950;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5951;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5952;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5953;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 8458;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 8459;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 8460;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 8461;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 8462;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 8463;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 8464;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 8465;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 8466;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 8467;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 8468;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 8469;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 8470;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 8471;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 8472;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 8473;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 8474;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 8475;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 8476;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 8477;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 8478;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 8479;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 8480;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 8481;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 8482;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 8483;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 8484;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 8485;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 8486;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 8487;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 8488;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 8489;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 8490;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 8491;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 8492;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 8493;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 8494;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 8495;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 8496;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 8497;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 8498;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 8499;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 8500;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 8501;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 8502;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 8503;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 8504;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 8505;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 8506;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 8507;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 8508;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 8509;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 8510;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 8511;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 8512;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 8513;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 8514;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 8515;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 8516;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 8517;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 8518;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 8519;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 8520;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 8521;
+ case DarkOakFence::DarkOakFence(true, true, true, true).ID: return 8172;
+ case DarkOakFence::DarkOakFence(true, true, true, false).ID: return 8173;
+ case DarkOakFence::DarkOakFence(true, true, false, true).ID: return 8176;
+ case DarkOakFence::DarkOakFence(true, true, false, false).ID: return 8177;
+ case DarkOakFence::DarkOakFence(true, false, true, true).ID: return 8180;
+ case DarkOakFence::DarkOakFence(true, false, true, false).ID: return 8181;
+ case DarkOakFence::DarkOakFence(true, false, false, true).ID: return 8184;
+ case DarkOakFence::DarkOakFence(true, false, false, false).ID: return 8185;
+ case DarkOakFence::DarkOakFence(false, true, true, true).ID: return 8188;
+ case DarkOakFence::DarkOakFence(false, true, true, false).ID: return 8189;
+ case DarkOakFence::DarkOakFence(false, true, false, true).ID: return 8192;
+ case DarkOakFence::DarkOakFence(false, true, false, false).ID: return 8193;
+ case DarkOakFence::DarkOakFence(false, false, true, true).ID: return 8196;
+ case DarkOakFence::DarkOakFence(false, false, true, false).ID: return 8197;
+ case DarkOakFence::DarkOakFence(false, false, false, true).ID: return 8200;
+ case DarkOakFence::DarkOakFence(false, false, false, false).ID: return 8201;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 8010;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 8011;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 8012;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 8013;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 8014;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 8015;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 8016;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 8017;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 8018;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 8019;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 8020;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 8021;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 8022;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 8023;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 8024;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 8025;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 8026;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 8027;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 8028;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 8029;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 8030;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 8031;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 8032;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 8033;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 8034;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 8035;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 8036;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 8037;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 8038;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 8039;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 8040;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 8041;
+ case DarkOakLeaves::DarkOakLeaves(1, true).ID: return 214;
+ case DarkOakLeaves::DarkOakLeaves(1, false).ID: return 215;
+ case DarkOakLeaves::DarkOakLeaves(2, true).ID: return 216;
+ case DarkOakLeaves::DarkOakLeaves(2, false).ID: return 217;
+ case DarkOakLeaves::DarkOakLeaves(3, true).ID: return 218;
+ case DarkOakLeaves::DarkOakLeaves(3, false).ID: return 219;
+ case DarkOakLeaves::DarkOakLeaves(4, true).ID: return 220;
+ case DarkOakLeaves::DarkOakLeaves(4, false).ID: return 221;
+ case DarkOakLeaves::DarkOakLeaves(5, true).ID: return 222;
+ case DarkOakLeaves::DarkOakLeaves(5, false).ID: return 223;
+ case DarkOakLeaves::DarkOakLeaves(6, true).ID: return 224;
+ case DarkOakLeaves::DarkOakLeaves(6, false).ID: return 225;
+ case DarkOakLeaves::DarkOakLeaves(7, true).ID: return 226;
+ case DarkOakLeaves::DarkOakLeaves(7, false).ID: return 227;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::X).ID: return 87;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Y).ID: return 88;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Z).ID: return 89;
+ case DarkOakPlanks::DarkOakPlanks().ID: return 20;
+ case DarkOakPressurePlate::DarkOakPressurePlate(true).ID: return 3881;
+ case DarkOakPressurePlate::DarkOakPressurePlate(false).ID: return 3882;
+ case DarkOakSapling::DarkOakSapling(0).ID: return 31;
+ case DarkOakSapling::DarkOakSapling(1).ID: return 32;
+ case DarkOakSign::DarkOakSign(0).ID: return 3540;
+ case DarkOakSign::DarkOakSign(1).ID: return 3542;
+ case DarkOakSign::DarkOakSign(2).ID: return 3544;
+ case DarkOakSign::DarkOakSign(3).ID: return 3546;
+ case DarkOakSign::DarkOakSign(4).ID: return 3548;
+ case DarkOakSign::DarkOakSign(5).ID: return 3550;
+ case DarkOakSign::DarkOakSign(6).ID: return 3552;
+ case DarkOakSign::DarkOakSign(7).ID: return 3554;
+ case DarkOakSign::DarkOakSign(8).ID: return 3556;
+ case DarkOakSign::DarkOakSign(9).ID: return 3558;
+ case DarkOakSign::DarkOakSign(10).ID: return 3560;
+ case DarkOakSign::DarkOakSign(11).ID: return 3562;
+ case DarkOakSign::DarkOakSign(12).ID: return 3564;
+ case DarkOakSign::DarkOakSign(13).ID: return 3566;
+ case DarkOakSign::DarkOakSign(14).ID: return 3568;
+ case DarkOakSign::DarkOakSign(15).ID: return 3570;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Top).ID: return 7795;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Bottom).ID: return 7797;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Double).ID: return 7799;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6920;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6922;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6924;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6926;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6928;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6930;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6932;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6934;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6936;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6938;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6940;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6942;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6944;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6946;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6948;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6950;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6952;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6954;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6956;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6958;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6960;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6962;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6964;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6966;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6968;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6970;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6972;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6974;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6976;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6978;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6980;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6982;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6984;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6986;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6988;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6990;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6992;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6994;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6996;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6998;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, true).ID: return 4418;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, false).ID: return 4420;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, true).ID: return 4422;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, false).ID: return 4424;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 4426;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 4428;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 4430;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 4432;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, true).ID: return 4434;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, false).ID: return 4436;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, true).ID: return 4438;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, false).ID: return 4440;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 4442;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 4444;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 4446;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 4448;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, true).ID: return 4450;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, false).ID: return 4452;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, true).ID: return 4454;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, false).ID: return 4456;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 4458;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 4460;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 4462;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 4464;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, true).ID: return 4466;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, false).ID: return 4468;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, true).ID: return 4470;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, false).ID: return 4472;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 4474;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 4476;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 4478;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 4480;
+ case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3774;
+ case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3776;
+ case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3778;
+ case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3780;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::X).ID: return 123;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Y).ID: return 124;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Z).ID: return 125;
+ case DarkPrismarine::DarkPrismarine().ID: return 7067;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Top).ID: return 7321;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Bottom).ID: return 7323;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Double).ID: return 7325;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 7229;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7231;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 7233;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7235;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 7237;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 7239;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7241;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 7243;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7245;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 7247;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 7249;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7251;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 7253;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7255;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 7257;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 7259;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7261;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 7263;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7265;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 7267;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 7269;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7271;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 7273;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7275;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 7277;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 7279;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7281;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 7283;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7285;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 7287;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 7289;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7291;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 7293;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7295;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 7297;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 7299;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7301;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 7303;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7305;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 7307;
+ case DaylightDetector::DaylightDetector(true, 0).ID: return 6158;
+ case DaylightDetector::DaylightDetector(true, 1).ID: return 6159;
+ case DaylightDetector::DaylightDetector(true, 2).ID: return 6160;
+ case DaylightDetector::DaylightDetector(true, 3).ID: return 6161;
+ case DaylightDetector::DaylightDetector(true, 4).ID: return 6162;
+ case DaylightDetector::DaylightDetector(true, 5).ID: return 6163;
+ case DaylightDetector::DaylightDetector(true, 6).ID: return 6164;
+ case DaylightDetector::DaylightDetector(true, 7).ID: return 6165;
+ case DaylightDetector::DaylightDetector(true, 8).ID: return 6166;
+ case DaylightDetector::DaylightDetector(true, 9).ID: return 6167;
+ case DaylightDetector::DaylightDetector(true, 10).ID: return 6168;
+ case DaylightDetector::DaylightDetector(true, 11).ID: return 6169;
+ case DaylightDetector::DaylightDetector(true, 12).ID: return 6170;
+ case DaylightDetector::DaylightDetector(true, 13).ID: return 6171;
+ case DaylightDetector::DaylightDetector(true, 14).ID: return 6172;
+ case DaylightDetector::DaylightDetector(true, 15).ID: return 6173;
+ case DaylightDetector::DaylightDetector(false, 0).ID: return 6174;
+ case DaylightDetector::DaylightDetector(false, 1).ID: return 6175;
+ case DaylightDetector::DaylightDetector(false, 2).ID: return 6176;
+ case DaylightDetector::DaylightDetector(false, 3).ID: return 6177;
+ case DaylightDetector::DaylightDetector(false, 4).ID: return 6178;
+ case DaylightDetector::DaylightDetector(false, 5).ID: return 6179;
+ case DaylightDetector::DaylightDetector(false, 6).ID: return 6180;
+ case DaylightDetector::DaylightDetector(false, 7).ID: return 6181;
+ case DaylightDetector::DaylightDetector(false, 8).ID: return 6182;
+ case DaylightDetector::DaylightDetector(false, 9).ID: return 6183;
+ case DaylightDetector::DaylightDetector(false, 10).ID: return 6184;
+ case DaylightDetector::DaylightDetector(false, 11).ID: return 6185;
+ case DaylightDetector::DaylightDetector(false, 12).ID: return 6186;
+ case DaylightDetector::DaylightDetector(false, 13).ID: return 6187;
+ case DaylightDetector::DaylightDetector(false, 14).ID: return 6188;
+ case DaylightDetector::DaylightDetector(false, 15).ID: return 6189;
+ case DeadBrainCoral::DeadBrainCoral().ID: return 8987;
+ case DeadBrainCoralBlock::DeadBrainCoralBlock().ID: return 8975;
+ case DeadBrainCoralFan::DeadBrainCoralFan().ID: return 9007;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9033;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9035;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9037;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9039;
+ case DeadBubbleCoral::DeadBubbleCoral().ID: return 8989;
+ case DeadBubbleCoralBlock::DeadBubbleCoralBlock().ID: return 8976;
+ case DeadBubbleCoralFan::DeadBubbleCoralFan().ID: return 9009;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9041;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9043;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9045;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9047;
+ case DeadBush::DeadBush().ID: return 1343;
+ case DeadFireCoral::DeadFireCoral().ID: return 8991;
+ case DeadFireCoralBlock::DeadFireCoralBlock().ID: return 8977;
+ case DeadFireCoralFan::DeadFireCoralFan().ID: return 9011;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9049;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9051;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9053;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9055;
+ case DeadHornCoral::DeadHornCoral().ID: return 8993;
+ case DeadHornCoralBlock::DeadHornCoralBlock().ID: return 8978;
+ case DeadHornCoralFan::DeadHornCoralFan().ID: return 9013;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9057;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9059;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9061;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9063;
+ case DeadTubeCoral::DeadTubeCoral().ID: return 8985;
+ case DeadTubeCoralBlock::DeadTubeCoralBlock().ID: return 8974;
+ case DeadTubeCoralFan::DeadTubeCoralFan().ID: return 9005;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9025;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9027;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9029;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9031;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::NorthSouth).ID: return 1316;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::EastWest).ID: return 1317;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingEast).ID: return 1318;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingWest).ID: return 1319;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingNorth).ID: return 1320;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingSouth).ID: return 1321;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::NorthSouth).ID: return 1322;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::EastWest).ID: return 1323;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingEast).ID: return 1324;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingWest).ID: return 1325;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingNorth).ID: return 1326;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingSouth).ID: return 1327;
+ case DiamondBlock::DiamondBlock().ID: return 3353;
+ case DiamondOre::DiamondOre().ID: return 3352;
+ case Diorite::Diorite().ID: return 4;
+ case DioriteSlab::DioriteSlab(DioriteSlab::Type::Top).ID: return 10326;
+ case DioriteSlab::DioriteSlab(DioriteSlab::Type::Bottom).ID: return 10328;
+ case DioriteSlab::DioriteSlab(DioriteSlab::Type::Double).ID: return 10330;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight).ID: return 10174;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft).ID: return 10176;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight).ID: return 10178;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft).ID: return 10180;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight).ID: return 10182;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight).ID: return 10184;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft).ID: return 10186;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight).ID: return 10188;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft).ID: return 10190;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight).ID: return 10192;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight).ID: return 10194;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft).ID: return 10196;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight).ID: return 10198;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft).ID: return 10200;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight).ID: return 10202;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight).ID: return 10204;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft).ID: return 10206;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight).ID: return 10208;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft).ID: return 10210;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight).ID: return 10212;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight).ID: return 10214;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft).ID: return 10216;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight).ID: return 10218;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft).ID: return 10220;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight).ID: return 10222;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight).ID: return 10224;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft).ID: return 10226;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight).ID: return 10228;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft).ID: return 10230;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight).ID: return 10232;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight).ID: return 10234;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft).ID: return 10236;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight).ID: return 10238;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft).ID: return 10240;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight).ID: return 10242;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight).ID: return 10244;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft).ID: return 10246;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight).ID: return 10248;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft).ID: return 10250;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight).ID: return 10252;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 11037;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 11038;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 11041;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 11042;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 11045;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 11046;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 11049;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 11050;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 11053;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 11054;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 11057;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 11058;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 11061;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 11062;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 11065;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 11066;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 11069;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 11070;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 11073;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 11074;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 11077;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 11078;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 11081;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 11082;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 11085;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 11086;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 11089;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 11090;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 11093;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 11094;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 11097;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 11098;
+ case Dirt::Dirt().ID: return 10;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, true).ID: return 233;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, false).ID: return 234;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, true).ID: return 235;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, false).ID: return 236;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, true).ID: return 237;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, false).ID: return 238;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, true).ID: return 239;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, false).ID: return 240;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, true).ID: return 241;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, false).ID: return 242;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, true).ID: return 243;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, false).ID: return 244;
+ case DragonEgg::DragonEgg().ID: return 5139;
+ case DragonHead::DragonHead(0).ID: return 6054;
+ case DragonHead::DragonHead(1).ID: return 6055;
+ case DragonHead::DragonHead(2).ID: return 6056;
+ case DragonHead::DragonHead(3).ID: return 6057;
+ case DragonHead::DragonHead(4).ID: return 6058;
+ case DragonHead::DragonHead(5).ID: return 6059;
+ case DragonHead::DragonHead(6).ID: return 6060;
+ case DragonHead::DragonHead(7).ID: return 6061;
+ case DragonHead::DragonHead(8).ID: return 6062;
+ case DragonHead::DragonHead(9).ID: return 6063;
+ case DragonHead::DragonHead(10).ID: return 6064;
+ case DragonHead::DragonHead(11).ID: return 6065;
+ case DragonHead::DragonHead(12).ID: return 6066;
+ case DragonHead::DragonHead(13).ID: return 6067;
+ case DragonHead::DragonHead(14).ID: return 6068;
+ case DragonHead::DragonHead(15).ID: return 6069;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 6070;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 6071;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 6072;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 6073;
+ case DriedKelpBlock::DriedKelpBlock().ID: return 8961;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, true).ID: return 6299;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, false).ID: return 6300;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, true).ID: return 6301;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, false).ID: return 6302;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, true).ID: return 6303;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, false).ID: return 6304;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, true).ID: return 6305;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, false).ID: return 6306;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, true).ID: return 6307;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, false).ID: return 6308;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, true).ID: return 6309;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, false).ID: return 6310;
+ case EmeraldBlock::EmeraldBlock().ID: return 5387;
+ case EmeraldOre::EmeraldOre().ID: return 5234;
+ case EnchantingTable::EnchantingTable().ID: return 5116;
+ case EndGateway::EndGateway().ID: return 8688;
+ case EndPortal::EndPortal().ID: return 5129;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZM).ID: return 5130;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZP).ID: return 5131;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XM).ID: return 5132;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XP).ID: return 5133;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZM).ID: return 5134;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZP).ID: return 5135;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XM).ID: return 5136;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XP).ID: return 5137;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZM).ID: return 8522;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_XP).ID: return 8523;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZP).ID: return 8524;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_XM).ID: return 8525;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_YP).ID: return 8526;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_YM).ID: return 8527;
+ case EndStone::EndStone().ID: return 5138;
+ case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Top).ID: return 10284;
+ case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Bottom).ID: return 10286;
+ case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Double).ID: return 10288;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight).ID: return 9534;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9536;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight).ID: return 9538;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9540;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight).ID: return 9542;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight).ID: return 9544;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9546;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight).ID: return 9548;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9550;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight).ID: return 9552;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight).ID: return 9554;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9556;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight).ID: return 9558;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9560;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight).ID: return 9562;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight).ID: return 9564;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9566;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight).ID: return 9568;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9570;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight).ID: return 9572;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight).ID: return 9574;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9576;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight).ID: return 9578;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9580;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight).ID: return 9582;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight).ID: return 9584;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9586;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight).ID: return 9588;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9590;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight).ID: return 9592;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight).ID: return 9594;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9596;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight).ID: return 9598;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9600;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight).ID: return 9602;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight).ID: return 9604;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9606;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight).ID: return 9608;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9610;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight).ID: return 9612;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 10973;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 10974;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 10977;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 10978;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 10981;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 10982;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 10985;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 10986;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 10989;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 10990;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 10993;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 10994;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 10997;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 10998;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 11001;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 11002;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 11005;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 11006;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 11009;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 11010;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 11013;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 11014;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 11017;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 11018;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 11021;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 11022;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 11025;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 11026;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 11029;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 11030;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 11033;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 11034;
+ case EndStoneBricks::EndStoneBricks().ID: return 8682;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZM).ID: return 5236;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZP).ID: return 5238;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XM).ID: return 5240;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XP).ID: return 5242;
+ case Farmland::Farmland(0).ID: return 3363;
+ case Farmland::Farmland(1).ID: return 3364;
+ case Farmland::Farmland(2).ID: return 3365;
+ case Farmland::Farmland(3).ID: return 3366;
+ case Farmland::Farmland(4).ID: return 3367;
+ case Farmland::Farmland(5).ID: return 3368;
+ case Farmland::Farmland(6).ID: return 3369;
+ case Farmland::Farmland(7).ID: return 3370;
+ case Fern::Fern().ID: return 1342;
+ case Fire::Fire(0, true, true, true, true, true).ID: return 1439;
+ case Fire::Fire(0, true, true, true, true, false).ID: return 1440;
+ case Fire::Fire(0, true, true, true, false, true).ID: return 1441;
+ case Fire::Fire(0, true, true, true, false, false).ID: return 1442;
+ case Fire::Fire(0, true, true, false, true, true).ID: return 1443;
+ case Fire::Fire(0, true, true, false, true, false).ID: return 1444;
+ case Fire::Fire(0, true, true, false, false, true).ID: return 1445;
+ case Fire::Fire(0, true, true, false, false, false).ID: return 1446;
+ case Fire::Fire(0, true, false, true, true, true).ID: return 1447;
+ case Fire::Fire(0, true, false, true, true, false).ID: return 1448;
+ case Fire::Fire(0, true, false, true, false, true).ID: return 1449;
+ case Fire::Fire(0, true, false, true, false, false).ID: return 1450;
+ case Fire::Fire(0, true, false, false, true, true).ID: return 1451;
+ case Fire::Fire(0, true, false, false, true, false).ID: return 1452;
+ case Fire::Fire(0, true, false, false, false, true).ID: return 1453;
+ case Fire::Fire(0, true, false, false, false, false).ID: return 1454;
+ case Fire::Fire(0, false, true, true, true, true).ID: return 1455;
+ case Fire::Fire(0, false, true, true, true, false).ID: return 1456;
+ case Fire::Fire(0, false, true, true, false, true).ID: return 1457;
+ case Fire::Fire(0, false, true, true, false, false).ID: return 1458;
+ case Fire::Fire(0, false, true, false, true, true).ID: return 1459;
+ case Fire::Fire(0, false, true, false, true, false).ID: return 1460;
+ case Fire::Fire(0, false, true, false, false, true).ID: return 1461;
+ case Fire::Fire(0, false, true, false, false, false).ID: return 1462;
+ case Fire::Fire(0, false, false, true, true, true).ID: return 1463;
+ case Fire::Fire(0, false, false, true, true, false).ID: return 1464;
+ case Fire::Fire(0, false, false, true, false, true).ID: return 1465;
+ case Fire::Fire(0, false, false, true, false, false).ID: return 1466;
+ case Fire::Fire(0, false, false, false, true, true).ID: return 1467;
+ case Fire::Fire(0, false, false, false, true, false).ID: return 1468;
+ case Fire::Fire(0, false, false, false, false, true).ID: return 1469;
+ case Fire::Fire(0, false, false, false, false, false).ID: return 1470;
+ case Fire::Fire(1, true, true, true, true, true).ID: return 1471;
+ case Fire::Fire(1, true, true, true, true, false).ID: return 1472;
+ case Fire::Fire(1, true, true, true, false, true).ID: return 1473;
+ case Fire::Fire(1, true, true, true, false, false).ID: return 1474;
+ case Fire::Fire(1, true, true, false, true, true).ID: return 1475;
+ case Fire::Fire(1, true, true, false, true, false).ID: return 1476;
+ case Fire::Fire(1, true, true, false, false, true).ID: return 1477;
+ case Fire::Fire(1, true, true, false, false, false).ID: return 1478;
+ case Fire::Fire(1, true, false, true, true, true).ID: return 1479;
+ case Fire::Fire(1, true, false, true, true, false).ID: return 1480;
+ case Fire::Fire(1, true, false, true, false, true).ID: return 1481;
+ case Fire::Fire(1, true, false, true, false, false).ID: return 1482;
+ case Fire::Fire(1, true, false, false, true, true).ID: return 1483;
+ case Fire::Fire(1, true, false, false, true, false).ID: return 1484;
+ case Fire::Fire(1, true, false, false, false, true).ID: return 1485;
+ case Fire::Fire(1, true, false, false, false, false).ID: return 1486;
+ case Fire::Fire(1, false, true, true, true, true).ID: return 1487;
+ case Fire::Fire(1, false, true, true, true, false).ID: return 1488;
+ case Fire::Fire(1, false, true, true, false, true).ID: return 1489;
+ case Fire::Fire(1, false, true, true, false, false).ID: return 1490;
+ case Fire::Fire(1, false, true, false, true, true).ID: return 1491;
+ case Fire::Fire(1, false, true, false, true, false).ID: return 1492;
+ case Fire::Fire(1, false, true, false, false, true).ID: return 1493;
+ case Fire::Fire(1, false, true, false, false, false).ID: return 1494;
+ case Fire::Fire(1, false, false, true, true, true).ID: return 1495;
+ case Fire::Fire(1, false, false, true, true, false).ID: return 1496;
+ case Fire::Fire(1, false, false, true, false, true).ID: return 1497;
+ case Fire::Fire(1, false, false, true, false, false).ID: return 1498;
+ case Fire::Fire(1, false, false, false, true, true).ID: return 1499;
+ case Fire::Fire(1, false, false, false, true, false).ID: return 1500;
+ case Fire::Fire(1, false, false, false, false, true).ID: return 1501;
+ case Fire::Fire(1, false, false, false, false, false).ID: return 1502;
+ case Fire::Fire(2, true, true, true, true, true).ID: return 1503;
+ case Fire::Fire(2, true, true, true, true, false).ID: return 1504;
+ case Fire::Fire(2, true, true, true, false, true).ID: return 1505;
+ case Fire::Fire(2, true, true, true, false, false).ID: return 1506;
+ case Fire::Fire(2, true, true, false, true, true).ID: return 1507;
+ case Fire::Fire(2, true, true, false, true, false).ID: return 1508;
+ case Fire::Fire(2, true, true, false, false, true).ID: return 1509;
+ case Fire::Fire(2, true, true, false, false, false).ID: return 1510;
+ case Fire::Fire(2, true, false, true, true, true).ID: return 1511;
+ case Fire::Fire(2, true, false, true, true, false).ID: return 1512;
+ case Fire::Fire(2, true, false, true, false, true).ID: return 1513;
+ case Fire::Fire(2, true, false, true, false, false).ID: return 1514;
+ case Fire::Fire(2, true, false, false, true, true).ID: return 1515;
+ case Fire::Fire(2, true, false, false, true, false).ID: return 1516;
+ case Fire::Fire(2, true, false, false, false, true).ID: return 1517;
+ case Fire::Fire(2, true, false, false, false, false).ID: return 1518;
+ case Fire::Fire(2, false, true, true, true, true).ID: return 1519;
+ case Fire::Fire(2, false, true, true, true, false).ID: return 1520;
+ case Fire::Fire(2, false, true, true, false, true).ID: return 1521;
+ case Fire::Fire(2, false, true, true, false, false).ID: return 1522;
+ case Fire::Fire(2, false, true, false, true, true).ID: return 1523;
+ case Fire::Fire(2, false, true, false, true, false).ID: return 1524;
+ case Fire::Fire(2, false, true, false, false, true).ID: return 1525;
+ case Fire::Fire(2, false, true, false, false, false).ID: return 1526;
+ case Fire::Fire(2, false, false, true, true, true).ID: return 1527;
+ case Fire::Fire(2, false, false, true, true, false).ID: return 1528;
+ case Fire::Fire(2, false, false, true, false, true).ID: return 1529;
+ case Fire::Fire(2, false, false, true, false, false).ID: return 1530;
+ case Fire::Fire(2, false, false, false, true, true).ID: return 1531;
+ case Fire::Fire(2, false, false, false, true, false).ID: return 1532;
+ case Fire::Fire(2, false, false, false, false, true).ID: return 1533;
+ case Fire::Fire(2, false, false, false, false, false).ID: return 1534;
+ case Fire::Fire(3, true, true, true, true, true).ID: return 1535;
+ case Fire::Fire(3, true, true, true, true, false).ID: return 1536;
+ case Fire::Fire(3, true, true, true, false, true).ID: return 1537;
+ case Fire::Fire(3, true, true, true, false, false).ID: return 1538;
+ case Fire::Fire(3, true, true, false, true, true).ID: return 1539;
+ case Fire::Fire(3, true, true, false, true, false).ID: return 1540;
+ case Fire::Fire(3, true, true, false, false, true).ID: return 1541;
+ case Fire::Fire(3, true, true, false, false, false).ID: return 1542;
+ case Fire::Fire(3, true, false, true, true, true).ID: return 1543;
+ case Fire::Fire(3, true, false, true, true, false).ID: return 1544;
+ case Fire::Fire(3, true, false, true, false, true).ID: return 1545;
+ case Fire::Fire(3, true, false, true, false, false).ID: return 1546;
+ case Fire::Fire(3, true, false, false, true, true).ID: return 1547;
+ case Fire::Fire(3, true, false, false, true, false).ID: return 1548;
+ case Fire::Fire(3, true, false, false, false, true).ID: return 1549;
+ case Fire::Fire(3, true, false, false, false, false).ID: return 1550;
+ case Fire::Fire(3, false, true, true, true, true).ID: return 1551;
+ case Fire::Fire(3, false, true, true, true, false).ID: return 1552;
+ case Fire::Fire(3, false, true, true, false, true).ID: return 1553;
+ case Fire::Fire(3, false, true, true, false, false).ID: return 1554;
+ case Fire::Fire(3, false, true, false, true, true).ID: return 1555;
+ case Fire::Fire(3, false, true, false, true, false).ID: return 1556;
+ case Fire::Fire(3, false, true, false, false, true).ID: return 1557;
+ case Fire::Fire(3, false, true, false, false, false).ID: return 1558;
+ case Fire::Fire(3, false, false, true, true, true).ID: return 1559;
+ case Fire::Fire(3, false, false, true, true, false).ID: return 1560;
+ case Fire::Fire(3, false, false, true, false, true).ID: return 1561;
+ case Fire::Fire(3, false, false, true, false, false).ID: return 1562;
+ case Fire::Fire(3, false, false, false, true, true).ID: return 1563;
+ case Fire::Fire(3, false, false, false, true, false).ID: return 1564;
+ case Fire::Fire(3, false, false, false, false, true).ID: return 1565;
+ case Fire::Fire(3, false, false, false, false, false).ID: return 1566;
+ case Fire::Fire(4, true, true, true, true, true).ID: return 1567;
+ case Fire::Fire(4, true, true, true, true, false).ID: return 1568;
+ case Fire::Fire(4, true, true, true, false, true).ID: return 1569;
+ case Fire::Fire(4, true, true, true, false, false).ID: return 1570;
+ case Fire::Fire(4, true, true, false, true, true).ID: return 1571;
+ case Fire::Fire(4, true, true, false, true, false).ID: return 1572;
+ case Fire::Fire(4, true, true, false, false, true).ID: return 1573;
+ case Fire::Fire(4, true, true, false, false, false).ID: return 1574;
+ case Fire::Fire(4, true, false, true, true, true).ID: return 1575;
+ case Fire::Fire(4, true, false, true, true, false).ID: return 1576;
+ case Fire::Fire(4, true, false, true, false, true).ID: return 1577;
+ case Fire::Fire(4, true, false, true, false, false).ID: return 1578;
+ case Fire::Fire(4, true, false, false, true, true).ID: return 1579;
+ case Fire::Fire(4, true, false, false, true, false).ID: return 1580;
+ case Fire::Fire(4, true, false, false, false, true).ID: return 1581;
+ case Fire::Fire(4, true, false, false, false, false).ID: return 1582;
+ case Fire::Fire(4, false, true, true, true, true).ID: return 1583;
+ case Fire::Fire(4, false, true, true, true, false).ID: return 1584;
+ case Fire::Fire(4, false, true, true, false, true).ID: return 1585;
+ case Fire::Fire(4, false, true, true, false, false).ID: return 1586;
+ case Fire::Fire(4, false, true, false, true, true).ID: return 1587;
+ case Fire::Fire(4, false, true, false, true, false).ID: return 1588;
+ case Fire::Fire(4, false, true, false, false, true).ID: return 1589;
+ case Fire::Fire(4, false, true, false, false, false).ID: return 1590;
+ case Fire::Fire(4, false, false, true, true, true).ID: return 1591;
+ case Fire::Fire(4, false, false, true, true, false).ID: return 1592;
+ case Fire::Fire(4, false, false, true, false, true).ID: return 1593;
+ case Fire::Fire(4, false, false, true, false, false).ID: return 1594;
+ case Fire::Fire(4, false, false, false, true, true).ID: return 1595;
+ case Fire::Fire(4, false, false, false, true, false).ID: return 1596;
+ case Fire::Fire(4, false, false, false, false, true).ID: return 1597;
+ case Fire::Fire(4, false, false, false, false, false).ID: return 1598;
+ case Fire::Fire(5, true, true, true, true, true).ID: return 1599;
+ case Fire::Fire(5, true, true, true, true, false).ID: return 1600;
+ case Fire::Fire(5, true, true, true, false, true).ID: return 1601;
+ case Fire::Fire(5, true, true, true, false, false).ID: return 1602;
+ case Fire::Fire(5, true, true, false, true, true).ID: return 1603;
+ case Fire::Fire(5, true, true, false, true, false).ID: return 1604;
+ case Fire::Fire(5, true, true, false, false, true).ID: return 1605;
+ case Fire::Fire(5, true, true, false, false, false).ID: return 1606;
+ case Fire::Fire(5, true, false, true, true, true).ID: return 1607;
+ case Fire::Fire(5, true, false, true, true, false).ID: return 1608;
+ case Fire::Fire(5, true, false, true, false, true).ID: return 1609;
+ case Fire::Fire(5, true, false, true, false, false).ID: return 1610;
+ case Fire::Fire(5, true, false, false, true, true).ID: return 1611;
+ case Fire::Fire(5, true, false, false, true, false).ID: return 1612;
+ case Fire::Fire(5, true, false, false, false, true).ID: return 1613;
+ case Fire::Fire(5, true, false, false, false, false).ID: return 1614;
+ case Fire::Fire(5, false, true, true, true, true).ID: return 1615;
+ case Fire::Fire(5, false, true, true, true, false).ID: return 1616;
+ case Fire::Fire(5, false, true, true, false, true).ID: return 1617;
+ case Fire::Fire(5, false, true, true, false, false).ID: return 1618;
+ case Fire::Fire(5, false, true, false, true, true).ID: return 1619;
+ case Fire::Fire(5, false, true, false, true, false).ID: return 1620;
+ case Fire::Fire(5, false, true, false, false, true).ID: return 1621;
+ case Fire::Fire(5, false, true, false, false, false).ID: return 1622;
+ case Fire::Fire(5, false, false, true, true, true).ID: return 1623;
+ case Fire::Fire(5, false, false, true, true, false).ID: return 1624;
+ case Fire::Fire(5, false, false, true, false, true).ID: return 1625;
+ case Fire::Fire(5, false, false, true, false, false).ID: return 1626;
+ case Fire::Fire(5, false, false, false, true, true).ID: return 1627;
+ case Fire::Fire(5, false, false, false, true, false).ID: return 1628;
+ case Fire::Fire(5, false, false, false, false, true).ID: return 1629;
+ case Fire::Fire(5, false, false, false, false, false).ID: return 1630;
+ case Fire::Fire(6, true, true, true, true, true).ID: return 1631;
+ case Fire::Fire(6, true, true, true, true, false).ID: return 1632;
+ case Fire::Fire(6, true, true, true, false, true).ID: return 1633;
+ case Fire::Fire(6, true, true, true, false, false).ID: return 1634;
+ case Fire::Fire(6, true, true, false, true, true).ID: return 1635;
+ case Fire::Fire(6, true, true, false, true, false).ID: return 1636;
+ case Fire::Fire(6, true, true, false, false, true).ID: return 1637;
+ case Fire::Fire(6, true, true, false, false, false).ID: return 1638;
+ case Fire::Fire(6, true, false, true, true, true).ID: return 1639;
+ case Fire::Fire(6, true, false, true, true, false).ID: return 1640;
+ case Fire::Fire(6, true, false, true, false, true).ID: return 1641;
+ case Fire::Fire(6, true, false, true, false, false).ID: return 1642;
+ case Fire::Fire(6, true, false, false, true, true).ID: return 1643;
+ case Fire::Fire(6, true, false, false, true, false).ID: return 1644;
+ case Fire::Fire(6, true, false, false, false, true).ID: return 1645;
+ case Fire::Fire(6, true, false, false, false, false).ID: return 1646;
+ case Fire::Fire(6, false, true, true, true, true).ID: return 1647;
+ case Fire::Fire(6, false, true, true, true, false).ID: return 1648;
+ case Fire::Fire(6, false, true, true, false, true).ID: return 1649;
+ case Fire::Fire(6, false, true, true, false, false).ID: return 1650;
+ case Fire::Fire(6, false, true, false, true, true).ID: return 1651;
+ case Fire::Fire(6, false, true, false, true, false).ID: return 1652;
+ case Fire::Fire(6, false, true, false, false, true).ID: return 1653;
+ case Fire::Fire(6, false, true, false, false, false).ID: return 1654;
+ case Fire::Fire(6, false, false, true, true, true).ID: return 1655;
+ case Fire::Fire(6, false, false, true, true, false).ID: return 1656;
+ case Fire::Fire(6, false, false, true, false, true).ID: return 1657;
+ case Fire::Fire(6, false, false, true, false, false).ID: return 1658;
+ case Fire::Fire(6, false, false, false, true, true).ID: return 1659;
+ case Fire::Fire(6, false, false, false, true, false).ID: return 1660;
+ case Fire::Fire(6, false, false, false, false, true).ID: return 1661;
+ case Fire::Fire(6, false, false, false, false, false).ID: return 1662;
+ case Fire::Fire(7, true, true, true, true, true).ID: return 1663;
+ case Fire::Fire(7, true, true, true, true, false).ID: return 1664;
+ case Fire::Fire(7, true, true, true, false, true).ID: return 1665;
+ case Fire::Fire(7, true, true, true, false, false).ID: return 1666;
+ case Fire::Fire(7, true, true, false, true, true).ID: return 1667;
+ case Fire::Fire(7, true, true, false, true, false).ID: return 1668;
+ case Fire::Fire(7, true, true, false, false, true).ID: return 1669;
+ case Fire::Fire(7, true, true, false, false, false).ID: return 1670;
+ case Fire::Fire(7, true, false, true, true, true).ID: return 1671;
+ case Fire::Fire(7, true, false, true, true, false).ID: return 1672;
+ case Fire::Fire(7, true, false, true, false, true).ID: return 1673;
+ case Fire::Fire(7, true, false, true, false, false).ID: return 1674;
+ case Fire::Fire(7, true, false, false, true, true).ID: return 1675;
+ case Fire::Fire(7, true, false, false, true, false).ID: return 1676;
+ case Fire::Fire(7, true, false, false, false, true).ID: return 1677;
+ case Fire::Fire(7, true, false, false, false, false).ID: return 1678;
+ case Fire::Fire(7, false, true, true, true, true).ID: return 1679;
+ case Fire::Fire(7, false, true, true, true, false).ID: return 1680;
+ case Fire::Fire(7, false, true, true, false, true).ID: return 1681;
+ case Fire::Fire(7, false, true, true, false, false).ID: return 1682;
+ case Fire::Fire(7, false, true, false, true, true).ID: return 1683;
+ case Fire::Fire(7, false, true, false, true, false).ID: return 1684;
+ case Fire::Fire(7, false, true, false, false, true).ID: return 1685;
+ case Fire::Fire(7, false, true, false, false, false).ID: return 1686;
+ case Fire::Fire(7, false, false, true, true, true).ID: return 1687;
+ case Fire::Fire(7, false, false, true, true, false).ID: return 1688;
+ case Fire::Fire(7, false, false, true, false, true).ID: return 1689;
+ case Fire::Fire(7, false, false, true, false, false).ID: return 1690;
+ case Fire::Fire(7, false, false, false, true, true).ID: return 1691;
+ case Fire::Fire(7, false, false, false, true, false).ID: return 1692;
+ case Fire::Fire(7, false, false, false, false, true).ID: return 1693;
+ case Fire::Fire(7, false, false, false, false, false).ID: return 1694;
+ case Fire::Fire(8, true, true, true, true, true).ID: return 1695;
+ case Fire::Fire(8, true, true, true, true, false).ID: return 1696;
+ case Fire::Fire(8, true, true, true, false, true).ID: return 1697;
+ case Fire::Fire(8, true, true, true, false, false).ID: return 1698;
+ case Fire::Fire(8, true, true, false, true, true).ID: return 1699;
+ case Fire::Fire(8, true, true, false, true, false).ID: return 1700;
+ case Fire::Fire(8, true, true, false, false, true).ID: return 1701;
+ case Fire::Fire(8, true, true, false, false, false).ID: return 1702;
+ case Fire::Fire(8, true, false, true, true, true).ID: return 1703;
+ case Fire::Fire(8, true, false, true, true, false).ID: return 1704;
+ case Fire::Fire(8, true, false, true, false, true).ID: return 1705;
+ case Fire::Fire(8, true, false, true, false, false).ID: return 1706;
+ case Fire::Fire(8, true, false, false, true, true).ID: return 1707;
+ case Fire::Fire(8, true, false, false, true, false).ID: return 1708;
+ case Fire::Fire(8, true, false, false, false, true).ID: return 1709;
+ case Fire::Fire(8, true, false, false, false, false).ID: return 1710;
+ case Fire::Fire(8, false, true, true, true, true).ID: return 1711;
+ case Fire::Fire(8, false, true, true, true, false).ID: return 1712;
+ case Fire::Fire(8, false, true, true, false, true).ID: return 1713;
+ case Fire::Fire(8, false, true, true, false, false).ID: return 1714;
+ case Fire::Fire(8, false, true, false, true, true).ID: return 1715;
+ case Fire::Fire(8, false, true, false, true, false).ID: return 1716;
+ case Fire::Fire(8, false, true, false, false, true).ID: return 1717;
+ case Fire::Fire(8, false, true, false, false, false).ID: return 1718;
+ case Fire::Fire(8, false, false, true, true, true).ID: return 1719;
+ case Fire::Fire(8, false, false, true, true, false).ID: return 1720;
+ case Fire::Fire(8, false, false, true, false, true).ID: return 1721;
+ case Fire::Fire(8, false, false, true, false, false).ID: return 1722;
+ case Fire::Fire(8, false, false, false, true, true).ID: return 1723;
+ case Fire::Fire(8, false, false, false, true, false).ID: return 1724;
+ case Fire::Fire(8, false, false, false, false, true).ID: return 1725;
+ case Fire::Fire(8, false, false, false, false, false).ID: return 1726;
+ case Fire::Fire(9, true, true, true, true, true).ID: return 1727;
+ case Fire::Fire(9, true, true, true, true, false).ID: return 1728;
+ case Fire::Fire(9, true, true, true, false, true).ID: return 1729;
+ case Fire::Fire(9, true, true, true, false, false).ID: return 1730;
+ case Fire::Fire(9, true, true, false, true, true).ID: return 1731;
+ case Fire::Fire(9, true, true, false, true, false).ID: return 1732;
+ case Fire::Fire(9, true, true, false, false, true).ID: return 1733;
+ case Fire::Fire(9, true, true, false, false, false).ID: return 1734;
+ case Fire::Fire(9, true, false, true, true, true).ID: return 1735;
+ case Fire::Fire(9, true, false, true, true, false).ID: return 1736;
+ case Fire::Fire(9, true, false, true, false, true).ID: return 1737;
+ case Fire::Fire(9, true, false, true, false, false).ID: return 1738;
+ case Fire::Fire(9, true, false, false, true, true).ID: return 1739;
+ case Fire::Fire(9, true, false, false, true, false).ID: return 1740;
+ case Fire::Fire(9, true, false, false, false, true).ID: return 1741;
+ case Fire::Fire(9, true, false, false, false, false).ID: return 1742;
+ case Fire::Fire(9, false, true, true, true, true).ID: return 1743;
+ case Fire::Fire(9, false, true, true, true, false).ID: return 1744;
+ case Fire::Fire(9, false, true, true, false, true).ID: return 1745;
+ case Fire::Fire(9, false, true, true, false, false).ID: return 1746;
+ case Fire::Fire(9, false, true, false, true, true).ID: return 1747;
+ case Fire::Fire(9, false, true, false, true, false).ID: return 1748;
+ case Fire::Fire(9, false, true, false, false, true).ID: return 1749;
+ case Fire::Fire(9, false, true, false, false, false).ID: return 1750;
+ case Fire::Fire(9, false, false, true, true, true).ID: return 1751;
+ case Fire::Fire(9, false, false, true, true, false).ID: return 1752;
+ case Fire::Fire(9, false, false, true, false, true).ID: return 1753;
+ case Fire::Fire(9, false, false, true, false, false).ID: return 1754;
+ case Fire::Fire(9, false, false, false, true, true).ID: return 1755;
+ case Fire::Fire(9, false, false, false, true, false).ID: return 1756;
+ case Fire::Fire(9, false, false, false, false, true).ID: return 1757;
+ case Fire::Fire(9, false, false, false, false, false).ID: return 1758;
+ case Fire::Fire(10, true, true, true, true, true).ID: return 1759;
+ case Fire::Fire(10, true, true, true, true, false).ID: return 1760;
+ case Fire::Fire(10, true, true, true, false, true).ID: return 1761;
+ case Fire::Fire(10, true, true, true, false, false).ID: return 1762;
+ case Fire::Fire(10, true, true, false, true, true).ID: return 1763;
+ case Fire::Fire(10, true, true, false, true, false).ID: return 1764;
+ case Fire::Fire(10, true, true, false, false, true).ID: return 1765;
+ case Fire::Fire(10, true, true, false, false, false).ID: return 1766;
+ case Fire::Fire(10, true, false, true, true, true).ID: return 1767;
+ case Fire::Fire(10, true, false, true, true, false).ID: return 1768;
+ case Fire::Fire(10, true, false, true, false, true).ID: return 1769;
+ case Fire::Fire(10, true, false, true, false, false).ID: return 1770;
+ case Fire::Fire(10, true, false, false, true, true).ID: return 1771;
+ case Fire::Fire(10, true, false, false, true, false).ID: return 1772;
+ case Fire::Fire(10, true, false, false, false, true).ID: return 1773;
+ case Fire::Fire(10, true, false, false, false, false).ID: return 1774;
+ case Fire::Fire(10, false, true, true, true, true).ID: return 1775;
+ case Fire::Fire(10, false, true, true, true, false).ID: return 1776;
+ case Fire::Fire(10, false, true, true, false, true).ID: return 1777;
+ case Fire::Fire(10, false, true, true, false, false).ID: return 1778;
+ case Fire::Fire(10, false, true, false, true, true).ID: return 1779;
+ case Fire::Fire(10, false, true, false, true, false).ID: return 1780;
+ case Fire::Fire(10, false, true, false, false, true).ID: return 1781;
+ case Fire::Fire(10, false, true, false, false, false).ID: return 1782;
+ case Fire::Fire(10, false, false, true, true, true).ID: return 1783;
+ case Fire::Fire(10, false, false, true, true, false).ID: return 1784;
+ case Fire::Fire(10, false, false, true, false, true).ID: return 1785;
+ case Fire::Fire(10, false, false, true, false, false).ID: return 1786;
+ case Fire::Fire(10, false, false, false, true, true).ID: return 1787;
+ case Fire::Fire(10, false, false, false, true, false).ID: return 1788;
+ case Fire::Fire(10, false, false, false, false, true).ID: return 1789;
+ case Fire::Fire(10, false, false, false, false, false).ID: return 1790;
+ case Fire::Fire(11, true, true, true, true, true).ID: return 1791;
+ case Fire::Fire(11, true, true, true, true, false).ID: return 1792;
+ case Fire::Fire(11, true, true, true, false, true).ID: return 1793;
+ case Fire::Fire(11, true, true, true, false, false).ID: return 1794;
+ case Fire::Fire(11, true, true, false, true, true).ID: return 1795;
+ case Fire::Fire(11, true, true, false, true, false).ID: return 1796;
+ case Fire::Fire(11, true, true, false, false, true).ID: return 1797;
+ case Fire::Fire(11, true, true, false, false, false).ID: return 1798;
+ case Fire::Fire(11, true, false, true, true, true).ID: return 1799;
+ case Fire::Fire(11, true, false, true, true, false).ID: return 1800;
+ case Fire::Fire(11, true, false, true, false, true).ID: return 1801;
+ case Fire::Fire(11, true, false, true, false, false).ID: return 1802;
+ case Fire::Fire(11, true, false, false, true, true).ID: return 1803;
+ case Fire::Fire(11, true, false, false, true, false).ID: return 1804;
+ case Fire::Fire(11, true, false, false, false, true).ID: return 1805;
+ case Fire::Fire(11, true, false, false, false, false).ID: return 1806;
+ case Fire::Fire(11, false, true, true, true, true).ID: return 1807;
+ case Fire::Fire(11, false, true, true, true, false).ID: return 1808;
+ case Fire::Fire(11, false, true, true, false, true).ID: return 1809;
+ case Fire::Fire(11, false, true, true, false, false).ID: return 1810;
+ case Fire::Fire(11, false, true, false, true, true).ID: return 1811;
+ case Fire::Fire(11, false, true, false, true, false).ID: return 1812;
+ case Fire::Fire(11, false, true, false, false, true).ID: return 1813;
+ case Fire::Fire(11, false, true, false, false, false).ID: return 1814;
+ case Fire::Fire(11, false, false, true, true, true).ID: return 1815;
+ case Fire::Fire(11, false, false, true, true, false).ID: return 1816;
+ case Fire::Fire(11, false, false, true, false, true).ID: return 1817;
+ case Fire::Fire(11, false, false, true, false, false).ID: return 1818;
+ case Fire::Fire(11, false, false, false, true, true).ID: return 1819;
+ case Fire::Fire(11, false, false, false, true, false).ID: return 1820;
+ case Fire::Fire(11, false, false, false, false, true).ID: return 1821;
+ case Fire::Fire(11, false, false, false, false, false).ID: return 1822;
+ case Fire::Fire(12, true, true, true, true, true).ID: return 1823;
+ case Fire::Fire(12, true, true, true, true, false).ID: return 1824;
+ case Fire::Fire(12, true, true, true, false, true).ID: return 1825;
+ case Fire::Fire(12, true, true, true, false, false).ID: return 1826;
+ case Fire::Fire(12, true, true, false, true, true).ID: return 1827;
+ case Fire::Fire(12, true, true, false, true, false).ID: return 1828;
+ case Fire::Fire(12, true, true, false, false, true).ID: return 1829;
+ case Fire::Fire(12, true, true, false, false, false).ID: return 1830;
+ case Fire::Fire(12, true, false, true, true, true).ID: return 1831;
+ case Fire::Fire(12, true, false, true, true, false).ID: return 1832;
+ case Fire::Fire(12, true, false, true, false, true).ID: return 1833;
+ case Fire::Fire(12, true, false, true, false, false).ID: return 1834;
+ case Fire::Fire(12, true, false, false, true, true).ID: return 1835;
+ case Fire::Fire(12, true, false, false, true, false).ID: return 1836;
+ case Fire::Fire(12, true, false, false, false, true).ID: return 1837;
+ case Fire::Fire(12, true, false, false, false, false).ID: return 1838;
+ case Fire::Fire(12, false, true, true, true, true).ID: return 1839;
+ case Fire::Fire(12, false, true, true, true, false).ID: return 1840;
+ case Fire::Fire(12, false, true, true, false, true).ID: return 1841;
+ case Fire::Fire(12, false, true, true, false, false).ID: return 1842;
+ case Fire::Fire(12, false, true, false, true, true).ID: return 1843;
+ case Fire::Fire(12, false, true, false, true, false).ID: return 1844;
+ case Fire::Fire(12, false, true, false, false, true).ID: return 1845;
+ case Fire::Fire(12, false, true, false, false, false).ID: return 1846;
+ case Fire::Fire(12, false, false, true, true, true).ID: return 1847;
+ case Fire::Fire(12, false, false, true, true, false).ID: return 1848;
+ case Fire::Fire(12, false, false, true, false, true).ID: return 1849;
+ case Fire::Fire(12, false, false, true, false, false).ID: return 1850;
+ case Fire::Fire(12, false, false, false, true, true).ID: return 1851;
+ case Fire::Fire(12, false, false, false, true, false).ID: return 1852;
+ case Fire::Fire(12, false, false, false, false, true).ID: return 1853;
+ case Fire::Fire(12, false, false, false, false, false).ID: return 1854;
+ case Fire::Fire(13, true, true, true, true, true).ID: return 1855;
+ case Fire::Fire(13, true, true, true, true, false).ID: return 1856;
+ case Fire::Fire(13, true, true, true, false, true).ID: return 1857;
+ case Fire::Fire(13, true, true, true, false, false).ID: return 1858;
+ case Fire::Fire(13, true, true, false, true, true).ID: return 1859;
+ case Fire::Fire(13, true, true, false, true, false).ID: return 1860;
+ case Fire::Fire(13, true, true, false, false, true).ID: return 1861;
+ case Fire::Fire(13, true, true, false, false, false).ID: return 1862;
+ case Fire::Fire(13, true, false, true, true, true).ID: return 1863;
+ case Fire::Fire(13, true, false, true, true, false).ID: return 1864;
+ case Fire::Fire(13, true, false, true, false, true).ID: return 1865;
+ case Fire::Fire(13, true, false, true, false, false).ID: return 1866;
+ case Fire::Fire(13, true, false, false, true, true).ID: return 1867;
+ case Fire::Fire(13, true, false, false, true, false).ID: return 1868;
+ case Fire::Fire(13, true, false, false, false, true).ID: return 1869;
+ case Fire::Fire(13, true, false, false, false, false).ID: return 1870;
+ case Fire::Fire(13, false, true, true, true, true).ID: return 1871;
+ case Fire::Fire(13, false, true, true, true, false).ID: return 1872;
+ case Fire::Fire(13, false, true, true, false, true).ID: return 1873;
+ case Fire::Fire(13, false, true, true, false, false).ID: return 1874;
+ case Fire::Fire(13, false, true, false, true, true).ID: return 1875;
+ case Fire::Fire(13, false, true, false, true, false).ID: return 1876;
+ case Fire::Fire(13, false, true, false, false, true).ID: return 1877;
+ case Fire::Fire(13, false, true, false, false, false).ID: return 1878;
+ case Fire::Fire(13, false, false, true, true, true).ID: return 1879;
+ case Fire::Fire(13, false, false, true, true, false).ID: return 1880;
+ case Fire::Fire(13, false, false, true, false, true).ID: return 1881;
+ case Fire::Fire(13, false, false, true, false, false).ID: return 1882;
+ case Fire::Fire(13, false, false, false, true, true).ID: return 1883;
+ case Fire::Fire(13, false, false, false, true, false).ID: return 1884;
+ case Fire::Fire(13, false, false, false, false, true).ID: return 1885;
+ case Fire::Fire(13, false, false, false, false, false).ID: return 1886;
+ case Fire::Fire(14, true, true, true, true, true).ID: return 1887;
+ case Fire::Fire(14, true, true, true, true, false).ID: return 1888;
+ case Fire::Fire(14, true, true, true, false, true).ID: return 1889;
+ case Fire::Fire(14, true, true, true, false, false).ID: return 1890;
+ case Fire::Fire(14, true, true, false, true, true).ID: return 1891;
+ case Fire::Fire(14, true, true, false, true, false).ID: return 1892;
+ case Fire::Fire(14, true, true, false, false, true).ID: return 1893;
+ case Fire::Fire(14, true, true, false, false, false).ID: return 1894;
+ case Fire::Fire(14, true, false, true, true, true).ID: return 1895;
+ case Fire::Fire(14, true, false, true, true, false).ID: return 1896;
+ case Fire::Fire(14, true, false, true, false, true).ID: return 1897;
+ case Fire::Fire(14, true, false, true, false, false).ID: return 1898;
+ case Fire::Fire(14, true, false, false, true, true).ID: return 1899;
+ case Fire::Fire(14, true, false, false, true, false).ID: return 1900;
+ case Fire::Fire(14, true, false, false, false, true).ID: return 1901;
+ case Fire::Fire(14, true, false, false, false, false).ID: return 1902;
+ case Fire::Fire(14, false, true, true, true, true).ID: return 1903;
+ case Fire::Fire(14, false, true, true, true, false).ID: return 1904;
+ case Fire::Fire(14, false, true, true, false, true).ID: return 1905;
+ case Fire::Fire(14, false, true, true, false, false).ID: return 1906;
+ case Fire::Fire(14, false, true, false, true, true).ID: return 1907;
+ case Fire::Fire(14, false, true, false, true, false).ID: return 1908;
+ case Fire::Fire(14, false, true, false, false, true).ID: return 1909;
+ case Fire::Fire(14, false, true, false, false, false).ID: return 1910;
+ case Fire::Fire(14, false, false, true, true, true).ID: return 1911;
+ case Fire::Fire(14, false, false, true, true, false).ID: return 1912;
+ case Fire::Fire(14, false, false, true, false, true).ID: return 1913;
+ case Fire::Fire(14, false, false, true, false, false).ID: return 1914;
+ case Fire::Fire(14, false, false, false, true, true).ID: return 1915;
+ case Fire::Fire(14, false, false, false, true, false).ID: return 1916;
+ case Fire::Fire(14, false, false, false, false, true).ID: return 1917;
+ case Fire::Fire(14, false, false, false, false, false).ID: return 1918;
+ case Fire::Fire(15, true, true, true, true, true).ID: return 1919;
+ case Fire::Fire(15, true, true, true, true, false).ID: return 1920;
+ case Fire::Fire(15, true, true, true, false, true).ID: return 1921;
+ case Fire::Fire(15, true, true, true, false, false).ID: return 1922;
+ case Fire::Fire(15, true, true, false, true, true).ID: return 1923;
+ case Fire::Fire(15, true, true, false, true, false).ID: return 1924;
+ case Fire::Fire(15, true, true, false, false, true).ID: return 1925;
+ case Fire::Fire(15, true, true, false, false, false).ID: return 1926;
+ case Fire::Fire(15, true, false, true, true, true).ID: return 1927;
+ case Fire::Fire(15, true, false, true, true, false).ID: return 1928;
+ case Fire::Fire(15, true, false, true, false, true).ID: return 1929;
+ case Fire::Fire(15, true, false, true, false, false).ID: return 1930;
+ case Fire::Fire(15, true, false, false, true, true).ID: return 1931;
+ case Fire::Fire(15, true, false, false, true, false).ID: return 1932;
+ case Fire::Fire(15, true, false, false, false, true).ID: return 1933;
+ case Fire::Fire(15, true, false, false, false, false).ID: return 1934;
+ case Fire::Fire(15, false, true, true, true, true).ID: return 1935;
+ case Fire::Fire(15, false, true, true, true, false).ID: return 1936;
+ case Fire::Fire(15, false, true, true, false, true).ID: return 1937;
+ case Fire::Fire(15, false, true, true, false, false).ID: return 1938;
+ case Fire::Fire(15, false, true, false, true, true).ID: return 1939;
+ case Fire::Fire(15, false, true, false, true, false).ID: return 1940;
+ case Fire::Fire(15, false, true, false, false, true).ID: return 1941;
+ case Fire::Fire(15, false, true, false, false, false).ID: return 1942;
+ case Fire::Fire(15, false, false, true, true, true).ID: return 1943;
+ case Fire::Fire(15, false, false, true, true, false).ID: return 1944;
+ case Fire::Fire(15, false, false, true, false, true).ID: return 1945;
+ case Fire::Fire(15, false, false, true, false, false).ID: return 1946;
+ case Fire::Fire(15, false, false, false, true, true).ID: return 1947;
+ case Fire::Fire(15, false, false, false, true, false).ID: return 1948;
+ case Fire::Fire(15, false, false, false, false, true).ID: return 1949;
+ case Fire::Fire(15, false, false, false, false, false).ID: return 1950;
+ case FireCoral::FireCoral().ID: return 9001;
+ case FireCoralBlock::FireCoralBlock().ID: return 8982;
+ case FireCoralFan::FireCoralFan().ID: return 9021;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9089;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9091;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9093;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9095;
+ case FletchingTable::FletchingTable().ID: return 11164;
+ case FlowerPot::FlowerPot().ID: return 5769;
+ case FrostedIce::FrostedIce(0).ID: return 8713;
+ case FrostedIce::FrostedIce(1).ID: return 8714;
+ case FrostedIce::FrostedIce(2).ID: return 8715;
+ case FrostedIce::FrostedIce(3).ID: return 8716;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, true).ID: return 3371;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, false).ID: return 3372;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, true).ID: return 3373;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, false).ID: return 3374;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, true).ID: return 3375;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, false).ID: return 3376;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, true).ID: return 3377;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, false).ID: return 3378;
+ case Glass::Glass().ID: return 230;
+ case GlassPane::GlassPane(true, true, true, true).ID: return 4717;
+ case GlassPane::GlassPane(true, true, true, false).ID: return 4718;
+ case GlassPane::GlassPane(true, true, false, true).ID: return 4721;
+ case GlassPane::GlassPane(true, true, false, false).ID: return 4722;
+ case GlassPane::GlassPane(true, false, true, true).ID: return 4725;
+ case GlassPane::GlassPane(true, false, true, false).ID: return 4726;
+ case GlassPane::GlassPane(true, false, false, true).ID: return 4729;
+ case GlassPane::GlassPane(true, false, false, false).ID: return 4730;
+ case GlassPane::GlassPane(false, true, true, true).ID: return 4733;
+ case GlassPane::GlassPane(false, true, true, false).ID: return 4734;
+ case GlassPane::GlassPane(false, true, false, true).ID: return 4737;
+ case GlassPane::GlassPane(false, true, false, false).ID: return 4738;
+ case GlassPane::GlassPane(false, false, true, true).ID: return 4741;
+ case GlassPane::GlassPane(false, false, true, false).ID: return 4742;
+ case GlassPane::GlassPane(false, false, false, true).ID: return 4745;
+ case GlassPane::GlassPane(false, false, false, false).ID: return 4746;
+ case Glowstone::Glowstone().ID: return 3999;
+ case GoldBlock::GoldBlock().ID: return 1426;
+ case GoldOre::GoldOre().ID: return 69;
+ case Granite::Granite().ID: return 2;
+ case GraniteSlab::GraniteSlab(GraniteSlab::Type::Top).ID: return 10302;
+ case GraniteSlab::GraniteSlab(GraniteSlab::Type::Bottom).ID: return 10304;
+ case GraniteSlab::GraniteSlab(GraniteSlab::Type::Double).ID: return 10306;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight).ID: return 9854;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft).ID: return 9856;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight).ID: return 9858;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft).ID: return 9860;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight).ID: return 9862;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight).ID: return 9864;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft).ID: return 9866;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight).ID: return 9868;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft).ID: return 9870;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight).ID: return 9872;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight).ID: return 9874;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft).ID: return 9876;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight).ID: return 9878;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft).ID: return 9880;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight).ID: return 9882;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight).ID: return 9884;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft).ID: return 9886;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight).ID: return 9888;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft).ID: return 9890;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight).ID: return 9892;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight).ID: return 9894;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft).ID: return 9896;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight).ID: return 9898;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft).ID: return 9900;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight).ID: return 9902;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight).ID: return 9904;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft).ID: return 9906;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight).ID: return 9908;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft).ID: return 9910;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight).ID: return 9912;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight).ID: return 9914;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft).ID: return 9916;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight).ID: return 9918;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft).ID: return 9920;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight).ID: return 9922;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight).ID: return 9924;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft).ID: return 9926;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight).ID: return 9928;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft).ID: return 9930;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight).ID: return 9932;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 10589;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 10590;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 10593;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 10594;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 10597;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 10598;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 10601;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 10602;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 10605;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 10606;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 10609;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 10610;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 10613;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 10614;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 10617;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 10618;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 10621;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 10622;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 10625;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 10626;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 10629;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 10630;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 10633;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 10634;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 10637;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 10638;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 10641;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 10642;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 10645;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 10646;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 10649;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 10650;
+ case Grass::Grass().ID: return 1341;
+ case GrassBlock::GrassBlock(true).ID: return 8;
+ case GrassBlock::GrassBlock(false).ID: return 9;
+ case GrassPath::GrassPath().ID: return 8687;
+ case Gravel::Gravel().ID: return 68;
+ case GrayBanner::GrayBanner(0).ID: return 7473;
+ case GrayBanner::GrayBanner(1).ID: return 7474;
+ case GrayBanner::GrayBanner(2).ID: return 7475;
+ case GrayBanner::GrayBanner(3).ID: return 7476;
+ case GrayBanner::GrayBanner(4).ID: return 7477;
+ case GrayBanner::GrayBanner(5).ID: return 7478;
+ case GrayBanner::GrayBanner(6).ID: return 7479;
+ case GrayBanner::GrayBanner(7).ID: return 7480;
+ case GrayBanner::GrayBanner(8).ID: return 7481;
+ case GrayBanner::GrayBanner(9).ID: return 7482;
+ case GrayBanner::GrayBanner(10).ID: return 7483;
+ case GrayBanner::GrayBanner(11).ID: return 7484;
+ case GrayBanner::GrayBanner(12).ID: return 7485;
+ case GrayBanner::GrayBanner(13).ID: return 7486;
+ case GrayBanner::GrayBanner(14).ID: return 7487;
+ case GrayBanner::GrayBanner(15).ID: return 7488;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Head).ID: return 1160;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Foot).ID: return 1161;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Head).ID: return 1162;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Foot).ID: return 1163;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Head).ID: return 1164;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Foot).ID: return 1165;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Head).ID: return 1166;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Foot).ID: return 1167;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Head).ID: return 1168;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Foot).ID: return 1169;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Head).ID: return 1170;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Foot).ID: return 1171;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Head).ID: return 1172;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Foot).ID: return 1173;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Head).ID: return 1174;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Foot).ID: return 1175;
+ case GrayCarpet::GrayCarpet().ID: return 7337;
+ case GrayConcrete::GrayConcrete().ID: return 8909;
+ case GrayConcretePowder::GrayConcretePowder().ID: return 8925;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8866;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8867;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8868;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8869;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8784;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8785;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8786;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8787;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8788;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8789;
+ case GrayStainedGlass::GrayStainedGlass().ID: return 4088;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, true).ID: return 6553;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, false).ID: return 6554;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, true).ID: return 6557;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, false).ID: return 6558;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, true).ID: return 6561;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, false).ID: return 6562;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, true).ID: return 6565;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, false).ID: return 6566;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, true).ID: return 6569;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, false).ID: return 6570;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, true).ID: return 6573;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, false).ID: return 6574;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, true).ID: return 6577;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, false).ID: return 6578;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, true).ID: return 6581;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, false).ID: return 6582;
+ case GrayTerracotta::GrayTerracotta().ID: return 6318;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7645;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7646;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7647;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7648;
+ case GrayWool::GrayWool().ID: return 1390;
+ case GreenBanner::GreenBanner(0).ID: return 7569;
+ case GreenBanner::GreenBanner(1).ID: return 7570;
+ case GreenBanner::GreenBanner(2).ID: return 7571;
+ case GreenBanner::GreenBanner(3).ID: return 7572;
+ case GreenBanner::GreenBanner(4).ID: return 7573;
+ case GreenBanner::GreenBanner(5).ID: return 7574;
+ case GreenBanner::GreenBanner(6).ID: return 7575;
+ case GreenBanner::GreenBanner(7).ID: return 7576;
+ case GreenBanner::GreenBanner(8).ID: return 7577;
+ case GreenBanner::GreenBanner(9).ID: return 7578;
+ case GreenBanner::GreenBanner(10).ID: return 7579;
+ case GreenBanner::GreenBanner(11).ID: return 7580;
+ case GreenBanner::GreenBanner(12).ID: return 7581;
+ case GreenBanner::GreenBanner(13).ID: return 7582;
+ case GreenBanner::GreenBanner(14).ID: return 7583;
+ case GreenBanner::GreenBanner(15).ID: return 7584;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Head).ID: return 1256;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Foot).ID: return 1257;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Head).ID: return 1258;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Foot).ID: return 1259;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Head).ID: return 1260;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Foot).ID: return 1261;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Head).ID: return 1262;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Foot).ID: return 1263;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Head).ID: return 1264;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Foot).ID: return 1265;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Head).ID: return 1266;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Foot).ID: return 1267;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Head).ID: return 1268;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Foot).ID: return 1269;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Head).ID: return 1270;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Foot).ID: return 1271;
+ case GreenCarpet::GreenCarpet().ID: return 7343;
+ case GreenConcrete::GreenConcrete().ID: return 8915;
+ case GreenConcretePowder::GreenConcretePowder().ID: return 8931;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8890;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8891;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8892;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8893;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8820;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8821;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8822;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8823;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8824;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8825;
+ case GreenStainedGlass::GreenStainedGlass().ID: return 4094;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, true).ID: return 6745;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, false).ID: return 6746;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, true).ID: return 6749;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, false).ID: return 6750;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, true).ID: return 6753;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, false).ID: return 6754;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, true).ID: return 6757;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, false).ID: return 6758;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, true).ID: return 6761;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, false).ID: return 6762;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, true).ID: return 6765;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, false).ID: return 6766;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, true).ID: return 6769;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, false).ID: return 6770;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, true).ID: return 6773;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, false).ID: return 6774;
+ case GreenTerracotta::GreenTerracotta().ID: return 6324;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7669;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7670;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7671;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7672;
+ case GreenWool::GreenWool().ID: return 1396;
+ case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZM).ID: return 11165;
+ case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZP).ID: return 11166;
+ case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XM).ID: return 11167;
+ case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XP).ID: return 11168;
+ case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZM).ID: return 11169;
+ case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZP).ID: return 11170;
+ case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XM).ID: return 11171;
+ case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XP).ID: return 11172;
+ case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM).ID: return 11173;
+ case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP).ID: return 11174;
+ case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XM).ID: return 11175;
+ case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XP).ID: return 11176;
+ case HayBale::HayBale(HayBale::Axis::X).ID: return 7327;
+ case HayBale::HayBale(HayBale::Axis::Y).ID: return 7328;
+ case HayBale::HayBale(HayBale::Axis::Z).ID: return 7329;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(0).ID: return 6126;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(1).ID: return 6127;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(2).ID: return 6128;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(3).ID: return 6129;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(4).ID: return 6130;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(5).ID: return 6131;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(6).ID: return 6132;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(7).ID: return 6133;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(8).ID: return 6134;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(9).ID: return 6135;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(10).ID: return 6136;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(11).ID: return 6137;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(12).ID: return 6138;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(13).ID: return 6139;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(14).ID: return 6140;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(15).ID: return 6141;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_YM).ID: return 6192;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZM).ID: return 6193;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZP).ID: return 6194;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XM).ID: return 6195;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XP).ID: return 6196;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_YM).ID: return 6197;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZM).ID: return 6198;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZP).ID: return 6199;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XM).ID: return 6200;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XP).ID: return 6201;
+ case HornCoral::HornCoral().ID: return 9003;
+ case HornCoralBlock::HornCoralBlock().ID: return 8983;
+ case HornCoralFan::HornCoralFan().ID: return 9023;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9097;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9099;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9101;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9103;
+ case Ice::Ice().ID: return 3927;
+ case InfestedChiseledStoneBricks::InfestedChiseledStoneBricks().ID: return 4490;
+ case InfestedCobblestone::InfestedCobblestone().ID: return 4486;
+ case InfestedCrackedStoneBricks::InfestedCrackedStoneBricks().ID: return 4489;
+ case InfestedMossyStoneBricks::InfestedMossyStoneBricks().ID: return 4488;
+ case InfestedStone::InfestedStone().ID: return 4485;
+ case InfestedStoneBricks::InfestedStoneBricks().ID: return 4487;
+ case IronBars::IronBars(true, true, true, true).ID: return 4685;
+ case IronBars::IronBars(true, true, true, false).ID: return 4686;
+ case IronBars::IronBars(true, true, false, true).ID: return 4689;
+ case IronBars::IronBars(true, true, false, false).ID: return 4690;
+ case IronBars::IronBars(true, false, true, true).ID: return 4693;
+ case IronBars::IronBars(true, false, true, false).ID: return 4694;
+ case IronBars::IronBars(true, false, false, true).ID: return 4697;
+ case IronBars::IronBars(true, false, false, false).ID: return 4698;
+ case IronBars::IronBars(false, true, true, true).ID: return 4701;
+ case IronBars::IronBars(false, true, true, false).ID: return 4702;
+ case IronBars::IronBars(false, true, false, true).ID: return 4705;
+ case IronBars::IronBars(false, true, false, false).ID: return 4706;
+ case IronBars::IronBars(false, false, true, true).ID: return 4709;
+ case IronBars::IronBars(false, false, true, false).ID: return 4710;
+ case IronBars::IronBars(false, false, false, true).ID: return 4713;
+ case IronBars::IronBars(false, false, false, false).ID: return 4714;
+ case IronBlock::IronBlock().ID: return 1427;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3807;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3808;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3809;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3810;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3811;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3812;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3813;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3814;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3815;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3816;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3817;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3818;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3819;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3820;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3821;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3822;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3823;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3824;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3825;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3826;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3827;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3828;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3829;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3830;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3831;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3832;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3833;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3834;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3835;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3836;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3837;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3838;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3839;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3840;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3841;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3842;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3843;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3844;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3845;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3846;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3847;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3848;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3849;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3850;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3851;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3852;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3853;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3854;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3855;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3856;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3857;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3858;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3859;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3860;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3861;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3862;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3863;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3864;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3865;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3866;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3867;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3868;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3869;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3870;
+ case IronOre::IronOre().ID: return 70;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, true).ID: return 7002;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, false).ID: return 7004;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, true).ID: return 7006;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, false).ID: return 7008;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, true).ID: return 7010;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, false).ID: return 7012;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, true).ID: return 7014;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, false).ID: return 7016;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, true).ID: return 7018;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, false).ID: return 7020;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, true).ID: return 7022;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, false).ID: return 7024;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, true).ID: return 7026;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, false).ID: return 7028;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, true).ID: return 7030;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, false).ID: return 7032;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, true).ID: return 7034;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, false).ID: return 7036;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, true).ID: return 7038;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, false).ID: return 7040;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, true).ID: return 7042;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, false).ID: return 7044;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, true).ID: return 7046;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, false).ID: return 7048;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, true).ID: return 7050;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, false).ID: return 7052;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, true).ID: return 7054;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, false).ID: return 7056;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, true).ID: return 7058;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, false).ID: return 7060;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, true).ID: return 7062;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, false).ID: return 7064;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZM).ID: return 4006;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZP).ID: return 4007;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XM).ID: return 4008;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XP).ID: return 4009;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::NorthUp).ID: return 11256;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::EastUp).ID: return 11257;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::SouthUp).ID: return 11258;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::WestUp).ID: return 11259;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::UpSouth).ID: return 11260;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::DownSouth).ID: return 11261;
+ case Jukebox::Jukebox(true).ID: return 3962;
+ case Jukebox::Jukebox(false).ID: return 3963;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5882;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5883;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5884;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5885;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5886;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5887;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5888;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5889;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5890;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5891;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5892;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5893;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5894;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5895;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5896;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5897;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5898;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5899;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5900;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5901;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5902;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5903;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5904;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5905;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 8330;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 8331;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 8332;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 8333;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 8334;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 8335;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 8336;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 8337;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 8338;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 8339;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 8340;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 8341;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 8342;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 8343;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 8344;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 8345;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 8346;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 8347;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 8348;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 8349;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 8350;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 8351;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 8352;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 8353;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 8354;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 8355;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 8356;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 8357;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 8358;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 8359;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 8360;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 8361;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 8362;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 8363;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 8364;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 8365;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 8366;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 8367;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 8368;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 8369;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 8370;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 8371;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 8372;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 8373;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 8374;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 8375;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 8376;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 8377;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 8378;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 8379;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 8380;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 8381;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 8382;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 8383;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 8384;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 8385;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 8386;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 8387;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 8388;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 8389;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 8390;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 8391;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 8392;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 8393;
+ case JungleFence::JungleFence(true, true, true, true).ID: return 8108;
+ case JungleFence::JungleFence(true, true, true, false).ID: return 8109;
+ case JungleFence::JungleFence(true, true, false, true).ID: return 8112;
+ case JungleFence::JungleFence(true, true, false, false).ID: return 8113;
+ case JungleFence::JungleFence(true, false, true, true).ID: return 8116;
+ case JungleFence::JungleFence(true, false, true, false).ID: return 8117;
+ case JungleFence::JungleFence(true, false, false, true).ID: return 8120;
+ case JungleFence::JungleFence(true, false, false, false).ID: return 8121;
+ case JungleFence::JungleFence(false, true, true, true).ID: return 8124;
+ case JungleFence::JungleFence(false, true, true, false).ID: return 8125;
+ case JungleFence::JungleFence(false, true, false, true).ID: return 8128;
+ case JungleFence::JungleFence(false, true, false, false).ID: return 8129;
+ case JungleFence::JungleFence(false, false, true, true).ID: return 8132;
+ case JungleFence::JungleFence(false, false, true, false).ID: return 8133;
+ case JungleFence::JungleFence(false, false, false, true).ID: return 8136;
+ case JungleFence::JungleFence(false, false, false, false).ID: return 8137;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7946;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7947;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7948;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7949;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7950;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7951;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7952;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7953;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7954;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7955;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7956;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7957;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7958;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7959;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7960;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7961;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7962;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7963;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7964;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7965;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7966;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7967;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7968;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7969;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7970;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7971;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7972;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7973;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7974;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7975;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7976;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7977;
+ case JungleLeaves::JungleLeaves(1, true).ID: return 186;
+ case JungleLeaves::JungleLeaves(1, false).ID: return 187;
+ case JungleLeaves::JungleLeaves(2, true).ID: return 188;
+ case JungleLeaves::JungleLeaves(2, false).ID: return 189;
+ case JungleLeaves::JungleLeaves(3, true).ID: return 190;
+ case JungleLeaves::JungleLeaves(3, false).ID: return 191;
+ case JungleLeaves::JungleLeaves(4, true).ID: return 192;
+ case JungleLeaves::JungleLeaves(4, false).ID: return 193;
+ case JungleLeaves::JungleLeaves(5, true).ID: return 194;
+ case JungleLeaves::JungleLeaves(5, false).ID: return 195;
+ case JungleLeaves::JungleLeaves(6, true).ID: return 196;
+ case JungleLeaves::JungleLeaves(6, false).ID: return 197;
+ case JungleLeaves::JungleLeaves(7, true).ID: return 198;
+ case JungleLeaves::JungleLeaves(7, false).ID: return 199;
+ case JungleLog::JungleLog(JungleLog::Axis::X).ID: return 81;
+ case JungleLog::JungleLog(JungleLog::Axis::Y).ID: return 82;
+ case JungleLog::JungleLog(JungleLog::Axis::Z).ID: return 83;
+ case JunglePlanks::JunglePlanks().ID: return 18;
+ case JunglePressurePlate::JunglePressurePlate(true).ID: return 3877;
+ case JunglePressurePlate::JunglePressurePlate(false).ID: return 3878;
+ case JungleSapling::JungleSapling(0).ID: return 27;
+ case JungleSapling::JungleSapling(1).ID: return 28;
+ case JungleSign::JungleSign(0).ID: return 3508;
+ case JungleSign::JungleSign(1).ID: return 3510;
+ case JungleSign::JungleSign(2).ID: return 3512;
+ case JungleSign::JungleSign(3).ID: return 3514;
+ case JungleSign::JungleSign(4).ID: return 3516;
+ case JungleSign::JungleSign(5).ID: return 3518;
+ case JungleSign::JungleSign(6).ID: return 3520;
+ case JungleSign::JungleSign(7).ID: return 3522;
+ case JungleSign::JungleSign(8).ID: return 3524;
+ case JungleSign::JungleSign(9).ID: return 3526;
+ case JungleSign::JungleSign(10).ID: return 3528;
+ case JungleSign::JungleSign(11).ID: return 3530;
+ case JungleSign::JungleSign(12).ID: return 3532;
+ case JungleSign::JungleSign(13).ID: return 3534;
+ case JungleSign::JungleSign(14).ID: return 3536;
+ case JungleSign::JungleSign(15).ID: return 3538;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Top).ID: return 7783;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Bottom).ID: return 7785;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Double).ID: return 7787;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5549;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5551;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5553;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5555;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5557;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5559;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5561;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5563;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5565;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5567;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5569;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5571;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5573;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5575;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5577;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5579;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5581;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5583;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5585;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5587;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5589;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5591;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5593;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5595;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5597;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5599;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5601;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5603;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5605;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5607;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5609;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5611;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5613;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5615;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5617;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5619;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5621;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5623;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5625;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5627;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, true).ID: return 4290;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, false).ID: return 4292;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, true).ID: return 4294;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, false).ID: return 4296;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, true).ID: return 4298;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, false).ID: return 4300;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, true).ID: return 4302;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, false).ID: return 4304;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, true).ID: return 4306;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, false).ID: return 4308;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, true).ID: return 4310;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, false).ID: return 4312;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, true).ID: return 4314;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, false).ID: return 4316;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, true).ID: return 4318;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, false).ID: return 4320;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, true).ID: return 4322;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, false).ID: return 4324;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, true).ID: return 4326;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, false).ID: return 4328;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, true).ID: return 4330;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, false).ID: return 4332;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, true).ID: return 4334;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, false).ID: return 4336;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, true).ID: return 4338;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, false).ID: return 4340;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, true).ID: return 4342;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, false).ID: return 4344;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, true).ID: return 4346;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, false).ID: return 4348;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, true).ID: return 4350;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, false).ID: return 4352;
+ case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3766;
+ case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3768;
+ case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3770;
+ case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3772;
+ case JungleWood::JungleWood(JungleWood::Axis::X).ID: return 117;
+ case JungleWood::JungleWood(JungleWood::Axis::Y).ID: return 118;
+ case JungleWood::JungleWood(JungleWood::Axis::Z).ID: return 119;
+ case Kelp::Kelp(0).ID: return 8934;
+ case Kelp::Kelp(1).ID: return 8935;
+ case Kelp::Kelp(2).ID: return 8936;
+ case Kelp::Kelp(3).ID: return 8937;
+ case Kelp::Kelp(4).ID: return 8938;
+ case Kelp::Kelp(5).ID: return 8939;
+ case Kelp::Kelp(6).ID: return 8940;
+ case Kelp::Kelp(7).ID: return 8941;
+ case Kelp::Kelp(8).ID: return 8942;
+ case Kelp::Kelp(9).ID: return 8943;
+ case Kelp::Kelp(10).ID: return 8944;
+ case Kelp::Kelp(11).ID: return 8945;
+ case Kelp::Kelp(12).ID: return 8946;
+ case Kelp::Kelp(13).ID: return 8947;
+ case Kelp::Kelp(14).ID: return 8948;
+ case Kelp::Kelp(15).ID: return 8949;
+ case Kelp::Kelp(16).ID: return 8950;
+ case Kelp::Kelp(17).ID: return 8951;
+ case Kelp::Kelp(18).ID: return 8952;
+ case Kelp::Kelp(19).ID: return 8953;
+ case Kelp::Kelp(20).ID: return 8954;
+ case Kelp::Kelp(21).ID: return 8955;
+ case Kelp::Kelp(22).ID: return 8956;
+ case Kelp::Kelp(23).ID: return 8957;
+ case Kelp::Kelp(24).ID: return 8958;
+ case Kelp::Kelp(25).ID: return 8959;
+ case KelpPlant::KelpPlant().ID: return 8960;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZM).ID: return 3636;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZP).ID: return 3638;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_XM).ID: return 3640;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_XP).ID: return 3642;
+ case Lantern::Lantern(true).ID: return 11214;
+ case Lantern::Lantern(false).ID: return 11215;
+ case LapisBlock::LapisBlock().ID: return 232;
+ case LapisOre::LapisOre().ID: return 231;
+ case LargeFern::LargeFern(LargeFern::Half::Upper).ID: return 7359;
+ case LargeFern::LargeFern(LargeFern::Half::Lower).ID: return 7360;
+ case Lava::Lava(0).ID: return 50;
+ case Lava::Lava(1).ID: return 51;
+ case Lava::Lava(2).ID: return 52;
+ case Lava::Lava(3).ID: return 53;
+ case Lava::Lava(4).ID: return 54;
+ case Lava::Lava(5).ID: return 55;
+ case Lava::Lava(6).ID: return 56;
+ case Lava::Lava(7).ID: return 57;
+ case Lava::Lava(8).ID: return 58;
+ case Lava::Lava(9).ID: return 59;
+ case Lava::Lava(10).ID: return 60;
+ case Lava::Lava(11).ID: return 61;
+ case Lava::Lava(12).ID: return 62;
+ case Lava::Lava(13).ID: return 63;
+ case Lava::Lava(14).ID: return 64;
+ case Lava::Lava(15).ID: return 65;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 11177;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 11178;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 11179;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 11180;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 11181;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 11182;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 11183;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 11184;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, true).ID: return 11185;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, false).ID: return 11186;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, true).ID: return 11187;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, false).ID: return 11188;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, true).ID: return 11189;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, false).ID: return 11190;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, true).ID: return 11191;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, false).ID: return 11192;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3781;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3782;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3783;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3784;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 3785;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 3786;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 3787;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 3788;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3789;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3790;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3791;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3792;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 3793;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 3794;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 3795;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 3796;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3797;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3798;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3799;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3800;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 3801;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 3802;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 3803;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 3804;
+ case LightBlueBanner::LightBlueBanner(0).ID: return 7409;
+ case LightBlueBanner::LightBlueBanner(1).ID: return 7410;
+ case LightBlueBanner::LightBlueBanner(2).ID: return 7411;
+ case LightBlueBanner::LightBlueBanner(3).ID: return 7412;
+ case LightBlueBanner::LightBlueBanner(4).ID: return 7413;
+ case LightBlueBanner::LightBlueBanner(5).ID: return 7414;
+ case LightBlueBanner::LightBlueBanner(6).ID: return 7415;
+ case LightBlueBanner::LightBlueBanner(7).ID: return 7416;
+ case LightBlueBanner::LightBlueBanner(8).ID: return 7417;
+ case LightBlueBanner::LightBlueBanner(9).ID: return 7418;
+ case LightBlueBanner::LightBlueBanner(10).ID: return 7419;
+ case LightBlueBanner::LightBlueBanner(11).ID: return 7420;
+ case LightBlueBanner::LightBlueBanner(12).ID: return 7421;
+ case LightBlueBanner::LightBlueBanner(13).ID: return 7422;
+ case LightBlueBanner::LightBlueBanner(14).ID: return 7423;
+ case LightBlueBanner::LightBlueBanner(15).ID: return 7424;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Head).ID: return 1096;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Foot).ID: return 1097;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Head).ID: return 1098;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Foot).ID: return 1099;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Head).ID: return 1100;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Foot).ID: return 1101;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Head).ID: return 1102;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Foot).ID: return 1103;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Head).ID: return 1104;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Foot).ID: return 1105;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Head).ID: return 1106;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Foot).ID: return 1107;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Head).ID: return 1108;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Foot).ID: return 1109;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Head).ID: return 1110;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Foot).ID: return 1111;
+ case LightBlueCarpet::LightBlueCarpet().ID: return 7333;
+ case LightBlueConcrete::LightBlueConcrete().ID: return 8905;
+ case LightBlueConcretePowder::LightBlueConcretePowder().ID: return 8921;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8850;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8851;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8852;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8853;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8760;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8761;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8762;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8763;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8764;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8765;
+ case LightBlueStainedGlass::LightBlueStainedGlass().ID: return 4084;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, true).ID: return 6425;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, false).ID: return 6426;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, true).ID: return 6429;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, false).ID: return 6430;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, true).ID: return 6433;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, false).ID: return 6434;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, true).ID: return 6437;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, false).ID: return 6438;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, true).ID: return 6441;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, false).ID: return 6442;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, true).ID: return 6445;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, false).ID: return 6446;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, true).ID: return 6449;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, false).ID: return 6450;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, true).ID: return 6453;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, false).ID: return 6454;
+ case LightBlueTerracotta::LightBlueTerracotta().ID: return 6314;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7629;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7630;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7631;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7632;
+ case LightBlueWool::LightBlueWool().ID: return 1386;
+ case LightGrayBanner::LightGrayBanner(0).ID: return 7489;
+ case LightGrayBanner::LightGrayBanner(1).ID: return 7490;
+ case LightGrayBanner::LightGrayBanner(2).ID: return 7491;
+ case LightGrayBanner::LightGrayBanner(3).ID: return 7492;
+ case LightGrayBanner::LightGrayBanner(4).ID: return 7493;
+ case LightGrayBanner::LightGrayBanner(5).ID: return 7494;
+ case LightGrayBanner::LightGrayBanner(6).ID: return 7495;
+ case LightGrayBanner::LightGrayBanner(7).ID: return 7496;
+ case LightGrayBanner::LightGrayBanner(8).ID: return 7497;
+ case LightGrayBanner::LightGrayBanner(9).ID: return 7498;
+ case LightGrayBanner::LightGrayBanner(10).ID: return 7499;
+ case LightGrayBanner::LightGrayBanner(11).ID: return 7500;
+ case LightGrayBanner::LightGrayBanner(12).ID: return 7501;
+ case LightGrayBanner::LightGrayBanner(13).ID: return 7502;
+ case LightGrayBanner::LightGrayBanner(14).ID: return 7503;
+ case LightGrayBanner::LightGrayBanner(15).ID: return 7504;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Head).ID: return 1176;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Foot).ID: return 1177;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Head).ID: return 1178;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Foot).ID: return 1179;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Head).ID: return 1180;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Foot).ID: return 1181;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Head).ID: return 1182;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Foot).ID: return 1183;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Head).ID: return 1184;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Foot).ID: return 1185;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Head).ID: return 1186;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Foot).ID: return 1187;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Head).ID: return 1188;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Foot).ID: return 1189;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Head).ID: return 1190;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Foot).ID: return 1191;
+ case LightGrayCarpet::LightGrayCarpet().ID: return 7338;
+ case LightGrayConcrete::LightGrayConcrete().ID: return 8910;
+ case LightGrayConcretePowder::LightGrayConcretePowder().ID: return 8926;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8870;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8871;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8872;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8873;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8790;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8791;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8792;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8793;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8794;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8795;
+ case LightGrayStainedGlass::LightGrayStainedGlass().ID: return 4089;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, true).ID: return 6585;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, false).ID: return 6586;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, true).ID: return 6589;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, false).ID: return 6590;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, true).ID: return 6593;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, false).ID: return 6594;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, true).ID: return 6597;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, false).ID: return 6598;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, true).ID: return 6601;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, false).ID: return 6602;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, true).ID: return 6605;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, false).ID: return 6606;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, true).ID: return 6609;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, false).ID: return 6610;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, true).ID: return 6613;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, false).ID: return 6614;
+ case LightGrayTerracotta::LightGrayTerracotta().ID: return 6319;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7649;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7650;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7651;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7652;
+ case LightGrayWool::LightGrayWool().ID: return 1391;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(0).ID: return 6110;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(1).ID: return 6111;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(2).ID: return 6112;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(3).ID: return 6113;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(4).ID: return 6114;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(5).ID: return 6115;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(6).ID: return 6116;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(7).ID: return 6117;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(8).ID: return 6118;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(9).ID: return 6119;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(10).ID: return 6120;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(11).ID: return 6121;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(12).ID: return 6122;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(13).ID: return 6123;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(14).ID: return 6124;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(15).ID: return 6125;
+ case Lilac::Lilac(Lilac::Half::Upper).ID: return 7351;
+ case Lilac::Lilac(Lilac::Half::Lower).ID: return 7352;
+ case LilyOfTheValley::LilyOfTheValley().ID: return 1423;
+ case LilyPad::LilyPad().ID: return 4998;
+ case LimeBanner::LimeBanner(0).ID: return 7441;
+ case LimeBanner::LimeBanner(1).ID: return 7442;
+ case LimeBanner::LimeBanner(2).ID: return 7443;
+ case LimeBanner::LimeBanner(3).ID: return 7444;
+ case LimeBanner::LimeBanner(4).ID: return 7445;
+ case LimeBanner::LimeBanner(5).ID: return 7446;
+ case LimeBanner::LimeBanner(6).ID: return 7447;
+ case LimeBanner::LimeBanner(7).ID: return 7448;
+ case LimeBanner::LimeBanner(8).ID: return 7449;
+ case LimeBanner::LimeBanner(9).ID: return 7450;
+ case LimeBanner::LimeBanner(10).ID: return 7451;
+ case LimeBanner::LimeBanner(11).ID: return 7452;
+ case LimeBanner::LimeBanner(12).ID: return 7453;
+ case LimeBanner::LimeBanner(13).ID: return 7454;
+ case LimeBanner::LimeBanner(14).ID: return 7455;
+ case LimeBanner::LimeBanner(15).ID: return 7456;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Head).ID: return 1128;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Foot).ID: return 1129;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Head).ID: return 1130;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Foot).ID: return 1131;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Head).ID: return 1132;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Foot).ID: return 1133;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Head).ID: return 1134;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Foot).ID: return 1135;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Head).ID: return 1136;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Foot).ID: return 1137;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Head).ID: return 1138;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Foot).ID: return 1139;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Head).ID: return 1140;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Foot).ID: return 1141;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Head).ID: return 1142;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Foot).ID: return 1143;
+ case LimeCarpet::LimeCarpet().ID: return 7335;
+ case LimeConcrete::LimeConcrete().ID: return 8907;
+ case LimeConcretePowder::LimeConcretePowder().ID: return 8923;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8858;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8859;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8860;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8861;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8772;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8773;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8774;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8775;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8776;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8777;
+ case LimeStainedGlass::LimeStainedGlass().ID: return 4086;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, true).ID: return 6489;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, false).ID: return 6490;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, true).ID: return 6493;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, false).ID: return 6494;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, true).ID: return 6497;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, false).ID: return 6498;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, true).ID: return 6501;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, false).ID: return 6502;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, true).ID: return 6505;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, false).ID: return 6506;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, true).ID: return 6509;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, false).ID: return 6510;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, true).ID: return 6513;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, false).ID: return 6514;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, true).ID: return 6517;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, false).ID: return 6518;
+ case LimeTerracotta::LimeTerracotta().ID: return 6316;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7637;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7638;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7639;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7640;
+ case LimeWool::LimeWool().ID: return 1388;
+ case Loom::Loom(eBlockFace::BLOCK_FACE_ZM).ID: return 11131;
+ case Loom::Loom(eBlockFace::BLOCK_FACE_ZP).ID: return 11132;
+ case Loom::Loom(eBlockFace::BLOCK_FACE_XM).ID: return 11133;
+ case Loom::Loom(eBlockFace::BLOCK_FACE_XP).ID: return 11134;
+ case MagentaBanner::MagentaBanner(0).ID: return 7393;
+ case MagentaBanner::MagentaBanner(1).ID: return 7394;
+ case MagentaBanner::MagentaBanner(2).ID: return 7395;
+ case MagentaBanner::MagentaBanner(3).ID: return 7396;
+ case MagentaBanner::MagentaBanner(4).ID: return 7397;
+ case MagentaBanner::MagentaBanner(5).ID: return 7398;
+ case MagentaBanner::MagentaBanner(6).ID: return 7399;
+ case MagentaBanner::MagentaBanner(7).ID: return 7400;
+ case MagentaBanner::MagentaBanner(8).ID: return 7401;
+ case MagentaBanner::MagentaBanner(9).ID: return 7402;
+ case MagentaBanner::MagentaBanner(10).ID: return 7403;
+ case MagentaBanner::MagentaBanner(11).ID: return 7404;
+ case MagentaBanner::MagentaBanner(12).ID: return 7405;
+ case MagentaBanner::MagentaBanner(13).ID: return 7406;
+ case MagentaBanner::MagentaBanner(14).ID: return 7407;
+ case MagentaBanner::MagentaBanner(15).ID: return 7408;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Head).ID: return 1080;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Foot).ID: return 1081;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Head).ID: return 1082;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Foot).ID: return 1083;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Head).ID: return 1084;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Foot).ID: return 1085;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Head).ID: return 1086;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Foot).ID: return 1087;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Head).ID: return 1088;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Foot).ID: return 1089;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Head).ID: return 1090;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Foot).ID: return 1091;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Head).ID: return 1092;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Foot).ID: return 1093;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Head).ID: return 1094;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Foot).ID: return 1095;
+ case MagentaCarpet::MagentaCarpet().ID: return 7332;
+ case MagentaConcrete::MagentaConcrete().ID: return 8904;
+ case MagentaConcretePowder::MagentaConcretePowder().ID: return 8920;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8846;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8847;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8848;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8849;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8754;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8755;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8756;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8757;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8758;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8759;
+ case MagentaStainedGlass::MagentaStainedGlass().ID: return 4083;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, true).ID: return 6393;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, false).ID: return 6394;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, true).ID: return 6397;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, false).ID: return 6398;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, true).ID: return 6401;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, false).ID: return 6402;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, true).ID: return 6405;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, false).ID: return 6406;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, true).ID: return 6409;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, false).ID: return 6410;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, true).ID: return 6413;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, false).ID: return 6414;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, true).ID: return 6417;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, false).ID: return 6418;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, true).ID: return 6421;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, false).ID: return 6422;
+ case MagentaTerracotta::MagentaTerracotta().ID: return 6313;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7625;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7626;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7627;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7628;
+ case MagentaWool::MagentaWool().ID: return 1385;
+ case MagmaBlock::MagmaBlock().ID: return 8717;
+ case Melon::Melon().ID: return 4747;
+ case MelonStem::MelonStem(0).ID: return 4764;
+ case MelonStem::MelonStem(1).ID: return 4765;
+ case MelonStem::MelonStem(2).ID: return 4766;
+ case MelonStem::MelonStem(3).ID: return 4767;
+ case MelonStem::MelonStem(4).ID: return 4768;
+ case MelonStem::MelonStem(5).ID: return 4769;
+ case MelonStem::MelonStem(6).ID: return 4770;
+ case MelonStem::MelonStem(7).ID: return 4771;
+ case MossyCobblestone::MossyCobblestone().ID: return 1432;
+ case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Top).ID: return 10278;
+ case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Bottom).ID: return 10280;
+ case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Double).ID: return 10282;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight).ID: return 9454;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9456;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9458;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9460;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9462;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight).ID: return 9464;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9466;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9468;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9470;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9472;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight).ID: return 9474;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9476;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9478;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9480;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9482;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight).ID: return 9484;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9486;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9488;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9490;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9492;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight).ID: return 9494;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9496;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9498;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9500;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9502;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight).ID: return 9504;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9506;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9508;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9510;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9512;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight).ID: return 9514;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9516;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9518;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9520;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9522;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight).ID: return 9524;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9526;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9528;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9530;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9532;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5707;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5708;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5711;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5712;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5715;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5716;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5719;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5720;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5723;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5724;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5727;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5728;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5731;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5732;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5735;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5736;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5739;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5740;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5743;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5744;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5747;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5748;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5751;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5752;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5755;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5756;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5759;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5760;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5763;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5764;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5767;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5768;
+ case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Top).ID: return 10266;
+ case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Bottom).ID: return 10268;
+ case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Double).ID: return 10270;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight).ID: return 9294;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9296;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9298;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9300;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9302;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight).ID: return 9304;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9306;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9308;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9310;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9312;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight).ID: return 9314;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9316;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9318;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9320;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9322;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight).ID: return 9324;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9326;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9328;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9330;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9332;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight).ID: return 9334;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9336;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9338;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9340;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9342;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight).ID: return 9344;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9346;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9348;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9350;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9352;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight).ID: return 9354;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9356;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9358;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9360;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9362;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight).ID: return 9364;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9366;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9368;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9370;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9372;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 10525;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 10526;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 10529;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 10530;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 10533;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 10534;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 10537;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 10538;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 10541;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 10542;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 10545;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 10546;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 10549;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 10550;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 10553;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 10554;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 10557;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 10558;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 10561;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 10562;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 10565;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 10566;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 10569;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 10570;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 10573;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 10574;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 10577;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 10578;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 10581;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 10582;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 10585;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 10586;
+ case MossyStoneBricks::MossyStoneBricks().ID: return 4482;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Normal).ID: return 1399;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Sticky).ID: return 1400;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Normal).ID: return 1401;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Sticky).ID: return 1402;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Normal).ID: return 1403;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Sticky).ID: return 1404;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Normal).ID: return 1405;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Sticky).ID: return 1406;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Normal).ID: return 1407;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Sticky).ID: return 1408;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Normal).ID: return 1409;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Sticky).ID: return 1410;
+ case MushroomStem::MushroomStem(true, true, true, true, true, true).ID: return 4619;
+ case MushroomStem::MushroomStem(true, true, true, true, true, false).ID: return 4620;
+ case MushroomStem::MushroomStem(true, true, true, true, false, true).ID: return 4621;
+ case MushroomStem::MushroomStem(true, true, true, true, false, false).ID: return 4622;
+ case MushroomStem::MushroomStem(true, true, true, false, true, true).ID: return 4623;
+ case MushroomStem::MushroomStem(true, true, true, false, true, false).ID: return 4624;
+ case MushroomStem::MushroomStem(true, true, true, false, false, true).ID: return 4625;
+ case MushroomStem::MushroomStem(true, true, true, false, false, false).ID: return 4626;
+ case MushroomStem::MushroomStem(true, true, false, true, true, true).ID: return 4627;
+ case MushroomStem::MushroomStem(true, true, false, true, true, false).ID: return 4628;
+ case MushroomStem::MushroomStem(true, true, false, true, false, true).ID: return 4629;
+ case MushroomStem::MushroomStem(true, true, false, true, false, false).ID: return 4630;
+ case MushroomStem::MushroomStem(true, true, false, false, true, true).ID: return 4631;
+ case MushroomStem::MushroomStem(true, true, false, false, true, false).ID: return 4632;
+ case MushroomStem::MushroomStem(true, true, false, false, false, true).ID: return 4633;
+ case MushroomStem::MushroomStem(true, true, false, false, false, false).ID: return 4634;
+ case MushroomStem::MushroomStem(true, false, true, true, true, true).ID: return 4635;
+ case MushroomStem::MushroomStem(true, false, true, true, true, false).ID: return 4636;
+ case MushroomStem::MushroomStem(true, false, true, true, false, true).ID: return 4637;
+ case MushroomStem::MushroomStem(true, false, true, true, false, false).ID: return 4638;
+ case MushroomStem::MushroomStem(true, false, true, false, true, true).ID: return 4639;
+ case MushroomStem::MushroomStem(true, false, true, false, true, false).ID: return 4640;
+ case MushroomStem::MushroomStem(true, false, true, false, false, true).ID: return 4641;
+ case MushroomStem::MushroomStem(true, false, true, false, false, false).ID: return 4642;
+ case MushroomStem::MushroomStem(true, false, false, true, true, true).ID: return 4643;
+ case MushroomStem::MushroomStem(true, false, false, true, true, false).ID: return 4644;
+ case MushroomStem::MushroomStem(true, false, false, true, false, true).ID: return 4645;
+ case MushroomStem::MushroomStem(true, false, false, true, false, false).ID: return 4646;
+ case MushroomStem::MushroomStem(true, false, false, false, true, true).ID: return 4647;
+ case MushroomStem::MushroomStem(true, false, false, false, true, false).ID: return 4648;
+ case MushroomStem::MushroomStem(true, false, false, false, false, true).ID: return 4649;
+ case MushroomStem::MushroomStem(true, false, false, false, false, false).ID: return 4650;
+ case MushroomStem::MushroomStem(false, true, true, true, true, true).ID: return 4651;
+ case MushroomStem::MushroomStem(false, true, true, true, true, false).ID: return 4652;
+ case MushroomStem::MushroomStem(false, true, true, true, false, true).ID: return 4653;
+ case MushroomStem::MushroomStem(false, true, true, true, false, false).ID: return 4654;
+ case MushroomStem::MushroomStem(false, true, true, false, true, true).ID: return 4655;
+ case MushroomStem::MushroomStem(false, true, true, false, true, false).ID: return 4656;
+ case MushroomStem::MushroomStem(false, true, true, false, false, true).ID: return 4657;
+ case MushroomStem::MushroomStem(false, true, true, false, false, false).ID: return 4658;
+ case MushroomStem::MushroomStem(false, true, false, true, true, true).ID: return 4659;
+ case MushroomStem::MushroomStem(false, true, false, true, true, false).ID: return 4660;
+ case MushroomStem::MushroomStem(false, true, false, true, false, true).ID: return 4661;
+ case MushroomStem::MushroomStem(false, true, false, true, false, false).ID: return 4662;
+ case MushroomStem::MushroomStem(false, true, false, false, true, true).ID: return 4663;
+ case MushroomStem::MushroomStem(false, true, false, false, true, false).ID: return 4664;
+ case MushroomStem::MushroomStem(false, true, false, false, false, true).ID: return 4665;
+ case MushroomStem::MushroomStem(false, true, false, false, false, false).ID: return 4666;
+ case MushroomStem::MushroomStem(false, false, true, true, true, true).ID: return 4667;
+ case MushroomStem::MushroomStem(false, false, true, true, true, false).ID: return 4668;
+ case MushroomStem::MushroomStem(false, false, true, true, false, true).ID: return 4669;
+ case MushroomStem::MushroomStem(false, false, true, true, false, false).ID: return 4670;
+ case MushroomStem::MushroomStem(false, false, true, false, true, true).ID: return 4671;
+ case MushroomStem::MushroomStem(false, false, true, false, true, false).ID: return 4672;
+ case MushroomStem::MushroomStem(false, false, true, false, false, true).ID: return 4673;
+ case MushroomStem::MushroomStem(false, false, true, false, false, false).ID: return 4674;
+ case MushroomStem::MushroomStem(false, false, false, true, true, true).ID: return 4675;
+ case MushroomStem::MushroomStem(false, false, false, true, true, false).ID: return 4676;
+ case MushroomStem::MushroomStem(false, false, false, true, false, true).ID: return 4677;
+ case MushroomStem::MushroomStem(false, false, false, true, false, false).ID: return 4678;
+ case MushroomStem::MushroomStem(false, false, false, false, true, true).ID: return 4679;
+ case MushroomStem::MushroomStem(false, false, false, false, true, false).ID: return 4680;
+ case MushroomStem::MushroomStem(false, false, false, false, false, true).ID: return 4681;
+ case MushroomStem::MushroomStem(false, false, false, false, false, false).ID: return 4682;
+ case Mycelium::Mycelium(true).ID: return 4996;
+ case Mycelium::Mycelium(false).ID: return 4997;
+ case NetherBrickFence::NetherBrickFence(true, true, true, true).ID: return 5002;
+ case NetherBrickFence::NetherBrickFence(true, true, true, false).ID: return 5003;
+ case NetherBrickFence::NetherBrickFence(true, true, false, true).ID: return 5006;
+ case NetherBrickFence::NetherBrickFence(true, true, false, false).ID: return 5007;
+ case NetherBrickFence::NetherBrickFence(true, false, true, true).ID: return 5010;
+ case NetherBrickFence::NetherBrickFence(true, false, true, false).ID: return 5011;
+ case NetherBrickFence::NetherBrickFence(true, false, false, true).ID: return 5014;
+ case NetherBrickFence::NetherBrickFence(true, false, false, false).ID: return 5015;
+ case NetherBrickFence::NetherBrickFence(false, true, true, true).ID: return 5018;
+ case NetherBrickFence::NetherBrickFence(false, true, true, false).ID: return 5019;
+ case NetherBrickFence::NetherBrickFence(false, true, false, true).ID: return 5022;
+ case NetherBrickFence::NetherBrickFence(false, true, false, false).ID: return 5023;
+ case NetherBrickFence::NetherBrickFence(false, false, true, true).ID: return 5026;
+ case NetherBrickFence::NetherBrickFence(false, false, true, false).ID: return 5027;
+ case NetherBrickFence::NetherBrickFence(false, false, false, true).ID: return 5030;
+ case NetherBrickFence::NetherBrickFence(false, false, false, false).ID: return 5031;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Top).ID: return 7849;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Bottom).ID: return 7851;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double).ID: return 7853;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 5033;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 5035;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 5037;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 5039;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 5041;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 5043;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 5045;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 5047;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 5049;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 5051;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 5053;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 5055;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 5057;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 5059;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 5061;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 5063;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 5065;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 5067;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 5069;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 5071;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 5073;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 5075;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 5077;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 5079;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 5081;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 5083;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 5085;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 5087;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 5089;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 5091;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 5093;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 5095;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 5097;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 5099;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 5101;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 5103;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 5105;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 5107;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 5109;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 5111;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 10717;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 10718;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 10721;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 10722;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 10725;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 10726;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 10729;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 10730;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 10733;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 10734;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 10737;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 10738;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 10741;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 10742;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 10745;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 10746;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 10749;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 10750;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 10753;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 10754;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 10757;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 10758;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 10761;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 10762;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 10765;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 10766;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 10769;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 10770;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 10773;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 10774;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 10777;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 10778;
+ case NetherBricks::NetherBricks().ID: return 4999;
+ case NetherPortal::NetherPortal(NetherPortal::Axis::X).ID: return 4000;
+ case NetherPortal::NetherPortal(NetherPortal::Axis::Z).ID: return 4001;
+ case NetherQuartzOre::NetherQuartzOre().ID: return 6191;
+ case NetherWart::NetherWart(0).ID: return 5112;
+ case NetherWart::NetherWart(1).ID: return 5113;
+ case NetherWart::NetherWart(2).ID: return 5114;
+ case NetherWart::NetherWart(3).ID: return 5115;
+ case NetherWartBlock::NetherWartBlock().ID: return 8718;
+ case Netherrack::Netherrack().ID: return 3997;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, true).ID: return 248;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, false).ID: return 249;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, true).ID: return 250;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, false).ID: return 251;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, true).ID: return 252;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, false).ID: return 253;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, true).ID: return 254;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, false).ID: return 255;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, true).ID: return 256;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, false).ID: return 257;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, true).ID: return 258;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, false).ID: return 259;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, true).ID: return 260;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, false).ID: return 261;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, true).ID: return 262;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, false).ID: return 263;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, true).ID: return 264;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, false).ID: return 265;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, true).ID: return 266;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, false).ID: return 267;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, true).ID: return 268;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, false).ID: return 269;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, true).ID: return 270;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, false).ID: return 271;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, true).ID: return 272;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, false).ID: return 273;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, true).ID: return 274;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, false).ID: return 275;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, true).ID: return 276;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, false).ID: return 277;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, true).ID: return 278;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, false).ID: return 279;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, true).ID: return 280;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, false).ID: return 281;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, true).ID: return 282;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, false).ID: return 283;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, true).ID: return 284;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, false).ID: return 285;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, true).ID: return 286;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, false).ID: return 287;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, true).ID: return 288;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, false).ID: return 289;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, true).ID: return 290;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, false).ID: return 291;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, true).ID: return 292;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, false).ID: return 293;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, true).ID: return 294;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, false).ID: return 295;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, true).ID: return 296;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, false).ID: return 297;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, true).ID: return 298;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, false).ID: return 299;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, true).ID: return 300;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, false).ID: return 301;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, true).ID: return 302;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, false).ID: return 303;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, true).ID: return 304;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, false).ID: return 305;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, true).ID: return 306;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, false).ID: return 307;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, true).ID: return 308;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, false).ID: return 309;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, true).ID: return 310;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, false).ID: return 311;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, true).ID: return 312;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, false).ID: return 313;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, true).ID: return 314;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, false).ID: return 315;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, true).ID: return 316;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, false).ID: return 317;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, true).ID: return 318;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, false).ID: return 319;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, true).ID: return 320;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, false).ID: return 321;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, true).ID: return 322;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, false).ID: return 323;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, true).ID: return 324;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, false).ID: return 325;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, true).ID: return 326;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, false).ID: return 327;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, true).ID: return 328;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, false).ID: return 329;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, true).ID: return 330;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, false).ID: return 331;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, true).ID: return 332;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, false).ID: return 333;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, true).ID: return 334;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, false).ID: return 335;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, true).ID: return 336;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, false).ID: return 337;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, true).ID: return 338;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, false).ID: return 339;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, true).ID: return 340;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, false).ID: return 341;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, true).ID: return 342;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, false).ID: return 343;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, true).ID: return 344;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, false).ID: return 345;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, true).ID: return 346;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, false).ID: return 347;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, true).ID: return 348;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, false).ID: return 349;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, true).ID: return 350;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, false).ID: return 351;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, true).ID: return 352;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, false).ID: return 353;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, true).ID: return 354;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, false).ID: return 355;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, true).ID: return 356;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, false).ID: return 357;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, true).ID: return 358;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, false).ID: return 359;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, true).ID: return 360;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, false).ID: return 361;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, true).ID: return 362;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, false).ID: return 363;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, true).ID: return 364;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, false).ID: return 365;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, true).ID: return 366;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, false).ID: return 367;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, true).ID: return 368;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, false).ID: return 369;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, true).ID: return 370;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, false).ID: return 371;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, true).ID: return 372;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, false).ID: return 373;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, true).ID: return 374;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, false).ID: return 375;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, true).ID: return 376;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, false).ID: return 377;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, true).ID: return 378;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, false).ID: return 379;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, true).ID: return 380;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, false).ID: return 381;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, true).ID: return 382;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, false).ID: return 383;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, true).ID: return 384;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, false).ID: return 385;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, true).ID: return 386;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, false).ID: return 387;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, true).ID: return 388;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, false).ID: return 389;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, true).ID: return 390;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, false).ID: return 391;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, true).ID: return 392;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, false).ID: return 393;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, true).ID: return 394;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, false).ID: return 395;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, true).ID: return 396;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, false).ID: return 397;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, true).ID: return 398;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, false).ID: return 399;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, true).ID: return 400;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, false).ID: return 401;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, true).ID: return 402;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, false).ID: return 403;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, true).ID: return 404;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, false).ID: return 405;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, true).ID: return 406;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, false).ID: return 407;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, true).ID: return 408;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, false).ID: return 409;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, true).ID: return 410;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, false).ID: return 411;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, true).ID: return 412;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, false).ID: return 413;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, true).ID: return 414;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, false).ID: return 415;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, true).ID: return 416;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, false).ID: return 417;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, true).ID: return 418;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, false).ID: return 419;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, true).ID: return 420;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, false).ID: return 421;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, true).ID: return 422;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, false).ID: return 423;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, true).ID: return 424;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, false).ID: return 425;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, true).ID: return 426;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, false).ID: return 427;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, true).ID: return 428;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, false).ID: return 429;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, true).ID: return 430;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, false).ID: return 431;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, true).ID: return 432;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, false).ID: return 433;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, true).ID: return 434;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, false).ID: return 435;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, true).ID: return 436;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, false).ID: return 437;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, true).ID: return 438;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, false).ID: return 439;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, true).ID: return 440;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, false).ID: return 441;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, true).ID: return 442;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, false).ID: return 443;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, true).ID: return 444;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, false).ID: return 445;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, true).ID: return 446;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, false).ID: return 447;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, true).ID: return 448;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, false).ID: return 449;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, true).ID: return 450;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, false).ID: return 451;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, true).ID: return 452;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, false).ID: return 453;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, true).ID: return 454;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, false).ID: return 455;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, true).ID: return 456;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, false).ID: return 457;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, true).ID: return 458;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, false).ID: return 459;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, true).ID: return 460;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, false).ID: return 461;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, true).ID: return 462;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, false).ID: return 463;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, true).ID: return 464;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, false).ID: return 465;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, true).ID: return 466;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, false).ID: return 467;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, true).ID: return 468;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, false).ID: return 469;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, true).ID: return 470;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, false).ID: return 471;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, true).ID: return 472;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, false).ID: return 473;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, true).ID: return 474;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, false).ID: return 475;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, true).ID: return 476;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, false).ID: return 477;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, true).ID: return 478;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, false).ID: return 479;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, true).ID: return 480;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, false).ID: return 481;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, true).ID: return 482;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, false).ID: return 483;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, true).ID: return 484;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, false).ID: return 485;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, true).ID: return 486;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, false).ID: return 487;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, true).ID: return 488;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, false).ID: return 489;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, true).ID: return 490;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, false).ID: return 491;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, true).ID: return 492;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, false).ID: return 493;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, true).ID: return 494;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, false).ID: return 495;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, true).ID: return 496;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, false).ID: return 497;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, true).ID: return 498;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, false).ID: return 499;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, true).ID: return 500;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, false).ID: return 501;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, true).ID: return 502;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, false).ID: return 503;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, true).ID: return 504;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, false).ID: return 505;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, true).ID: return 506;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, false).ID: return 507;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, true).ID: return 508;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, false).ID: return 509;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, true).ID: return 510;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, false).ID: return 511;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, true).ID: return 512;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, false).ID: return 513;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, true).ID: return 514;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, false).ID: return 515;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, true).ID: return 516;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, false).ID: return 517;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, true).ID: return 518;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, false).ID: return 519;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, true).ID: return 520;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, false).ID: return 521;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, true).ID: return 522;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, false).ID: return 523;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, true).ID: return 524;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, false).ID: return 525;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, true).ID: return 526;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, false).ID: return 527;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, true).ID: return 528;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, false).ID: return 529;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, true).ID: return 530;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, false).ID: return 531;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, true).ID: return 532;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, false).ID: return 533;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, true).ID: return 534;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, false).ID: return 535;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, true).ID: return 536;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, false).ID: return 537;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, true).ID: return 538;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, false).ID: return 539;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, true).ID: return 540;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, false).ID: return 541;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, true).ID: return 542;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, false).ID: return 543;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, true).ID: return 544;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, false).ID: return 545;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, true).ID: return 546;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, false).ID: return 547;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, true).ID: return 548;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, false).ID: return 549;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, true).ID: return 550;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, false).ID: return 551;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, true).ID: return 552;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, false).ID: return 553;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, true).ID: return 554;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, false).ID: return 555;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, true).ID: return 556;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, false).ID: return 557;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, true).ID: return 558;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, false).ID: return 559;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, true).ID: return 560;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, false).ID: return 561;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, true).ID: return 562;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, false).ID: return 563;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, true).ID: return 564;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, false).ID: return 565;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, true).ID: return 566;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, false).ID: return 567;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, true).ID: return 568;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, false).ID: return 569;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, true).ID: return 570;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, false).ID: return 571;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, true).ID: return 572;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, false).ID: return 573;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, true).ID: return 574;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, false).ID: return 575;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, true).ID: return 576;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, false).ID: return 577;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, true).ID: return 578;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, false).ID: return 579;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, true).ID: return 580;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, false).ID: return 581;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, true).ID: return 582;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, false).ID: return 583;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, true).ID: return 584;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, false).ID: return 585;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, true).ID: return 586;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, false).ID: return 587;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, true).ID: return 588;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, false).ID: return 589;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, true).ID: return 590;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, false).ID: return 591;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, true).ID: return 592;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, false).ID: return 593;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, true).ID: return 594;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, false).ID: return 595;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, true).ID: return 596;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, false).ID: return 597;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, true).ID: return 598;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, false).ID: return 599;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, true).ID: return 600;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, false).ID: return 601;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, true).ID: return 602;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, false).ID: return 603;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, true).ID: return 604;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, false).ID: return 605;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, true).ID: return 606;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, false).ID: return 607;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, true).ID: return 608;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, false).ID: return 609;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, true).ID: return 610;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, false).ID: return 611;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, true).ID: return 612;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, false).ID: return 613;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, true).ID: return 614;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, false).ID: return 615;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, true).ID: return 616;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, false).ID: return 617;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, true).ID: return 618;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, false).ID: return 619;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, true).ID: return 620;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, false).ID: return 621;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, true).ID: return 622;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, false).ID: return 623;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, true).ID: return 624;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, false).ID: return 625;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, true).ID: return 626;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, false).ID: return 627;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, true).ID: return 628;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, false).ID: return 629;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, true).ID: return 630;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, false).ID: return 631;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, true).ID: return 632;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, false).ID: return 633;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, true).ID: return 634;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, false).ID: return 635;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, true).ID: return 636;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, false).ID: return 637;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, true).ID: return 638;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, false).ID: return 639;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, true).ID: return 640;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, false).ID: return 641;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, true).ID: return 642;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, false).ID: return 643;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, true).ID: return 644;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, false).ID: return 645;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, true).ID: return 646;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, false).ID: return 647;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, true).ID: return 648;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, false).ID: return 649;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, true).ID: return 650;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, false).ID: return 651;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, true).ID: return 652;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, false).ID: return 653;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, true).ID: return 654;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, false).ID: return 655;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, true).ID: return 656;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, false).ID: return 657;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, true).ID: return 658;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, false).ID: return 659;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, true).ID: return 660;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, false).ID: return 661;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, true).ID: return 662;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, false).ID: return 663;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, true).ID: return 664;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, false).ID: return 665;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, true).ID: return 666;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, false).ID: return 667;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, true).ID: return 668;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, false).ID: return 669;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, true).ID: return 670;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, false).ID: return 671;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, true).ID: return 672;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, false).ID: return 673;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, true).ID: return 674;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, false).ID: return 675;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, true).ID: return 676;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, false).ID: return 677;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, true).ID: return 678;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, false).ID: return 679;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, true).ID: return 680;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, false).ID: return 681;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, true).ID: return 682;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, false).ID: return 683;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, true).ID: return 684;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, false).ID: return 685;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, true).ID: return 686;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, false).ID: return 687;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, true).ID: return 688;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, false).ID: return 689;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, true).ID: return 690;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, false).ID: return 691;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, true).ID: return 692;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, false).ID: return 693;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, true).ID: return 694;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, false).ID: return 695;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, true).ID: return 696;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, false).ID: return 697;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, true).ID: return 698;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, false).ID: return 699;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, true).ID: return 700;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, false).ID: return 701;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, true).ID: return 702;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, false).ID: return 703;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, true).ID: return 704;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, false).ID: return 705;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, true).ID: return 706;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, false).ID: return 707;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, true).ID: return 708;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, false).ID: return 709;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, true).ID: return 710;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, false).ID: return 711;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, true).ID: return 712;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, false).ID: return 713;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, true).ID: return 714;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, false).ID: return 715;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, true).ID: return 716;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, false).ID: return 717;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, true).ID: return 718;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, false).ID: return 719;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, true).ID: return 720;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, false).ID: return 721;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, true).ID: return 722;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, false).ID: return 723;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, true).ID: return 724;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, false).ID: return 725;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, true).ID: return 726;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, false).ID: return 727;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, true).ID: return 728;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, false).ID: return 729;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, true).ID: return 730;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, false).ID: return 731;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, true).ID: return 732;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, false).ID: return 733;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, true).ID: return 734;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, false).ID: return 735;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, true).ID: return 736;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, false).ID: return 737;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, true).ID: return 738;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, false).ID: return 739;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, true).ID: return 740;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, false).ID: return 741;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, true).ID: return 742;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, false).ID: return 743;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, true).ID: return 744;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, false).ID: return 745;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, true).ID: return 746;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, false).ID: return 747;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, true).ID: return 748;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, false).ID: return 749;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, true).ID: return 750;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, false).ID: return 751;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, true).ID: return 752;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, false).ID: return 753;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, true).ID: return 754;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, false).ID: return 755;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, true).ID: return 756;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, false).ID: return 757;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, true).ID: return 758;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, false).ID: return 759;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, true).ID: return 760;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, false).ID: return 761;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, true).ID: return 762;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, false).ID: return 763;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, true).ID: return 764;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, false).ID: return 765;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, true).ID: return 766;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, false).ID: return 767;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, true).ID: return 768;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, false).ID: return 769;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, true).ID: return 770;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, false).ID: return 771;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, true).ID: return 772;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, false).ID: return 773;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, true).ID: return 774;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, false).ID: return 775;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, true).ID: return 776;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, false).ID: return 777;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, true).ID: return 778;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, false).ID: return 779;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, true).ID: return 780;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, false).ID: return 781;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, true).ID: return 782;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, false).ID: return 783;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, true).ID: return 784;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, false).ID: return 785;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, true).ID: return 786;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, false).ID: return 787;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, true).ID: return 788;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, false).ID: return 789;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, true).ID: return 790;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, false).ID: return 791;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, true).ID: return 792;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, false).ID: return 793;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, true).ID: return 794;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, false).ID: return 795;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, true).ID: return 796;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, false).ID: return 797;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, true).ID: return 798;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, false).ID: return 799;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, true).ID: return 800;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, false).ID: return 801;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, true).ID: return 802;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, false).ID: return 803;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, true).ID: return 804;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, false).ID: return 805;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, true).ID: return 806;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, false).ID: return 807;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, true).ID: return 808;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, false).ID: return 809;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, true).ID: return 810;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, false).ID: return 811;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, true).ID: return 812;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, false).ID: return 813;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, true).ID: return 814;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, false).ID: return 815;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, true).ID: return 816;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, false).ID: return 817;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, true).ID: return 818;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, false).ID: return 819;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, true).ID: return 820;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, false).ID: return 821;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, true).ID: return 822;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, false).ID: return 823;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, true).ID: return 824;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, false).ID: return 825;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, true).ID: return 826;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, false).ID: return 827;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, true).ID: return 828;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, false).ID: return 829;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, true).ID: return 830;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, false).ID: return 831;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, true).ID: return 832;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, false).ID: return 833;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, true).ID: return 834;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, false).ID: return 835;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, true).ID: return 836;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, false).ID: return 837;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, true).ID: return 838;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, false).ID: return 839;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, true).ID: return 840;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, false).ID: return 841;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, true).ID: return 842;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, false).ID: return 843;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, true).ID: return 844;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, false).ID: return 845;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, true).ID: return 846;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, false).ID: return 847;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, true).ID: return 848;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, false).ID: return 849;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, true).ID: return 850;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, false).ID: return 851;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, true).ID: return 852;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, false).ID: return 853;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, true).ID: return 854;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, false).ID: return 855;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, true).ID: return 856;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, false).ID: return 857;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, true).ID: return 858;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, false).ID: return 859;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, true).ID: return 860;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, false).ID: return 861;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, true).ID: return 862;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, false).ID: return 863;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, true).ID: return 864;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, false).ID: return 865;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, true).ID: return 866;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, false).ID: return 867;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, true).ID: return 868;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, false).ID: return 869;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, true).ID: return 870;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, false).ID: return 871;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, true).ID: return 872;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, false).ID: return 873;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, true).ID: return 874;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, false).ID: return 875;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, true).ID: return 876;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, false).ID: return 877;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, true).ID: return 878;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, false).ID: return 879;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, true).ID: return 880;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, false).ID: return 881;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, true).ID: return 882;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, false).ID: return 883;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, true).ID: return 884;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, false).ID: return 885;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, true).ID: return 886;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, false).ID: return 887;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, true).ID: return 888;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, false).ID: return 889;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, true).ID: return 890;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, false).ID: return 891;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, true).ID: return 892;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, false).ID: return 893;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, true).ID: return 894;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, false).ID: return 895;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, true).ID: return 896;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, false).ID: return 897;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, true).ID: return 898;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, false).ID: return 899;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, true).ID: return 900;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, false).ID: return 901;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, true).ID: return 902;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, false).ID: return 903;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, true).ID: return 904;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, false).ID: return 905;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, true).ID: return 906;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, false).ID: return 907;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, true).ID: return 908;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, false).ID: return 909;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, true).ID: return 910;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, false).ID: return 911;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, true).ID: return 912;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, false).ID: return 913;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, true).ID: return 914;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, false).ID: return 915;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, true).ID: return 916;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, false).ID: return 917;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, true).ID: return 918;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, false).ID: return 919;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, true).ID: return 920;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, false).ID: return 921;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, true).ID: return 922;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, false).ID: return 923;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, true).ID: return 924;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, false).ID: return 925;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, true).ID: return 926;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, false).ID: return 927;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, true).ID: return 928;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, false).ID: return 929;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, true).ID: return 930;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, false).ID: return 931;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, true).ID: return 932;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, false).ID: return 933;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, true).ID: return 934;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, false).ID: return 935;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, true).ID: return 936;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, false).ID: return 937;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, true).ID: return 938;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, false).ID: return 939;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, true).ID: return 940;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, false).ID: return 941;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, true).ID: return 942;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, false).ID: return 943;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, true).ID: return 944;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, false).ID: return 945;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, true).ID: return 946;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, false).ID: return 947;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, true).ID: return 948;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, false).ID: return 949;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, true).ID: return 950;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, false).ID: return 951;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, true).ID: return 952;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, false).ID: return 953;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, true).ID: return 954;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, false).ID: return 955;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, true).ID: return 956;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, false).ID: return 957;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, true).ID: return 958;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, false).ID: return 959;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, true).ID: return 960;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, false).ID: return 961;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, true).ID: return 962;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, false).ID: return 963;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, true).ID: return 964;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, false).ID: return 965;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, true).ID: return 966;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, false).ID: return 967;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, true).ID: return 968;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, false).ID: return 969;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, true).ID: return 970;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, false).ID: return 971;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, true).ID: return 972;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, false).ID: return 973;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, true).ID: return 974;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, false).ID: return 975;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, true).ID: return 976;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, false).ID: return 977;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, true).ID: return 978;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, false).ID: return 979;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, true).ID: return 980;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, false).ID: return 981;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, true).ID: return 982;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, false).ID: return 983;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, true).ID: return 984;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, false).ID: return 985;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, true).ID: return 986;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, false).ID: return 987;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, true).ID: return 988;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, false).ID: return 989;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, true).ID: return 990;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, false).ID: return 991;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, true).ID: return 992;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, false).ID: return 993;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, true).ID: return 994;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, false).ID: return 995;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, true).ID: return 996;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, false).ID: return 997;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, true).ID: return 998;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, false).ID: return 999;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, true).ID: return 1000;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, false).ID: return 1001;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, true).ID: return 1002;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, false).ID: return 1003;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, true).ID: return 1004;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, false).ID: return 1005;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, true).ID: return 1006;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, false).ID: return 1007;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, true).ID: return 1008;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, false).ID: return 1009;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, true).ID: return 1010;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, false).ID: return 1011;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, true).ID: return 1012;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, false).ID: return 1013;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, true).ID: return 1014;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, false).ID: return 1015;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, true).ID: return 1016;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, false).ID: return 1017;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, true).ID: return 1018;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, false).ID: return 1019;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, true).ID: return 1020;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, false).ID: return 1021;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, true).ID: return 1022;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, false).ID: return 1023;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, true).ID: return 1024;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, false).ID: return 1025;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, true).ID: return 1026;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, false).ID: return 1027;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, true).ID: return 1028;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, false).ID: return 1029;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, true).ID: return 1030;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, false).ID: return 1031;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, true).ID: return 1032;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, false).ID: return 1033;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, true).ID: return 1034;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, false).ID: return 1035;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, true).ID: return 1036;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, false).ID: return 1037;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, true).ID: return 1038;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, false).ID: return 1039;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, true).ID: return 1040;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, false).ID: return 1041;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, true).ID: return 1042;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, false).ID: return 1043;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, true).ID: return 1044;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, false).ID: return 1045;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, true).ID: return 1046;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, false).ID: return 1047;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5810;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5811;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5812;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5813;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5814;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5815;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5816;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5817;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5818;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5819;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5820;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5821;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5822;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5823;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5824;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5825;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5826;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5827;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5828;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5829;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5830;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5831;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5832;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5833;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3571;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3572;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3573;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3574;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3575;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3576;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3577;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3578;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3579;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3580;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3581;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3582;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3583;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3584;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3585;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3586;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3587;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3588;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3589;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3590;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3591;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3592;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3593;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3594;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3595;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3596;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3597;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3598;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3599;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3600;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3601;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3602;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3603;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3604;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3605;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3606;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3607;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3608;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3609;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3610;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3611;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3612;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3613;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3614;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3615;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3616;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3617;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3618;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3619;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3620;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3621;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3622;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3623;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3624;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3625;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3626;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3627;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3628;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3629;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3630;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3631;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3632;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3633;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3634;
+ case OakFence::OakFence(true, true, true, true).ID: return 3966;
+ case OakFence::OakFence(true, true, true, false).ID: return 3967;
+ case OakFence::OakFence(true, true, false, true).ID: return 3970;
+ case OakFence::OakFence(true, true, false, false).ID: return 3971;
+ case OakFence::OakFence(true, false, true, true).ID: return 3974;
+ case OakFence::OakFence(true, false, true, false).ID: return 3975;
+ case OakFence::OakFence(true, false, false, true).ID: return 3978;
+ case OakFence::OakFence(true, false, false, false).ID: return 3979;
+ case OakFence::OakFence(false, true, true, true).ID: return 3982;
+ case OakFence::OakFence(false, true, true, false).ID: return 3983;
+ case OakFence::OakFence(false, true, false, true).ID: return 3986;
+ case OakFence::OakFence(false, true, false, false).ID: return 3987;
+ case OakFence::OakFence(false, false, true, true).ID: return 3990;
+ case OakFence::OakFence(false, false, true, false).ID: return 3991;
+ case OakFence::OakFence(false, false, false, true).ID: return 3994;
+ case OakFence::OakFence(false, false, false, false).ID: return 3995;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 4804;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 4805;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 4806;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 4807;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 4808;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 4809;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 4810;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 4811;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 4812;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 4813;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 4814;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 4815;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 4816;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 4817;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 4818;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 4819;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 4820;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 4821;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 4822;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 4823;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 4824;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 4825;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 4826;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 4827;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 4828;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 4829;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 4830;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 4831;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 4832;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 4833;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 4834;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 4835;
+ case OakLeaves::OakLeaves(1, true).ID: return 144;
+ case OakLeaves::OakLeaves(1, false).ID: return 145;
+ case OakLeaves::OakLeaves(2, true).ID: return 146;
+ case OakLeaves::OakLeaves(2, false).ID: return 147;
+ case OakLeaves::OakLeaves(3, true).ID: return 148;
+ case OakLeaves::OakLeaves(3, false).ID: return 149;
+ case OakLeaves::OakLeaves(4, true).ID: return 150;
+ case OakLeaves::OakLeaves(4, false).ID: return 151;
+ case OakLeaves::OakLeaves(5, true).ID: return 152;
+ case OakLeaves::OakLeaves(5, false).ID: return 153;
+ case OakLeaves::OakLeaves(6, true).ID: return 154;
+ case OakLeaves::OakLeaves(6, false).ID: return 155;
+ case OakLeaves::OakLeaves(7, true).ID: return 156;
+ case OakLeaves::OakLeaves(7, false).ID: return 157;
+ case OakLog::OakLog(OakLog::Axis::X).ID: return 72;
+ case OakLog::OakLog(OakLog::Axis::Y).ID: return 73;
+ case OakLog::OakLog(OakLog::Axis::Z).ID: return 74;
+ case OakPlanks::OakPlanks().ID: return 15;
+ case OakPressurePlate::OakPressurePlate(true).ID: return 3871;
+ case OakPressurePlate::OakPressurePlate(false).ID: return 3872;
+ case OakSapling::OakSapling(0).ID: return 21;
+ case OakSapling::OakSapling(1).ID: return 22;
+ case OakSign::OakSign(0).ID: return 3380;
+ case OakSign::OakSign(1).ID: return 3382;
+ case OakSign::OakSign(2).ID: return 3384;
+ case OakSign::OakSign(3).ID: return 3386;
+ case OakSign::OakSign(4).ID: return 3388;
+ case OakSign::OakSign(5).ID: return 3390;
+ case OakSign::OakSign(6).ID: return 3392;
+ case OakSign::OakSign(7).ID: return 3394;
+ case OakSign::OakSign(8).ID: return 3396;
+ case OakSign::OakSign(9).ID: return 3398;
+ case OakSign::OakSign(10).ID: return 3400;
+ case OakSign::OakSign(11).ID: return 3402;
+ case OakSign::OakSign(12).ID: return 3404;
+ case OakSign::OakSign(13).ID: return 3406;
+ case OakSign::OakSign(14).ID: return 3408;
+ case OakSign::OakSign(15).ID: return 3410;
+ case OakSlab::OakSlab(OakSlab::Type::Top).ID: return 7765;
+ case OakSlab::OakSlab(OakSlab::Type::Bottom).ID: return 7767;
+ case OakSlab::OakSlab(OakSlab::Type::Double).ID: return 7769;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1953;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1955;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1957;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1959;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1961;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1963;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1965;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1967;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1969;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1971;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1973;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1975;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1977;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1979;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1981;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1983;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1985;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1987;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1989;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1991;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1993;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1995;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1997;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1999;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 2001;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 2003;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 2005;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 2007;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 2009;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 2011;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 2013;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 2015;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 2017;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 2019;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 2021;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 2023;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 2025;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 2027;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 2029;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 2031;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, true).ID: return 4098;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, false).ID: return 4100;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, true).ID: return 4102;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, false).ID: return 4104;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, true).ID: return 4106;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, false).ID: return 4108;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, true).ID: return 4110;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, false).ID: return 4112;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, true).ID: return 4114;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, false).ID: return 4116;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, true).ID: return 4118;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, false).ID: return 4120;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, true).ID: return 4122;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, false).ID: return 4124;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, true).ID: return 4126;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, false).ID: return 4128;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, true).ID: return 4130;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, false).ID: return 4132;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, true).ID: return 4134;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, false).ID: return 4136;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, true).ID: return 4138;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, false).ID: return 4140;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, true).ID: return 4142;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, false).ID: return 4144;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, true).ID: return 4146;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, false).ID: return 4148;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, true).ID: return 4150;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, false).ID: return 4152;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, true).ID: return 4154;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, false).ID: return 4156;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, true).ID: return 4158;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, false).ID: return 4160;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3734;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3736;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3738;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3740;
+ case OakWood::OakWood(OakWood::Axis::X).ID: return 108;
+ case OakWood::OakWood(OakWood::Axis::Y).ID: return 109;
+ case OakWood::OakWood(OakWood::Axis::Z).ID: return 110;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, true).ID: return 8724;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, false).ID: return 8725;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XP, true).ID: return 8726;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XP, false).ID: return 8727;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, true).ID: return 8728;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, false).ID: return 8729;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XM, true).ID: return 8730;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XM, false).ID: return 8731;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YP, true).ID: return 8732;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YP, false).ID: return 8733;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YM, true).ID: return 8734;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YM, false).ID: return 8735;
+ case Obsidian::Obsidian().ID: return 1433;
+ case OrangeBanner::OrangeBanner(0).ID: return 7377;
+ case OrangeBanner::OrangeBanner(1).ID: return 7378;
+ case OrangeBanner::OrangeBanner(2).ID: return 7379;
+ case OrangeBanner::OrangeBanner(3).ID: return 7380;
+ case OrangeBanner::OrangeBanner(4).ID: return 7381;
+ case OrangeBanner::OrangeBanner(5).ID: return 7382;
+ case OrangeBanner::OrangeBanner(6).ID: return 7383;
+ case OrangeBanner::OrangeBanner(7).ID: return 7384;
+ case OrangeBanner::OrangeBanner(8).ID: return 7385;
+ case OrangeBanner::OrangeBanner(9).ID: return 7386;
+ case OrangeBanner::OrangeBanner(10).ID: return 7387;
+ case OrangeBanner::OrangeBanner(11).ID: return 7388;
+ case OrangeBanner::OrangeBanner(12).ID: return 7389;
+ case OrangeBanner::OrangeBanner(13).ID: return 7390;
+ case OrangeBanner::OrangeBanner(14).ID: return 7391;
+ case OrangeBanner::OrangeBanner(15).ID: return 7392;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Head).ID: return 1064;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Foot).ID: return 1065;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Head).ID: return 1066;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Foot).ID: return 1067;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Head).ID: return 1068;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Foot).ID: return 1069;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Head).ID: return 1070;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Foot).ID: return 1071;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Head).ID: return 1072;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Foot).ID: return 1073;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Head).ID: return 1074;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Foot).ID: return 1075;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Head).ID: return 1076;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Foot).ID: return 1077;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Head).ID: return 1078;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Foot).ID: return 1079;
+ case OrangeCarpet::OrangeCarpet().ID: return 7331;
+ case OrangeConcrete::OrangeConcrete().ID: return 8903;
+ case OrangeConcretePowder::OrangeConcretePowder().ID: return 8919;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8842;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8843;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8844;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8845;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8748;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8749;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8750;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8751;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8752;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8753;
+ case OrangeStainedGlass::OrangeStainedGlass().ID: return 4082;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, true).ID: return 6361;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, false).ID: return 6362;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, true).ID: return 6365;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, false).ID: return 6366;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, true).ID: return 6369;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, false).ID: return 6370;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, true).ID: return 6373;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, false).ID: return 6374;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, true).ID: return 6377;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, false).ID: return 6378;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, true).ID: return 6381;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, false).ID: return 6382;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, true).ID: return 6385;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, false).ID: return 6386;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, true).ID: return 6389;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, false).ID: return 6390;
+ case OrangeTerracotta::OrangeTerracotta().ID: return 6312;
+ case OrangeTulip::OrangeTulip().ID: return 1417;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7621;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7622;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7623;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7624;
+ case OrangeWool::OrangeWool().ID: return 1384;
+ case OxeyeDaisy::OxeyeDaisy().ID: return 1420;
+ case PackedIce::PackedIce().ID: return 7348;
+ case Peony::Peony(Peony::Half::Upper).ID: return 7355;
+ case Peony::Peony(Peony::Half::Lower).ID: return 7356;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Top).ID: return 7825;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Bottom).ID: return 7827;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double).ID: return 7829;
+ case PinkBanner::PinkBanner(0).ID: return 7457;
+ case PinkBanner::PinkBanner(1).ID: return 7458;
+ case PinkBanner::PinkBanner(2).ID: return 7459;
+ case PinkBanner::PinkBanner(3).ID: return 7460;
+ case PinkBanner::PinkBanner(4).ID: return 7461;
+ case PinkBanner::PinkBanner(5).ID: return 7462;
+ case PinkBanner::PinkBanner(6).ID: return 7463;
+ case PinkBanner::PinkBanner(7).ID: return 7464;
+ case PinkBanner::PinkBanner(8).ID: return 7465;
+ case PinkBanner::PinkBanner(9).ID: return 7466;
+ case PinkBanner::PinkBanner(10).ID: return 7467;
+ case PinkBanner::PinkBanner(11).ID: return 7468;
+ case PinkBanner::PinkBanner(12).ID: return 7469;
+ case PinkBanner::PinkBanner(13).ID: return 7470;
+ case PinkBanner::PinkBanner(14).ID: return 7471;
+ case PinkBanner::PinkBanner(15).ID: return 7472;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Head).ID: return 1144;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Foot).ID: return 1145;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Head).ID: return 1146;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Foot).ID: return 1147;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Head).ID: return 1148;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Foot).ID: return 1149;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Head).ID: return 1150;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Foot).ID: return 1151;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Head).ID: return 1152;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Foot).ID: return 1153;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Head).ID: return 1154;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Foot).ID: return 1155;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Head).ID: return 1156;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Foot).ID: return 1157;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Head).ID: return 1158;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Foot).ID: return 1159;
+ case PinkCarpet::PinkCarpet().ID: return 7336;
+ case PinkConcrete::PinkConcrete().ID: return 8908;
+ case PinkConcretePowder::PinkConcretePowder().ID: return 8924;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8862;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8863;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8864;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8865;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8778;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8779;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8780;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8781;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8782;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8783;
+ case PinkStainedGlass::PinkStainedGlass().ID: return 4087;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, true).ID: return 6521;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, false).ID: return 6522;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, true).ID: return 6525;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, false).ID: return 6526;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, true).ID: return 6529;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, false).ID: return 6530;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, true).ID: return 6533;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, false).ID: return 6534;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, true).ID: return 6537;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, false).ID: return 6538;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, true).ID: return 6541;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, false).ID: return 6542;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, true).ID: return 6545;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, false).ID: return 6546;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, true).ID: return 6549;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, false).ID: return 6550;
+ case PinkTerracotta::PinkTerracotta().ID: return 6317;
+ case PinkTulip::PinkTulip().ID: return 1419;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7641;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7642;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7643;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7644;
+ case PinkWool::PinkWool().ID: return 1389;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZM).ID: return 1347;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_XP).ID: return 1348;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZP).ID: return 1349;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_XM).ID: return 1350;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_YP).ID: return 1351;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_YM).ID: return 1352;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZM).ID: return 1353;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_XP).ID: return 1354;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZP).ID: return 1355;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_XM).ID: return 1356;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_YP).ID: return 1357;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_YM).ID: return 1358;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Normal).ID: return 1359;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Sticky).ID: return 1360;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Normal).ID: return 1361;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Sticky).ID: return 1362;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Normal).ID: return 1363;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Sticky).ID: return 1364;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Normal).ID: return 1365;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Sticky).ID: return 1366;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Normal).ID: return 1367;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Sticky).ID: return 1368;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Normal).ID: return 1369;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Sticky).ID: return 1370;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Normal).ID: return 1371;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Sticky).ID: return 1372;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Normal).ID: return 1373;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Sticky).ID: return 1374;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Normal).ID: return 1375;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Sticky).ID: return 1376;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Normal).ID: return 1377;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Sticky).ID: return 1378;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Normal).ID: return 1379;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Sticky).ID: return 1380;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Normal).ID: return 1381;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Sticky).ID: return 1382;
+ case PlayerHead::PlayerHead(0).ID: return 6014;
+ case PlayerHead::PlayerHead(1).ID: return 6015;
+ case PlayerHead::PlayerHead(2).ID: return 6016;
+ case PlayerHead::PlayerHead(3).ID: return 6017;
+ case PlayerHead::PlayerHead(4).ID: return 6018;
+ case PlayerHead::PlayerHead(5).ID: return 6019;
+ case PlayerHead::PlayerHead(6).ID: return 6020;
+ case PlayerHead::PlayerHead(7).ID: return 6021;
+ case PlayerHead::PlayerHead(8).ID: return 6022;
+ case PlayerHead::PlayerHead(9).ID: return 6023;
+ case PlayerHead::PlayerHead(10).ID: return 6024;
+ case PlayerHead::PlayerHead(11).ID: return 6025;
+ case PlayerHead::PlayerHead(12).ID: return 6026;
+ case PlayerHead::PlayerHead(13).ID: return 6027;
+ case PlayerHead::PlayerHead(14).ID: return 6028;
+ case PlayerHead::PlayerHead(15).ID: return 6029;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 6030;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 6031;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 6032;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 6033;
+ case Podzol::Podzol(true).ID: return 12;
+ case Podzol::Podzol(false).ID: return 13;
+ case PolishedAndesite::PolishedAndesite().ID: return 7;
+ case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Top).ID: return 10320;
+ case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Bottom).ID: return 10322;
+ case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Double).ID: return 10324;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight).ID: return 10094;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10096;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10098;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10100;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10102;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight).ID: return 10104;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10106;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10108;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10110;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10112;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight).ID: return 10114;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10116;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10118;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10120;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10122;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight).ID: return 10124;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10126;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10128;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10130;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10132;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight).ID: return 10134;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10136;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10138;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10140;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10142;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight).ID: return 10144;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10146;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10148;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10150;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10152;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight).ID: return 10154;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10156;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10158;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10160;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10162;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight).ID: return 10164;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10166;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10168;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10170;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10172;
+ case PolishedDiorite::PolishedDiorite().ID: return 5;
+ case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Top).ID: return 10272;
+ case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Bottom).ID: return 10274;
+ case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Double).ID: return 10276;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight).ID: return 9374;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9376;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight).ID: return 9378;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9380;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight).ID: return 9382;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight).ID: return 9384;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9386;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight).ID: return 9388;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9390;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight).ID: return 9392;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight).ID: return 9394;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9396;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight).ID: return 9398;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9400;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight).ID: return 9402;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight).ID: return 9404;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9406;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight).ID: return 9408;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9410;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight).ID: return 9412;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight).ID: return 9414;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9416;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight).ID: return 9418;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9420;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight).ID: return 9422;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight).ID: return 9424;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9426;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight).ID: return 9428;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9430;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight).ID: return 9432;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight).ID: return 9434;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9436;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight).ID: return 9438;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9440;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight).ID: return 9442;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight).ID: return 9444;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9446;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight).ID: return 9448;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9450;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight).ID: return 9452;
+ case PolishedGranite::PolishedGranite().ID: return 3;
+ case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Top).ID: return 10254;
+ case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Bottom).ID: return 10256;
+ case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Double).ID: return 10258;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight).ID: return 9134;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9136;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight).ID: return 9138;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9140;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight).ID: return 9142;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight).ID: return 9144;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9146;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight).ID: return 9148;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9150;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight).ID: return 9152;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight).ID: return 9154;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9156;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight).ID: return 9158;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9160;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight).ID: return 9162;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight).ID: return 9164;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9166;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight).ID: return 9168;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9170;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight).ID: return 9172;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight).ID: return 9174;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9176;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight).ID: return 9178;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9180;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight).ID: return 9182;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight).ID: return 9184;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9186;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight).ID: return 9188;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9190;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight).ID: return 9192;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight).ID: return 9194;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9196;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight).ID: return 9198;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9200;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight).ID: return 9202;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight).ID: return 9204;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9206;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight).ID: return 9208;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9210;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight).ID: return 9212;
+ case Poppy::Poppy().ID: return 1412;
+ case Potatoes::Potatoes(0).ID: return 5802;
+ case Potatoes::Potatoes(1).ID: return 5803;
+ case Potatoes::Potatoes(2).ID: return 5804;
+ case Potatoes::Potatoes(3).ID: return 5805;
+ case Potatoes::Potatoes(4).ID: return 5806;
+ case Potatoes::Potatoes(5).ID: return 5807;
+ case Potatoes::Potatoes(6).ID: return 5808;
+ case Potatoes::Potatoes(7).ID: return 5809;
+ case PottedAcaciaSapling::PottedAcaciaSapling().ID: return 5774;
+ case PottedAllium::PottedAllium().ID: return 5780;
+ case PottedAzureBluet::PottedAzureBluet().ID: return 5781;
+ case PottedBamboo::PottedBamboo().ID: return 9128;
+ case PottedBirchSapling::PottedBirchSapling().ID: return 5772;
+ case PottedBlueOrchid::PottedBlueOrchid().ID: return 5779;
+ case PottedBrownMushroom::PottedBrownMushroom().ID: return 5791;
+ case PottedCactus::PottedCactus().ID: return 5793;
+ case PottedCornflower::PottedCornflower().ID: return 5787;
+ case PottedDandelion::PottedDandelion().ID: return 5777;
+ case PottedDarkOakSapling::PottedDarkOakSapling().ID: return 5775;
+ case PottedDeadBush::PottedDeadBush().ID: return 5792;
+ case PottedFern::PottedFern().ID: return 5776;
+ case PottedJungleSapling::PottedJungleSapling().ID: return 5773;
+ case PottedLilyOfTheValley::PottedLilyOfTheValley().ID: return 5788;
+ case PottedOakSapling::PottedOakSapling().ID: return 5770;
+ case PottedOrangeTulip::PottedOrangeTulip().ID: return 5783;
+ case PottedOxeyeDaisy::PottedOxeyeDaisy().ID: return 5786;
+ case PottedPinkTulip::PottedPinkTulip().ID: return 5785;
+ case PottedPoppy::PottedPoppy().ID: return 5778;
+ case PottedRedMushroom::PottedRedMushroom().ID: return 5790;
+ case PottedRedTulip::PottedRedTulip().ID: return 5782;
+ case PottedSpruceSapling::PottedSpruceSapling().ID: return 5771;
+ case PottedWhiteTulip::PottedWhiteTulip().ID: return 5784;
+ case PottedWitherRose::PottedWitherRose().ID: return 5789;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::NorthSouth).ID: return 1304;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::EastWest).ID: return 1305;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingEast).ID: return 1306;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingWest).ID: return 1307;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingNorth).ID: return 1308;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingSouth).ID: return 1309;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::NorthSouth).ID: return 1310;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::EastWest).ID: return 1311;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingEast).ID: return 1312;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingWest).ID: return 1313;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingNorth).ID: return 1314;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingSouth).ID: return 1315;
+ case Prismarine::Prismarine().ID: return 7065;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Top).ID: return 7315;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Bottom).ID: return 7317;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Double).ID: return 7319;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 7149;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7151;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 7153;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7155;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 7157;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 7159;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7161;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 7163;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7165;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 7167;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 7169;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7171;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 7173;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7175;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 7177;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 7179;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7181;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 7183;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7185;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 7187;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 7189;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7191;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 7193;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7195;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 7197;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 7199;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7201;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 7203;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7205;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 7207;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 7209;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7211;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 7213;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7215;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 7217;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 7219;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7221;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 7223;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7225;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 7227;
+ case PrismarineBricks::PrismarineBricks().ID: return 7066;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Top).ID: return 7309;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Bottom).ID: return 7311;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Double).ID: return 7313;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 7069;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 7071;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 7073;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 7075;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 7077;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 7079;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 7081;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 7083;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 7085;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 7087;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 7089;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 7091;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 7093;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 7095;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 7097;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 7099;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 7101;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 7103;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 7105;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 7107;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 7109;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 7111;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 7113;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 7115;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 7117;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 7119;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 7121;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 7123;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 7125;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 7127;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 7129;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 7131;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 7133;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 7135;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 7137;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 7139;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 7141;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 7143;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 7145;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 7147;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 10397;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 10398;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 10401;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 10402;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 10405;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 10406;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 10409;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 10410;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 10413;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 10414;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 10417;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 10418;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 10421;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 10422;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 10425;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 10426;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 10429;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 10430;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 10433;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 10434;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 10437;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 10438;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 10441;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 10442;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 10445;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 10446;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 10449;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 10450;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 10453;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 10454;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 10457;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 10458;
+ case Pumpkin::Pumpkin().ID: return 3996;
+ case PumpkinStem::PumpkinStem(0).ID: return 4756;
+ case PumpkinStem::PumpkinStem(1).ID: return 4757;
+ case PumpkinStem::PumpkinStem(2).ID: return 4758;
+ case PumpkinStem::PumpkinStem(3).ID: return 4759;
+ case PumpkinStem::PumpkinStem(4).ID: return 4760;
+ case PumpkinStem::PumpkinStem(5).ID: return 4761;
+ case PumpkinStem::PumpkinStem(6).ID: return 4762;
+ case PumpkinStem::PumpkinStem(7).ID: return 4763;
+ case PurpleBanner::PurpleBanner(0).ID: return 7521;
+ case PurpleBanner::PurpleBanner(1).ID: return 7522;
+ case PurpleBanner::PurpleBanner(2).ID: return 7523;
+ case PurpleBanner::PurpleBanner(3).ID: return 7524;
+ case PurpleBanner::PurpleBanner(4).ID: return 7525;
+ case PurpleBanner::PurpleBanner(5).ID: return 7526;
+ case PurpleBanner::PurpleBanner(6).ID: return 7527;
+ case PurpleBanner::PurpleBanner(7).ID: return 7528;
+ case PurpleBanner::PurpleBanner(8).ID: return 7529;
+ case PurpleBanner::PurpleBanner(9).ID: return 7530;
+ case PurpleBanner::PurpleBanner(10).ID: return 7531;
+ case PurpleBanner::PurpleBanner(11).ID: return 7532;
+ case PurpleBanner::PurpleBanner(12).ID: return 7533;
+ case PurpleBanner::PurpleBanner(13).ID: return 7534;
+ case PurpleBanner::PurpleBanner(14).ID: return 7535;
+ case PurpleBanner::PurpleBanner(15).ID: return 7536;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Head).ID: return 1208;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Foot).ID: return 1209;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Head).ID: return 1210;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Foot).ID: return 1211;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Head).ID: return 1212;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Foot).ID: return 1213;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Head).ID: return 1214;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Foot).ID: return 1215;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Head).ID: return 1216;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Foot).ID: return 1217;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Head).ID: return 1218;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Foot).ID: return 1219;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Head).ID: return 1220;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Foot).ID: return 1221;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Head).ID: return 1222;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Foot).ID: return 1223;
+ case PurpleCarpet::PurpleCarpet().ID: return 7340;
+ case PurpleConcrete::PurpleConcrete().ID: return 8912;
+ case PurpleConcretePowder::PurpleConcretePowder().ID: return 8928;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8878;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8879;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8880;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8881;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8802;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8803;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8804;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8805;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8806;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8807;
+ case PurpleStainedGlass::PurpleStainedGlass().ID: return 4091;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, true).ID: return 6649;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, false).ID: return 6650;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, true).ID: return 6653;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, false).ID: return 6654;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, true).ID: return 6657;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, false).ID: return 6658;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, true).ID: return 6661;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, false).ID: return 6662;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, true).ID: return 6665;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, false).ID: return 6666;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, true).ID: return 6669;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, false).ID: return 6670;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, true).ID: return 6673;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, false).ID: return 6674;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, true).ID: return 6677;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, false).ID: return 6678;
+ case PurpleTerracotta::PurpleTerracotta().ID: return 6321;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7657;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7658;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7659;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7660;
+ case PurpleWool::PurpleWool().ID: return 1393;
+ case PurpurBlock::PurpurBlock().ID: return 8598;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::X).ID: return 8599;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Y).ID: return 8600;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Z).ID: return 8601;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Top).ID: return 7873;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Bottom).ID: return 7875;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Double).ID: return 7877;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8603;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8605;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8607;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8609;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8611;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8613;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8615;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8617;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8619;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8621;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8623;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8625;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8627;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8629;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8631;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8633;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8635;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8637;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8639;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8641;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8643;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8645;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8647;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8649;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8651;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8653;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8655;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8657;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8659;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8661;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8663;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8665;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8667;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8669;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8671;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8673;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8675;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8677;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8679;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8681;
+ case QuartzBlock::QuartzBlock().ID: return 6202;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::X).ID: return 6204;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Y).ID: return 6205;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Z).ID: return 6206;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Top).ID: return 7855;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Bottom).ID: return 7857;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Double).ID: return 7859;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 6208;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 6210;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 6212;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 6214;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 6216;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 6218;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 6220;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 6222;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 6224;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 6226;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 6228;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 6230;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 6232;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 6234;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 6236;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 6238;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 6240;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 6242;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 6244;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 6246;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 6248;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 6250;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 6252;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 6254;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 6256;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 6258;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 6260;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 6262;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 6264;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 6266;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 6268;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 6270;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 6272;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 6274;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 6276;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 6278;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 6280;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 6282;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 6284;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 6286;
+ case Rail::Rail(Rail::Shape::NorthSouth).ID: return 3643;
+ case Rail::Rail(Rail::Shape::EastWest).ID: return 3644;
+ case Rail::Rail(Rail::Shape::AscendingEast).ID: return 3645;
+ case Rail::Rail(Rail::Shape::AscendingWest).ID: return 3646;
+ case Rail::Rail(Rail::Shape::AscendingNorth).ID: return 3647;
+ case Rail::Rail(Rail::Shape::AscendingSouth).ID: return 3648;
+ case Rail::Rail(Rail::Shape::SouthEast).ID: return 3649;
+ case Rail::Rail(Rail::Shape::SouthWest).ID: return 3650;
+ case Rail::Rail(Rail::Shape::NorthWest).ID: return 3651;
+ case Rail::Rail(Rail::Shape::NorthEast).ID: return 3652;
+ case RedBanner::RedBanner(0).ID: return 7585;
+ case RedBanner::RedBanner(1).ID: return 7586;
+ case RedBanner::RedBanner(2).ID: return 7587;
+ case RedBanner::RedBanner(3).ID: return 7588;
+ case RedBanner::RedBanner(4).ID: return 7589;
+ case RedBanner::RedBanner(5).ID: return 7590;
+ case RedBanner::RedBanner(6).ID: return 7591;
+ case RedBanner::RedBanner(7).ID: return 7592;
+ case RedBanner::RedBanner(8).ID: return 7593;
+ case RedBanner::RedBanner(9).ID: return 7594;
+ case RedBanner::RedBanner(10).ID: return 7595;
+ case RedBanner::RedBanner(11).ID: return 7596;
+ case RedBanner::RedBanner(12).ID: return 7597;
+ case RedBanner::RedBanner(13).ID: return 7598;
+ case RedBanner::RedBanner(14).ID: return 7599;
+ case RedBanner::RedBanner(15).ID: return 7600;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Head).ID: return 1272;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Foot).ID: return 1273;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Head).ID: return 1274;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Foot).ID: return 1275;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Head).ID: return 1276;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Foot).ID: return 1277;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Head).ID: return 1278;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Foot).ID: return 1279;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Head).ID: return 1280;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Foot).ID: return 1281;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Head).ID: return 1282;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Foot).ID: return 1283;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Head).ID: return 1284;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Foot).ID: return 1285;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Head).ID: return 1286;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Foot).ID: return 1287;
+ case RedCarpet::RedCarpet().ID: return 7344;
+ case RedConcrete::RedConcrete().ID: return 8916;
+ case RedConcretePowder::RedConcretePowder().ID: return 8932;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8894;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8895;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8896;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8897;
+ case RedMushroom::RedMushroom().ID: return 1425;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, true).ID: return 4555;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, false).ID: return 4556;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, true).ID: return 4557;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, false).ID: return 4558;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, true).ID: return 4559;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, false).ID: return 4560;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, true).ID: return 4561;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, false).ID: return 4562;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, true).ID: return 4563;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, false).ID: return 4564;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, true).ID: return 4565;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, false).ID: return 4566;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, true).ID: return 4567;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, false).ID: return 4568;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, true).ID: return 4569;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, false).ID: return 4570;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, true).ID: return 4571;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, false).ID: return 4572;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, true).ID: return 4573;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, false).ID: return 4574;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, true).ID: return 4575;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, false).ID: return 4576;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, true).ID: return 4577;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, false).ID: return 4578;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, true).ID: return 4579;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, false).ID: return 4580;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, true).ID: return 4581;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, false).ID: return 4582;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, true).ID: return 4583;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, false).ID: return 4584;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, true).ID: return 4585;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, false).ID: return 4586;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, true).ID: return 4587;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, false).ID: return 4588;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, true).ID: return 4589;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, false).ID: return 4590;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, true).ID: return 4591;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, false).ID: return 4592;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, true).ID: return 4593;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, false).ID: return 4594;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, true).ID: return 4595;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, false).ID: return 4596;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, true).ID: return 4597;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, false).ID: return 4598;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, true).ID: return 4599;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, false).ID: return 4600;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, true).ID: return 4601;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, false).ID: return 4602;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, true).ID: return 4603;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, false).ID: return 4604;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, true).ID: return 4605;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, false).ID: return 4606;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, true).ID: return 4607;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, false).ID: return 4608;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, true).ID: return 4609;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, false).ID: return 4610;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, true).ID: return 4611;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, false).ID: return 4612;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, true).ID: return 4613;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, false).ID: return 4614;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, true).ID: return 4615;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, false).ID: return 4616;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, true).ID: return 4617;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false).ID: return 4618;
+ case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Top).ID: return 10314;
+ case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Bottom).ID: return 10316;
+ case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Double).ID: return 10318;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight).ID: return 10014;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10016;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight).ID: return 10018;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10020;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight).ID: return 10022;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight).ID: return 10024;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10026;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight).ID: return 10028;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10030;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight).ID: return 10032;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight).ID: return 10034;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10036;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight).ID: return 10038;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10040;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight).ID: return 10042;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight).ID: return 10044;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10046;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight).ID: return 10048;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10050;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight).ID: return 10052;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight).ID: return 10054;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10056;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight).ID: return 10058;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10060;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight).ID: return 10062;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight).ID: return 10064;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10066;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight).ID: return 10068;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10070;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight).ID: return 10072;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight).ID: return 10074;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10076;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight).ID: return 10078;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10080;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight).ID: return 10082;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight).ID: return 10084;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10086;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight).ID: return 10088;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10090;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight).ID: return 10092;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 10845;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 10846;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 10849;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 10850;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 10853;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 10854;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 10857;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 10858;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 10861;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 10862;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 10865;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 10866;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 10869;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 10870;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 10873;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 10874;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 10877;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 10878;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 10881;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 10882;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 10885;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 10886;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 10889;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 10890;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 10893;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 10894;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 10897;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 10898;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 10901;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 10902;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 10905;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 10906;
+ case RedNetherBricks::RedNetherBricks().ID: return 8719;
+ case RedSand::RedSand().ID: return 67;
+ case RedSandstone::RedSandstone().ID: return 7681;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Top).ID: return 7861;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Bottom).ID: return 7863;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Double).ID: return 7865;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7685;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7687;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7689;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7691;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7693;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7695;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7697;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7699;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7701;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7703;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7705;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7707;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7709;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7711;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7713;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7715;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7717;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7719;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7721;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7723;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7725;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7727;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7729;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7731;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7733;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7735;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7737;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7739;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7741;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7743;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7745;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7747;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7749;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7751;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7753;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7755;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7757;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7759;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7761;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7763;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 10461;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 10462;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 10465;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 10466;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 10469;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 10470;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 10473;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 10474;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 10477;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 10478;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 10481;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 10482;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 10485;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 10486;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 10489;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 10490;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 10493;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 10494;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 10497;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 10498;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 10501;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 10502;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 10505;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 10506;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 10509;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 10510;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 10513;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 10514;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 10517;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 10518;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 10521;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 10522;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8826;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8827;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8828;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8829;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8830;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8831;
+ case RedStainedGlass::RedStainedGlass().ID: return 4095;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, true, true).ID: return 6777;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, true, false).ID: return 6778;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, false, true).ID: return 6781;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, false, false).ID: return 6782;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, true, true).ID: return 6785;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, true, false).ID: return 6786;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, false, true).ID: return 6789;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, false, false).ID: return 6790;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, true, true).ID: return 6793;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, true, false).ID: return 6794;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, false, true).ID: return 6797;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, false, false).ID: return 6798;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, true, true).ID: return 6801;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, true, false).ID: return 6802;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, false, true).ID: return 6805;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, false, false).ID: return 6806;
+ case RedTerracotta::RedTerracotta().ID: return 6325;
+ case RedTulip::RedTulip().ID: return 1416;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7673;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7674;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7675;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7676;
+ case RedWool::RedWool().ID: return 1397;
+ case RedstoneBlock::RedstoneBlock().ID: return 6190;
+ case RedstoneLamp::RedstoneLamp(true).ID: return 5140;
+ case RedstoneLamp::RedstoneLamp(false).ID: return 5141;
+ case RedstoneOre::RedstoneOre(true).ID: return 3883;
+ case RedstoneOre::RedstoneOre(false).ID: return 3884;
+ case RedstoneTorch::RedstoneTorch(true).ID: return 3885;
+ case RedstoneTorch::RedstoneTorch(false).ID: return 3886;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, true).ID: return 3887;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, false).ID: return 3888;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, true).ID: return 3889;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, false).ID: return 3890;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, true).ID: return 3891;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, false).ID: return 3892;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, true).ID: return 3893;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, false).ID: return 3894;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2056;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2057;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2058;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2059;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2060;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2061;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2062;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2063;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2064;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2065;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2066;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2067;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2068;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2069;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2070;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2071;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2072;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2073;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2074;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2075;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2076;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2077;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2078;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2079;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2080;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2081;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2082;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2083;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2084;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2085;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2086;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2087;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2088;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2089;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2090;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2091;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2092;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2093;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2094;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2095;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2096;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2097;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2098;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2099;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2100;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2101;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2102;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2103;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2104;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2105;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2106;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2107;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2108;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2109;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2110;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2111;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2112;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2113;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2114;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2115;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2116;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2117;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2118;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2119;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2120;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2121;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2122;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2123;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2124;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2125;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2126;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2127;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2128;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2129;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2130;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2131;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2132;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2133;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2134;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2135;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2136;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2137;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2138;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2139;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2140;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2141;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2142;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2143;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2144;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2145;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2146;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2147;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2148;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2149;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2150;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2151;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2152;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2153;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2154;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2155;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2156;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2157;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2158;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2159;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2160;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2161;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2162;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2163;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2164;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2165;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2166;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2167;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2168;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2169;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2170;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2171;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2172;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2173;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2174;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2175;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2176;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2177;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2178;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2179;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2180;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2181;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2182;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2183;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2184;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2185;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2186;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2187;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2188;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2189;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2190;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2191;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2192;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2193;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2194;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2195;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2196;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2197;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2198;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2199;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2200;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2201;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2202;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2203;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2204;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2205;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2206;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2207;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2208;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2209;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2210;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2211;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2212;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2213;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2214;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2215;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2216;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2217;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2218;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2219;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2220;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2221;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2222;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2223;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2224;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2225;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2226;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2227;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2228;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2229;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2230;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2231;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2232;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2233;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2234;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2235;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2236;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2237;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2238;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2239;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2240;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2241;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2242;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2243;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2244;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2245;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2246;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2247;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2248;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2249;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2250;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2251;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2252;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2253;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2254;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2255;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2256;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2257;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2258;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2259;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2260;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2261;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2262;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2263;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2264;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2265;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2266;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2267;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2268;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2269;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2270;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2271;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2272;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2273;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2274;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2275;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2276;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2277;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2278;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2279;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2280;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2281;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2282;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2283;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2284;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2285;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2286;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2287;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2288;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2289;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2290;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2291;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2292;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2293;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2294;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2295;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2296;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2297;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2298;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2299;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2300;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2301;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2302;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2303;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2304;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2305;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2306;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2307;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2308;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2309;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2310;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2311;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2312;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2313;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2314;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2315;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2316;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2317;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2318;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2319;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2320;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2321;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2322;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2323;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2324;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2325;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2326;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2327;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2328;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2329;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2330;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2331;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2332;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2333;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2334;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2335;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2336;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2337;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2338;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2339;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2340;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2341;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2342;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2343;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2344;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2345;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2346;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2347;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2348;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2349;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2350;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2351;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2352;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2353;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2354;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2355;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2356;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2357;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2358;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2359;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2360;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2361;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2362;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2363;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2364;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2365;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2366;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2367;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2368;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2369;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2370;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2371;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2372;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2373;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2374;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2375;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2376;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2377;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2378;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2379;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2380;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2381;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2382;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2383;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2384;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2385;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2386;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2387;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2388;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2389;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2390;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2391;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2392;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2393;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2394;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2395;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2396;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2397;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2398;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2399;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2400;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2401;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2402;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2403;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2404;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2405;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2406;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2407;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2408;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2409;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2410;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2411;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2412;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2413;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2414;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2415;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2416;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2417;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2418;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2419;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2420;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2421;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2422;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2423;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2424;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2425;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2426;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2427;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2428;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2429;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2430;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2431;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2432;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2433;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2434;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2435;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2436;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2437;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2438;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2439;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2440;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2441;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2442;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2443;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2444;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2445;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2446;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2447;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2448;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2449;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2450;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2451;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2452;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2453;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2454;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2455;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2456;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2457;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2458;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2459;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2460;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2461;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2462;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2463;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2464;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2465;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2466;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2467;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2468;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2469;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2470;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2471;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2472;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2473;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2474;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2475;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2476;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2477;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2478;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2479;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2480;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2481;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2482;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2483;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2484;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2485;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2486;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2487;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2488;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2489;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2490;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2491;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2492;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2493;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2494;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2495;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2496;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2497;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2498;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2499;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2500;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2501;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2502;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2503;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2504;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2505;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2506;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2507;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2508;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2509;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2510;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2511;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2512;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2513;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2514;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2515;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2516;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2517;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2518;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2519;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2520;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2521;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2522;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2523;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2524;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2525;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2526;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2527;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2528;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2529;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2530;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2531;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2532;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2533;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2534;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2535;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2536;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2537;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2538;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2539;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2540;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2541;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2542;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2543;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2544;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2545;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2546;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2547;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2548;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2549;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2550;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2551;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2552;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2553;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2554;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2555;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2556;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2557;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2558;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2559;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2560;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2561;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2562;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2563;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2564;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2565;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2566;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2567;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2568;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2569;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2570;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2571;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2572;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2573;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2574;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2575;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2576;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2577;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2578;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2579;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2580;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2581;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2582;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2583;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2584;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2585;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2586;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2587;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2588;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2589;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2590;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2591;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2592;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2593;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2594;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2595;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2596;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2597;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2598;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2599;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2600;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2601;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2602;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2603;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2604;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2605;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2606;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2607;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2608;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2609;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2610;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2611;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2612;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2613;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2614;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2615;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2616;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2617;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2618;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2619;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2620;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2621;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2622;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2623;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2624;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2625;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2626;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2627;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2628;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2629;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2630;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2631;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2632;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2633;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2634;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2635;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2636;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2637;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2638;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2639;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2640;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2641;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2642;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2643;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2644;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2645;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2646;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2647;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2648;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2649;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2650;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2651;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2652;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2653;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2654;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2655;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2656;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2657;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2658;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2659;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2660;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2661;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2662;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2663;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2664;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2665;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2666;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2667;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2668;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2669;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2670;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2671;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2672;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2673;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2674;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2675;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2676;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2677;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2678;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2679;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2680;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2681;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2682;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2683;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2684;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2685;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2686;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2687;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2688;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2689;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2690;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2691;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2692;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2693;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2694;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2695;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2696;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2697;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2698;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2699;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2700;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2701;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2702;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2703;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2704;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2705;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2706;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2707;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2708;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2709;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2710;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2711;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2712;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2713;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2714;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2715;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2716;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2717;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2718;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2719;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2720;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2721;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2722;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2723;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2724;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2725;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2726;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2727;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2728;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2729;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2730;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2731;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2732;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2733;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2734;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2735;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2736;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2737;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2738;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2739;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2740;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2741;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2742;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2743;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2744;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2745;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2746;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2747;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2748;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2749;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2750;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2751;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2752;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2753;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2754;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2755;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2756;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2757;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2758;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2759;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2760;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2761;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2762;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2763;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2764;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2765;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2766;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2767;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2768;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2769;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2770;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2771;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2772;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2773;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2774;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2775;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2776;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2777;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2778;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2779;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2780;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2781;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2782;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2783;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2784;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2785;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2786;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2787;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2788;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2789;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2790;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2791;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2792;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2793;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2794;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2795;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2796;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2797;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2798;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2799;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2800;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2801;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2802;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2803;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2804;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2805;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2806;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2807;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2808;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2809;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2810;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2811;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2812;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2813;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2814;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2815;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2816;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2817;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2818;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2819;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2820;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2821;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2822;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2823;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2824;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2825;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2826;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2827;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2828;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2829;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2830;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2831;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2832;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2833;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2834;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2835;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2836;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2837;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2838;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2839;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2840;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2841;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2842;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2843;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2844;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2845;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2846;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2847;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2848;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2849;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2850;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2851;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2852;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2853;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2854;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2855;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2856;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2857;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2858;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2859;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2860;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2861;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2862;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2863;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2864;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2865;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2866;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2867;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2868;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2869;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2870;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2871;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2872;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2873;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2874;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2875;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2876;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2877;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2878;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2879;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2880;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2881;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2882;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2883;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2884;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2885;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2886;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2887;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2888;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2889;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2890;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2891;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2892;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2893;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2894;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2895;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2896;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2897;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2898;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2899;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2900;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2901;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2902;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2903;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2904;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2905;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2906;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2907;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2908;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2909;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2910;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2911;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2912;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2913;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2914;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2915;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2916;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2917;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2918;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2919;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2920;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2921;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2922;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2923;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2924;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2925;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2926;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2927;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2928;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2929;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2930;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2931;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2932;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2933;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2934;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2935;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2936;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2937;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2938;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2939;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2940;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2941;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2942;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2943;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2944;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2945;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2946;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2947;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2948;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2949;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2950;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2951;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2952;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2953;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2954;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2955;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2956;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2957;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2958;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2959;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2960;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2961;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2962;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2963;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2964;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2965;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2966;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2967;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2968;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2969;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2970;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2971;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2972;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2973;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2974;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2975;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2976;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2977;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2978;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2979;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2980;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2981;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2982;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2983;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2984;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2985;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2986;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2987;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2988;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2989;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2990;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2991;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2992;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2993;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2994;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2995;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2996;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2997;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2998;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2999;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3000;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3001;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3002;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3003;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3004;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3005;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3006;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3007;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3008;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3009;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3010;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3011;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3012;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3013;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3014;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3015;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3016;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3017;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3018;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3019;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3020;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3021;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3022;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3023;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3024;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3025;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3026;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3027;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3028;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3029;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3030;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3031;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3032;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3033;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3034;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3035;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3036;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3037;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3038;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3039;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3040;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3041;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3042;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3043;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3044;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3045;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3046;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3047;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3048;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3049;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3050;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3051;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3052;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3053;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3054;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3055;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3056;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3057;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3058;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3059;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3060;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3061;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3062;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3063;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3064;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3065;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3066;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3067;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3068;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3069;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3070;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3071;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3072;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3073;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3074;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3075;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3076;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3077;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3078;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3079;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3080;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3081;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3082;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3083;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3084;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3085;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3086;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3087;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3088;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3089;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3090;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3091;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3092;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3093;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3094;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3095;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3096;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3097;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3098;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3099;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3100;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3101;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3102;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3103;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3104;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3105;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3106;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3107;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3108;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3109;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3110;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3111;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3112;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3113;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3114;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3115;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3116;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3117;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3118;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3119;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3120;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3121;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3122;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3123;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3124;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3125;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3126;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3127;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3128;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3129;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3130;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3131;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3132;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3133;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3134;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3135;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3136;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3137;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3138;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3139;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3140;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3141;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3142;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3143;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3144;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3145;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3146;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3147;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3148;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3149;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3150;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3151;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3152;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3153;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3154;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3155;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3156;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3157;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3158;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3159;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3160;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3161;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3162;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3163;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3164;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3165;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3166;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3167;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3168;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3169;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3170;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3171;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3172;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3173;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3174;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3175;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3176;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3177;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3178;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3179;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3180;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3181;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3182;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3183;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3184;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3185;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3186;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3187;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3188;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3189;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3190;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3191;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3192;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3193;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3194;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3195;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3196;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3197;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3198;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3199;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3200;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3201;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3202;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3203;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3204;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3205;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3206;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3207;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3208;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3209;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3210;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3211;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3212;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3213;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3214;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3215;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3216;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3217;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3218;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3219;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3220;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3221;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3222;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3223;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3224;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3225;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3226;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3227;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3228;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3229;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3230;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3231;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3232;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3233;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3234;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3235;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3236;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3237;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3238;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3239;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3240;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3241;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3242;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3243;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3244;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3245;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3246;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3247;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3248;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3249;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3250;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3251;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3252;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3253;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3254;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3255;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3256;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3257;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3258;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3259;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3260;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3261;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3262;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3263;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3264;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3265;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3266;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3267;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3268;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3269;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3270;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3271;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3272;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3273;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3274;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3275;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3276;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3277;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3278;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3279;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3280;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3281;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3282;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3283;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3284;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3285;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3286;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3287;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3288;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3289;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3290;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3291;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3292;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3293;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3294;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3295;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3296;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3297;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3298;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3299;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3300;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3301;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3302;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3303;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3304;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3305;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3306;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3307;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3308;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3309;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3310;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3311;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3312;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3313;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3314;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3315;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3316;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3317;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3318;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3319;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3320;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3321;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3322;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3323;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3324;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3325;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3326;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3327;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3328;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3329;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3330;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3331;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3332;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3333;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3334;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3335;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3336;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3337;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3338;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3339;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3340;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3341;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3342;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3343;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3344;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3345;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3346;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3347;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3348;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3349;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3350;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3351;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 4017;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 4018;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 4019;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 4020;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 4021;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 4022;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 4023;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 4024;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 4025;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 4026;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 4027;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 4028;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 4029;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 4030;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 4031;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 4032;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 4033;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 4034;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 4035;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 4036;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 4037;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 4038;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 4039;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 4040;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 4041;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 4042;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 4043;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 4044;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 4045;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 4046;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 4047;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 4048;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 4049;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 4050;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 4051;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 4052;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 4053;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 4054;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 4055;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 4056;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 4057;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 4058;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 4059;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 4060;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 4061;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 4062;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 4063;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 4064;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 4065;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 4066;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 4067;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 4068;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 4069;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 4070;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 4071;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 4072;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 4073;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 4074;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 4075;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 4076;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 4077;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 4078;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 4079;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 4080;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 8689;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 8690;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 8691;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 8692;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 8693;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 8694;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 8695;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 8696;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 8697;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 8698;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 8699;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 8700;
+ case RoseBush::RoseBush(RoseBush::Half::Upper).ID: return 7353;
+ case RoseBush::RoseBush(RoseBush::Half::Lower).ID: return 7354;
+ case Sand::Sand().ID: return 66;
+ case Sandstone::Sandstone().ID: return 245;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Top).ID: return 7813;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Bottom).ID: return 7815;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Double).ID: return 7817;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 5155;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 5157;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 5159;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 5161;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 5163;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 5165;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 5167;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 5169;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 5171;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 5173;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 5175;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 5177;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 5179;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 5181;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 5183;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 5185;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 5187;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 5189;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 5191;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 5193;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 5195;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 5197;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 5199;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 5201;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 5203;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 5205;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 5207;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 5209;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 5211;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 5213;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 5215;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 5217;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 5219;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 5221;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 5223;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 5225;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 5227;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 5229;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 5231;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 5233;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 10909;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 10910;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 10913;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 10914;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 10917;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 10918;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 10921;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 10922;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 10925;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 10926;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 10929;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 10930;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 10933;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 10934;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 10937;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 10938;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 10941;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 10942;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 10945;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 10946;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 10949;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 10950;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 10953;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 10954;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 10957;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 10958;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 10961;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 10962;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 10965;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 10966;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 10969;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 10970;
+ case Scaffolding::Scaffolding(true, 0).ID: return 11100;
+ case Scaffolding::Scaffolding(true, 1).ID: return 11102;
+ case Scaffolding::Scaffolding(true, 2).ID: return 11104;
+ case Scaffolding::Scaffolding(true, 3).ID: return 11106;
+ case Scaffolding::Scaffolding(true, 4).ID: return 11108;
+ case Scaffolding::Scaffolding(true, 5).ID: return 11110;
+ case Scaffolding::Scaffolding(true, 6).ID: return 11112;
+ case Scaffolding::Scaffolding(true, 7).ID: return 11114;
+ case Scaffolding::Scaffolding(false, 0).ID: return 11116;
+ case Scaffolding::Scaffolding(false, 1).ID: return 11118;
+ case Scaffolding::Scaffolding(false, 2).ID: return 11120;
+ case Scaffolding::Scaffolding(false, 3).ID: return 11122;
+ case Scaffolding::Scaffolding(false, 4).ID: return 11124;
+ case Scaffolding::Scaffolding(false, 5).ID: return 11126;
+ case Scaffolding::Scaffolding(false, 6).ID: return 11128;
+ case Scaffolding::Scaffolding(false, 7).ID: return 11130;
+ case SeaLantern::SeaLantern().ID: return 7326;
+ case SeaPickle::SeaPickle(1).ID: return 9105;
+ case SeaPickle::SeaPickle(2).ID: return 9107;
+ case SeaPickle::SeaPickle(3).ID: return 9109;
+ case SeaPickle::SeaPickle(4).ID: return 9111;
+ case Seagrass::Seagrass().ID: return 1344;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8736;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8737;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8738;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8739;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8740;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8741;
+ case SkeletonSkull::SkeletonSkull(0).ID: return 5954;
+ case SkeletonSkull::SkeletonSkull(1).ID: return 5955;
+ case SkeletonSkull::SkeletonSkull(2).ID: return 5956;
+ case SkeletonSkull::SkeletonSkull(3).ID: return 5957;
+ case SkeletonSkull::SkeletonSkull(4).ID: return 5958;
+ case SkeletonSkull::SkeletonSkull(5).ID: return 5959;
+ case SkeletonSkull::SkeletonSkull(6).ID: return 5960;
+ case SkeletonSkull::SkeletonSkull(7).ID: return 5961;
+ case SkeletonSkull::SkeletonSkull(8).ID: return 5962;
+ case SkeletonSkull::SkeletonSkull(9).ID: return 5963;
+ case SkeletonSkull::SkeletonSkull(10).ID: return 5964;
+ case SkeletonSkull::SkeletonSkull(11).ID: return 5965;
+ case SkeletonSkull::SkeletonSkull(12).ID: return 5966;
+ case SkeletonSkull::SkeletonSkull(13).ID: return 5967;
+ case SkeletonSkull::SkeletonSkull(14).ID: return 5968;
+ case SkeletonSkull::SkeletonSkull(15).ID: return 5969;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM).ID: return 5970;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP).ID: return 5971;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XM).ID: return 5972;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XP).ID: return 5973;
+ case SlimeBlock::SlimeBlock().ID: return 6999;
+ case SmithingTable::SmithingTable().ID: return 11193;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, true).ID: return 11147;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, false).ID: return 11148;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, true).ID: return 11149;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, false).ID: return 11150;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, true).ID: return 11151;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, false).ID: return 11152;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, true).ID: return 11153;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, false).ID: return 11154;
+ case SmoothQuartz::SmoothQuartz().ID: return 7880;
+ case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Top).ID: return 10296;
+ case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Bottom).ID: return 10298;
+ case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Double).ID: return 10300;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight).ID: return 9774;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9776;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight).ID: return 9778;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9780;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight).ID: return 9782;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight).ID: return 9784;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9786;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight).ID: return 9788;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9790;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight).ID: return 9792;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight).ID: return 9794;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9796;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight).ID: return 9798;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9800;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight).ID: return 9802;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight).ID: return 9804;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9806;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight).ID: return 9808;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9810;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight).ID: return 9812;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight).ID: return 9814;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9816;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight).ID: return 9818;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9820;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight).ID: return 9822;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight).ID: return 9824;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9826;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight).ID: return 9828;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9830;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight).ID: return 9832;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight).ID: return 9834;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9836;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight).ID: return 9838;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9840;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight).ID: return 9842;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight).ID: return 9844;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9846;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight).ID: return 9848;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9850;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight).ID: return 9852;
+ case SmoothRedSandstone::SmoothRedSandstone().ID: return 7881;
+ case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Top).ID: return 10260;
+ case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Bottom).ID: return 10262;
+ case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Double).ID: return 10264;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9214;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9216;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9218;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9220;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9222;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9224;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9226;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9228;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9230;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9232;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9234;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9236;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9238;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9240;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9242;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9244;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9246;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9248;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9250;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9252;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9254;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9256;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9258;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9260;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9262;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9264;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9266;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9268;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9270;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9272;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9274;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9276;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9278;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9280;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9282;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9284;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9286;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9288;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9290;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9292;
+ case SmoothSandstone::SmoothSandstone().ID: return 7879;
+ case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Top).ID: return 10290;
+ case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Bottom).ID: return 10292;
+ case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Double).ID: return 10294;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight).ID: return 9694;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9696;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9698;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9700;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9702;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight).ID: return 9704;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9706;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9708;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9710;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9712;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight).ID: return 9714;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9716;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9718;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9720;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9722;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight).ID: return 9724;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9726;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9728;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9730;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9732;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight).ID: return 9734;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9736;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9738;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9740;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9742;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight).ID: return 9744;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9746;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9748;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9750;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9752;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight).ID: return 9754;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9756;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9758;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9760;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9762;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight).ID: return 9764;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9766;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9768;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9770;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9772;
+ case SmoothStone::SmoothStone().ID: return 7878;
+ case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Top).ID: return 7807;
+ case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Bottom).ID: return 7809;
+ case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Double).ID: return 7811;
+ case Snow::Snow(1).ID: return 3919;
+ case Snow::Snow(2).ID: return 3920;
+ case Snow::Snow(3).ID: return 3921;
+ case Snow::Snow(4).ID: return 3922;
+ case Snow::Snow(5).ID: return 3923;
+ case Snow::Snow(6).ID: return 3924;
+ case Snow::Snow(7).ID: return 3925;
+ case Snow::Snow(8).ID: return 3926;
+ case SnowBlock::SnowBlock().ID: return 3928;
+ case SoulSand::SoulSand().ID: return 3998;
+ case Spawner::Spawner().ID: return 1951;
+ case Sponge::Sponge().ID: return 228;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5834;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5835;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5836;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5837;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5838;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5839;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5840;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5841;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5842;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5843;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5844;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5845;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5846;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5847;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5848;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5849;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5850;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5851;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5852;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5853;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5854;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5855;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5856;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5857;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 8202;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 8203;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 8204;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 8205;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 8206;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 8207;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 8208;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 8209;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 8210;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 8211;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 8212;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 8213;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 8214;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 8215;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 8216;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 8217;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 8218;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 8219;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 8220;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 8221;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 8222;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 8223;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 8224;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 8225;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 8226;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 8227;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 8228;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 8229;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 8230;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 8231;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 8232;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 8233;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 8234;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 8235;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 8236;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 8237;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 8238;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 8239;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 8240;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 8241;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 8242;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 8243;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 8244;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 8245;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 8246;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 8247;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 8248;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 8249;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 8250;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 8251;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 8252;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 8253;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 8254;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 8255;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 8256;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 8257;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 8258;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 8259;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 8260;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 8261;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 8262;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 8263;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 8264;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 8265;
+ case SpruceFence::SpruceFence(true, true, true, true).ID: return 8044;
+ case SpruceFence::SpruceFence(true, true, true, false).ID: return 8045;
+ case SpruceFence::SpruceFence(true, true, false, true).ID: return 8048;
+ case SpruceFence::SpruceFence(true, true, false, false).ID: return 8049;
+ case SpruceFence::SpruceFence(true, false, true, true).ID: return 8052;
+ case SpruceFence::SpruceFence(true, false, true, false).ID: return 8053;
+ case SpruceFence::SpruceFence(true, false, false, true).ID: return 8056;
+ case SpruceFence::SpruceFence(true, false, false, false).ID: return 8057;
+ case SpruceFence::SpruceFence(false, true, true, true).ID: return 8060;
+ case SpruceFence::SpruceFence(false, true, true, false).ID: return 8061;
+ case SpruceFence::SpruceFence(false, true, false, true).ID: return 8064;
+ case SpruceFence::SpruceFence(false, true, false, false).ID: return 8065;
+ case SpruceFence::SpruceFence(false, false, true, true).ID: return 8068;
+ case SpruceFence::SpruceFence(false, false, true, false).ID: return 8069;
+ case SpruceFence::SpruceFence(false, false, false, true).ID: return 8072;
+ case SpruceFence::SpruceFence(false, false, false, false).ID: return 8073;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7882;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7883;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7884;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7885;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7886;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7887;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7888;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7889;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7890;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7891;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7892;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7893;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7894;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7895;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7896;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7897;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7898;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7899;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7900;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7901;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7902;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7903;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7904;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7905;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7906;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7907;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7908;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7909;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7910;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7911;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7912;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7913;
+ case SpruceLeaves::SpruceLeaves(1, true).ID: return 158;
+ case SpruceLeaves::SpruceLeaves(1, false).ID: return 159;
+ case SpruceLeaves::SpruceLeaves(2, true).ID: return 160;
+ case SpruceLeaves::SpruceLeaves(2, false).ID: return 161;
+ case SpruceLeaves::SpruceLeaves(3, true).ID: return 162;
+ case SpruceLeaves::SpruceLeaves(3, false).ID: return 163;
+ case SpruceLeaves::SpruceLeaves(4, true).ID: return 164;
+ case SpruceLeaves::SpruceLeaves(4, false).ID: return 165;
+ case SpruceLeaves::SpruceLeaves(5, true).ID: return 166;
+ case SpruceLeaves::SpruceLeaves(5, false).ID: return 167;
+ case SpruceLeaves::SpruceLeaves(6, true).ID: return 168;
+ case SpruceLeaves::SpruceLeaves(6, false).ID: return 169;
+ case SpruceLeaves::SpruceLeaves(7, true).ID: return 170;
+ case SpruceLeaves::SpruceLeaves(7, false).ID: return 171;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::X).ID: return 75;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::Y).ID: return 76;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::Z).ID: return 77;
+ case SprucePlanks::SprucePlanks().ID: return 16;
+ case SprucePressurePlate::SprucePressurePlate(true).ID: return 3873;
+ case SprucePressurePlate::SprucePressurePlate(false).ID: return 3874;
+ case SpruceSapling::SpruceSapling(0).ID: return 23;
+ case SpruceSapling::SpruceSapling(1).ID: return 24;
+ case SpruceSign::SpruceSign(0).ID: return 3412;
+ case SpruceSign::SpruceSign(1).ID: return 3414;
+ case SpruceSign::SpruceSign(2).ID: return 3416;
+ case SpruceSign::SpruceSign(3).ID: return 3418;
+ case SpruceSign::SpruceSign(4).ID: return 3420;
+ case SpruceSign::SpruceSign(5).ID: return 3422;
+ case SpruceSign::SpruceSign(6).ID: return 3424;
+ case SpruceSign::SpruceSign(7).ID: return 3426;
+ case SpruceSign::SpruceSign(8).ID: return 3428;
+ case SpruceSign::SpruceSign(9).ID: return 3430;
+ case SpruceSign::SpruceSign(10).ID: return 3432;
+ case SpruceSign::SpruceSign(11).ID: return 3434;
+ case SpruceSign::SpruceSign(12).ID: return 3436;
+ case SpruceSign::SpruceSign(13).ID: return 3438;
+ case SpruceSign::SpruceSign(14).ID: return 3440;
+ case SpruceSign::SpruceSign(15).ID: return 3442;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Top).ID: return 7771;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Bottom).ID: return 7773;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Double).ID: return 7775;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 5389;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 5391;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 5393;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 5395;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 5397;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 5399;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 5401;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 5403;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 5405;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 5407;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 5409;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 5411;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 5413;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 5415;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 5417;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 5419;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 5421;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 5423;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 5425;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 5427;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 5429;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 5431;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 5433;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 5435;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 5437;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 5439;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 5441;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 5443;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 5445;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 5447;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 5449;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 5451;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 5453;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 5455;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 5457;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 5459;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 5461;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 5463;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 5465;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 5467;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, true).ID: return 4162;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, false).ID: return 4164;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, true).ID: return 4166;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, false).ID: return 4168;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, true).ID: return 4170;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, false).ID: return 4172;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, true).ID: return 4174;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, false).ID: return 4176;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, true).ID: return 4178;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, false).ID: return 4180;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, true).ID: return 4182;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, false).ID: return 4184;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, true).ID: return 4186;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, false).ID: return 4188;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, true).ID: return 4190;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, false).ID: return 4192;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, true).ID: return 4194;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, false).ID: return 4196;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, true).ID: return 4198;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, false).ID: return 4200;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, true).ID: return 4202;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, false).ID: return 4204;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, true).ID: return 4206;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, false).ID: return 4208;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, true).ID: return 4210;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, false).ID: return 4212;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, true).ID: return 4214;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, false).ID: return 4216;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, true).ID: return 4218;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, false).ID: return 4220;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, true).ID: return 4222;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, false).ID: return 4224;
+ case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3742;
+ case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3744;
+ case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3746;
+ case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3748;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::X).ID: return 111;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::Y).ID: return 112;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::Z).ID: return 113;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZM).ID: return 1328;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XP).ID: return 1329;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZP).ID: return 1330;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XM).ID: return 1331;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YP).ID: return 1332;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YM).ID: return 1333;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZM).ID: return 1334;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XP).ID: return 1335;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZP).ID: return 1336;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XM).ID: return 1337;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YP).ID: return 1338;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YM).ID: return 1339;
+ case Stone::Stone().ID: return 1;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Top).ID: return 7843;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Bottom).ID: return 7845;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double).ID: return 7847;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4917;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4919;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4921;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4923;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4925;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4927;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4929;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4931;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4933;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4935;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4937;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4939;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4941;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4943;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4945;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4947;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4949;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4951;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4953;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4955;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4957;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4959;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4961;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4963;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4965;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4967;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4969;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4971;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4973;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4975;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4977;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4979;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4981;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4983;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4985;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4987;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4989;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4991;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4993;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4995;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 10653;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 10654;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 10657;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 10658;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 10661;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 10662;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 10665;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 10666;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 10669;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 10670;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 10673;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 10674;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 10677;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 10678;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 10681;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 10682;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 10685;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 10686;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 10689;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 10690;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 10693;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 10694;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 10697;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 10698;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 10701;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 10702;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 10705;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 10706;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 10709;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 10710;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 10713;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 10714;
+ case StoneBricks::StoneBricks().ID: return 4481;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3895;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3896;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3897;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3898;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 3899;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 3900;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 3901;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 3902;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3903;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3904;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3905;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3906;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 3907;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 3908;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 3909;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 3910;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3911;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3912;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3913;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3914;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 3915;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 3916;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 3917;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 3918;
+ case StonePressurePlate::StonePressurePlate(true).ID: return 3805;
+ case StonePressurePlate::StonePressurePlate(false).ID: return 3806;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Top).ID: return 7801;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Bottom).ID: return 7803;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Double).ID: return 7805;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::Straight).ID: return 9614;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft).ID: return 9616;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight).ID: return 9618;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft).ID: return 9620;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight).ID: return 9622;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight).ID: return 9624;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft).ID: return 9626;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight).ID: return 9628;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft).ID: return 9630;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight).ID: return 9632;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::Straight).ID: return 9634;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft).ID: return 9636;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight).ID: return 9638;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft).ID: return 9640;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight).ID: return 9642;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight).ID: return 9644;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft).ID: return 9646;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight).ID: return 9648;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft).ID: return 9650;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight).ID: return 9652;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::Straight).ID: return 9654;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft).ID: return 9656;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight).ID: return 9658;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft).ID: return 9660;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight).ID: return 9662;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight).ID: return 9664;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft).ID: return 9666;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight).ID: return 9668;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft).ID: return 9670;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight).ID: return 9672;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::Straight).ID: return 9674;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft).ID: return 9676;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight).ID: return 9678;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft).ID: return 9680;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight).ID: return 9682;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight).ID: return 9684;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft).ID: return 9686;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight).ID: return 9688;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft).ID: return 9690;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight).ID: return 9692;
+ case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZM).ID: return 11194;
+ case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZP).ID: return 11195;
+ case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XM).ID: return 11196;
+ case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XP).ID: return 11197;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::X).ID: return 99;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Y).ID: return 100;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Z).ID: return 101;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::X).ID: return 138;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Y).ID: return 139;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Z).ID: return 140;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::X).ID: return 93;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Y).ID: return 94;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Z).ID: return 95;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::X).ID: return 132;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Y).ID: return 133;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Z).ID: return 134;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::X).ID: return 102;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Y).ID: return 103;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Z).ID: return 104;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::X).ID: return 141;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Y).ID: return 142;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Z).ID: return 143;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::X).ID: return 96;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Y).ID: return 97;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Z).ID: return 98;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::X).ID: return 135;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Y).ID: return 136;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Z).ID: return 137;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::X).ID: return 105;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Y).ID: return 106;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Z).ID: return 107;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::X).ID: return 126;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Y).ID: return 127;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Z).ID: return 128;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::X).ID: return 90;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Y).ID: return 91;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Z).ID: return 92;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::X).ID: return 129;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Y).ID: return 130;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Z).ID: return 131;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Save).ID: return 11252;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Load).ID: return 11253;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Corner).ID: return 11254;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Data).ID: return 11255;
+ case StructureVoid::StructureVoid().ID: return 8723;
+ case SugarCane::SugarCane(0).ID: return 3946;
+ case SugarCane::SugarCane(1).ID: return 3947;
+ case SugarCane::SugarCane(2).ID: return 3948;
+ case SugarCane::SugarCane(3).ID: return 3949;
+ case SugarCane::SugarCane(4).ID: return 3950;
+ case SugarCane::SugarCane(5).ID: return 3951;
+ case SugarCane::SugarCane(6).ID: return 3952;
+ case SugarCane::SugarCane(7).ID: return 3953;
+ case SugarCane::SugarCane(8).ID: return 3954;
+ case SugarCane::SugarCane(9).ID: return 3955;
+ case SugarCane::SugarCane(10).ID: return 3956;
+ case SugarCane::SugarCane(11).ID: return 3957;
+ case SugarCane::SugarCane(12).ID: return 3958;
+ case SugarCane::SugarCane(13).ID: return 3959;
+ case SugarCane::SugarCane(14).ID: return 3960;
+ case SugarCane::SugarCane(15).ID: return 3961;
+ case Sunflower::Sunflower(Sunflower::Half::Upper).ID: return 7349;
+ case Sunflower::Sunflower(Sunflower::Half::Lower).ID: return 7350;
+ case SweetBerryBush::SweetBerryBush(0).ID: return 11248;
+ case SweetBerryBush::SweetBerryBush(1).ID: return 11249;
+ case SweetBerryBush::SweetBerryBush(2).ID: return 11250;
+ case SweetBerryBush::SweetBerryBush(3).ID: return 11251;
+ case TNT::TNT(true).ID: return 1429;
+ case TNT::TNT(false).ID: return 1430;
+ case TallGrass::TallGrass(TallGrass::Half::Upper).ID: return 7357;
+ case TallGrass::TallGrass(TallGrass::Half::Lower).ID: return 7358;
+ case TallSeagrass::TallSeagrass(TallSeagrass::Half::Upper).ID: return 1345;
+ case TallSeagrass::TallSeagrass(TallSeagrass::Half::Lower).ID: return 1346;
+ case Terracotta::Terracotta().ID: return 7346;
+ case Torch::Torch().ID: return 1434;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Single).ID: return 6087;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Left).ID: return 6089;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Right).ID: return 6091;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Single).ID: return 6093;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Left).ID: return 6095;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Right).ID: return 6097;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Single).ID: return 6099;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Left).ID: return 6101;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Right).ID: return 6103;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Single).ID: return 6105;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Left).ID: return 6107;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Right).ID: return 6109;
+ case Tripwire::Tripwire(true, true, true, true, true, true, true).ID: return 5259;
+ case Tripwire::Tripwire(true, true, true, true, true, true, false).ID: return 5260;
+ case Tripwire::Tripwire(true, true, true, true, true, false, true).ID: return 5261;
+ case Tripwire::Tripwire(true, true, true, true, true, false, false).ID: return 5262;
+ case Tripwire::Tripwire(true, true, true, true, false, true, true).ID: return 5263;
+ case Tripwire::Tripwire(true, true, true, true, false, true, false).ID: return 5264;
+ case Tripwire::Tripwire(true, true, true, true, false, false, true).ID: return 5265;
+ case Tripwire::Tripwire(true, true, true, true, false, false, false).ID: return 5266;
+ case Tripwire::Tripwire(true, true, true, false, true, true, true).ID: return 5267;
+ case Tripwire::Tripwire(true, true, true, false, true, true, false).ID: return 5268;
+ case Tripwire::Tripwire(true, true, true, false, true, false, true).ID: return 5269;
+ case Tripwire::Tripwire(true, true, true, false, true, false, false).ID: return 5270;
+ case Tripwire::Tripwire(true, true, true, false, false, true, true).ID: return 5271;
+ case Tripwire::Tripwire(true, true, true, false, false, true, false).ID: return 5272;
+ case Tripwire::Tripwire(true, true, true, false, false, false, true).ID: return 5273;
+ case Tripwire::Tripwire(true, true, true, false, false, false, false).ID: return 5274;
+ case Tripwire::Tripwire(true, true, false, true, true, true, true).ID: return 5275;
+ case Tripwire::Tripwire(true, true, false, true, true, true, false).ID: return 5276;
+ case Tripwire::Tripwire(true, true, false, true, true, false, true).ID: return 5277;
+ case Tripwire::Tripwire(true, true, false, true, true, false, false).ID: return 5278;
+ case Tripwire::Tripwire(true, true, false, true, false, true, true).ID: return 5279;
+ case Tripwire::Tripwire(true, true, false, true, false, true, false).ID: return 5280;
+ case Tripwire::Tripwire(true, true, false, true, false, false, true).ID: return 5281;
+ case Tripwire::Tripwire(true, true, false, true, false, false, false).ID: return 5282;
+ case Tripwire::Tripwire(true, true, false, false, true, true, true).ID: return 5283;
+ case Tripwire::Tripwire(true, true, false, false, true, true, false).ID: return 5284;
+ case Tripwire::Tripwire(true, true, false, false, true, false, true).ID: return 5285;
+ case Tripwire::Tripwire(true, true, false, false, true, false, false).ID: return 5286;
+ case Tripwire::Tripwire(true, true, false, false, false, true, true).ID: return 5287;
+ case Tripwire::Tripwire(true, true, false, false, false, true, false).ID: return 5288;
+ case Tripwire::Tripwire(true, true, false, false, false, false, true).ID: return 5289;
+ case Tripwire::Tripwire(true, true, false, false, false, false, false).ID: return 5290;
+ case Tripwire::Tripwire(true, false, true, true, true, true, true).ID: return 5291;
+ case Tripwire::Tripwire(true, false, true, true, true, true, false).ID: return 5292;
+ case Tripwire::Tripwire(true, false, true, true, true, false, true).ID: return 5293;
+ case Tripwire::Tripwire(true, false, true, true, true, false, false).ID: return 5294;
+ case Tripwire::Tripwire(true, false, true, true, false, true, true).ID: return 5295;
+ case Tripwire::Tripwire(true, false, true, true, false, true, false).ID: return 5296;
+ case Tripwire::Tripwire(true, false, true, true, false, false, true).ID: return 5297;
+ case Tripwire::Tripwire(true, false, true, true, false, false, false).ID: return 5298;
+ case Tripwire::Tripwire(true, false, true, false, true, true, true).ID: return 5299;
+ case Tripwire::Tripwire(true, false, true, false, true, true, false).ID: return 5300;
+ case Tripwire::Tripwire(true, false, true, false, true, false, true).ID: return 5301;
+ case Tripwire::Tripwire(true, false, true, false, true, false, false).ID: return 5302;
+ case Tripwire::Tripwire(true, false, true, false, false, true, true).ID: return 5303;
+ case Tripwire::Tripwire(true, false, true, false, false, true, false).ID: return 5304;
+ case Tripwire::Tripwire(true, false, true, false, false, false, true).ID: return 5305;
+ case Tripwire::Tripwire(true, false, true, false, false, false, false).ID: return 5306;
+ case Tripwire::Tripwire(true, false, false, true, true, true, true).ID: return 5307;
+ case Tripwire::Tripwire(true, false, false, true, true, true, false).ID: return 5308;
+ case Tripwire::Tripwire(true, false, false, true, true, false, true).ID: return 5309;
+ case Tripwire::Tripwire(true, false, false, true, true, false, false).ID: return 5310;
+ case Tripwire::Tripwire(true, false, false, true, false, true, true).ID: return 5311;
+ case Tripwire::Tripwire(true, false, false, true, false, true, false).ID: return 5312;
+ case Tripwire::Tripwire(true, false, false, true, false, false, true).ID: return 5313;
+ case Tripwire::Tripwire(true, false, false, true, false, false, false).ID: return 5314;
+ case Tripwire::Tripwire(true, false, false, false, true, true, true).ID: return 5315;
+ case Tripwire::Tripwire(true, false, false, false, true, true, false).ID: return 5316;
+ case Tripwire::Tripwire(true, false, false, false, true, false, true).ID: return 5317;
+ case Tripwire::Tripwire(true, false, false, false, true, false, false).ID: return 5318;
+ case Tripwire::Tripwire(true, false, false, false, false, true, true).ID: return 5319;
+ case Tripwire::Tripwire(true, false, false, false, false, true, false).ID: return 5320;
+ case Tripwire::Tripwire(true, false, false, false, false, false, true).ID: return 5321;
+ case Tripwire::Tripwire(true, false, false, false, false, false, false).ID: return 5322;
+ case Tripwire::Tripwire(false, true, true, true, true, true, true).ID: return 5323;
+ case Tripwire::Tripwire(false, true, true, true, true, true, false).ID: return 5324;
+ case Tripwire::Tripwire(false, true, true, true, true, false, true).ID: return 5325;
+ case Tripwire::Tripwire(false, true, true, true, true, false, false).ID: return 5326;
+ case Tripwire::Tripwire(false, true, true, true, false, true, true).ID: return 5327;
+ case Tripwire::Tripwire(false, true, true, true, false, true, false).ID: return 5328;
+ case Tripwire::Tripwire(false, true, true, true, false, false, true).ID: return 5329;
+ case Tripwire::Tripwire(false, true, true, true, false, false, false).ID: return 5330;
+ case Tripwire::Tripwire(false, true, true, false, true, true, true).ID: return 5331;
+ case Tripwire::Tripwire(false, true, true, false, true, true, false).ID: return 5332;
+ case Tripwire::Tripwire(false, true, true, false, true, false, true).ID: return 5333;
+ case Tripwire::Tripwire(false, true, true, false, true, false, false).ID: return 5334;
+ case Tripwire::Tripwire(false, true, true, false, false, true, true).ID: return 5335;
+ case Tripwire::Tripwire(false, true, true, false, false, true, false).ID: return 5336;
+ case Tripwire::Tripwire(false, true, true, false, false, false, true).ID: return 5337;
+ case Tripwire::Tripwire(false, true, true, false, false, false, false).ID: return 5338;
+ case Tripwire::Tripwire(false, true, false, true, true, true, true).ID: return 5339;
+ case Tripwire::Tripwire(false, true, false, true, true, true, false).ID: return 5340;
+ case Tripwire::Tripwire(false, true, false, true, true, false, true).ID: return 5341;
+ case Tripwire::Tripwire(false, true, false, true, true, false, false).ID: return 5342;
+ case Tripwire::Tripwire(false, true, false, true, false, true, true).ID: return 5343;
+ case Tripwire::Tripwire(false, true, false, true, false, true, false).ID: return 5344;
+ case Tripwire::Tripwire(false, true, false, true, false, false, true).ID: return 5345;
+ case Tripwire::Tripwire(false, true, false, true, false, false, false).ID: return 5346;
+ case Tripwire::Tripwire(false, true, false, false, true, true, true).ID: return 5347;
+ case Tripwire::Tripwire(false, true, false, false, true, true, false).ID: return 5348;
+ case Tripwire::Tripwire(false, true, false, false, true, false, true).ID: return 5349;
+ case Tripwire::Tripwire(false, true, false, false, true, false, false).ID: return 5350;
+ case Tripwire::Tripwire(false, true, false, false, false, true, true).ID: return 5351;
+ case Tripwire::Tripwire(false, true, false, false, false, true, false).ID: return 5352;
+ case Tripwire::Tripwire(false, true, false, false, false, false, true).ID: return 5353;
+ case Tripwire::Tripwire(false, true, false, false, false, false, false).ID: return 5354;
+ case Tripwire::Tripwire(false, false, true, true, true, true, true).ID: return 5355;
+ case Tripwire::Tripwire(false, false, true, true, true, true, false).ID: return 5356;
+ case Tripwire::Tripwire(false, false, true, true, true, false, true).ID: return 5357;
+ case Tripwire::Tripwire(false, false, true, true, true, false, false).ID: return 5358;
+ case Tripwire::Tripwire(false, false, true, true, false, true, true).ID: return 5359;
+ case Tripwire::Tripwire(false, false, true, true, false, true, false).ID: return 5360;
+ case Tripwire::Tripwire(false, false, true, true, false, false, true).ID: return 5361;
+ case Tripwire::Tripwire(false, false, true, true, false, false, false).ID: return 5362;
+ case Tripwire::Tripwire(false, false, true, false, true, true, true).ID: return 5363;
+ case Tripwire::Tripwire(false, false, true, false, true, true, false).ID: return 5364;
+ case Tripwire::Tripwire(false, false, true, false, true, false, true).ID: return 5365;
+ case Tripwire::Tripwire(false, false, true, false, true, false, false).ID: return 5366;
+ case Tripwire::Tripwire(false, false, true, false, false, true, true).ID: return 5367;
+ case Tripwire::Tripwire(false, false, true, false, false, true, false).ID: return 5368;
+ case Tripwire::Tripwire(false, false, true, false, false, false, true).ID: return 5369;
+ case Tripwire::Tripwire(false, false, true, false, false, false, false).ID: return 5370;
+ case Tripwire::Tripwire(false, false, false, true, true, true, true).ID: return 5371;
+ case Tripwire::Tripwire(false, false, false, true, true, true, false).ID: return 5372;
+ case Tripwire::Tripwire(false, false, false, true, true, false, true).ID: return 5373;
+ case Tripwire::Tripwire(false, false, false, true, true, false, false).ID: return 5374;
+ case Tripwire::Tripwire(false, false, false, true, false, true, true).ID: return 5375;
+ case Tripwire::Tripwire(false, false, false, true, false, true, false).ID: return 5376;
+ case Tripwire::Tripwire(false, false, false, true, false, false, true).ID: return 5377;
+ case Tripwire::Tripwire(false, false, false, true, false, false, false).ID: return 5378;
+ case Tripwire::Tripwire(false, false, false, false, true, true, true).ID: return 5379;
+ case Tripwire::Tripwire(false, false, false, false, true, true, false).ID: return 5380;
+ case Tripwire::Tripwire(false, false, false, false, true, false, true).ID: return 5381;
+ case Tripwire::Tripwire(false, false, false, false, true, false, false).ID: return 5382;
+ case Tripwire::Tripwire(false, false, false, false, false, true, true).ID: return 5383;
+ case Tripwire::Tripwire(false, false, false, false, false, true, false).ID: return 5384;
+ case Tripwire::Tripwire(false, false, false, false, false, false, true).ID: return 5385;
+ case Tripwire::Tripwire(false, false, false, false, false, false, false).ID: return 5386;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5243;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5244;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5245;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5246;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, true).ID: return 5247;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, false).ID: return 5248;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, true).ID: return 5249;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, false).ID: return 5250;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5251;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5252;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5253;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5254;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, true).ID: return 5255;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, false).ID: return 5256;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, true).ID: return 5257;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, false).ID: return 5258;
+ case TubeCoral::TubeCoral().ID: return 8995;
+ case TubeCoralBlock::TubeCoralBlock().ID: return 8979;
+ case TubeCoralFan::TubeCoralFan().ID: return 9015;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9065;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9067;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9069;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9071;
+ case TurtleEgg::TurtleEgg(1, 0).ID: return 8962;
+ case TurtleEgg::TurtleEgg(1, 1).ID: return 8963;
+ case TurtleEgg::TurtleEgg(1, 2).ID: return 8964;
+ case TurtleEgg::TurtleEgg(2, 0).ID: return 8965;
+ case TurtleEgg::TurtleEgg(2, 1).ID: return 8966;
+ case TurtleEgg::TurtleEgg(2, 2).ID: return 8967;
+ case TurtleEgg::TurtleEgg(3, 0).ID: return 8968;
+ case TurtleEgg::TurtleEgg(3, 1).ID: return 8969;
+ case TurtleEgg::TurtleEgg(3, 2).ID: return 8970;
+ case TurtleEgg::TurtleEgg(4, 0).ID: return 8971;
+ case TurtleEgg::TurtleEgg(4, 1).ID: return 8972;
+ case TurtleEgg::TurtleEgg(4, 2).ID: return 8973;
+ case Vine::Vine(true, true, true, true, true).ID: return 4772;
+ case Vine::Vine(true, true, true, true, false).ID: return 4773;
+ case Vine::Vine(true, true, true, false, true).ID: return 4774;
+ case Vine::Vine(true, true, true, false, false).ID: return 4775;
+ case Vine::Vine(true, true, false, true, true).ID: return 4776;
+ case Vine::Vine(true, true, false, true, false).ID: return 4777;
+ case Vine::Vine(true, true, false, false, true).ID: return 4778;
+ case Vine::Vine(true, true, false, false, false).ID: return 4779;
+ case Vine::Vine(true, false, true, true, true).ID: return 4780;
+ case Vine::Vine(true, false, true, true, false).ID: return 4781;
+ case Vine::Vine(true, false, true, false, true).ID: return 4782;
+ case Vine::Vine(true, false, true, false, false).ID: return 4783;
+ case Vine::Vine(true, false, false, true, true).ID: return 4784;
+ case Vine::Vine(true, false, false, true, false).ID: return 4785;
+ case Vine::Vine(true, false, false, false, true).ID: return 4786;
+ case Vine::Vine(true, false, false, false, false).ID: return 4787;
+ case Vine::Vine(false, true, true, true, true).ID: return 4788;
+ case Vine::Vine(false, true, true, true, false).ID: return 4789;
+ case Vine::Vine(false, true, true, false, true).ID: return 4790;
+ case Vine::Vine(false, true, true, false, false).ID: return 4791;
+ case Vine::Vine(false, true, false, true, true).ID: return 4792;
+ case Vine::Vine(false, true, false, true, false).ID: return 4793;
+ case Vine::Vine(false, true, false, false, true).ID: return 4794;
+ case Vine::Vine(false, true, false, false, false).ID: return 4795;
+ case Vine::Vine(false, false, true, true, true).ID: return 4796;
+ case Vine::Vine(false, false, true, true, false).ID: return 4797;
+ case Vine::Vine(false, false, true, false, true).ID: return 4798;
+ case Vine::Vine(false, false, true, false, false).ID: return 4799;
+ case Vine::Vine(false, false, false, true, true).ID: return 4800;
+ case Vine::Vine(false, false, false, true, false).ID: return 4801;
+ case Vine::Vine(false, false, false, false, true).ID: return 4802;
+ case Vine::Vine(false, false, false, false, false).ID: return 4803;
+ case VoidAir::VoidAir().ID: return 9129;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZM).ID: return 1435;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZP).ID: return 1436;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XM).ID: return 1437;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XP).ID: return 1438;
+ case Water::Water(0).ID: return 34;
+ case Water::Water(1).ID: return 35;
+ case Water::Water(2).ID: return 36;
+ case Water::Water(3).ID: return 37;
+ case Water::Water(4).ID: return 38;
+ case Water::Water(5).ID: return 39;
+ case Water::Water(6).ID: return 40;
+ case Water::Water(7).ID: return 41;
+ case Water::Water(8).ID: return 42;
+ case Water::Water(9).ID: return 43;
+ case Water::Water(10).ID: return 44;
+ case Water::Water(11).ID: return 45;
+ case Water::Water(12).ID: return 46;
+ case Water::Water(13).ID: return 47;
+ case Water::Water(14).ID: return 48;
+ case Water::Water(15).ID: return 49;
+ case WetSponge::WetSponge().ID: return 229;
+ case Wheat::Wheat(0).ID: return 3355;
+ case Wheat::Wheat(1).ID: return 3356;
+ case Wheat::Wheat(2).ID: return 3357;
+ case Wheat::Wheat(3).ID: return 3358;
+ case Wheat::Wheat(4).ID: return 3359;
+ case Wheat::Wheat(5).ID: return 3360;
+ case Wheat::Wheat(6).ID: return 3361;
+ case Wheat::Wheat(7).ID: return 3362;
+ case WhiteBanner::WhiteBanner(0).ID: return 7361;
+ case WhiteBanner::WhiteBanner(1).ID: return 7362;
+ case WhiteBanner::WhiteBanner(2).ID: return 7363;
+ case WhiteBanner::WhiteBanner(3).ID: return 7364;
+ case WhiteBanner::WhiteBanner(4).ID: return 7365;
+ case WhiteBanner::WhiteBanner(5).ID: return 7366;
+ case WhiteBanner::WhiteBanner(6).ID: return 7367;
+ case WhiteBanner::WhiteBanner(7).ID: return 7368;
+ case WhiteBanner::WhiteBanner(8).ID: return 7369;
+ case WhiteBanner::WhiteBanner(9).ID: return 7370;
+ case WhiteBanner::WhiteBanner(10).ID: return 7371;
+ case WhiteBanner::WhiteBanner(11).ID: return 7372;
+ case WhiteBanner::WhiteBanner(12).ID: return 7373;
+ case WhiteBanner::WhiteBanner(13).ID: return 7374;
+ case WhiteBanner::WhiteBanner(14).ID: return 7375;
+ case WhiteBanner::WhiteBanner(15).ID: return 7376;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Head).ID: return 1048;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Foot).ID: return 1049;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Head).ID: return 1050;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Foot).ID: return 1051;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Head).ID: return 1052;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Foot).ID: return 1053;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Head).ID: return 1054;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Foot).ID: return 1055;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Head).ID: return 1056;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Foot).ID: return 1057;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Head).ID: return 1058;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Foot).ID: return 1059;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Head).ID: return 1060;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Foot).ID: return 1061;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Head).ID: return 1062;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Foot).ID: return 1063;
+ case WhiteCarpet::WhiteCarpet().ID: return 7330;
+ case WhiteConcrete::WhiteConcrete().ID: return 8902;
+ case WhiteConcretePowder::WhiteConcretePowder().ID: return 8918;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8838;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8839;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8840;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8841;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8742;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8743;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8744;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8745;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8746;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8747;
+ case WhiteStainedGlass::WhiteStainedGlass().ID: return 4081;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, true).ID: return 6329;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, false).ID: return 6330;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, true).ID: return 6333;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, false).ID: return 6334;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, true).ID: return 6337;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, false).ID: return 6338;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, true).ID: return 6341;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, false).ID: return 6342;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, true).ID: return 6345;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, false).ID: return 6346;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, true).ID: return 6349;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, false).ID: return 6350;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, true).ID: return 6353;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, false).ID: return 6354;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, true).ID: return 6357;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, false).ID: return 6358;
+ case WhiteTerracotta::WhiteTerracotta().ID: return 6311;
+ case WhiteTulip::WhiteTulip().ID: return 1418;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7617;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7618;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7619;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7620;
+ case WhiteWool::WhiteWool().ID: return 1383;
+ case WitherRose::WitherRose().ID: return 1422;
+ case WitherSkeletonSkull::WitherSkeletonSkull(0).ID: return 5974;
+ case WitherSkeletonSkull::WitherSkeletonSkull(1).ID: return 5975;
+ case WitherSkeletonSkull::WitherSkeletonSkull(2).ID: return 5976;
+ case WitherSkeletonSkull::WitherSkeletonSkull(3).ID: return 5977;
+ case WitherSkeletonSkull::WitherSkeletonSkull(4).ID: return 5978;
+ case WitherSkeletonSkull::WitherSkeletonSkull(5).ID: return 5979;
+ case WitherSkeletonSkull::WitherSkeletonSkull(6).ID: return 5980;
+ case WitherSkeletonSkull::WitherSkeletonSkull(7).ID: return 5981;
+ case WitherSkeletonSkull::WitherSkeletonSkull(8).ID: return 5982;
+ case WitherSkeletonSkull::WitherSkeletonSkull(9).ID: return 5983;
+ case WitherSkeletonSkull::WitherSkeletonSkull(10).ID: return 5984;
+ case WitherSkeletonSkull::WitherSkeletonSkull(11).ID: return 5985;
+ case WitherSkeletonSkull::WitherSkeletonSkull(12).ID: return 5986;
+ case WitherSkeletonSkull::WitherSkeletonSkull(13).ID: return 5987;
+ case WitherSkeletonSkull::WitherSkeletonSkull(14).ID: return 5988;
+ case WitherSkeletonSkull::WitherSkeletonSkull(15).ID: return 5989;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM).ID: return 5990;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP).ID: return 5991;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XM).ID: return 5992;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XP).ID: return 5993;
+ case YellowBanner::YellowBanner(0).ID: return 7425;
+ case YellowBanner::YellowBanner(1).ID: return 7426;
+ case YellowBanner::YellowBanner(2).ID: return 7427;
+ case YellowBanner::YellowBanner(3).ID: return 7428;
+ case YellowBanner::YellowBanner(4).ID: return 7429;
+ case YellowBanner::YellowBanner(5).ID: return 7430;
+ case YellowBanner::YellowBanner(6).ID: return 7431;
+ case YellowBanner::YellowBanner(7).ID: return 7432;
+ case YellowBanner::YellowBanner(8).ID: return 7433;
+ case YellowBanner::YellowBanner(9).ID: return 7434;
+ case YellowBanner::YellowBanner(10).ID: return 7435;
+ case YellowBanner::YellowBanner(11).ID: return 7436;
+ case YellowBanner::YellowBanner(12).ID: return 7437;
+ case YellowBanner::YellowBanner(13).ID: return 7438;
+ case YellowBanner::YellowBanner(14).ID: return 7439;
+ case YellowBanner::YellowBanner(15).ID: return 7440;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Head).ID: return 1112;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Foot).ID: return 1113;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Head).ID: return 1114;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Foot).ID: return 1115;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Head).ID: return 1116;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Foot).ID: return 1117;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Head).ID: return 1118;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Foot).ID: return 1119;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Head).ID: return 1120;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Foot).ID: return 1121;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Head).ID: return 1122;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Foot).ID: return 1123;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Head).ID: return 1124;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Foot).ID: return 1125;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Head).ID: return 1126;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Foot).ID: return 1127;
+ case YellowCarpet::YellowCarpet().ID: return 7334;
+ case YellowConcrete::YellowConcrete().ID: return 8906;
+ case YellowConcretePowder::YellowConcretePowder().ID: return 8922;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8854;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8855;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8856;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8857;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8766;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8767;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8768;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8769;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8770;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8771;
+ case YellowStainedGlass::YellowStainedGlass().ID: return 4085;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, true).ID: return 6457;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, false).ID: return 6458;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, true).ID: return 6461;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, false).ID: return 6462;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, true).ID: return 6465;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, false).ID: return 6466;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, true).ID: return 6469;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, false).ID: return 6470;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, true).ID: return 6473;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, false).ID: return 6474;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, true).ID: return 6477;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, false).ID: return 6478;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, true).ID: return 6481;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, false).ID: return 6482;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, true).ID: return 6485;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, false).ID: return 6486;
+ case YellowTerracotta::YellowTerracotta().ID: return 6315;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7633;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7634;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7635;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7636;
+ case YellowWool::YellowWool().ID: return 1387;
+ case ZombieHead::ZombieHead(0).ID: return 5994;
+ case ZombieHead::ZombieHead(1).ID: return 5995;
+ case ZombieHead::ZombieHead(2).ID: return 5996;
+ case ZombieHead::ZombieHead(3).ID: return 5997;
+ case ZombieHead::ZombieHead(4).ID: return 5998;
+ case ZombieHead::ZombieHead(5).ID: return 5999;
+ case ZombieHead::ZombieHead(6).ID: return 6000;
+ case ZombieHead::ZombieHead(7).ID: return 6001;
+ case ZombieHead::ZombieHead(8).ID: return 6002;
+ case ZombieHead::ZombieHead(9).ID: return 6003;
+ case ZombieHead::ZombieHead(10).ID: return 6004;
+ case ZombieHead::ZombieHead(11).ID: return 6005;
+ case ZombieHead::ZombieHead(12).ID: return 6006;
+ case ZombieHead::ZombieHead(13).ID: return 6007;
+ case ZombieHead::ZombieHead(14).ID: return 6008;
+ case ZombieHead::ZombieHead(15).ID: return 6009;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 6010;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 6011;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 6012;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 6013;
default: return 0;
}
}
- UInt32 FromItem(const Item ID)
+ UInt32 From(const Item ID)
{
switch (ID)
{
diff --git a/src/Protocol/Palettes/Palette_1_14.h b/src/Protocol/Palettes/Palette_1_14.h
index 1bb5ffa85..037d9b4c1 100644
--- a/src/Protocol/Palettes/Palette_1_14.h
+++ b/src/Protocol/Palettes/Palette_1_14.h
@@ -1,12 +1,13 @@
#pragma once
-#include "../../Registries/Items.h"
-#include "../../Registries/Statistics.h"
+#include "BlockState.h"
+#include "Registries/Items.h"
+#include "Registries/Statistics.h"
namespace Palette_1_14
{
- UInt32 FromBlock(short ID);
- UInt32 FromItem(Item ID);
+ UInt32 From(BlockState Block);
+ UInt32 From(Item ID);
UInt32 From(Statistic ID);
Item ToItem(UInt32 ID);
}
diff --git a/src/Protocol/Palettes/Palette_1_15.cpp b/src/Protocol/Palettes/Palette_1_15.cpp
index 6cc67a488..4070a3715 100644
--- a/src/Protocol/Palettes/Palette_1_15.cpp
+++ b/src/Protocol/Palettes/Palette_1_15.cpp
@@ -1,8692 +1,8692 @@
#include "Globals.h"
#include "Palette_1_15.h"
-#include "../../Registries/Blocks.h"
+#include "Registries/BlockStates.h"
namespace Palette_1_15
{
- UInt32 FromBlock(const short ID)
+ UInt32 From(const BlockState Block)
{
using namespace Block;
- switch (ID)
+ switch (Block.ID)
{
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5906;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5907;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5908;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5909;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5910;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5911;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5912;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5913;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5914;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5915;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5916;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5917;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5918;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5919;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5920;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5921;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5922;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5923;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5924;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5925;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5926;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5927;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5928;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5929;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8394;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8395;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8396;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8397;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8398;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8399;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8400;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8401;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8402;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8403;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8404;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8405;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8406;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8407;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8408;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8409;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8410;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8411;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8412;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8413;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8414;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8415;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8416;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8417;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8418;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8419;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8420;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8421;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8422;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8423;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8424;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8425;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8426;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8427;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8428;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8429;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8430;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8431;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8432;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8433;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8434;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8435;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8436;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8437;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8438;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8439;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8440;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8441;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8442;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8443;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8444;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8445;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8446;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8447;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8448;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8449;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8450;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8451;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8452;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8453;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8454;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8455;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8456;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8457;
- case AcaciaFence::AcaciaFence(true, true, true, true): return 8140;
- case AcaciaFence::AcaciaFence(true, true, true, false): return 8141;
- case AcaciaFence::AcaciaFence(true, true, false, true): return 8144;
- case AcaciaFence::AcaciaFence(true, true, false, false): return 8145;
- case AcaciaFence::AcaciaFence(true, false, true, true): return 8148;
- case AcaciaFence::AcaciaFence(true, false, true, false): return 8149;
- case AcaciaFence::AcaciaFence(true, false, false, true): return 8152;
- case AcaciaFence::AcaciaFence(true, false, false, false): return 8153;
- case AcaciaFence::AcaciaFence(false, true, true, true): return 8156;
- case AcaciaFence::AcaciaFence(false, true, true, false): return 8157;
- case AcaciaFence::AcaciaFence(false, true, false, true): return 8160;
- case AcaciaFence::AcaciaFence(false, true, false, false): return 8161;
- case AcaciaFence::AcaciaFence(false, false, true, true): return 8164;
- case AcaciaFence::AcaciaFence(false, false, true, false): return 8165;
- case AcaciaFence::AcaciaFence(false, false, false, true): return 8168;
- case AcaciaFence::AcaciaFence(false, false, false, false): return 8169;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7978;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7979;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7980;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7981;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7982;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7983;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7984;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7985;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7986;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7987;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7988;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7989;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7990;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7991;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7992;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7993;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7994;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7995;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7996;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7997;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7998;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7999;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8000;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8001;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8002;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8003;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8004;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8005;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8006;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8007;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8008;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8009;
- case AcaciaLeaves::AcaciaLeaves(1, true): return 200;
- case AcaciaLeaves::AcaciaLeaves(1, false): return 201;
- case AcaciaLeaves::AcaciaLeaves(2, true): return 202;
- case AcaciaLeaves::AcaciaLeaves(2, false): return 203;
- case AcaciaLeaves::AcaciaLeaves(3, true): return 204;
- case AcaciaLeaves::AcaciaLeaves(3, false): return 205;
- case AcaciaLeaves::AcaciaLeaves(4, true): return 206;
- case AcaciaLeaves::AcaciaLeaves(4, false): return 207;
- case AcaciaLeaves::AcaciaLeaves(5, true): return 208;
- case AcaciaLeaves::AcaciaLeaves(5, false): return 209;
- case AcaciaLeaves::AcaciaLeaves(6, true): return 210;
- case AcaciaLeaves::AcaciaLeaves(6, false): return 211;
- case AcaciaLeaves::AcaciaLeaves(7, true): return 212;
- case AcaciaLeaves::AcaciaLeaves(7, false): return 213;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::X): return 84;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Y): return 85;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Z): return 86;
- case AcaciaPlanks::AcaciaPlanks(): return 19;
- case AcaciaPressurePlate::AcaciaPressurePlate(true): return 3879;
- case AcaciaPressurePlate::AcaciaPressurePlate(false): return 3880;
- case AcaciaSapling::AcaciaSapling(0): return 29;
- case AcaciaSapling::AcaciaSapling(1): return 30;
- case AcaciaSign::AcaciaSign(0): return 3476;
- case AcaciaSign::AcaciaSign(1): return 3478;
- case AcaciaSign::AcaciaSign(2): return 3480;
- case AcaciaSign::AcaciaSign(3): return 3482;
- case AcaciaSign::AcaciaSign(4): return 3484;
- case AcaciaSign::AcaciaSign(5): return 3486;
- case AcaciaSign::AcaciaSign(6): return 3488;
- case AcaciaSign::AcaciaSign(7): return 3490;
- case AcaciaSign::AcaciaSign(8): return 3492;
- case AcaciaSign::AcaciaSign(9): return 3494;
- case AcaciaSign::AcaciaSign(10): return 3496;
- case AcaciaSign::AcaciaSign(11): return 3498;
- case AcaciaSign::AcaciaSign(12): return 3500;
- case AcaciaSign::AcaciaSign(13): return 3502;
- case AcaciaSign::AcaciaSign(14): return 3504;
- case AcaciaSign::AcaciaSign(15): return 3506;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Top): return 7789;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Bottom): return 7791;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Double): return 7793;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6840;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6842;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6844;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6846;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6848;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6850;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6852;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6854;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6856;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6858;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6860;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6862;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6864;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6866;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6868;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6870;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6872;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6874;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6876;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6878;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6880;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6882;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6884;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6886;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6888;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6890;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6892;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6894;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6896;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6898;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 6900;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 6902;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 6904;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 6906;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 6908;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 6910;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 6912;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 6914;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 6916;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 6918;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, true): return 4354;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, false): return 4356;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, true): return 4358;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, false): return 4360;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, true): return 4362;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, false): return 4364;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, true): return 4366;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, false): return 4368;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, true): return 4370;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, false): return 4372;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, true): return 4374;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, false): return 4376;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, true): return 4378;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, false): return 4380;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, true): return 4382;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, false): return 4384;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, true): return 4386;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, false): return 4388;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, true): return 4390;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, false): return 4392;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, true): return 4394;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, false): return 4396;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, true): return 4398;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, false): return 4400;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, true): return 4402;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, false): return 4404;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, true): return 4406;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, false): return 4408;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, true): return 4410;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, false): return 4412;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, true): return 4414;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, false): return 4416;
- case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZM): return 3758;
- case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZP): return 3760;
- case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XM): return 3762;
- case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XP): return 3764;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::X): return 120;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Y): return 121;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Z): return 122;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::NorthSouth): return 6287;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::EastWest): return 6288;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingEast): return 6289;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingWest): return 6290;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingNorth): return 6291;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingSouth): return 6292;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::NorthSouth): return 6293;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::EastWest): return 6294;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingEast): return 6295;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingWest): return 6296;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingNorth): return 6297;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingSouth): return 6298;
- case Air::Air(): return -0;
- case Allium::Allium(): return 1414;
- case Andesite::Andesite(): return 6;
- case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Top): return 10308;
- case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Bottom): return 10310;
- case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Double): return 10312;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 9934;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 9936;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 9938;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 9940;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 9942;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 9944;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 9946;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 9948;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 9950;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 9952;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 9954;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 9956;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 9958;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 9960;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 9962;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 9964;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 9966;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 9968;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 9970;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 9972;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 9974;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 9976;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 9978;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 9980;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 9982;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 9984;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 9986;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 9988;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 9990;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 9992;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 9994;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 9996;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 9998;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 10000;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 10002;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 10004;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 10006;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 10008;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 10010;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 10012;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 10781;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 10782;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 10785;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 10786;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 10789;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None): return 10790;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 10793;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None): return 10794;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 10797;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 10798;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 10801;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 10802;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 10805;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None): return 10806;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 10809;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None): return 10810;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 10813;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 10814;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 10817;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 10818;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 10821;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None): return 10822;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 10825;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None): return 10826;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 10829;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 10830;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 10833;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 10834;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 10837;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None): return 10838;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 10841;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None): return 10842;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZM): return 6074;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZP): return 6075;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_XM): return 6076;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_XP): return 6077;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZM): return 4752;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZP): return 4753;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XM): return 4754;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XP): return 4755;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZM): return 4748;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZP): return 4749;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XM): return 4750;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XP): return 4751;
- case AzureBluet::AzureBluet(): return 1415;
- case Bamboo::Bamboo(0, Bamboo::Leaves::None, 0): return 9116;
- case Bamboo::Bamboo(0, Bamboo::Leaves::None, 1): return 9117;
- case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 0): return 9118;
- case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 1): return 9119;
- case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 0): return 9120;
- case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 1): return 9121;
- case Bamboo::Bamboo(1, Bamboo::Leaves::None, 0): return 9122;
- case Bamboo::Bamboo(1, Bamboo::Leaves::None, 1): return 9123;
- case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 0): return 9124;
- case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 1): return 9125;
- case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 0): return 9126;
- case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 1): return 9127;
- case BambooSapling::BambooSapling(): return 9115;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, true): return 11135;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, false): return 11136;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, true): return 11137;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, false): return 11138;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, true): return 11139;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, false): return 11140;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, true): return 11141;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, false): return 11142;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, true): return 11143;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, false): return 11144;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, true): return 11145;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, false): return 11146;
- case Barrier::Barrier(): return 7000;
- case Beacon::Beacon(): return 5640;
- case Bedrock::Bedrock(): return 33;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 0): return 11287;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 1): return 11288;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 2): return 11289;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 3): return 11290;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 4): return 11291;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 5): return 11292;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 0): return 11293;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 1): return 11294;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 2): return 11295;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 3): return 11296;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 4): return 11297;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 5): return 11298;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 0): return 11299;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 1): return 11300;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 2): return 11301;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 3): return 11302;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 4): return 11303;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 5): return 11304;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 0): return 11305;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 1): return 11306;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 2): return 11307;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 3): return 11308;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 4): return 11309;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 5): return 11310;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 0): return 11311;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 1): return 11312;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 2): return 11313;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 3): return 11314;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 4): return 11315;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 5): return 11316;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 0): return 11317;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 1): return 11318;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 2): return 11319;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 3): return 11320;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 4): return 11321;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 5): return 11322;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 0): return 11323;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 1): return 11324;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 2): return 11325;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 3): return 11326;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 4): return 11327;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 5): return 11328;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 0): return 11329;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 1): return 11330;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 2): return 11331;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 3): return 11332;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 4): return 11333;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 5): return 11334;
- case Beetroots::Beetroots(0): return 8683;
- case Beetroots::Beetroots(1): return 8684;
- case Beetroots::Beetroots(2): return 8685;
- case Beetroots::Beetroots(3): return 8686;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 11198;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 11199;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 11200;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 11201;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XM, true): return 11202;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XM, false): return 11203;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XP, true): return 11204;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XP, false): return 11205;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 11206;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 11207;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 11208;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 11209;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 11210;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 11211;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 11212;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 11213;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZM, true): return 11214;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZM, false): return 11215;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZP, true): return 11216;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZP, false): return 11217;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XM, true): return 11218;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XM, false): return 11219;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XP, true): return 11220;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XP, false): return 11221;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZM, true): return 11222;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZM, false): return 11223;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZP, true): return 11224;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZP, false): return 11225;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XM, true): return 11226;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XM, false): return 11227;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XP, true): return 11228;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XP, false): return 11229;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5858;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5859;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5860;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5861;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5862;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5863;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5864;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5865;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5866;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5867;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5868;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5869;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5870;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5871;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5872;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5873;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5874;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5875;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5876;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5877;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5878;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5879;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5880;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5881;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8266;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8267;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8268;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8269;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8270;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8271;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8272;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8273;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8274;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8275;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8276;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8277;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8278;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8279;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8280;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8281;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8282;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8283;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8284;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8285;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8286;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8287;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8288;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8289;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8290;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8291;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8292;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8293;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8294;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8295;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8296;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8297;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8298;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8299;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8300;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8301;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8302;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8303;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8304;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8305;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8306;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8307;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8308;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8309;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8310;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8311;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8312;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8313;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8314;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8315;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8316;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8317;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8318;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8319;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8320;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8321;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8322;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8323;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8324;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8325;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8326;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8327;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8328;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8329;
- case BirchFence::BirchFence(true, true, true, true): return 8076;
- case BirchFence::BirchFence(true, true, true, false): return 8077;
- case BirchFence::BirchFence(true, true, false, true): return 8080;
- case BirchFence::BirchFence(true, true, false, false): return 8081;
- case BirchFence::BirchFence(true, false, true, true): return 8084;
- case BirchFence::BirchFence(true, false, true, false): return 8085;
- case BirchFence::BirchFence(true, false, false, true): return 8088;
- case BirchFence::BirchFence(true, false, false, false): return 8089;
- case BirchFence::BirchFence(false, true, true, true): return 8092;
- case BirchFence::BirchFence(false, true, true, false): return 8093;
- case BirchFence::BirchFence(false, true, false, true): return 8096;
- case BirchFence::BirchFence(false, true, false, false): return 8097;
- case BirchFence::BirchFence(false, false, true, true): return 8100;
- case BirchFence::BirchFence(false, false, true, false): return 8101;
- case BirchFence::BirchFence(false, false, false, true): return 8104;
- case BirchFence::BirchFence(false, false, false, false): return 8105;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7914;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7915;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7916;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7917;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7918;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7919;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7920;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7921;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7922;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7923;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7924;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7925;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7926;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7927;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7928;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7929;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7930;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7931;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7932;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7933;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7934;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7935;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7936;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7937;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7938;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7939;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7940;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7941;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7942;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7943;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7944;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7945;
- case BirchLeaves::BirchLeaves(1, true): return 172;
- case BirchLeaves::BirchLeaves(1, false): return 173;
- case BirchLeaves::BirchLeaves(2, true): return 174;
- case BirchLeaves::BirchLeaves(2, false): return 175;
- case BirchLeaves::BirchLeaves(3, true): return 176;
- case BirchLeaves::BirchLeaves(3, false): return 177;
- case BirchLeaves::BirchLeaves(4, true): return 178;
- case BirchLeaves::BirchLeaves(4, false): return 179;
- case BirchLeaves::BirchLeaves(5, true): return 180;
- case BirchLeaves::BirchLeaves(5, false): return 181;
- case BirchLeaves::BirchLeaves(6, true): return 182;
- case BirchLeaves::BirchLeaves(6, false): return 183;
- case BirchLeaves::BirchLeaves(7, true): return 184;
- case BirchLeaves::BirchLeaves(7, false): return 185;
- case BirchLog::BirchLog(BirchLog::Axis::X): return 78;
- case BirchLog::BirchLog(BirchLog::Axis::Y): return 79;
- case BirchLog::BirchLog(BirchLog::Axis::Z): return 80;
- case BirchPlanks::BirchPlanks(): return 17;
- case BirchPressurePlate::BirchPressurePlate(true): return 3875;
- case BirchPressurePlate::BirchPressurePlate(false): return 3876;
- case BirchSapling::BirchSapling(0): return 25;
- case BirchSapling::BirchSapling(1): return 26;
- case BirchSign::BirchSign(0): return 3444;
- case BirchSign::BirchSign(1): return 3446;
- case BirchSign::BirchSign(2): return 3448;
- case BirchSign::BirchSign(3): return 3450;
- case BirchSign::BirchSign(4): return 3452;
- case BirchSign::BirchSign(5): return 3454;
- case BirchSign::BirchSign(6): return 3456;
- case BirchSign::BirchSign(7): return 3458;
- case BirchSign::BirchSign(8): return 3460;
- case BirchSign::BirchSign(9): return 3462;
- case BirchSign::BirchSign(10): return 3464;
- case BirchSign::BirchSign(11): return 3466;
- case BirchSign::BirchSign(12): return 3468;
- case BirchSign::BirchSign(13): return 3470;
- case BirchSign::BirchSign(14): return 3472;
- case BirchSign::BirchSign(15): return 3474;
- case BirchSlab::BirchSlab(BirchSlab::Type::Top): return 7777;
- case BirchSlab::BirchSlab(BirchSlab::Type::Bottom): return 7779;
- case BirchSlab::BirchSlab(BirchSlab::Type::Double): return 7781;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5469;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5471;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5473;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5475;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5477;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5479;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5481;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5483;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5485;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5487;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5489;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5491;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5493;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5495;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5497;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5499;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5501;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5503;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5505;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5507;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5509;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5511;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5513;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5515;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5517;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5519;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5521;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5523;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5525;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5527;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5529;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5531;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5533;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5535;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5537;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5539;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5541;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5543;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5545;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5547;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, true): return 4226;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, false): return 4228;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, true): return 4230;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, false): return 4232;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, true): return 4234;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, false): return 4236;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, true): return 4238;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, false): return 4240;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, true): return 4242;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, false): return 4244;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, true): return 4246;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, false): return 4248;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, true): return 4250;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, false): return 4252;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, true): return 4254;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, false): return 4256;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, true): return 4258;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, false): return 4260;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, true): return 4262;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, false): return 4264;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, true): return 4266;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, false): return 4268;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, true): return 4270;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, false): return 4272;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, true): return 4274;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, false): return 4276;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, true): return 4278;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, false): return 4280;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, true): return 4282;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, false): return 4284;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, true): return 4286;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, false): return 4288;
- case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZM): return 3750;
- case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZP): return 3752;
- case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XM): return 3754;
- case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XP): return 3756;
- case BirchWood::BirchWood(BirchWood::Axis::X): return 114;
- case BirchWood::BirchWood(BirchWood::Axis::Y): return 115;
- case BirchWood::BirchWood(BirchWood::Axis::Z): return 116;
- case BlackBanner::BlackBanner(0): return 7601;
- case BlackBanner::BlackBanner(1): return 7602;
- case BlackBanner::BlackBanner(2): return 7603;
- case BlackBanner::BlackBanner(3): return 7604;
- case BlackBanner::BlackBanner(4): return 7605;
- case BlackBanner::BlackBanner(5): return 7606;
- case BlackBanner::BlackBanner(6): return 7607;
- case BlackBanner::BlackBanner(7): return 7608;
- case BlackBanner::BlackBanner(8): return 7609;
- case BlackBanner::BlackBanner(9): return 7610;
- case BlackBanner::BlackBanner(10): return 7611;
- case BlackBanner::BlackBanner(11): return 7612;
- case BlackBanner::BlackBanner(12): return 7613;
- case BlackBanner::BlackBanner(13): return 7614;
- case BlackBanner::BlackBanner(14): return 7615;
- case BlackBanner::BlackBanner(15): return 7616;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Head): return 1288;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Foot): return 1289;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Head): return 1290;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Foot): return 1291;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Head): return 1292;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Foot): return 1293;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Head): return 1294;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Foot): return 1295;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Head): return 1296;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Foot): return 1297;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Head): return 1298;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Foot): return 1299;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Head): return 1300;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Foot): return 1301;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Head): return 1302;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Foot): return 1303;
- case BlackCarpet::BlackCarpet(): return 7345;
- case BlackConcrete::BlackConcrete(): return 8917;
- case BlackConcretePowder::BlackConcretePowder(): return 8933;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8898;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8899;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8900;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8901;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8832;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8833;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8834;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8835;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8836;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8837;
- case BlackStainedGlass::BlackStainedGlass(): return 4096;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, true): return 6809;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, false): return 6810;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, true): return 6813;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, false): return 6814;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, true): return 6817;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, false): return 6818;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, true): return 6821;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, false): return 6822;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, true): return 6825;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, false): return 6826;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, true): return 6829;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, false): return 6830;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, true): return 6833;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, false): return 6834;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, true): return 6837;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, false): return 6838;
- case BlackTerracotta::BlackTerracotta(): return 6326;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7677;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7678;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XM): return 7679;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XP): return 7680;
- case BlackWool::BlackWool(): return 1398;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, true): return 11155;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, false): return 11156;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, true): return 11157;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, false): return 11158;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, true): return 11159;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, false): return 11160;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, true): return 11161;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, false): return 11162;
- case BlueBanner::BlueBanner(0): return 7537;
- case BlueBanner::BlueBanner(1): return 7538;
- case BlueBanner::BlueBanner(2): return 7539;
- case BlueBanner::BlueBanner(3): return 7540;
- case BlueBanner::BlueBanner(4): return 7541;
- case BlueBanner::BlueBanner(5): return 7542;
- case BlueBanner::BlueBanner(6): return 7543;
- case BlueBanner::BlueBanner(7): return 7544;
- case BlueBanner::BlueBanner(8): return 7545;
- case BlueBanner::BlueBanner(9): return 7546;
- case BlueBanner::BlueBanner(10): return 7547;
- case BlueBanner::BlueBanner(11): return 7548;
- case BlueBanner::BlueBanner(12): return 7549;
- case BlueBanner::BlueBanner(13): return 7550;
- case BlueBanner::BlueBanner(14): return 7551;
- case BlueBanner::BlueBanner(15): return 7552;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Head): return 1224;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Foot): return 1225;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Head): return 1226;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Foot): return 1227;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Head): return 1228;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Foot): return 1229;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Head): return 1230;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Foot): return 1231;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Head): return 1232;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Foot): return 1233;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Head): return 1234;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Foot): return 1235;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Head): return 1236;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Foot): return 1237;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Head): return 1238;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Foot): return 1239;
- case BlueCarpet::BlueCarpet(): return 7341;
- case BlueConcrete::BlueConcrete(): return 8913;
- case BlueConcretePowder::BlueConcretePowder(): return 8929;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8882;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8883;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8884;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8885;
- case BlueIce::BlueIce(): return 9112;
- case BlueOrchid::BlueOrchid(): return 1413;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8808;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8809;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8810;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8811;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8812;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8813;
- case BlueStainedGlass::BlueStainedGlass(): return 4092;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, true): return 6681;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, false): return 6682;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, true): return 6685;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, false): return 6686;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, true): return 6689;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, false): return 6690;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, true): return 6693;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, false): return 6694;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, true): return 6697;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, false): return 6698;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, true): return 6701;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, false): return 6702;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, true): return 6705;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, false): return 6706;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, true): return 6709;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, false): return 6710;
- case BlueTerracotta::BlueTerracotta(): return 6322;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7661;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7662;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 7663;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 7664;
- case BlueWool::BlueWool(): return 1394;
- case BoneBlock::BoneBlock(BoneBlock::Axis::X): return 8720;
- case BoneBlock::BoneBlock(BoneBlock::Axis::Y): return 8721;
- case BoneBlock::BoneBlock(BoneBlock::Axis::Z): return 8722;
- case Bookshelf::Bookshelf(): return 1431;
- case BrainCoral::BrainCoral(): return 8997;
- case BrainCoralBlock::BrainCoralBlock(): return 8980;
- case BrainCoralFan::BrainCoralFan(): return 9017;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9073;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9075;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9077;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9079;
- case BrewingStand::BrewingStand(true, true, true): return 5117;
- case BrewingStand::BrewingStand(true, true, false): return 5118;
- case BrewingStand::BrewingStand(true, false, true): return 5119;
- case BrewingStand::BrewingStand(true, false, false): return 5120;
- case BrewingStand::BrewingStand(false, true, true): return 5121;
- case BrewingStand::BrewingStand(false, true, false): return 5122;
- case BrewingStand::BrewingStand(false, false, true): return 5123;
- case BrewingStand::BrewingStand(false, false, false): return 5124;
- case BrickSlab::BrickSlab(BrickSlab::Type::Top): return 7837;
- case BrickSlab::BrickSlab(BrickSlab::Type::Bottom): return 7839;
- case BrickSlab::BrickSlab(BrickSlab::Type::Double): return 7841;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4837;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4839;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4841;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4843;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4845;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4847;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4849;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4851;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4853;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4855;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4857;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4859;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4861;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4863;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4865;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4867;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4869;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4871;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4873;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4875;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4877;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4879;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4881;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4883;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4885;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4887;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4889;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4891;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4893;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4895;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4897;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4899;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4901;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4903;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4905;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4907;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4909;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4911;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4913;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4915;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low): return 10333;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None): return 10334;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low): return 10337;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None): return 10338;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low): return 10341;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None): return 10342;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low): return 10345;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None): return 10346;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low): return 10349;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None): return 10350;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low): return 10353;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None): return 10354;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low): return 10357;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None): return 10358;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low): return 10361;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None): return 10362;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low): return 10365;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None): return 10366;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low): return 10369;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None): return 10370;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low): return 10373;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None): return 10374;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low): return 10377;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None): return 10378;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low): return 10381;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None): return 10382;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low): return 10385;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None): return 10386;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low): return 10389;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None): return 10390;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low): return 10393;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None): return 10394;
- case Bricks::Bricks(): return 1428;
- case BrownBanner::BrownBanner(0): return 7553;
- case BrownBanner::BrownBanner(1): return 7554;
- case BrownBanner::BrownBanner(2): return 7555;
- case BrownBanner::BrownBanner(3): return 7556;
- case BrownBanner::BrownBanner(4): return 7557;
- case BrownBanner::BrownBanner(5): return 7558;
- case BrownBanner::BrownBanner(6): return 7559;
- case BrownBanner::BrownBanner(7): return 7560;
- case BrownBanner::BrownBanner(8): return 7561;
- case BrownBanner::BrownBanner(9): return 7562;
- case BrownBanner::BrownBanner(10): return 7563;
- case BrownBanner::BrownBanner(11): return 7564;
- case BrownBanner::BrownBanner(12): return 7565;
- case BrownBanner::BrownBanner(13): return 7566;
- case BrownBanner::BrownBanner(14): return 7567;
- case BrownBanner::BrownBanner(15): return 7568;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Head): return 1240;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Foot): return 1241;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Head): return 1242;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Foot): return 1243;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Head): return 1244;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Foot): return 1245;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Head): return 1246;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Foot): return 1247;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Head): return 1248;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Foot): return 1249;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Head): return 1250;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Foot): return 1251;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Head): return 1252;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Foot): return 1253;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Head): return 1254;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Foot): return 1255;
- case BrownCarpet::BrownCarpet(): return 7342;
- case BrownConcrete::BrownConcrete(): return 8914;
- case BrownConcretePowder::BrownConcretePowder(): return 8930;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8886;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8887;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8888;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8889;
- case BrownMushroom::BrownMushroom(): return 1424;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, true): return 4491;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, false): return 4492;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, true): return 4493;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, false): return 4494;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, true): return 4495;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, false): return 4496;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, true): return 4497;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, false): return 4498;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, true): return 4499;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, false): return 4500;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, true): return 4501;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, false): return 4502;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, true): return 4503;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, false): return 4504;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, true): return 4505;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, false): return 4506;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, true): return 4507;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, false): return 4508;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, true): return 4509;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, false): return 4510;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, true): return 4511;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, false): return 4512;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, true): return 4513;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, false): return 4514;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, true): return 4515;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, false): return 4516;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, true): return 4517;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, false): return 4518;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, true): return 4519;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, false): return 4520;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, true): return 4521;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, false): return 4522;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, true): return 4523;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, false): return 4524;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, true): return 4525;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, false): return 4526;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, true): return 4527;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, false): return 4528;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, true): return 4529;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, false): return 4530;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, true): return 4531;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, false): return 4532;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, true): return 4533;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, false): return 4534;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, true): return 4535;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, false): return 4536;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, true): return 4537;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, false): return 4538;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, true): return 4539;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, false): return 4540;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, true): return 4541;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, false): return 4542;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, true): return 4543;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, false): return 4544;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, true): return 4545;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, false): return 4546;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, true): return 4547;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, false): return 4548;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, true): return 4549;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, false): return 4550;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, true): return 4551;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, false): return 4552;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, true): return 4553;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false): return 4554;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8814;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8815;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8816;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8817;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8818;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8819;
- case BrownStainedGlass::BrownStainedGlass(): return 4093;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, true): return 6713;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, false): return 6714;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, true): return 6717;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, false): return 6718;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, true): return 6721;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, false): return 6722;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, true): return 6725;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, false): return 6726;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, true): return 6729;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, false): return 6730;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, true): return 6733;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, false): return 6734;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, true): return 6737;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, false): return 6738;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, true): return 6741;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, false): return 6742;
- case BrownTerracotta::BrownTerracotta(): return 6323;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7665;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7666;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XM): return 7667;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XP): return 7668;
- case BrownWool::BrownWool(): return 1395;
- case BubbleColumn::BubbleColumn(true): return 9131;
- case BubbleColumn::BubbleColumn(false): return 9132;
- case BubbleCoral::BubbleCoral(): return 8999;
- case BubbleCoralBlock::BubbleCoralBlock(): return 8981;
- case BubbleCoralFan::BubbleCoralFan(): return 9019;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9081;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9083;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9085;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9087;
- case Cactus::Cactus(0): return 3929;
- case Cactus::Cactus(1): return 3930;
- case Cactus::Cactus(2): return 3931;
- case Cactus::Cactus(3): return 3932;
- case Cactus::Cactus(4): return 3933;
- case Cactus::Cactus(5): return 3934;
- case Cactus::Cactus(6): return 3935;
- case Cactus::Cactus(7): return 3936;
- case Cactus::Cactus(8): return 3937;
- case Cactus::Cactus(9): return 3938;
- case Cactus::Cactus(10): return 3939;
- case Cactus::Cactus(11): return 3940;
- case Cactus::Cactus(12): return 3941;
- case Cactus::Cactus(13): return 3942;
- case Cactus::Cactus(14): return 3943;
- case Cactus::Cactus(15): return 3944;
- case Cake::Cake(0): return 4010;
- case Cake::Cake(1): return 4011;
- case Cake::Cake(2): return 4012;
- case Cake::Cake(3): return 4013;
- case Cake::Cake(4): return 4014;
- case Cake::Cake(5): return 4015;
- case Cake::Cake(6): return 4016;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, true): return 11233;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, false): return 11235;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, true): return 11237;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, false): return 11239;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, true): return 11241;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, false): return 11243;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, true): return 11245;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, false): return 11247;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, true): return 11249;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, false): return 11251;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, true): return 11253;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, false): return 11255;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, true): return 11257;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, false): return 11259;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, true): return 11261;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, false): return 11263;
- case Carrots::Carrots(0): return 5794;
- case Carrots::Carrots(1): return 5795;
- case Carrots::Carrots(2): return 5796;
- case Carrots::Carrots(3): return 5797;
- case Carrots::Carrots(4): return 5798;
- case Carrots::Carrots(5): return 5799;
- case Carrots::Carrots(6): return 5800;
- case Carrots::Carrots(7): return 5801;
- case CartographyTable::CartographyTable(): return 11163;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZM): return 4002;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZP): return 4003;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XM): return 4004;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XP): return 4005;
- case Cauldron::Cauldron(0): return 5125;
- case Cauldron::Cauldron(1): return 5126;
- case Cauldron::Cauldron(2): return 5127;
- case Cauldron::Cauldron(3): return 5128;
- case CaveAir::CaveAir(): return 9130;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 8701;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 8702;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 8703;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 8704;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 8705;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 8706;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 8707;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 8708;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 8709;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 8710;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 8711;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 8712;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Single): return 2033;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Left): return 2035;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Right): return 2037;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Single): return 2039;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Left): return 2041;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Right): return 2043;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Single): return 2045;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Left): return 2047;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Right): return 2049;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Single): return 2051;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Left): return 2053;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Right): return 2055;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZM): return 6078;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZP): return 6079;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XM): return 6080;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XP): return 6081;
- case ChiseledQuartzBlock::ChiseledQuartzBlock(): return 6203;
- case ChiseledRedSandstone::ChiseledRedSandstone(): return 7682;
- case ChiseledSandstone::ChiseledSandstone(): return 246;
- case ChiseledStoneBricks::ChiseledStoneBricks(): return 4484;
- case ChorusFlower::ChorusFlower(0): return 8592;
- case ChorusFlower::ChorusFlower(1): return 8593;
- case ChorusFlower::ChorusFlower(2): return 8594;
- case ChorusFlower::ChorusFlower(3): return 8595;
- case ChorusFlower::ChorusFlower(4): return 8596;
- case ChorusFlower::ChorusFlower(5): return 8597;
- case ChorusPlant::ChorusPlant(true, true, true, true, true, true): return 8528;
- case ChorusPlant::ChorusPlant(true, true, true, true, true, false): return 8529;
- case ChorusPlant::ChorusPlant(true, true, true, true, false, true): return 8530;
- case ChorusPlant::ChorusPlant(true, true, true, true, false, false): return 8531;
- case ChorusPlant::ChorusPlant(true, true, true, false, true, true): return 8532;
- case ChorusPlant::ChorusPlant(true, true, true, false, true, false): return 8533;
- case ChorusPlant::ChorusPlant(true, true, true, false, false, true): return 8534;
- case ChorusPlant::ChorusPlant(true, true, true, false, false, false): return 8535;
- case ChorusPlant::ChorusPlant(true, true, false, true, true, true): return 8536;
- case ChorusPlant::ChorusPlant(true, true, false, true, true, false): return 8537;
- case ChorusPlant::ChorusPlant(true, true, false, true, false, true): return 8538;
- case ChorusPlant::ChorusPlant(true, true, false, true, false, false): return 8539;
- case ChorusPlant::ChorusPlant(true, true, false, false, true, true): return 8540;
- case ChorusPlant::ChorusPlant(true, true, false, false, true, false): return 8541;
- case ChorusPlant::ChorusPlant(true, true, false, false, false, true): return 8542;
- case ChorusPlant::ChorusPlant(true, true, false, false, false, false): return 8543;
- case ChorusPlant::ChorusPlant(true, false, true, true, true, true): return 8544;
- case ChorusPlant::ChorusPlant(true, false, true, true, true, false): return 8545;
- case ChorusPlant::ChorusPlant(true, false, true, true, false, true): return 8546;
- case ChorusPlant::ChorusPlant(true, false, true, true, false, false): return 8547;
- case ChorusPlant::ChorusPlant(true, false, true, false, true, true): return 8548;
- case ChorusPlant::ChorusPlant(true, false, true, false, true, false): return 8549;
- case ChorusPlant::ChorusPlant(true, false, true, false, false, true): return 8550;
- case ChorusPlant::ChorusPlant(true, false, true, false, false, false): return 8551;
- case ChorusPlant::ChorusPlant(true, false, false, true, true, true): return 8552;
- case ChorusPlant::ChorusPlant(true, false, false, true, true, false): return 8553;
- case ChorusPlant::ChorusPlant(true, false, false, true, false, true): return 8554;
- case ChorusPlant::ChorusPlant(true, false, false, true, false, false): return 8555;
- case ChorusPlant::ChorusPlant(true, false, false, false, true, true): return 8556;
- case ChorusPlant::ChorusPlant(true, false, false, false, true, false): return 8557;
- case ChorusPlant::ChorusPlant(true, false, false, false, false, true): return 8558;
- case ChorusPlant::ChorusPlant(true, false, false, false, false, false): return 8559;
- case ChorusPlant::ChorusPlant(false, true, true, true, true, true): return 8560;
- case ChorusPlant::ChorusPlant(false, true, true, true, true, false): return 8561;
- case ChorusPlant::ChorusPlant(false, true, true, true, false, true): return 8562;
- case ChorusPlant::ChorusPlant(false, true, true, true, false, false): return 8563;
- case ChorusPlant::ChorusPlant(false, true, true, false, true, true): return 8564;
- case ChorusPlant::ChorusPlant(false, true, true, false, true, false): return 8565;
- case ChorusPlant::ChorusPlant(false, true, true, false, false, true): return 8566;
- case ChorusPlant::ChorusPlant(false, true, true, false, false, false): return 8567;
- case ChorusPlant::ChorusPlant(false, true, false, true, true, true): return 8568;
- case ChorusPlant::ChorusPlant(false, true, false, true, true, false): return 8569;
- case ChorusPlant::ChorusPlant(false, true, false, true, false, true): return 8570;
- case ChorusPlant::ChorusPlant(false, true, false, true, false, false): return 8571;
- case ChorusPlant::ChorusPlant(false, true, false, false, true, true): return 8572;
- case ChorusPlant::ChorusPlant(false, true, false, false, true, false): return 8573;
- case ChorusPlant::ChorusPlant(false, true, false, false, false, true): return 8574;
- case ChorusPlant::ChorusPlant(false, true, false, false, false, false): return 8575;
- case ChorusPlant::ChorusPlant(false, false, true, true, true, true): return 8576;
- case ChorusPlant::ChorusPlant(false, false, true, true, true, false): return 8577;
- case ChorusPlant::ChorusPlant(false, false, true, true, false, true): return 8578;
- case ChorusPlant::ChorusPlant(false, false, true, true, false, false): return 8579;
- case ChorusPlant::ChorusPlant(false, false, true, false, true, true): return 8580;
- case ChorusPlant::ChorusPlant(false, false, true, false, true, false): return 8581;
- case ChorusPlant::ChorusPlant(false, false, true, false, false, true): return 8582;
- case ChorusPlant::ChorusPlant(false, false, true, false, false, false): return 8583;
- case ChorusPlant::ChorusPlant(false, false, false, true, true, true): return 8584;
- case ChorusPlant::ChorusPlant(false, false, false, true, true, false): return 8585;
- case ChorusPlant::ChorusPlant(false, false, false, true, false, true): return 8586;
- case ChorusPlant::ChorusPlant(false, false, false, true, false, false): return 8587;
- case ChorusPlant::ChorusPlant(false, false, false, false, true, true): return 8588;
- case ChorusPlant::ChorusPlant(false, false, false, false, true, false): return 8589;
- case ChorusPlant::ChorusPlant(false, false, false, false, false, true): return 8590;
- case ChorusPlant::ChorusPlant(false, false, false, false, false, false): return 8591;
- case Clay::Clay(): return 3945;
- case CoalBlock::CoalBlock(): return 7347;
- case CoalOre::CoalOre(): return 71;
- case CoarseDirt::CoarseDirt(): return 11;
- case Cobblestone::Cobblestone(): return 14;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Top): return 7831;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Bottom): return 7833;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double): return 7835;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3654;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3656;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3658;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3660;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3662;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3664;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3666;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3668;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3670;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3672;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3674;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3676;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3678;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3680;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3682;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3684;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3686;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3688;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3690;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3692;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3694;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3696;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3698;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3700;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3702;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3704;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3706;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3708;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3710;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3712;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3714;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3716;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3718;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3720;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3722;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3724;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3726;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3728;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3730;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3732;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5643;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5644;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5647;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5648;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5651;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5652;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5655;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5656;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5659;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5660;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5663;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5664;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5667;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5668;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5671;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5672;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5675;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5676;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5679;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5680;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5683;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5684;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5687;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5688;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5691;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5692;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5695;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5696;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5699;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5700;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5703;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5704;
- case Cobweb::Cobweb(): return 1340;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZM): return 5142;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZP): return 5143;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XM): return 5144;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XP): return 5145;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZM): return 5146;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZP): return 5147;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XM): return 5148;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XP): return 5149;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZM): return 5150;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZP): return 5151;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XM): return 5152;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XP): return 5153;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 5628;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 5629;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 5630;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 5631;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 5632;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 5633;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 5634;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 5635;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 5636;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 5637;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 5638;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 5639;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true): return 6142;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false): return 6143;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true): return 6144;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false): return 6145;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true): return 6146;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false): return 6147;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true): return 6148;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false): return 6149;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true): return 6150;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false): return 6151;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true): return 6152;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false): return 6153;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true): return 6154;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false): return 6155;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true): return 6156;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false): return 6157;
- case Composter::Composter(0): return 11278;
- case Composter::Composter(1): return 11279;
- case Composter::Composter(2): return 11280;
- case Composter::Composter(3): return 11281;
- case Composter::Composter(4): return 11282;
- case Composter::Composter(5): return 11283;
- case Composter::Composter(6): return 11284;
- case Composter::Composter(7): return 11285;
- case Composter::Composter(8): return 11286;
- case Conduit::Conduit(): return 9114;
- case Cornflower::Cornflower(): return 1421;
- case CrackedStoneBricks::CrackedStoneBricks(): return 4483;
- case CraftingTable::CraftingTable(): return 3354;
- case CreeperHead::CreeperHead(0): return 6034;
- case CreeperHead::CreeperHead(1): return 6035;
- case CreeperHead::CreeperHead(2): return 6036;
- case CreeperHead::CreeperHead(3): return 6037;
- case CreeperHead::CreeperHead(4): return 6038;
- case CreeperHead::CreeperHead(5): return 6039;
- case CreeperHead::CreeperHead(6): return 6040;
- case CreeperHead::CreeperHead(7): return 6041;
- case CreeperHead::CreeperHead(8): return 6042;
- case CreeperHead::CreeperHead(9): return 6043;
- case CreeperHead::CreeperHead(10): return 6044;
- case CreeperHead::CreeperHead(11): return 6045;
- case CreeperHead::CreeperHead(12): return 6046;
- case CreeperHead::CreeperHead(13): return 6047;
- case CreeperHead::CreeperHead(14): return 6048;
- case CreeperHead::CreeperHead(15): return 6049;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZM): return 6050;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZP): return 6051;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XM): return 6052;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XP): return 6053;
- case CutRedSandstone::CutRedSandstone(): return 7683;
- case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Top): return 7867;
- case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Bottom): return 7869;
- case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Double): return 7871;
- case CutSandstone::CutSandstone(): return 247;
- case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Top): return 7819;
- case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Bottom): return 7821;
- case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Double): return 7823;
- case CyanBanner::CyanBanner(0): return 7505;
- case CyanBanner::CyanBanner(1): return 7506;
- case CyanBanner::CyanBanner(2): return 7507;
- case CyanBanner::CyanBanner(3): return 7508;
- case CyanBanner::CyanBanner(4): return 7509;
- case CyanBanner::CyanBanner(5): return 7510;
- case CyanBanner::CyanBanner(6): return 7511;
- case CyanBanner::CyanBanner(7): return 7512;
- case CyanBanner::CyanBanner(8): return 7513;
- case CyanBanner::CyanBanner(9): return 7514;
- case CyanBanner::CyanBanner(10): return 7515;
- case CyanBanner::CyanBanner(11): return 7516;
- case CyanBanner::CyanBanner(12): return 7517;
- case CyanBanner::CyanBanner(13): return 7518;
- case CyanBanner::CyanBanner(14): return 7519;
- case CyanBanner::CyanBanner(15): return 7520;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Head): return 1192;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Foot): return 1193;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Head): return 1194;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Foot): return 1195;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Head): return 1196;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Foot): return 1197;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Head): return 1198;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Foot): return 1199;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Head): return 1200;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Foot): return 1201;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Head): return 1202;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Foot): return 1203;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Head): return 1204;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Foot): return 1205;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Head): return 1206;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Foot): return 1207;
- case CyanCarpet::CyanCarpet(): return 7339;
- case CyanConcrete::CyanConcrete(): return 8911;
- case CyanConcretePowder::CyanConcretePowder(): return 8927;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8874;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8875;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8876;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8877;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8796;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8797;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8798;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8799;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8800;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8801;
- case CyanStainedGlass::CyanStainedGlass(): return 4090;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, true): return 6617;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, false): return 6618;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, true): return 6621;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, false): return 6622;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, true): return 6625;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, false): return 6626;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, true): return 6629;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, false): return 6630;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, true): return 6633;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, false): return 6634;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, true): return 6637;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, false): return 6638;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, true): return 6641;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, false): return 6642;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, true): return 6645;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, false): return 6646;
- case CyanTerracotta::CyanTerracotta(): return 6320;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7653;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7654;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XM): return 7655;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XP): return 7656;
- case CyanWool::CyanWool(): return 1392;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZM): return 6082;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZP): return 6083;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XM): return 6084;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XP): return 6085;
- case Dandelion::Dandelion(): return 1411;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5930;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5931;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5932;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5933;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5934;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5935;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5936;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5937;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5938;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5939;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5940;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5941;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5942;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5943;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5944;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5945;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5946;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5947;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5948;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5949;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5950;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5951;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5952;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5953;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 8458;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 8459;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 8460;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 8461;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 8462;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 8463;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 8464;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 8465;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 8466;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 8467;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 8468;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 8469;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 8470;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 8471;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 8472;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 8473;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 8474;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 8475;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 8476;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 8477;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 8478;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 8479;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 8480;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 8481;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 8482;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 8483;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 8484;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 8485;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 8486;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 8487;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 8488;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 8489;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 8490;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 8491;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 8492;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 8493;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 8494;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 8495;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 8496;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 8497;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 8498;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 8499;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 8500;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 8501;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 8502;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 8503;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 8504;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 8505;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 8506;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 8507;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 8508;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 8509;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 8510;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 8511;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 8512;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 8513;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 8514;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 8515;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 8516;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 8517;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 8518;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 8519;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 8520;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 8521;
- case DarkOakFence::DarkOakFence(true, true, true, true): return 8172;
- case DarkOakFence::DarkOakFence(true, true, true, false): return 8173;
- case DarkOakFence::DarkOakFence(true, true, false, true): return 8176;
- case DarkOakFence::DarkOakFence(true, true, false, false): return 8177;
- case DarkOakFence::DarkOakFence(true, false, true, true): return 8180;
- case DarkOakFence::DarkOakFence(true, false, true, false): return 8181;
- case DarkOakFence::DarkOakFence(true, false, false, true): return 8184;
- case DarkOakFence::DarkOakFence(true, false, false, false): return 8185;
- case DarkOakFence::DarkOakFence(false, true, true, true): return 8188;
- case DarkOakFence::DarkOakFence(false, true, true, false): return 8189;
- case DarkOakFence::DarkOakFence(false, true, false, true): return 8192;
- case DarkOakFence::DarkOakFence(false, true, false, false): return 8193;
- case DarkOakFence::DarkOakFence(false, false, true, true): return 8196;
- case DarkOakFence::DarkOakFence(false, false, true, false): return 8197;
- case DarkOakFence::DarkOakFence(false, false, false, true): return 8200;
- case DarkOakFence::DarkOakFence(false, false, false, false): return 8201;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 8010;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 8011;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 8012;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 8013;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 8014;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 8015;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 8016;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 8017;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 8018;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 8019;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 8020;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 8021;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 8022;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 8023;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 8024;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 8025;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 8026;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 8027;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 8028;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 8029;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 8030;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 8031;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8032;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8033;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8034;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8035;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8036;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8037;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8038;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8039;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8040;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8041;
- case DarkOakLeaves::DarkOakLeaves(1, true): return 214;
- case DarkOakLeaves::DarkOakLeaves(1, false): return 215;
- case DarkOakLeaves::DarkOakLeaves(2, true): return 216;
- case DarkOakLeaves::DarkOakLeaves(2, false): return 217;
- case DarkOakLeaves::DarkOakLeaves(3, true): return 218;
- case DarkOakLeaves::DarkOakLeaves(3, false): return 219;
- case DarkOakLeaves::DarkOakLeaves(4, true): return 220;
- case DarkOakLeaves::DarkOakLeaves(4, false): return 221;
- case DarkOakLeaves::DarkOakLeaves(5, true): return 222;
- case DarkOakLeaves::DarkOakLeaves(5, false): return 223;
- case DarkOakLeaves::DarkOakLeaves(6, true): return 224;
- case DarkOakLeaves::DarkOakLeaves(6, false): return 225;
- case DarkOakLeaves::DarkOakLeaves(7, true): return 226;
- case DarkOakLeaves::DarkOakLeaves(7, false): return 227;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::X): return 87;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Y): return 88;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Z): return 89;
- case DarkOakPlanks::DarkOakPlanks(): return 20;
- case DarkOakPressurePlate::DarkOakPressurePlate(true): return 3881;
- case DarkOakPressurePlate::DarkOakPressurePlate(false): return 3882;
- case DarkOakSapling::DarkOakSapling(0): return 31;
- case DarkOakSapling::DarkOakSapling(1): return 32;
- case DarkOakSign::DarkOakSign(0): return 3540;
- case DarkOakSign::DarkOakSign(1): return 3542;
- case DarkOakSign::DarkOakSign(2): return 3544;
- case DarkOakSign::DarkOakSign(3): return 3546;
- case DarkOakSign::DarkOakSign(4): return 3548;
- case DarkOakSign::DarkOakSign(5): return 3550;
- case DarkOakSign::DarkOakSign(6): return 3552;
- case DarkOakSign::DarkOakSign(7): return 3554;
- case DarkOakSign::DarkOakSign(8): return 3556;
- case DarkOakSign::DarkOakSign(9): return 3558;
- case DarkOakSign::DarkOakSign(10): return 3560;
- case DarkOakSign::DarkOakSign(11): return 3562;
- case DarkOakSign::DarkOakSign(12): return 3564;
- case DarkOakSign::DarkOakSign(13): return 3566;
- case DarkOakSign::DarkOakSign(14): return 3568;
- case DarkOakSign::DarkOakSign(15): return 3570;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Top): return 7795;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Bottom): return 7797;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Double): return 7799;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6920;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6922;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6924;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6926;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6928;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6930;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6932;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6934;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6936;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6938;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6940;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6942;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6944;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6946;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6948;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6950;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6952;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6954;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6956;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6958;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6960;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6962;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6964;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6966;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6968;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6970;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6972;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6974;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6976;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6978;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 6980;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 6982;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 6984;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 6986;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 6988;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 6990;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 6992;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 6994;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 6996;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 6998;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, true): return 4418;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, false): return 4420;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, true): return 4422;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, false): return 4424;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, true): return 4426;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, false): return 4428;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, true): return 4430;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, false): return 4432;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, true): return 4434;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, false): return 4436;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, true): return 4438;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, false): return 4440;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, true): return 4442;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, false): return 4444;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, true): return 4446;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, false): return 4448;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, true): return 4450;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, false): return 4452;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, true): return 4454;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, false): return 4456;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, true): return 4458;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, false): return 4460;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, true): return 4462;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, false): return 4464;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, true): return 4466;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, false): return 4468;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, true): return 4470;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, false): return 4472;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, true): return 4474;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, false): return 4476;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, true): return 4478;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, false): return 4480;
- case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZM): return 3774;
- case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZP): return 3776;
- case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XM): return 3778;
- case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XP): return 3780;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::X): return 123;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Y): return 124;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Z): return 125;
- case DarkPrismarine::DarkPrismarine(): return 7067;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Top): return 7321;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Bottom): return 7323;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Double): return 7325;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7229;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7231;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7233;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7235;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7237;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7239;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7241;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7243;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7245;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7247;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7249;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7251;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7253;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7255;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7257;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7259;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7261;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7263;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7265;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7267;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7269;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7271;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7273;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7275;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7277;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7279;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7281;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7283;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7285;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7287;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7289;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7291;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7293;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7295;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7297;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7299;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7301;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7303;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7305;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7307;
- case DaylightDetector::DaylightDetector(true, 0): return 6158;
- case DaylightDetector::DaylightDetector(true, 1): return 6159;
- case DaylightDetector::DaylightDetector(true, 2): return 6160;
- case DaylightDetector::DaylightDetector(true, 3): return 6161;
- case DaylightDetector::DaylightDetector(true, 4): return 6162;
- case DaylightDetector::DaylightDetector(true, 5): return 6163;
- case DaylightDetector::DaylightDetector(true, 6): return 6164;
- case DaylightDetector::DaylightDetector(true, 7): return 6165;
- case DaylightDetector::DaylightDetector(true, 8): return 6166;
- case DaylightDetector::DaylightDetector(true, 9): return 6167;
- case DaylightDetector::DaylightDetector(true, 10): return 6168;
- case DaylightDetector::DaylightDetector(true, 11): return 6169;
- case DaylightDetector::DaylightDetector(true, 12): return 6170;
- case DaylightDetector::DaylightDetector(true, 13): return 6171;
- case DaylightDetector::DaylightDetector(true, 14): return 6172;
- case DaylightDetector::DaylightDetector(true, 15): return 6173;
- case DaylightDetector::DaylightDetector(false, 0): return 6174;
- case DaylightDetector::DaylightDetector(false, 1): return 6175;
- case DaylightDetector::DaylightDetector(false, 2): return 6176;
- case DaylightDetector::DaylightDetector(false, 3): return 6177;
- case DaylightDetector::DaylightDetector(false, 4): return 6178;
- case DaylightDetector::DaylightDetector(false, 5): return 6179;
- case DaylightDetector::DaylightDetector(false, 6): return 6180;
- case DaylightDetector::DaylightDetector(false, 7): return 6181;
- case DaylightDetector::DaylightDetector(false, 8): return 6182;
- case DaylightDetector::DaylightDetector(false, 9): return 6183;
- case DaylightDetector::DaylightDetector(false, 10): return 6184;
- case DaylightDetector::DaylightDetector(false, 11): return 6185;
- case DaylightDetector::DaylightDetector(false, 12): return 6186;
- case DaylightDetector::DaylightDetector(false, 13): return 6187;
- case DaylightDetector::DaylightDetector(false, 14): return 6188;
- case DaylightDetector::DaylightDetector(false, 15): return 6189;
- case DeadBrainCoral::DeadBrainCoral(): return 8987;
- case DeadBrainCoralBlock::DeadBrainCoralBlock(): return 8975;
- case DeadBrainCoralFan::DeadBrainCoralFan(): return 9007;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9033;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9035;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9037;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9039;
- case DeadBubbleCoral::DeadBubbleCoral(): return 8989;
- case DeadBubbleCoralBlock::DeadBubbleCoralBlock(): return 8976;
- case DeadBubbleCoralFan::DeadBubbleCoralFan(): return 9009;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9041;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9043;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9045;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9047;
- case DeadBush::DeadBush(): return 1343;
- case DeadFireCoral::DeadFireCoral(): return 8991;
- case DeadFireCoralBlock::DeadFireCoralBlock(): return 8977;
- case DeadFireCoralFan::DeadFireCoralFan(): return 9011;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9049;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9051;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9053;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9055;
- case DeadHornCoral::DeadHornCoral(): return 8993;
- case DeadHornCoralBlock::DeadHornCoralBlock(): return 8978;
- case DeadHornCoralFan::DeadHornCoralFan(): return 9013;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9057;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9059;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9061;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9063;
- case DeadTubeCoral::DeadTubeCoral(): return 8985;
- case DeadTubeCoralBlock::DeadTubeCoralBlock(): return 8974;
- case DeadTubeCoralFan::DeadTubeCoralFan(): return 9005;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9025;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9027;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9029;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9031;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::NorthSouth): return 1316;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::EastWest): return 1317;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingEast): return 1318;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingWest): return 1319;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingNorth): return 1320;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingSouth): return 1321;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::NorthSouth): return 1322;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::EastWest): return 1323;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingEast): return 1324;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingWest): return 1325;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingNorth): return 1326;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingSouth): return 1327;
- case DiamondBlock::DiamondBlock(): return 3353;
- case DiamondOre::DiamondOre(): return 3352;
- case Diorite::Diorite(): return 4;
- case DioriteSlab::DioriteSlab(DioriteSlab::Type::Top): return 10326;
- case DioriteSlab::DioriteSlab(DioriteSlab::Type::Bottom): return 10328;
- case DioriteSlab::DioriteSlab(DioriteSlab::Type::Double): return 10330;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10174;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10176;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10178;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10180;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10182;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10184;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10186;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10188;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10190;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10192;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10194;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10196;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10198;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10200;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10202;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10204;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10206;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10208;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10210;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10212;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10214;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10216;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10218;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10220;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10222;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10224;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10226;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10228;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10230;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10232;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10234;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10236;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10238;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10240;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10242;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10244;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10246;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10248;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10250;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10252;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low): return 11037;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None): return 11038;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low): return 11041;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None): return 11042;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low): return 11045;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None): return 11046;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low): return 11049;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None): return 11050;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low): return 11053;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None): return 11054;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low): return 11057;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None): return 11058;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low): return 11061;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None): return 11062;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low): return 11065;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None): return 11066;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low): return 11069;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None): return 11070;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low): return 11073;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None): return 11074;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low): return 11077;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None): return 11078;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low): return 11081;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None): return 11082;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low): return 11085;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None): return 11086;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low): return 11089;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None): return 11090;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low): return 11093;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None): return 11094;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low): return 11097;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None): return 11098;
- case Dirt::Dirt(): return 10;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, true): return 233;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, false): return 234;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, true): return 235;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, false): return 236;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, true): return 237;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, false): return 238;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, true): return 239;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, false): return 240;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, true): return 241;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, false): return 242;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, true): return 243;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, false): return 244;
- case DragonEgg::DragonEgg(): return 5139;
- case DragonHead::DragonHead(0): return 6054;
- case DragonHead::DragonHead(1): return 6055;
- case DragonHead::DragonHead(2): return 6056;
- case DragonHead::DragonHead(3): return 6057;
- case DragonHead::DragonHead(4): return 6058;
- case DragonHead::DragonHead(5): return 6059;
- case DragonHead::DragonHead(6): return 6060;
- case DragonHead::DragonHead(7): return 6061;
- case DragonHead::DragonHead(8): return 6062;
- case DragonHead::DragonHead(9): return 6063;
- case DragonHead::DragonHead(10): return 6064;
- case DragonHead::DragonHead(11): return 6065;
- case DragonHead::DragonHead(12): return 6066;
- case DragonHead::DragonHead(13): return 6067;
- case DragonHead::DragonHead(14): return 6068;
- case DragonHead::DragonHead(15): return 6069;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZM): return 6070;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZP): return 6071;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XM): return 6072;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XP): return 6073;
- case DriedKelpBlock::DriedKelpBlock(): return 8961;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, true): return 6299;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, false): return 6300;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, true): return 6301;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, false): return 6302;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, true): return 6303;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, false): return 6304;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, true): return 6305;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, false): return 6306;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, true): return 6307;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, false): return 6308;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, true): return 6309;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, false): return 6310;
- case EmeraldBlock::EmeraldBlock(): return 5387;
- case EmeraldOre::EmeraldOre(): return 5234;
- case EnchantingTable::EnchantingTable(): return 5116;
- case EndGateway::EndGateway(): return 8688;
- case EndPortal::EndPortal(): return 5129;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZM): return 5130;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZP): return 5131;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XM): return 5132;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XP): return 5133;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZM): return 5134;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZP): return 5135;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XM): return 5136;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XP): return 5137;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZM): return 8522;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_XP): return 8523;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZP): return 8524;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_XM): return 8525;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_YP): return 8526;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_YM): return 8527;
- case EndStone::EndStone(): return 5138;
- case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Top): return 10284;
- case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Bottom): return 10286;
- case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Double): return 10288;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 9534;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 9536;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 9538;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 9540;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 9542;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 9544;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 9546;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 9548;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 9550;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 9552;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 9554;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 9556;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 9558;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 9560;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 9562;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 9564;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 9566;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 9568;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 9570;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 9572;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 9574;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 9576;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 9578;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 9580;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 9582;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 9584;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 9586;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 9588;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 9590;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 9592;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 9594;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 9596;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 9598;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 9600;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 9602;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 9604;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 9606;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 9608;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 9610;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 9612;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 10973;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 10974;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 10977;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 10978;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 10981;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 10982;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 10985;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 10986;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 10989;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 10990;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 10993;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 10994;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 10997;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 10998;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 11001;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 11002;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 11005;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 11006;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 11009;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 11010;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 11013;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 11014;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 11017;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 11018;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 11021;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 11022;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 11025;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 11026;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 11029;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 11030;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 11033;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 11034;
- case EndStoneBricks::EndStoneBricks(): return 8682;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZM): return 5236;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZP): return 5238;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XM): return 5240;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XP): return 5242;
- case Farmland::Farmland(0): return 3363;
- case Farmland::Farmland(1): return 3364;
- case Farmland::Farmland(2): return 3365;
- case Farmland::Farmland(3): return 3366;
- case Farmland::Farmland(4): return 3367;
- case Farmland::Farmland(5): return 3368;
- case Farmland::Farmland(6): return 3369;
- case Farmland::Farmland(7): return 3370;
- case Fern::Fern(): return 1342;
- case Fire::Fire(0, true, true, true, true, true): return 1439;
- case Fire::Fire(0, true, true, true, true, false): return 1440;
- case Fire::Fire(0, true, true, true, false, true): return 1441;
- case Fire::Fire(0, true, true, true, false, false): return 1442;
- case Fire::Fire(0, true, true, false, true, true): return 1443;
- case Fire::Fire(0, true, true, false, true, false): return 1444;
- case Fire::Fire(0, true, true, false, false, true): return 1445;
- case Fire::Fire(0, true, true, false, false, false): return 1446;
- case Fire::Fire(0, true, false, true, true, true): return 1447;
- case Fire::Fire(0, true, false, true, true, false): return 1448;
- case Fire::Fire(0, true, false, true, false, true): return 1449;
- case Fire::Fire(0, true, false, true, false, false): return 1450;
- case Fire::Fire(0, true, false, false, true, true): return 1451;
- case Fire::Fire(0, true, false, false, true, false): return 1452;
- case Fire::Fire(0, true, false, false, false, true): return 1453;
- case Fire::Fire(0, true, false, false, false, false): return 1454;
- case Fire::Fire(0, false, true, true, true, true): return 1455;
- case Fire::Fire(0, false, true, true, true, false): return 1456;
- case Fire::Fire(0, false, true, true, false, true): return 1457;
- case Fire::Fire(0, false, true, true, false, false): return 1458;
- case Fire::Fire(0, false, true, false, true, true): return 1459;
- case Fire::Fire(0, false, true, false, true, false): return 1460;
- case Fire::Fire(0, false, true, false, false, true): return 1461;
- case Fire::Fire(0, false, true, false, false, false): return 1462;
- case Fire::Fire(0, false, false, true, true, true): return 1463;
- case Fire::Fire(0, false, false, true, true, false): return 1464;
- case Fire::Fire(0, false, false, true, false, true): return 1465;
- case Fire::Fire(0, false, false, true, false, false): return 1466;
- case Fire::Fire(0, false, false, false, true, true): return 1467;
- case Fire::Fire(0, false, false, false, true, false): return 1468;
- case Fire::Fire(0, false, false, false, false, true): return 1469;
- case Fire::Fire(0, false, false, false, false, false): return 1470;
- case Fire::Fire(1, true, true, true, true, true): return 1471;
- case Fire::Fire(1, true, true, true, true, false): return 1472;
- case Fire::Fire(1, true, true, true, false, true): return 1473;
- case Fire::Fire(1, true, true, true, false, false): return 1474;
- case Fire::Fire(1, true, true, false, true, true): return 1475;
- case Fire::Fire(1, true, true, false, true, false): return 1476;
- case Fire::Fire(1, true, true, false, false, true): return 1477;
- case Fire::Fire(1, true, true, false, false, false): return 1478;
- case Fire::Fire(1, true, false, true, true, true): return 1479;
- case Fire::Fire(1, true, false, true, true, false): return 1480;
- case Fire::Fire(1, true, false, true, false, true): return 1481;
- case Fire::Fire(1, true, false, true, false, false): return 1482;
- case Fire::Fire(1, true, false, false, true, true): return 1483;
- case Fire::Fire(1, true, false, false, true, false): return 1484;
- case Fire::Fire(1, true, false, false, false, true): return 1485;
- case Fire::Fire(1, true, false, false, false, false): return 1486;
- case Fire::Fire(1, false, true, true, true, true): return 1487;
- case Fire::Fire(1, false, true, true, true, false): return 1488;
- case Fire::Fire(1, false, true, true, false, true): return 1489;
- case Fire::Fire(1, false, true, true, false, false): return 1490;
- case Fire::Fire(1, false, true, false, true, true): return 1491;
- case Fire::Fire(1, false, true, false, true, false): return 1492;
- case Fire::Fire(1, false, true, false, false, true): return 1493;
- case Fire::Fire(1, false, true, false, false, false): return 1494;
- case Fire::Fire(1, false, false, true, true, true): return 1495;
- case Fire::Fire(1, false, false, true, true, false): return 1496;
- case Fire::Fire(1, false, false, true, false, true): return 1497;
- case Fire::Fire(1, false, false, true, false, false): return 1498;
- case Fire::Fire(1, false, false, false, true, true): return 1499;
- case Fire::Fire(1, false, false, false, true, false): return 1500;
- case Fire::Fire(1, false, false, false, false, true): return 1501;
- case Fire::Fire(1, false, false, false, false, false): return 1502;
- case Fire::Fire(2, true, true, true, true, true): return 1503;
- case Fire::Fire(2, true, true, true, true, false): return 1504;
- case Fire::Fire(2, true, true, true, false, true): return 1505;
- case Fire::Fire(2, true, true, true, false, false): return 1506;
- case Fire::Fire(2, true, true, false, true, true): return 1507;
- case Fire::Fire(2, true, true, false, true, false): return 1508;
- case Fire::Fire(2, true, true, false, false, true): return 1509;
- case Fire::Fire(2, true, true, false, false, false): return 1510;
- case Fire::Fire(2, true, false, true, true, true): return 1511;
- case Fire::Fire(2, true, false, true, true, false): return 1512;
- case Fire::Fire(2, true, false, true, false, true): return 1513;
- case Fire::Fire(2, true, false, true, false, false): return 1514;
- case Fire::Fire(2, true, false, false, true, true): return 1515;
- case Fire::Fire(2, true, false, false, true, false): return 1516;
- case Fire::Fire(2, true, false, false, false, true): return 1517;
- case Fire::Fire(2, true, false, false, false, false): return 1518;
- case Fire::Fire(2, false, true, true, true, true): return 1519;
- case Fire::Fire(2, false, true, true, true, false): return 1520;
- case Fire::Fire(2, false, true, true, false, true): return 1521;
- case Fire::Fire(2, false, true, true, false, false): return 1522;
- case Fire::Fire(2, false, true, false, true, true): return 1523;
- case Fire::Fire(2, false, true, false, true, false): return 1524;
- case Fire::Fire(2, false, true, false, false, true): return 1525;
- case Fire::Fire(2, false, true, false, false, false): return 1526;
- case Fire::Fire(2, false, false, true, true, true): return 1527;
- case Fire::Fire(2, false, false, true, true, false): return 1528;
- case Fire::Fire(2, false, false, true, false, true): return 1529;
- case Fire::Fire(2, false, false, true, false, false): return 1530;
- case Fire::Fire(2, false, false, false, true, true): return 1531;
- case Fire::Fire(2, false, false, false, true, false): return 1532;
- case Fire::Fire(2, false, false, false, false, true): return 1533;
- case Fire::Fire(2, false, false, false, false, false): return 1534;
- case Fire::Fire(3, true, true, true, true, true): return 1535;
- case Fire::Fire(3, true, true, true, true, false): return 1536;
- case Fire::Fire(3, true, true, true, false, true): return 1537;
- case Fire::Fire(3, true, true, true, false, false): return 1538;
- case Fire::Fire(3, true, true, false, true, true): return 1539;
- case Fire::Fire(3, true, true, false, true, false): return 1540;
- case Fire::Fire(3, true, true, false, false, true): return 1541;
- case Fire::Fire(3, true, true, false, false, false): return 1542;
- case Fire::Fire(3, true, false, true, true, true): return 1543;
- case Fire::Fire(3, true, false, true, true, false): return 1544;
- case Fire::Fire(3, true, false, true, false, true): return 1545;
- case Fire::Fire(3, true, false, true, false, false): return 1546;
- case Fire::Fire(3, true, false, false, true, true): return 1547;
- case Fire::Fire(3, true, false, false, true, false): return 1548;
- case Fire::Fire(3, true, false, false, false, true): return 1549;
- case Fire::Fire(3, true, false, false, false, false): return 1550;
- case Fire::Fire(3, false, true, true, true, true): return 1551;
- case Fire::Fire(3, false, true, true, true, false): return 1552;
- case Fire::Fire(3, false, true, true, false, true): return 1553;
- case Fire::Fire(3, false, true, true, false, false): return 1554;
- case Fire::Fire(3, false, true, false, true, true): return 1555;
- case Fire::Fire(3, false, true, false, true, false): return 1556;
- case Fire::Fire(3, false, true, false, false, true): return 1557;
- case Fire::Fire(3, false, true, false, false, false): return 1558;
- case Fire::Fire(3, false, false, true, true, true): return 1559;
- case Fire::Fire(3, false, false, true, true, false): return 1560;
- case Fire::Fire(3, false, false, true, false, true): return 1561;
- case Fire::Fire(3, false, false, true, false, false): return 1562;
- case Fire::Fire(3, false, false, false, true, true): return 1563;
- case Fire::Fire(3, false, false, false, true, false): return 1564;
- case Fire::Fire(3, false, false, false, false, true): return 1565;
- case Fire::Fire(3, false, false, false, false, false): return 1566;
- case Fire::Fire(4, true, true, true, true, true): return 1567;
- case Fire::Fire(4, true, true, true, true, false): return 1568;
- case Fire::Fire(4, true, true, true, false, true): return 1569;
- case Fire::Fire(4, true, true, true, false, false): return 1570;
- case Fire::Fire(4, true, true, false, true, true): return 1571;
- case Fire::Fire(4, true, true, false, true, false): return 1572;
- case Fire::Fire(4, true, true, false, false, true): return 1573;
- case Fire::Fire(4, true, true, false, false, false): return 1574;
- case Fire::Fire(4, true, false, true, true, true): return 1575;
- case Fire::Fire(4, true, false, true, true, false): return 1576;
- case Fire::Fire(4, true, false, true, false, true): return 1577;
- case Fire::Fire(4, true, false, true, false, false): return 1578;
- case Fire::Fire(4, true, false, false, true, true): return 1579;
- case Fire::Fire(4, true, false, false, true, false): return 1580;
- case Fire::Fire(4, true, false, false, false, true): return 1581;
- case Fire::Fire(4, true, false, false, false, false): return 1582;
- case Fire::Fire(4, false, true, true, true, true): return 1583;
- case Fire::Fire(4, false, true, true, true, false): return 1584;
- case Fire::Fire(4, false, true, true, false, true): return 1585;
- case Fire::Fire(4, false, true, true, false, false): return 1586;
- case Fire::Fire(4, false, true, false, true, true): return 1587;
- case Fire::Fire(4, false, true, false, true, false): return 1588;
- case Fire::Fire(4, false, true, false, false, true): return 1589;
- case Fire::Fire(4, false, true, false, false, false): return 1590;
- case Fire::Fire(4, false, false, true, true, true): return 1591;
- case Fire::Fire(4, false, false, true, true, false): return 1592;
- case Fire::Fire(4, false, false, true, false, true): return 1593;
- case Fire::Fire(4, false, false, true, false, false): return 1594;
- case Fire::Fire(4, false, false, false, true, true): return 1595;
- case Fire::Fire(4, false, false, false, true, false): return 1596;
- case Fire::Fire(4, false, false, false, false, true): return 1597;
- case Fire::Fire(4, false, false, false, false, false): return 1598;
- case Fire::Fire(5, true, true, true, true, true): return 1599;
- case Fire::Fire(5, true, true, true, true, false): return 1600;
- case Fire::Fire(5, true, true, true, false, true): return 1601;
- case Fire::Fire(5, true, true, true, false, false): return 1602;
- case Fire::Fire(5, true, true, false, true, true): return 1603;
- case Fire::Fire(5, true, true, false, true, false): return 1604;
- case Fire::Fire(5, true, true, false, false, true): return 1605;
- case Fire::Fire(5, true, true, false, false, false): return 1606;
- case Fire::Fire(5, true, false, true, true, true): return 1607;
- case Fire::Fire(5, true, false, true, true, false): return 1608;
- case Fire::Fire(5, true, false, true, false, true): return 1609;
- case Fire::Fire(5, true, false, true, false, false): return 1610;
- case Fire::Fire(5, true, false, false, true, true): return 1611;
- case Fire::Fire(5, true, false, false, true, false): return 1612;
- case Fire::Fire(5, true, false, false, false, true): return 1613;
- case Fire::Fire(5, true, false, false, false, false): return 1614;
- case Fire::Fire(5, false, true, true, true, true): return 1615;
- case Fire::Fire(5, false, true, true, true, false): return 1616;
- case Fire::Fire(5, false, true, true, false, true): return 1617;
- case Fire::Fire(5, false, true, true, false, false): return 1618;
- case Fire::Fire(5, false, true, false, true, true): return 1619;
- case Fire::Fire(5, false, true, false, true, false): return 1620;
- case Fire::Fire(5, false, true, false, false, true): return 1621;
- case Fire::Fire(5, false, true, false, false, false): return 1622;
- case Fire::Fire(5, false, false, true, true, true): return 1623;
- case Fire::Fire(5, false, false, true, true, false): return 1624;
- case Fire::Fire(5, false, false, true, false, true): return 1625;
- case Fire::Fire(5, false, false, true, false, false): return 1626;
- case Fire::Fire(5, false, false, false, true, true): return 1627;
- case Fire::Fire(5, false, false, false, true, false): return 1628;
- case Fire::Fire(5, false, false, false, false, true): return 1629;
- case Fire::Fire(5, false, false, false, false, false): return 1630;
- case Fire::Fire(6, true, true, true, true, true): return 1631;
- case Fire::Fire(6, true, true, true, true, false): return 1632;
- case Fire::Fire(6, true, true, true, false, true): return 1633;
- case Fire::Fire(6, true, true, true, false, false): return 1634;
- case Fire::Fire(6, true, true, false, true, true): return 1635;
- case Fire::Fire(6, true, true, false, true, false): return 1636;
- case Fire::Fire(6, true, true, false, false, true): return 1637;
- case Fire::Fire(6, true, true, false, false, false): return 1638;
- case Fire::Fire(6, true, false, true, true, true): return 1639;
- case Fire::Fire(6, true, false, true, true, false): return 1640;
- case Fire::Fire(6, true, false, true, false, true): return 1641;
- case Fire::Fire(6, true, false, true, false, false): return 1642;
- case Fire::Fire(6, true, false, false, true, true): return 1643;
- case Fire::Fire(6, true, false, false, true, false): return 1644;
- case Fire::Fire(6, true, false, false, false, true): return 1645;
- case Fire::Fire(6, true, false, false, false, false): return 1646;
- case Fire::Fire(6, false, true, true, true, true): return 1647;
- case Fire::Fire(6, false, true, true, true, false): return 1648;
- case Fire::Fire(6, false, true, true, false, true): return 1649;
- case Fire::Fire(6, false, true, true, false, false): return 1650;
- case Fire::Fire(6, false, true, false, true, true): return 1651;
- case Fire::Fire(6, false, true, false, true, false): return 1652;
- case Fire::Fire(6, false, true, false, false, true): return 1653;
- case Fire::Fire(6, false, true, false, false, false): return 1654;
- case Fire::Fire(6, false, false, true, true, true): return 1655;
- case Fire::Fire(6, false, false, true, true, false): return 1656;
- case Fire::Fire(6, false, false, true, false, true): return 1657;
- case Fire::Fire(6, false, false, true, false, false): return 1658;
- case Fire::Fire(6, false, false, false, true, true): return 1659;
- case Fire::Fire(6, false, false, false, true, false): return 1660;
- case Fire::Fire(6, false, false, false, false, true): return 1661;
- case Fire::Fire(6, false, false, false, false, false): return 1662;
- case Fire::Fire(7, true, true, true, true, true): return 1663;
- case Fire::Fire(7, true, true, true, true, false): return 1664;
- case Fire::Fire(7, true, true, true, false, true): return 1665;
- case Fire::Fire(7, true, true, true, false, false): return 1666;
- case Fire::Fire(7, true, true, false, true, true): return 1667;
- case Fire::Fire(7, true, true, false, true, false): return 1668;
- case Fire::Fire(7, true, true, false, false, true): return 1669;
- case Fire::Fire(7, true, true, false, false, false): return 1670;
- case Fire::Fire(7, true, false, true, true, true): return 1671;
- case Fire::Fire(7, true, false, true, true, false): return 1672;
- case Fire::Fire(7, true, false, true, false, true): return 1673;
- case Fire::Fire(7, true, false, true, false, false): return 1674;
- case Fire::Fire(7, true, false, false, true, true): return 1675;
- case Fire::Fire(7, true, false, false, true, false): return 1676;
- case Fire::Fire(7, true, false, false, false, true): return 1677;
- case Fire::Fire(7, true, false, false, false, false): return 1678;
- case Fire::Fire(7, false, true, true, true, true): return 1679;
- case Fire::Fire(7, false, true, true, true, false): return 1680;
- case Fire::Fire(7, false, true, true, false, true): return 1681;
- case Fire::Fire(7, false, true, true, false, false): return 1682;
- case Fire::Fire(7, false, true, false, true, true): return 1683;
- case Fire::Fire(7, false, true, false, true, false): return 1684;
- case Fire::Fire(7, false, true, false, false, true): return 1685;
- case Fire::Fire(7, false, true, false, false, false): return 1686;
- case Fire::Fire(7, false, false, true, true, true): return 1687;
- case Fire::Fire(7, false, false, true, true, false): return 1688;
- case Fire::Fire(7, false, false, true, false, true): return 1689;
- case Fire::Fire(7, false, false, true, false, false): return 1690;
- case Fire::Fire(7, false, false, false, true, true): return 1691;
- case Fire::Fire(7, false, false, false, true, false): return 1692;
- case Fire::Fire(7, false, false, false, false, true): return 1693;
- case Fire::Fire(7, false, false, false, false, false): return 1694;
- case Fire::Fire(8, true, true, true, true, true): return 1695;
- case Fire::Fire(8, true, true, true, true, false): return 1696;
- case Fire::Fire(8, true, true, true, false, true): return 1697;
- case Fire::Fire(8, true, true, true, false, false): return 1698;
- case Fire::Fire(8, true, true, false, true, true): return 1699;
- case Fire::Fire(8, true, true, false, true, false): return 1700;
- case Fire::Fire(8, true, true, false, false, true): return 1701;
- case Fire::Fire(8, true, true, false, false, false): return 1702;
- case Fire::Fire(8, true, false, true, true, true): return 1703;
- case Fire::Fire(8, true, false, true, true, false): return 1704;
- case Fire::Fire(8, true, false, true, false, true): return 1705;
- case Fire::Fire(8, true, false, true, false, false): return 1706;
- case Fire::Fire(8, true, false, false, true, true): return 1707;
- case Fire::Fire(8, true, false, false, true, false): return 1708;
- case Fire::Fire(8, true, false, false, false, true): return 1709;
- case Fire::Fire(8, true, false, false, false, false): return 1710;
- case Fire::Fire(8, false, true, true, true, true): return 1711;
- case Fire::Fire(8, false, true, true, true, false): return 1712;
- case Fire::Fire(8, false, true, true, false, true): return 1713;
- case Fire::Fire(8, false, true, true, false, false): return 1714;
- case Fire::Fire(8, false, true, false, true, true): return 1715;
- case Fire::Fire(8, false, true, false, true, false): return 1716;
- case Fire::Fire(8, false, true, false, false, true): return 1717;
- case Fire::Fire(8, false, true, false, false, false): return 1718;
- case Fire::Fire(8, false, false, true, true, true): return 1719;
- case Fire::Fire(8, false, false, true, true, false): return 1720;
- case Fire::Fire(8, false, false, true, false, true): return 1721;
- case Fire::Fire(8, false, false, true, false, false): return 1722;
- case Fire::Fire(8, false, false, false, true, true): return 1723;
- case Fire::Fire(8, false, false, false, true, false): return 1724;
- case Fire::Fire(8, false, false, false, false, true): return 1725;
- case Fire::Fire(8, false, false, false, false, false): return 1726;
- case Fire::Fire(9, true, true, true, true, true): return 1727;
- case Fire::Fire(9, true, true, true, true, false): return 1728;
- case Fire::Fire(9, true, true, true, false, true): return 1729;
- case Fire::Fire(9, true, true, true, false, false): return 1730;
- case Fire::Fire(9, true, true, false, true, true): return 1731;
- case Fire::Fire(9, true, true, false, true, false): return 1732;
- case Fire::Fire(9, true, true, false, false, true): return 1733;
- case Fire::Fire(9, true, true, false, false, false): return 1734;
- case Fire::Fire(9, true, false, true, true, true): return 1735;
- case Fire::Fire(9, true, false, true, true, false): return 1736;
- case Fire::Fire(9, true, false, true, false, true): return 1737;
- case Fire::Fire(9, true, false, true, false, false): return 1738;
- case Fire::Fire(9, true, false, false, true, true): return 1739;
- case Fire::Fire(9, true, false, false, true, false): return 1740;
- case Fire::Fire(9, true, false, false, false, true): return 1741;
- case Fire::Fire(9, true, false, false, false, false): return 1742;
- case Fire::Fire(9, false, true, true, true, true): return 1743;
- case Fire::Fire(9, false, true, true, true, false): return 1744;
- case Fire::Fire(9, false, true, true, false, true): return 1745;
- case Fire::Fire(9, false, true, true, false, false): return 1746;
- case Fire::Fire(9, false, true, false, true, true): return 1747;
- case Fire::Fire(9, false, true, false, true, false): return 1748;
- case Fire::Fire(9, false, true, false, false, true): return 1749;
- case Fire::Fire(9, false, true, false, false, false): return 1750;
- case Fire::Fire(9, false, false, true, true, true): return 1751;
- case Fire::Fire(9, false, false, true, true, false): return 1752;
- case Fire::Fire(9, false, false, true, false, true): return 1753;
- case Fire::Fire(9, false, false, true, false, false): return 1754;
- case Fire::Fire(9, false, false, false, true, true): return 1755;
- case Fire::Fire(9, false, false, false, true, false): return 1756;
- case Fire::Fire(9, false, false, false, false, true): return 1757;
- case Fire::Fire(9, false, false, false, false, false): return 1758;
- case Fire::Fire(10, true, true, true, true, true): return 1759;
- case Fire::Fire(10, true, true, true, true, false): return 1760;
- case Fire::Fire(10, true, true, true, false, true): return 1761;
- case Fire::Fire(10, true, true, true, false, false): return 1762;
- case Fire::Fire(10, true, true, false, true, true): return 1763;
- case Fire::Fire(10, true, true, false, true, false): return 1764;
- case Fire::Fire(10, true, true, false, false, true): return 1765;
- case Fire::Fire(10, true, true, false, false, false): return 1766;
- case Fire::Fire(10, true, false, true, true, true): return 1767;
- case Fire::Fire(10, true, false, true, true, false): return 1768;
- case Fire::Fire(10, true, false, true, false, true): return 1769;
- case Fire::Fire(10, true, false, true, false, false): return 1770;
- case Fire::Fire(10, true, false, false, true, true): return 1771;
- case Fire::Fire(10, true, false, false, true, false): return 1772;
- case Fire::Fire(10, true, false, false, false, true): return 1773;
- case Fire::Fire(10, true, false, false, false, false): return 1774;
- case Fire::Fire(10, false, true, true, true, true): return 1775;
- case Fire::Fire(10, false, true, true, true, false): return 1776;
- case Fire::Fire(10, false, true, true, false, true): return 1777;
- case Fire::Fire(10, false, true, true, false, false): return 1778;
- case Fire::Fire(10, false, true, false, true, true): return 1779;
- case Fire::Fire(10, false, true, false, true, false): return 1780;
- case Fire::Fire(10, false, true, false, false, true): return 1781;
- case Fire::Fire(10, false, true, false, false, false): return 1782;
- case Fire::Fire(10, false, false, true, true, true): return 1783;
- case Fire::Fire(10, false, false, true, true, false): return 1784;
- case Fire::Fire(10, false, false, true, false, true): return 1785;
- case Fire::Fire(10, false, false, true, false, false): return 1786;
- case Fire::Fire(10, false, false, false, true, true): return 1787;
- case Fire::Fire(10, false, false, false, true, false): return 1788;
- case Fire::Fire(10, false, false, false, false, true): return 1789;
- case Fire::Fire(10, false, false, false, false, false): return 1790;
- case Fire::Fire(11, true, true, true, true, true): return 1791;
- case Fire::Fire(11, true, true, true, true, false): return 1792;
- case Fire::Fire(11, true, true, true, false, true): return 1793;
- case Fire::Fire(11, true, true, true, false, false): return 1794;
- case Fire::Fire(11, true, true, false, true, true): return 1795;
- case Fire::Fire(11, true, true, false, true, false): return 1796;
- case Fire::Fire(11, true, true, false, false, true): return 1797;
- case Fire::Fire(11, true, true, false, false, false): return 1798;
- case Fire::Fire(11, true, false, true, true, true): return 1799;
- case Fire::Fire(11, true, false, true, true, false): return 1800;
- case Fire::Fire(11, true, false, true, false, true): return 1801;
- case Fire::Fire(11, true, false, true, false, false): return 1802;
- case Fire::Fire(11, true, false, false, true, true): return 1803;
- case Fire::Fire(11, true, false, false, true, false): return 1804;
- case Fire::Fire(11, true, false, false, false, true): return 1805;
- case Fire::Fire(11, true, false, false, false, false): return 1806;
- case Fire::Fire(11, false, true, true, true, true): return 1807;
- case Fire::Fire(11, false, true, true, true, false): return 1808;
- case Fire::Fire(11, false, true, true, false, true): return 1809;
- case Fire::Fire(11, false, true, true, false, false): return 1810;
- case Fire::Fire(11, false, true, false, true, true): return 1811;
- case Fire::Fire(11, false, true, false, true, false): return 1812;
- case Fire::Fire(11, false, true, false, false, true): return 1813;
- case Fire::Fire(11, false, true, false, false, false): return 1814;
- case Fire::Fire(11, false, false, true, true, true): return 1815;
- case Fire::Fire(11, false, false, true, true, false): return 1816;
- case Fire::Fire(11, false, false, true, false, true): return 1817;
- case Fire::Fire(11, false, false, true, false, false): return 1818;
- case Fire::Fire(11, false, false, false, true, true): return 1819;
- case Fire::Fire(11, false, false, false, true, false): return 1820;
- case Fire::Fire(11, false, false, false, false, true): return 1821;
- case Fire::Fire(11, false, false, false, false, false): return 1822;
- case Fire::Fire(12, true, true, true, true, true): return 1823;
- case Fire::Fire(12, true, true, true, true, false): return 1824;
- case Fire::Fire(12, true, true, true, false, true): return 1825;
- case Fire::Fire(12, true, true, true, false, false): return 1826;
- case Fire::Fire(12, true, true, false, true, true): return 1827;
- case Fire::Fire(12, true, true, false, true, false): return 1828;
- case Fire::Fire(12, true, true, false, false, true): return 1829;
- case Fire::Fire(12, true, true, false, false, false): return 1830;
- case Fire::Fire(12, true, false, true, true, true): return 1831;
- case Fire::Fire(12, true, false, true, true, false): return 1832;
- case Fire::Fire(12, true, false, true, false, true): return 1833;
- case Fire::Fire(12, true, false, true, false, false): return 1834;
- case Fire::Fire(12, true, false, false, true, true): return 1835;
- case Fire::Fire(12, true, false, false, true, false): return 1836;
- case Fire::Fire(12, true, false, false, false, true): return 1837;
- case Fire::Fire(12, true, false, false, false, false): return 1838;
- case Fire::Fire(12, false, true, true, true, true): return 1839;
- case Fire::Fire(12, false, true, true, true, false): return 1840;
- case Fire::Fire(12, false, true, true, false, true): return 1841;
- case Fire::Fire(12, false, true, true, false, false): return 1842;
- case Fire::Fire(12, false, true, false, true, true): return 1843;
- case Fire::Fire(12, false, true, false, true, false): return 1844;
- case Fire::Fire(12, false, true, false, false, true): return 1845;
- case Fire::Fire(12, false, true, false, false, false): return 1846;
- case Fire::Fire(12, false, false, true, true, true): return 1847;
- case Fire::Fire(12, false, false, true, true, false): return 1848;
- case Fire::Fire(12, false, false, true, false, true): return 1849;
- case Fire::Fire(12, false, false, true, false, false): return 1850;
- case Fire::Fire(12, false, false, false, true, true): return 1851;
- case Fire::Fire(12, false, false, false, true, false): return 1852;
- case Fire::Fire(12, false, false, false, false, true): return 1853;
- case Fire::Fire(12, false, false, false, false, false): return 1854;
- case Fire::Fire(13, true, true, true, true, true): return 1855;
- case Fire::Fire(13, true, true, true, true, false): return 1856;
- case Fire::Fire(13, true, true, true, false, true): return 1857;
- case Fire::Fire(13, true, true, true, false, false): return 1858;
- case Fire::Fire(13, true, true, false, true, true): return 1859;
- case Fire::Fire(13, true, true, false, true, false): return 1860;
- case Fire::Fire(13, true, true, false, false, true): return 1861;
- case Fire::Fire(13, true, true, false, false, false): return 1862;
- case Fire::Fire(13, true, false, true, true, true): return 1863;
- case Fire::Fire(13, true, false, true, true, false): return 1864;
- case Fire::Fire(13, true, false, true, false, true): return 1865;
- case Fire::Fire(13, true, false, true, false, false): return 1866;
- case Fire::Fire(13, true, false, false, true, true): return 1867;
- case Fire::Fire(13, true, false, false, true, false): return 1868;
- case Fire::Fire(13, true, false, false, false, true): return 1869;
- case Fire::Fire(13, true, false, false, false, false): return 1870;
- case Fire::Fire(13, false, true, true, true, true): return 1871;
- case Fire::Fire(13, false, true, true, true, false): return 1872;
- case Fire::Fire(13, false, true, true, false, true): return 1873;
- case Fire::Fire(13, false, true, true, false, false): return 1874;
- case Fire::Fire(13, false, true, false, true, true): return 1875;
- case Fire::Fire(13, false, true, false, true, false): return 1876;
- case Fire::Fire(13, false, true, false, false, true): return 1877;
- case Fire::Fire(13, false, true, false, false, false): return 1878;
- case Fire::Fire(13, false, false, true, true, true): return 1879;
- case Fire::Fire(13, false, false, true, true, false): return 1880;
- case Fire::Fire(13, false, false, true, false, true): return 1881;
- case Fire::Fire(13, false, false, true, false, false): return 1882;
- case Fire::Fire(13, false, false, false, true, true): return 1883;
- case Fire::Fire(13, false, false, false, true, false): return 1884;
- case Fire::Fire(13, false, false, false, false, true): return 1885;
- case Fire::Fire(13, false, false, false, false, false): return 1886;
- case Fire::Fire(14, true, true, true, true, true): return 1887;
- case Fire::Fire(14, true, true, true, true, false): return 1888;
- case Fire::Fire(14, true, true, true, false, true): return 1889;
- case Fire::Fire(14, true, true, true, false, false): return 1890;
- case Fire::Fire(14, true, true, false, true, true): return 1891;
- case Fire::Fire(14, true, true, false, true, false): return 1892;
- case Fire::Fire(14, true, true, false, false, true): return 1893;
- case Fire::Fire(14, true, true, false, false, false): return 1894;
- case Fire::Fire(14, true, false, true, true, true): return 1895;
- case Fire::Fire(14, true, false, true, true, false): return 1896;
- case Fire::Fire(14, true, false, true, false, true): return 1897;
- case Fire::Fire(14, true, false, true, false, false): return 1898;
- case Fire::Fire(14, true, false, false, true, true): return 1899;
- case Fire::Fire(14, true, false, false, true, false): return 1900;
- case Fire::Fire(14, true, false, false, false, true): return 1901;
- case Fire::Fire(14, true, false, false, false, false): return 1902;
- case Fire::Fire(14, false, true, true, true, true): return 1903;
- case Fire::Fire(14, false, true, true, true, false): return 1904;
- case Fire::Fire(14, false, true, true, false, true): return 1905;
- case Fire::Fire(14, false, true, true, false, false): return 1906;
- case Fire::Fire(14, false, true, false, true, true): return 1907;
- case Fire::Fire(14, false, true, false, true, false): return 1908;
- case Fire::Fire(14, false, true, false, false, true): return 1909;
- case Fire::Fire(14, false, true, false, false, false): return 1910;
- case Fire::Fire(14, false, false, true, true, true): return 1911;
- case Fire::Fire(14, false, false, true, true, false): return 1912;
- case Fire::Fire(14, false, false, true, false, true): return 1913;
- case Fire::Fire(14, false, false, true, false, false): return 1914;
- case Fire::Fire(14, false, false, false, true, true): return 1915;
- case Fire::Fire(14, false, false, false, true, false): return 1916;
- case Fire::Fire(14, false, false, false, false, true): return 1917;
- case Fire::Fire(14, false, false, false, false, false): return 1918;
- case Fire::Fire(15, true, true, true, true, true): return 1919;
- case Fire::Fire(15, true, true, true, true, false): return 1920;
- case Fire::Fire(15, true, true, true, false, true): return 1921;
- case Fire::Fire(15, true, true, true, false, false): return 1922;
- case Fire::Fire(15, true, true, false, true, true): return 1923;
- case Fire::Fire(15, true, true, false, true, false): return 1924;
- case Fire::Fire(15, true, true, false, false, true): return 1925;
- case Fire::Fire(15, true, true, false, false, false): return 1926;
- case Fire::Fire(15, true, false, true, true, true): return 1927;
- case Fire::Fire(15, true, false, true, true, false): return 1928;
- case Fire::Fire(15, true, false, true, false, true): return 1929;
- case Fire::Fire(15, true, false, true, false, false): return 1930;
- case Fire::Fire(15, true, false, false, true, true): return 1931;
- case Fire::Fire(15, true, false, false, true, false): return 1932;
- case Fire::Fire(15, true, false, false, false, true): return 1933;
- case Fire::Fire(15, true, false, false, false, false): return 1934;
- case Fire::Fire(15, false, true, true, true, true): return 1935;
- case Fire::Fire(15, false, true, true, true, false): return 1936;
- case Fire::Fire(15, false, true, true, false, true): return 1937;
- case Fire::Fire(15, false, true, true, false, false): return 1938;
- case Fire::Fire(15, false, true, false, true, true): return 1939;
- case Fire::Fire(15, false, true, false, true, false): return 1940;
- case Fire::Fire(15, false, true, false, false, true): return 1941;
- case Fire::Fire(15, false, true, false, false, false): return 1942;
- case Fire::Fire(15, false, false, true, true, true): return 1943;
- case Fire::Fire(15, false, false, true, true, false): return 1944;
- case Fire::Fire(15, false, false, true, false, true): return 1945;
- case Fire::Fire(15, false, false, true, false, false): return 1946;
- case Fire::Fire(15, false, false, false, true, true): return 1947;
- case Fire::Fire(15, false, false, false, true, false): return 1948;
- case Fire::Fire(15, false, false, false, false, true): return 1949;
- case Fire::Fire(15, false, false, false, false, false): return 1950;
- case FireCoral::FireCoral(): return 9001;
- case FireCoralBlock::FireCoralBlock(): return 8982;
- case FireCoralFan::FireCoralFan(): return 9021;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9089;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9091;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9093;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9095;
- case FletchingTable::FletchingTable(): return 11164;
- case FlowerPot::FlowerPot(): return 5769;
- case FrostedIce::FrostedIce(0): return 8713;
- case FrostedIce::FrostedIce(1): return 8714;
- case FrostedIce::FrostedIce(2): return 8715;
- case FrostedIce::FrostedIce(3): return 8716;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, true): return 3371;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, false): return 3372;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, true): return 3373;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, false): return 3374;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, true): return 3375;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, false): return 3376;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, true): return 3377;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, false): return 3378;
- case Glass::Glass(): return 230;
- case GlassPane::GlassPane(true, true, true, true): return 4717;
- case GlassPane::GlassPane(true, true, true, false): return 4718;
- case GlassPane::GlassPane(true, true, false, true): return 4721;
- case GlassPane::GlassPane(true, true, false, false): return 4722;
- case GlassPane::GlassPane(true, false, true, true): return 4725;
- case GlassPane::GlassPane(true, false, true, false): return 4726;
- case GlassPane::GlassPane(true, false, false, true): return 4729;
- case GlassPane::GlassPane(true, false, false, false): return 4730;
- case GlassPane::GlassPane(false, true, true, true): return 4733;
- case GlassPane::GlassPane(false, true, true, false): return 4734;
- case GlassPane::GlassPane(false, true, false, true): return 4737;
- case GlassPane::GlassPane(false, true, false, false): return 4738;
- case GlassPane::GlassPane(false, false, true, true): return 4741;
- case GlassPane::GlassPane(false, false, true, false): return 4742;
- case GlassPane::GlassPane(false, false, false, true): return 4745;
- case GlassPane::GlassPane(false, false, false, false): return 4746;
- case Glowstone::Glowstone(): return 3999;
- case GoldBlock::GoldBlock(): return 1426;
- case GoldOre::GoldOre(): return 69;
- case Granite::Granite(): return 2;
- case GraniteSlab::GraniteSlab(GraniteSlab::Type::Top): return 10302;
- case GraniteSlab::GraniteSlab(GraniteSlab::Type::Bottom): return 10304;
- case GraniteSlab::GraniteSlab(GraniteSlab::Type::Double): return 10306;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 9854;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 9856;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 9858;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 9860;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 9862;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 9864;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 9866;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 9868;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 9870;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 9872;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 9874;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 9876;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 9878;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 9880;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 9882;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 9884;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 9886;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 9888;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 9890;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 9892;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 9894;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 9896;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 9898;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 9900;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 9902;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 9904;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 9906;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 9908;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 9910;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 9912;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 9914;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 9916;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 9918;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 9920;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 9922;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 9924;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 9926;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 9928;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 9930;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 9932;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low): return 10589;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None): return 10590;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low): return 10593;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None): return 10594;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low): return 10597;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None): return 10598;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low): return 10601;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None): return 10602;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low): return 10605;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None): return 10606;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low): return 10609;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None): return 10610;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low): return 10613;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None): return 10614;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low): return 10617;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None): return 10618;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low): return 10621;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None): return 10622;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low): return 10625;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None): return 10626;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low): return 10629;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None): return 10630;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low): return 10633;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None): return 10634;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low): return 10637;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None): return 10638;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low): return 10641;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None): return 10642;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low): return 10645;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None): return 10646;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low): return 10649;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None): return 10650;
- case Grass::Grass(): return 1341;
- case GrassBlock::GrassBlock(true): return 8;
- case GrassBlock::GrassBlock(false): return 9;
- case GrassPath::GrassPath(): return 8687;
- case Gravel::Gravel(): return 68;
- case GrayBanner::GrayBanner(0): return 7473;
- case GrayBanner::GrayBanner(1): return 7474;
- case GrayBanner::GrayBanner(2): return 7475;
- case GrayBanner::GrayBanner(3): return 7476;
- case GrayBanner::GrayBanner(4): return 7477;
- case GrayBanner::GrayBanner(5): return 7478;
- case GrayBanner::GrayBanner(6): return 7479;
- case GrayBanner::GrayBanner(7): return 7480;
- case GrayBanner::GrayBanner(8): return 7481;
- case GrayBanner::GrayBanner(9): return 7482;
- case GrayBanner::GrayBanner(10): return 7483;
- case GrayBanner::GrayBanner(11): return 7484;
- case GrayBanner::GrayBanner(12): return 7485;
- case GrayBanner::GrayBanner(13): return 7486;
- case GrayBanner::GrayBanner(14): return 7487;
- case GrayBanner::GrayBanner(15): return 7488;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Head): return 1160;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Foot): return 1161;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Head): return 1162;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Foot): return 1163;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Head): return 1164;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Foot): return 1165;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Head): return 1166;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Foot): return 1167;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Head): return 1168;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Foot): return 1169;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Head): return 1170;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Foot): return 1171;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Head): return 1172;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Foot): return 1173;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Head): return 1174;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Foot): return 1175;
- case GrayCarpet::GrayCarpet(): return 7337;
- case GrayConcrete::GrayConcrete(): return 8909;
- case GrayConcretePowder::GrayConcretePowder(): return 8925;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8866;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8867;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8868;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8869;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8784;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8785;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8786;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8787;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8788;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8789;
- case GrayStainedGlass::GrayStainedGlass(): return 4088;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, true): return 6553;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, false): return 6554;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, true): return 6557;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, false): return 6558;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, true): return 6561;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, false): return 6562;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, true): return 6565;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, false): return 6566;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, true): return 6569;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, false): return 6570;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, true): return 6573;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, false): return 6574;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, true): return 6577;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, false): return 6578;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, true): return 6581;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, false): return 6582;
- case GrayTerracotta::GrayTerracotta(): return 6318;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7645;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7646;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 7647;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 7648;
- case GrayWool::GrayWool(): return 1390;
- case GreenBanner::GreenBanner(0): return 7569;
- case GreenBanner::GreenBanner(1): return 7570;
- case GreenBanner::GreenBanner(2): return 7571;
- case GreenBanner::GreenBanner(3): return 7572;
- case GreenBanner::GreenBanner(4): return 7573;
- case GreenBanner::GreenBanner(5): return 7574;
- case GreenBanner::GreenBanner(6): return 7575;
- case GreenBanner::GreenBanner(7): return 7576;
- case GreenBanner::GreenBanner(8): return 7577;
- case GreenBanner::GreenBanner(9): return 7578;
- case GreenBanner::GreenBanner(10): return 7579;
- case GreenBanner::GreenBanner(11): return 7580;
- case GreenBanner::GreenBanner(12): return 7581;
- case GreenBanner::GreenBanner(13): return 7582;
- case GreenBanner::GreenBanner(14): return 7583;
- case GreenBanner::GreenBanner(15): return 7584;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Head): return 1256;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Foot): return 1257;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Head): return 1258;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Foot): return 1259;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Head): return 1260;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Foot): return 1261;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Head): return 1262;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Foot): return 1263;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Head): return 1264;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Foot): return 1265;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Head): return 1266;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Foot): return 1267;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Head): return 1268;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Foot): return 1269;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Head): return 1270;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Foot): return 1271;
- case GreenCarpet::GreenCarpet(): return 7343;
- case GreenConcrete::GreenConcrete(): return 8915;
- case GreenConcretePowder::GreenConcretePowder(): return 8931;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8890;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8891;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8892;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8893;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8820;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8821;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8822;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8823;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8824;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8825;
- case GreenStainedGlass::GreenStainedGlass(): return 4094;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, true): return 6745;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, false): return 6746;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, true): return 6749;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, false): return 6750;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, true): return 6753;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, false): return 6754;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, true): return 6757;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, false): return 6758;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, true): return 6761;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, false): return 6762;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, true): return 6765;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, false): return 6766;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, true): return 6769;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, false): return 6770;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, true): return 6773;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, false): return 6774;
- case GreenTerracotta::GreenTerracotta(): return 6324;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7669;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7670;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XM): return 7671;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XP): return 7672;
- case GreenWool::GreenWool(): return 1396;
- case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZM): return 11165;
- case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZP): return 11166;
- case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XM): return 11167;
- case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XP): return 11168;
- case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZM): return 11169;
- case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZP): return 11170;
- case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XM): return 11171;
- case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XP): return 11172;
- case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM): return 11173;
- case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP): return 11174;
- case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XM): return 11175;
- case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XP): return 11176;
- case HayBale::HayBale(HayBale::Axis::X): return 7327;
- case HayBale::HayBale(HayBale::Axis::Y): return 7328;
- case HayBale::HayBale(HayBale::Axis::Z): return 7329;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(0): return 6126;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(1): return 6127;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(2): return 6128;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(3): return 6129;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(4): return 6130;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(5): return 6131;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(6): return 6132;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(7): return 6133;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(8): return 6134;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(9): return 6135;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(10): return 6136;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(11): return 6137;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(12): return 6138;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(13): return 6139;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(14): return 6140;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(15): return 6141;
- case HoneyBlock::HoneyBlock(): return 11335;
- case HoneycombBlock::HoneycombBlock(): return 11336;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_YM): return 6192;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZM): return 6193;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZP): return 6194;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XM): return 6195;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XP): return 6196;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_YM): return 6197;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZM): return 6198;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZP): return 6199;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XM): return 6200;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XP): return 6201;
- case HornCoral::HornCoral(): return 9003;
- case HornCoralBlock::HornCoralBlock(): return 8983;
- case HornCoralFan::HornCoralFan(): return 9023;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9097;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9099;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9101;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9103;
- case Ice::Ice(): return 3927;
- case InfestedChiseledStoneBricks::InfestedChiseledStoneBricks(): return 4490;
- case InfestedCobblestone::InfestedCobblestone(): return 4486;
- case InfestedCrackedStoneBricks::InfestedCrackedStoneBricks(): return 4489;
- case InfestedMossyStoneBricks::InfestedMossyStoneBricks(): return 4488;
- case InfestedStone::InfestedStone(): return 4485;
- case InfestedStoneBricks::InfestedStoneBricks(): return 4487;
- case IronBars::IronBars(true, true, true, true): return 4685;
- case IronBars::IronBars(true, true, true, false): return 4686;
- case IronBars::IronBars(true, true, false, true): return 4689;
- case IronBars::IronBars(true, true, false, false): return 4690;
- case IronBars::IronBars(true, false, true, true): return 4693;
- case IronBars::IronBars(true, false, true, false): return 4694;
- case IronBars::IronBars(true, false, false, true): return 4697;
- case IronBars::IronBars(true, false, false, false): return 4698;
- case IronBars::IronBars(false, true, true, true): return 4701;
- case IronBars::IronBars(false, true, true, false): return 4702;
- case IronBars::IronBars(false, true, false, true): return 4705;
- case IronBars::IronBars(false, true, false, false): return 4706;
- case IronBars::IronBars(false, false, true, true): return 4709;
- case IronBars::IronBars(false, false, true, false): return 4710;
- case IronBars::IronBars(false, false, false, true): return 4713;
- case IronBars::IronBars(false, false, false, false): return 4714;
- case IronBlock::IronBlock(): return 1427;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3807;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3808;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3809;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3810;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3811;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3812;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3813;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3814;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3815;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3816;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3817;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3818;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3819;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3820;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3821;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3822;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3823;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3824;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3825;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3826;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3827;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3828;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3829;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3830;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3831;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3832;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3833;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3834;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3835;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3836;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3837;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3838;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3839;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3840;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3841;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3842;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3843;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3844;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3845;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3846;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3847;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3848;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3849;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3850;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3851;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3852;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3853;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3854;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3855;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3856;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3857;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3858;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3859;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3860;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3861;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3862;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3863;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3864;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3865;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3866;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3867;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3868;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3869;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3870;
- case IronOre::IronOre(): return 70;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, true): return 7002;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, false): return 7004;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, true): return 7006;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, false): return 7008;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, true): return 7010;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, false): return 7012;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, true): return 7014;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, false): return 7016;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, true): return 7018;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, false): return 7020;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, true): return 7022;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, false): return 7024;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, true): return 7026;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, false): return 7028;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, true): return 7030;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, false): return 7032;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, true): return 7034;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, false): return 7036;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, true): return 7038;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, false): return 7040;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, true): return 7042;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, false): return 7044;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, true): return 7046;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, false): return 7048;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, true): return 7050;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, false): return 7052;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, true): return 7054;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, false): return 7056;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, true): return 7058;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, false): return 7060;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, true): return 7062;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, false): return 7064;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZM): return 4006;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZP): return 4007;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XM): return 4008;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XP): return 4009;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::NorthUp): return 11272;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::EastUp): return 11273;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::SouthUp): return 11274;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::WestUp): return 11275;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::UpSouth): return 11276;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::DownSouth): return 11277;
- case Jukebox::Jukebox(true): return 3962;
- case Jukebox::Jukebox(false): return 3963;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5882;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5883;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5884;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5885;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5886;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5887;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5888;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5889;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5890;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5891;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5892;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5893;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5894;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5895;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5896;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5897;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5898;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5899;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5900;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5901;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5902;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5903;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5904;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5905;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8330;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8331;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8332;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8333;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8334;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8335;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8336;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8337;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8338;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8339;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8340;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8341;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8342;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8343;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8344;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8345;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8346;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8347;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8348;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8349;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8350;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8351;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8352;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8353;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8354;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8355;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8356;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8357;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8358;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8359;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8360;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8361;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8362;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8363;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8364;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8365;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8366;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8367;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8368;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8369;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8370;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8371;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8372;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8373;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8374;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8375;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8376;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8377;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8378;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8379;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8380;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8381;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8382;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8383;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8384;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8385;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8386;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8387;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8388;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8389;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8390;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8391;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8392;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8393;
- case JungleFence::JungleFence(true, true, true, true): return 8108;
- case JungleFence::JungleFence(true, true, true, false): return 8109;
- case JungleFence::JungleFence(true, true, false, true): return 8112;
- case JungleFence::JungleFence(true, true, false, false): return 8113;
- case JungleFence::JungleFence(true, false, true, true): return 8116;
- case JungleFence::JungleFence(true, false, true, false): return 8117;
- case JungleFence::JungleFence(true, false, false, true): return 8120;
- case JungleFence::JungleFence(true, false, false, false): return 8121;
- case JungleFence::JungleFence(false, true, true, true): return 8124;
- case JungleFence::JungleFence(false, true, true, false): return 8125;
- case JungleFence::JungleFence(false, true, false, true): return 8128;
- case JungleFence::JungleFence(false, true, false, false): return 8129;
- case JungleFence::JungleFence(false, false, true, true): return 8132;
- case JungleFence::JungleFence(false, false, true, false): return 8133;
- case JungleFence::JungleFence(false, false, false, true): return 8136;
- case JungleFence::JungleFence(false, false, false, false): return 8137;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7946;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7947;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7948;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7949;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7950;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7951;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7952;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7953;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7954;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7955;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7956;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7957;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7958;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7959;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7960;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7961;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7962;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7963;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7964;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7965;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7966;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7967;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7968;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7969;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7970;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7971;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7972;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7973;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7974;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7975;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7976;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7977;
- case JungleLeaves::JungleLeaves(1, true): return 186;
- case JungleLeaves::JungleLeaves(1, false): return 187;
- case JungleLeaves::JungleLeaves(2, true): return 188;
- case JungleLeaves::JungleLeaves(2, false): return 189;
- case JungleLeaves::JungleLeaves(3, true): return 190;
- case JungleLeaves::JungleLeaves(3, false): return 191;
- case JungleLeaves::JungleLeaves(4, true): return 192;
- case JungleLeaves::JungleLeaves(4, false): return 193;
- case JungleLeaves::JungleLeaves(5, true): return 194;
- case JungleLeaves::JungleLeaves(5, false): return 195;
- case JungleLeaves::JungleLeaves(6, true): return 196;
- case JungleLeaves::JungleLeaves(6, false): return 197;
- case JungleLeaves::JungleLeaves(7, true): return 198;
- case JungleLeaves::JungleLeaves(7, false): return 199;
- case JungleLog::JungleLog(JungleLog::Axis::X): return 81;
- case JungleLog::JungleLog(JungleLog::Axis::Y): return 82;
- case JungleLog::JungleLog(JungleLog::Axis::Z): return 83;
- case JunglePlanks::JunglePlanks(): return 18;
- case JunglePressurePlate::JunglePressurePlate(true): return 3877;
- case JunglePressurePlate::JunglePressurePlate(false): return 3878;
- case JungleSapling::JungleSapling(0): return 27;
- case JungleSapling::JungleSapling(1): return 28;
- case JungleSign::JungleSign(0): return 3508;
- case JungleSign::JungleSign(1): return 3510;
- case JungleSign::JungleSign(2): return 3512;
- case JungleSign::JungleSign(3): return 3514;
- case JungleSign::JungleSign(4): return 3516;
- case JungleSign::JungleSign(5): return 3518;
- case JungleSign::JungleSign(6): return 3520;
- case JungleSign::JungleSign(7): return 3522;
- case JungleSign::JungleSign(8): return 3524;
- case JungleSign::JungleSign(9): return 3526;
- case JungleSign::JungleSign(10): return 3528;
- case JungleSign::JungleSign(11): return 3530;
- case JungleSign::JungleSign(12): return 3532;
- case JungleSign::JungleSign(13): return 3534;
- case JungleSign::JungleSign(14): return 3536;
- case JungleSign::JungleSign(15): return 3538;
- case JungleSlab::JungleSlab(JungleSlab::Type::Top): return 7783;
- case JungleSlab::JungleSlab(JungleSlab::Type::Bottom): return 7785;
- case JungleSlab::JungleSlab(JungleSlab::Type::Double): return 7787;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5549;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5551;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5553;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5555;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5557;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5559;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5561;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5563;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5565;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5567;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5569;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5571;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5573;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5575;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5577;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5579;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5581;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5583;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5585;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5587;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5589;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5591;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5593;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5595;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5597;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5599;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5601;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5603;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5605;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5607;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5609;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5611;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5613;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5615;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5617;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5619;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5621;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5623;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5625;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5627;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, true): return 4290;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, false): return 4292;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, true): return 4294;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, false): return 4296;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, true): return 4298;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, false): return 4300;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, true): return 4302;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, false): return 4304;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, true): return 4306;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, false): return 4308;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, true): return 4310;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, false): return 4312;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, true): return 4314;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, false): return 4316;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, true): return 4318;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, false): return 4320;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, true): return 4322;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, false): return 4324;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, true): return 4326;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, false): return 4328;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, true): return 4330;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, false): return 4332;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, true): return 4334;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, false): return 4336;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, true): return 4338;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, false): return 4340;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, true): return 4342;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, false): return 4344;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, true): return 4346;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, false): return 4348;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, true): return 4350;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, false): return 4352;
- case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZM): return 3766;
- case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZP): return 3768;
- case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XM): return 3770;
- case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XP): return 3772;
- case JungleWood::JungleWood(JungleWood::Axis::X): return 117;
- case JungleWood::JungleWood(JungleWood::Axis::Y): return 118;
- case JungleWood::JungleWood(JungleWood::Axis::Z): return 119;
- case Kelp::Kelp(0): return 8934;
- case Kelp::Kelp(1): return 8935;
- case Kelp::Kelp(2): return 8936;
- case Kelp::Kelp(3): return 8937;
- case Kelp::Kelp(4): return 8938;
- case Kelp::Kelp(5): return 8939;
- case Kelp::Kelp(6): return 8940;
- case Kelp::Kelp(7): return 8941;
- case Kelp::Kelp(8): return 8942;
- case Kelp::Kelp(9): return 8943;
- case Kelp::Kelp(10): return 8944;
- case Kelp::Kelp(11): return 8945;
- case Kelp::Kelp(12): return 8946;
- case Kelp::Kelp(13): return 8947;
- case Kelp::Kelp(14): return 8948;
- case Kelp::Kelp(15): return 8949;
- case Kelp::Kelp(16): return 8950;
- case Kelp::Kelp(17): return 8951;
- case Kelp::Kelp(18): return 8952;
- case Kelp::Kelp(19): return 8953;
- case Kelp::Kelp(20): return 8954;
- case Kelp::Kelp(21): return 8955;
- case Kelp::Kelp(22): return 8956;
- case Kelp::Kelp(23): return 8957;
- case Kelp::Kelp(24): return 8958;
- case Kelp::Kelp(25): return 8959;
- case KelpPlant::KelpPlant(): return 8960;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZM): return 3636;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZP): return 3638;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_XM): return 3640;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_XP): return 3642;
- case Lantern::Lantern(true): return 11230;
- case Lantern::Lantern(false): return 11231;
- case LapisBlock::LapisBlock(): return 232;
- case LapisOre::LapisOre(): return 231;
- case LargeFern::LargeFern(LargeFern::Half::Upper): return 7359;
- case LargeFern::LargeFern(LargeFern::Half::Lower): return 7360;
- case Lava::Lava(0): return 50;
- case Lava::Lava(1): return 51;
- case Lava::Lava(2): return 52;
- case Lava::Lava(3): return 53;
- case Lava::Lava(4): return 54;
- case Lava::Lava(5): return 55;
- case Lava::Lava(6): return 56;
- case Lava::Lava(7): return 57;
- case Lava::Lava(8): return 58;
- case Lava::Lava(9): return 59;
- case Lava::Lava(10): return 60;
- case Lava::Lava(11): return 61;
- case Lava::Lava(12): return 62;
- case Lava::Lava(13): return 63;
- case Lava::Lava(14): return 64;
- case Lava::Lava(15): return 65;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, true): return 11177;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, false): return 11178;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, true): return 11179;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, false): return 11180;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, true): return 11181;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, false): return 11182;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, true): return 11183;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, false): return 11184;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, true): return 11185;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, false): return 11186;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, true): return 11187;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, false): return 11188;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, true): return 11189;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, false): return 11190;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, true): return 11191;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, false): return 11192;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3781;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3782;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3783;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3784;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3785;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3786;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3787;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3788;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3789;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3790;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3791;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3792;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3793;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3794;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3795;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3796;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3797;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3798;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3799;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3800;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3801;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3802;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3803;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3804;
- case LightBlueBanner::LightBlueBanner(0): return 7409;
- case LightBlueBanner::LightBlueBanner(1): return 7410;
- case LightBlueBanner::LightBlueBanner(2): return 7411;
- case LightBlueBanner::LightBlueBanner(3): return 7412;
- case LightBlueBanner::LightBlueBanner(4): return 7413;
- case LightBlueBanner::LightBlueBanner(5): return 7414;
- case LightBlueBanner::LightBlueBanner(6): return 7415;
- case LightBlueBanner::LightBlueBanner(7): return 7416;
- case LightBlueBanner::LightBlueBanner(8): return 7417;
- case LightBlueBanner::LightBlueBanner(9): return 7418;
- case LightBlueBanner::LightBlueBanner(10): return 7419;
- case LightBlueBanner::LightBlueBanner(11): return 7420;
- case LightBlueBanner::LightBlueBanner(12): return 7421;
- case LightBlueBanner::LightBlueBanner(13): return 7422;
- case LightBlueBanner::LightBlueBanner(14): return 7423;
- case LightBlueBanner::LightBlueBanner(15): return 7424;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Head): return 1096;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Foot): return 1097;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Head): return 1098;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Foot): return 1099;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Head): return 1100;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Foot): return 1101;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Head): return 1102;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Foot): return 1103;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Head): return 1104;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Foot): return 1105;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Head): return 1106;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Foot): return 1107;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Head): return 1108;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Foot): return 1109;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Head): return 1110;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Foot): return 1111;
- case LightBlueCarpet::LightBlueCarpet(): return 7333;
- case LightBlueConcrete::LightBlueConcrete(): return 8905;
- case LightBlueConcretePowder::LightBlueConcretePowder(): return 8921;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8850;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8851;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8852;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8853;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8760;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8761;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8762;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8763;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8764;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8765;
- case LightBlueStainedGlass::LightBlueStainedGlass(): return 4084;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, true): return 6425;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, false): return 6426;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, true): return 6429;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, false): return 6430;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, true): return 6433;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, false): return 6434;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, true): return 6437;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, false): return 6438;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, true): return 6441;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, false): return 6442;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, true): return 6445;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, false): return 6446;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, true): return 6449;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, false): return 6450;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, true): return 6453;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, false): return 6454;
- case LightBlueTerracotta::LightBlueTerracotta(): return 6314;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7629;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7630;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 7631;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 7632;
- case LightBlueWool::LightBlueWool(): return 1386;
- case LightGrayBanner::LightGrayBanner(0): return 7489;
- case LightGrayBanner::LightGrayBanner(1): return 7490;
- case LightGrayBanner::LightGrayBanner(2): return 7491;
- case LightGrayBanner::LightGrayBanner(3): return 7492;
- case LightGrayBanner::LightGrayBanner(4): return 7493;
- case LightGrayBanner::LightGrayBanner(5): return 7494;
- case LightGrayBanner::LightGrayBanner(6): return 7495;
- case LightGrayBanner::LightGrayBanner(7): return 7496;
- case LightGrayBanner::LightGrayBanner(8): return 7497;
- case LightGrayBanner::LightGrayBanner(9): return 7498;
- case LightGrayBanner::LightGrayBanner(10): return 7499;
- case LightGrayBanner::LightGrayBanner(11): return 7500;
- case LightGrayBanner::LightGrayBanner(12): return 7501;
- case LightGrayBanner::LightGrayBanner(13): return 7502;
- case LightGrayBanner::LightGrayBanner(14): return 7503;
- case LightGrayBanner::LightGrayBanner(15): return 7504;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Head): return 1176;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Foot): return 1177;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Head): return 1178;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Foot): return 1179;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Head): return 1180;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Foot): return 1181;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Head): return 1182;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Foot): return 1183;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Head): return 1184;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Foot): return 1185;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Head): return 1186;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Foot): return 1187;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Head): return 1188;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Foot): return 1189;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Head): return 1190;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Foot): return 1191;
- case LightGrayCarpet::LightGrayCarpet(): return 7338;
- case LightGrayConcrete::LightGrayConcrete(): return 8910;
- case LightGrayConcretePowder::LightGrayConcretePowder(): return 8926;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8870;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8871;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8872;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8873;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8790;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8791;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8792;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8793;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8794;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8795;
- case LightGrayStainedGlass::LightGrayStainedGlass(): return 4089;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, true): return 6585;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, false): return 6586;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, true): return 6589;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, false): return 6590;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, true): return 6593;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, false): return 6594;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, true): return 6597;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, false): return 6598;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, true): return 6601;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, false): return 6602;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, true): return 6605;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, false): return 6606;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, true): return 6609;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, false): return 6610;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, true): return 6613;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, false): return 6614;
- case LightGrayTerracotta::LightGrayTerracotta(): return 6319;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7649;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7650;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 7651;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 7652;
- case LightGrayWool::LightGrayWool(): return 1391;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(0): return 6110;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(1): return 6111;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(2): return 6112;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(3): return 6113;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(4): return 6114;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(5): return 6115;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(6): return 6116;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(7): return 6117;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(8): return 6118;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(9): return 6119;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(10): return 6120;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(11): return 6121;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(12): return 6122;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(13): return 6123;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(14): return 6124;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(15): return 6125;
- case Lilac::Lilac(Lilac::Half::Upper): return 7351;
- case Lilac::Lilac(Lilac::Half::Lower): return 7352;
- case LilyOfTheValley::LilyOfTheValley(): return 1423;
- case LilyPad::LilyPad(): return 4998;
- case LimeBanner::LimeBanner(0): return 7441;
- case LimeBanner::LimeBanner(1): return 7442;
- case LimeBanner::LimeBanner(2): return 7443;
- case LimeBanner::LimeBanner(3): return 7444;
- case LimeBanner::LimeBanner(4): return 7445;
- case LimeBanner::LimeBanner(5): return 7446;
- case LimeBanner::LimeBanner(6): return 7447;
- case LimeBanner::LimeBanner(7): return 7448;
- case LimeBanner::LimeBanner(8): return 7449;
- case LimeBanner::LimeBanner(9): return 7450;
- case LimeBanner::LimeBanner(10): return 7451;
- case LimeBanner::LimeBanner(11): return 7452;
- case LimeBanner::LimeBanner(12): return 7453;
- case LimeBanner::LimeBanner(13): return 7454;
- case LimeBanner::LimeBanner(14): return 7455;
- case LimeBanner::LimeBanner(15): return 7456;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Head): return 1128;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Foot): return 1129;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Head): return 1130;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Foot): return 1131;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Head): return 1132;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Foot): return 1133;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Head): return 1134;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Foot): return 1135;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Head): return 1136;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Foot): return 1137;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Head): return 1138;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Foot): return 1139;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Head): return 1140;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Foot): return 1141;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Head): return 1142;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Foot): return 1143;
- case LimeCarpet::LimeCarpet(): return 7335;
- case LimeConcrete::LimeConcrete(): return 8907;
- case LimeConcretePowder::LimeConcretePowder(): return 8923;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8858;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8859;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8860;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8861;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8772;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8773;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8774;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8775;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8776;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8777;
- case LimeStainedGlass::LimeStainedGlass(): return 4086;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, true): return 6489;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, false): return 6490;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, true): return 6493;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, false): return 6494;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, true): return 6497;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, false): return 6498;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, true): return 6501;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, false): return 6502;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, true): return 6505;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, false): return 6506;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, true): return 6509;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, false): return 6510;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, true): return 6513;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, false): return 6514;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, true): return 6517;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, false): return 6518;
- case LimeTerracotta::LimeTerracotta(): return 6316;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7637;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7638;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XM): return 7639;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XP): return 7640;
- case LimeWool::LimeWool(): return 1388;
- case Loom::Loom(eBlockFace::BLOCK_FACE_ZM): return 11131;
- case Loom::Loom(eBlockFace::BLOCK_FACE_ZP): return 11132;
- case Loom::Loom(eBlockFace::BLOCK_FACE_XM): return 11133;
- case Loom::Loom(eBlockFace::BLOCK_FACE_XP): return 11134;
- case MagentaBanner::MagentaBanner(0): return 7393;
- case MagentaBanner::MagentaBanner(1): return 7394;
- case MagentaBanner::MagentaBanner(2): return 7395;
- case MagentaBanner::MagentaBanner(3): return 7396;
- case MagentaBanner::MagentaBanner(4): return 7397;
- case MagentaBanner::MagentaBanner(5): return 7398;
- case MagentaBanner::MagentaBanner(6): return 7399;
- case MagentaBanner::MagentaBanner(7): return 7400;
- case MagentaBanner::MagentaBanner(8): return 7401;
- case MagentaBanner::MagentaBanner(9): return 7402;
- case MagentaBanner::MagentaBanner(10): return 7403;
- case MagentaBanner::MagentaBanner(11): return 7404;
- case MagentaBanner::MagentaBanner(12): return 7405;
- case MagentaBanner::MagentaBanner(13): return 7406;
- case MagentaBanner::MagentaBanner(14): return 7407;
- case MagentaBanner::MagentaBanner(15): return 7408;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Head): return 1080;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Foot): return 1081;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Head): return 1082;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Foot): return 1083;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Head): return 1084;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Foot): return 1085;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Head): return 1086;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Foot): return 1087;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Head): return 1088;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Foot): return 1089;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Head): return 1090;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Foot): return 1091;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Head): return 1092;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Foot): return 1093;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Head): return 1094;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Foot): return 1095;
- case MagentaCarpet::MagentaCarpet(): return 7332;
- case MagentaConcrete::MagentaConcrete(): return 8904;
- case MagentaConcretePowder::MagentaConcretePowder(): return 8920;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8846;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8847;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8848;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8849;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8754;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8755;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8756;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8757;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8758;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8759;
- case MagentaStainedGlass::MagentaStainedGlass(): return 4083;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, true): return 6393;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, false): return 6394;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, true): return 6397;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, false): return 6398;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, true): return 6401;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, false): return 6402;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, true): return 6405;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, false): return 6406;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, true): return 6409;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, false): return 6410;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, true): return 6413;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, false): return 6414;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, true): return 6417;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, false): return 6418;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, true): return 6421;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, false): return 6422;
- case MagentaTerracotta::MagentaTerracotta(): return 6313;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7625;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7626;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XM): return 7627;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XP): return 7628;
- case MagentaWool::MagentaWool(): return 1385;
- case MagmaBlock::MagmaBlock(): return 8717;
- case Melon::Melon(): return 4747;
- case MelonStem::MelonStem(0): return 4764;
- case MelonStem::MelonStem(1): return 4765;
- case MelonStem::MelonStem(2): return 4766;
- case MelonStem::MelonStem(3): return 4767;
- case MelonStem::MelonStem(4): return 4768;
- case MelonStem::MelonStem(5): return 4769;
- case MelonStem::MelonStem(6): return 4770;
- case MelonStem::MelonStem(7): return 4771;
- case MossyCobblestone::MossyCobblestone(): return 1432;
- case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Top): return 10278;
- case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Bottom): return 10280;
- case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Double): return 10282;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 9454;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 9456;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 9458;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 9460;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 9462;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 9464;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 9466;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 9468;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 9470;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 9472;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 9474;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 9476;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 9478;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 9480;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 9482;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 9484;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 9486;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 9488;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 9490;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 9492;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 9494;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 9496;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 9498;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 9500;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 9502;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 9504;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 9506;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 9508;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 9510;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 9512;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 9514;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 9516;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 9518;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 9520;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 9522;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 9524;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 9526;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 9528;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 9530;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 9532;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5707;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5708;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5711;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5712;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5715;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5716;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5719;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5720;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5723;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5724;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5727;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5728;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5731;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5732;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5735;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5736;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5739;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5740;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5743;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5744;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5747;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5748;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5751;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5752;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5755;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5756;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 5759;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 5760;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5763;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5764;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5767;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5768;
- case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Top): return 10266;
- case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Bottom): return 10268;
- case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Double): return 10270;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9294;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9296;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9298;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9300;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9302;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9304;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9306;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9308;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9310;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9312;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9314;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9316;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9318;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9320;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9322;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9324;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9326;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9328;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9330;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9332;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9334;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9336;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9338;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9340;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9342;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9344;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9346;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9348;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9350;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9352;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9354;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9356;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9358;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9360;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9362;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9364;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9366;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9368;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9370;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9372;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 10525;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 10526;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 10529;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 10530;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 10533;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 10534;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 10537;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 10538;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 10541;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 10542;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 10545;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 10546;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 10549;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 10550;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 10553;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 10554;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 10557;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 10558;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 10561;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 10562;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 10565;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 10566;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 10569;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 10570;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 10573;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 10574;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 10577;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 10578;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 10581;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 10582;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 10585;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 10586;
- case MossyStoneBricks::MossyStoneBricks(): return 4482;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Normal): return 1399;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Sticky): return 1400;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Normal): return 1401;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Sticky): return 1402;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Normal): return 1403;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Sticky): return 1404;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Normal): return 1405;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Sticky): return 1406;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Normal): return 1407;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Sticky): return 1408;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Normal): return 1409;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Sticky): return 1410;
- case MushroomStem::MushroomStem(true, true, true, true, true, true): return 4619;
- case MushroomStem::MushroomStem(true, true, true, true, true, false): return 4620;
- case MushroomStem::MushroomStem(true, true, true, true, false, true): return 4621;
- case MushroomStem::MushroomStem(true, true, true, true, false, false): return 4622;
- case MushroomStem::MushroomStem(true, true, true, false, true, true): return 4623;
- case MushroomStem::MushroomStem(true, true, true, false, true, false): return 4624;
- case MushroomStem::MushroomStem(true, true, true, false, false, true): return 4625;
- case MushroomStem::MushroomStem(true, true, true, false, false, false): return 4626;
- case MushroomStem::MushroomStem(true, true, false, true, true, true): return 4627;
- case MushroomStem::MushroomStem(true, true, false, true, true, false): return 4628;
- case MushroomStem::MushroomStem(true, true, false, true, false, true): return 4629;
- case MushroomStem::MushroomStem(true, true, false, true, false, false): return 4630;
- case MushroomStem::MushroomStem(true, true, false, false, true, true): return 4631;
- case MushroomStem::MushroomStem(true, true, false, false, true, false): return 4632;
- case MushroomStem::MushroomStem(true, true, false, false, false, true): return 4633;
- case MushroomStem::MushroomStem(true, true, false, false, false, false): return 4634;
- case MushroomStem::MushroomStem(true, false, true, true, true, true): return 4635;
- case MushroomStem::MushroomStem(true, false, true, true, true, false): return 4636;
- case MushroomStem::MushroomStem(true, false, true, true, false, true): return 4637;
- case MushroomStem::MushroomStem(true, false, true, true, false, false): return 4638;
- case MushroomStem::MushroomStem(true, false, true, false, true, true): return 4639;
- case MushroomStem::MushroomStem(true, false, true, false, true, false): return 4640;
- case MushroomStem::MushroomStem(true, false, true, false, false, true): return 4641;
- case MushroomStem::MushroomStem(true, false, true, false, false, false): return 4642;
- case MushroomStem::MushroomStem(true, false, false, true, true, true): return 4643;
- case MushroomStem::MushroomStem(true, false, false, true, true, false): return 4644;
- case MushroomStem::MushroomStem(true, false, false, true, false, true): return 4645;
- case MushroomStem::MushroomStem(true, false, false, true, false, false): return 4646;
- case MushroomStem::MushroomStem(true, false, false, false, true, true): return 4647;
- case MushroomStem::MushroomStem(true, false, false, false, true, false): return 4648;
- case MushroomStem::MushroomStem(true, false, false, false, false, true): return 4649;
- case MushroomStem::MushroomStem(true, false, false, false, false, false): return 4650;
- case MushroomStem::MushroomStem(false, true, true, true, true, true): return 4651;
- case MushroomStem::MushroomStem(false, true, true, true, true, false): return 4652;
- case MushroomStem::MushroomStem(false, true, true, true, false, true): return 4653;
- case MushroomStem::MushroomStem(false, true, true, true, false, false): return 4654;
- case MushroomStem::MushroomStem(false, true, true, false, true, true): return 4655;
- case MushroomStem::MushroomStem(false, true, true, false, true, false): return 4656;
- case MushroomStem::MushroomStem(false, true, true, false, false, true): return 4657;
- case MushroomStem::MushroomStem(false, true, true, false, false, false): return 4658;
- case MushroomStem::MushroomStem(false, true, false, true, true, true): return 4659;
- case MushroomStem::MushroomStem(false, true, false, true, true, false): return 4660;
- case MushroomStem::MushroomStem(false, true, false, true, false, true): return 4661;
- case MushroomStem::MushroomStem(false, true, false, true, false, false): return 4662;
- case MushroomStem::MushroomStem(false, true, false, false, true, true): return 4663;
- case MushroomStem::MushroomStem(false, true, false, false, true, false): return 4664;
- case MushroomStem::MushroomStem(false, true, false, false, false, true): return 4665;
- case MushroomStem::MushroomStem(false, true, false, false, false, false): return 4666;
- case MushroomStem::MushroomStem(false, false, true, true, true, true): return 4667;
- case MushroomStem::MushroomStem(false, false, true, true, true, false): return 4668;
- case MushroomStem::MushroomStem(false, false, true, true, false, true): return 4669;
- case MushroomStem::MushroomStem(false, false, true, true, false, false): return 4670;
- case MushroomStem::MushroomStem(false, false, true, false, true, true): return 4671;
- case MushroomStem::MushroomStem(false, false, true, false, true, false): return 4672;
- case MushroomStem::MushroomStem(false, false, true, false, false, true): return 4673;
- case MushroomStem::MushroomStem(false, false, true, false, false, false): return 4674;
- case MushroomStem::MushroomStem(false, false, false, true, true, true): return 4675;
- case MushroomStem::MushroomStem(false, false, false, true, true, false): return 4676;
- case MushroomStem::MushroomStem(false, false, false, true, false, true): return 4677;
- case MushroomStem::MushroomStem(false, false, false, true, false, false): return 4678;
- case MushroomStem::MushroomStem(false, false, false, false, true, true): return 4679;
- case MushroomStem::MushroomStem(false, false, false, false, true, false): return 4680;
- case MushroomStem::MushroomStem(false, false, false, false, false, true): return 4681;
- case MushroomStem::MushroomStem(false, false, false, false, false, false): return 4682;
- case Mycelium::Mycelium(true): return 4996;
- case Mycelium::Mycelium(false): return 4997;
- case NetherBrickFence::NetherBrickFence(true, true, true, true): return 5002;
- case NetherBrickFence::NetherBrickFence(true, true, true, false): return 5003;
- case NetherBrickFence::NetherBrickFence(true, true, false, true): return 5006;
- case NetherBrickFence::NetherBrickFence(true, true, false, false): return 5007;
- case NetherBrickFence::NetherBrickFence(true, false, true, true): return 5010;
- case NetherBrickFence::NetherBrickFence(true, false, true, false): return 5011;
- case NetherBrickFence::NetherBrickFence(true, false, false, true): return 5014;
- case NetherBrickFence::NetherBrickFence(true, false, false, false): return 5015;
- case NetherBrickFence::NetherBrickFence(false, true, true, true): return 5018;
- case NetherBrickFence::NetherBrickFence(false, true, true, false): return 5019;
- case NetherBrickFence::NetherBrickFence(false, true, false, true): return 5022;
- case NetherBrickFence::NetherBrickFence(false, true, false, false): return 5023;
- case NetherBrickFence::NetherBrickFence(false, false, true, true): return 5026;
- case NetherBrickFence::NetherBrickFence(false, false, true, false): return 5027;
- case NetherBrickFence::NetherBrickFence(false, false, false, true): return 5030;
- case NetherBrickFence::NetherBrickFence(false, false, false, false): return 5031;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Top): return 7849;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Bottom): return 7851;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double): return 7853;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5033;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5035;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5037;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5039;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5041;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5043;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5045;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5047;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5049;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5051;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5053;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5055;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5057;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5059;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5061;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5063;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5065;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5067;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5069;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5071;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5073;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5075;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5077;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5079;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5081;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5083;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5085;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5087;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5089;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5091;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5093;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5095;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5097;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5099;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5101;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5103;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5105;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5107;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5109;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5111;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 10717;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 10718;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 10721;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 10722;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 10725;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 10726;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 10729;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 10730;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 10733;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 10734;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 10737;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 10738;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 10741;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 10742;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 10745;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 10746;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 10749;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 10750;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 10753;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 10754;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 10757;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 10758;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 10761;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 10762;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 10765;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 10766;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 10769;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 10770;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 10773;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 10774;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 10777;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 10778;
- case NetherBricks::NetherBricks(): return 4999;
- case NetherPortal::NetherPortal(NetherPortal::Axis::X): return 4000;
- case NetherPortal::NetherPortal(NetherPortal::Axis::Z): return 4001;
- case NetherQuartzOre::NetherQuartzOre(): return 6191;
- case NetherWart::NetherWart(0): return 5112;
- case NetherWart::NetherWart(1): return 5113;
- case NetherWart::NetherWart(2): return 5114;
- case NetherWart::NetherWart(3): return 5115;
- case NetherWartBlock::NetherWartBlock(): return 8718;
- case Netherrack::Netherrack(): return 3997;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, true): return 248;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, false): return 249;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, true): return 250;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, false): return 251;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, true): return 252;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, false): return 253;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, true): return 254;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, false): return 255;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, true): return 256;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, false): return 257;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, true): return 258;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, false): return 259;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, true): return 260;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, false): return 261;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, true): return 262;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, false): return 263;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, true): return 264;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, false): return 265;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, true): return 266;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, false): return 267;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, true): return 268;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, false): return 269;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, true): return 270;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, false): return 271;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, true): return 272;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, false): return 273;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, true): return 274;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, false): return 275;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, true): return 276;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, false): return 277;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, true): return 278;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, false): return 279;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, true): return 280;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, false): return 281;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, true): return 282;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, false): return 283;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, true): return 284;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, false): return 285;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, true): return 286;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, false): return 287;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, true): return 288;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, false): return 289;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, true): return 290;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, false): return 291;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, true): return 292;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, false): return 293;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, true): return 294;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, false): return 295;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, true): return 296;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, false): return 297;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, true): return 298;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, false): return 299;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, true): return 300;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, false): return 301;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, true): return 302;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, false): return 303;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, true): return 304;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, false): return 305;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, true): return 306;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, false): return 307;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, true): return 308;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, false): return 309;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, true): return 310;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, false): return 311;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, true): return 312;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, false): return 313;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, true): return 314;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, false): return 315;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, true): return 316;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, false): return 317;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, true): return 318;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, false): return 319;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, true): return 320;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, false): return 321;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, true): return 322;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, false): return 323;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, true): return 324;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, false): return 325;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, true): return 326;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, false): return 327;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, true): return 328;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, false): return 329;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, true): return 330;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, false): return 331;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, true): return 332;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, false): return 333;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, true): return 334;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, false): return 335;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, true): return 336;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, false): return 337;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, true): return 338;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, false): return 339;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, true): return 340;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, false): return 341;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, true): return 342;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, false): return 343;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, true): return 344;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, false): return 345;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, true): return 346;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, false): return 347;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, true): return 348;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, false): return 349;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, true): return 350;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, false): return 351;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, true): return 352;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, false): return 353;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, true): return 354;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, false): return 355;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, true): return 356;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, false): return 357;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, true): return 358;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, false): return 359;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, true): return 360;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, false): return 361;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, true): return 362;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, false): return 363;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, true): return 364;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, false): return 365;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, true): return 366;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, false): return 367;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, true): return 368;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, false): return 369;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, true): return 370;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, false): return 371;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, true): return 372;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, false): return 373;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, true): return 374;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, false): return 375;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, true): return 376;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, false): return 377;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, true): return 378;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, false): return 379;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, true): return 380;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, false): return 381;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, true): return 382;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, false): return 383;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, true): return 384;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, false): return 385;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, true): return 386;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, false): return 387;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, true): return 388;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, false): return 389;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, true): return 390;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, false): return 391;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, true): return 392;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, false): return 393;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, true): return 394;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, false): return 395;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, true): return 396;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, false): return 397;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, true): return 398;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, false): return 399;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, true): return 400;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, false): return 401;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, true): return 402;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, false): return 403;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, true): return 404;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, false): return 405;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, true): return 406;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, false): return 407;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, true): return 408;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, false): return 409;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, true): return 410;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, false): return 411;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, true): return 412;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, false): return 413;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, true): return 414;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, false): return 415;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, true): return 416;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, false): return 417;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, true): return 418;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, false): return 419;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, true): return 420;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, false): return 421;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, true): return 422;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, false): return 423;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, true): return 424;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, false): return 425;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, true): return 426;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, false): return 427;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, true): return 428;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, false): return 429;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, true): return 430;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, false): return 431;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, true): return 432;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, false): return 433;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, true): return 434;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, false): return 435;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, true): return 436;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, false): return 437;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, true): return 438;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, false): return 439;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, true): return 440;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, false): return 441;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, true): return 442;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, false): return 443;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, true): return 444;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, false): return 445;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, true): return 446;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, false): return 447;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, true): return 448;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, false): return 449;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, true): return 450;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, false): return 451;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, true): return 452;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, false): return 453;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, true): return 454;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, false): return 455;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, true): return 456;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, false): return 457;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, true): return 458;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, false): return 459;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, true): return 460;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, false): return 461;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, true): return 462;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, false): return 463;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, true): return 464;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, false): return 465;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, true): return 466;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, false): return 467;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, true): return 468;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, false): return 469;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, true): return 470;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, false): return 471;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, true): return 472;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, false): return 473;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, true): return 474;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, false): return 475;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, true): return 476;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, false): return 477;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, true): return 478;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, false): return 479;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, true): return 480;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, false): return 481;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, true): return 482;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, false): return 483;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, true): return 484;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, false): return 485;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, true): return 486;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, false): return 487;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, true): return 488;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, false): return 489;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, true): return 490;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, false): return 491;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, true): return 492;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, false): return 493;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, true): return 494;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, false): return 495;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, true): return 496;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, false): return 497;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, true): return 498;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, false): return 499;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, true): return 500;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, false): return 501;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, true): return 502;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, false): return 503;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, true): return 504;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, false): return 505;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, true): return 506;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, false): return 507;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, true): return 508;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, false): return 509;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, true): return 510;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, false): return 511;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, true): return 512;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, false): return 513;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, true): return 514;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, false): return 515;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, true): return 516;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, false): return 517;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, true): return 518;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, false): return 519;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, true): return 520;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, false): return 521;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, true): return 522;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, false): return 523;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, true): return 524;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, false): return 525;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, true): return 526;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, false): return 527;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, true): return 528;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, false): return 529;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, true): return 530;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, false): return 531;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, true): return 532;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, false): return 533;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, true): return 534;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, false): return 535;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, true): return 536;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, false): return 537;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, true): return 538;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, false): return 539;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, true): return 540;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, false): return 541;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, true): return 542;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, false): return 543;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, true): return 544;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, false): return 545;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, true): return 546;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, false): return 547;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, true): return 548;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, false): return 549;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, true): return 550;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, false): return 551;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, true): return 552;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, false): return 553;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, true): return 554;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, false): return 555;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, true): return 556;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, false): return 557;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, true): return 558;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, false): return 559;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, true): return 560;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, false): return 561;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, true): return 562;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, false): return 563;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, true): return 564;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, false): return 565;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, true): return 566;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, false): return 567;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, true): return 568;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, false): return 569;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, true): return 570;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, false): return 571;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, true): return 572;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, false): return 573;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, true): return 574;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, false): return 575;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, true): return 576;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, false): return 577;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, true): return 578;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, false): return 579;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, true): return 580;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, false): return 581;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, true): return 582;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, false): return 583;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, true): return 584;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, false): return 585;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, true): return 586;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, false): return 587;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, true): return 588;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, false): return 589;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, true): return 590;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, false): return 591;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, true): return 592;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, false): return 593;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, true): return 594;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, false): return 595;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, true): return 596;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, false): return 597;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, true): return 598;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, false): return 599;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, true): return 600;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, false): return 601;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, true): return 602;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, false): return 603;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, true): return 604;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, false): return 605;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, true): return 606;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, false): return 607;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, true): return 608;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, false): return 609;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, true): return 610;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, false): return 611;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, true): return 612;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, false): return 613;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, true): return 614;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, false): return 615;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, true): return 616;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, false): return 617;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, true): return 618;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, false): return 619;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, true): return 620;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, false): return 621;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, true): return 622;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, false): return 623;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, true): return 624;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, false): return 625;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, true): return 626;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, false): return 627;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, true): return 628;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, false): return 629;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, true): return 630;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, false): return 631;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, true): return 632;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, false): return 633;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, true): return 634;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, false): return 635;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, true): return 636;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, false): return 637;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, true): return 638;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, false): return 639;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, true): return 640;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, false): return 641;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, true): return 642;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, false): return 643;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, true): return 644;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, false): return 645;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, true): return 646;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, false): return 647;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, true): return 648;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, false): return 649;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, true): return 650;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, false): return 651;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, true): return 652;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, false): return 653;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, true): return 654;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, false): return 655;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, true): return 656;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, false): return 657;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, true): return 658;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, false): return 659;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, true): return 660;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, false): return 661;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, true): return 662;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, false): return 663;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, true): return 664;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, false): return 665;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, true): return 666;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, false): return 667;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, true): return 668;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, false): return 669;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, true): return 670;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, false): return 671;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, true): return 672;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, false): return 673;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, true): return 674;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, false): return 675;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, true): return 676;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, false): return 677;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, true): return 678;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, false): return 679;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, true): return 680;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, false): return 681;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, true): return 682;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, false): return 683;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, true): return 684;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, false): return 685;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, true): return 686;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, false): return 687;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, true): return 688;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, false): return 689;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, true): return 690;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, false): return 691;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, true): return 692;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, false): return 693;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, true): return 694;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, false): return 695;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, true): return 696;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, false): return 697;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, true): return 698;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, false): return 699;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, true): return 700;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, false): return 701;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, true): return 702;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, false): return 703;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, true): return 704;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, false): return 705;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, true): return 706;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, false): return 707;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, true): return 708;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, false): return 709;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, true): return 710;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, false): return 711;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, true): return 712;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, false): return 713;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, true): return 714;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, false): return 715;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, true): return 716;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, false): return 717;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, true): return 718;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, false): return 719;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, true): return 720;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, false): return 721;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, true): return 722;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, false): return 723;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, true): return 724;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, false): return 725;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, true): return 726;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, false): return 727;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, true): return 728;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, false): return 729;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, true): return 730;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, false): return 731;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, true): return 732;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, false): return 733;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, true): return 734;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, false): return 735;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, true): return 736;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, false): return 737;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, true): return 738;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, false): return 739;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, true): return 740;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, false): return 741;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, true): return 742;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, false): return 743;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, true): return 744;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, false): return 745;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, true): return 746;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, false): return 747;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, true): return 748;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, false): return 749;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, true): return 750;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, false): return 751;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, true): return 752;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, false): return 753;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, true): return 754;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, false): return 755;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, true): return 756;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, false): return 757;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, true): return 758;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, false): return 759;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, true): return 760;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, false): return 761;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, true): return 762;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, false): return 763;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, true): return 764;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, false): return 765;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, true): return 766;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, false): return 767;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, true): return 768;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, false): return 769;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, true): return 770;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, false): return 771;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, true): return 772;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, false): return 773;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, true): return 774;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, false): return 775;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, true): return 776;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, false): return 777;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, true): return 778;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, false): return 779;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, true): return 780;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, false): return 781;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, true): return 782;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, false): return 783;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, true): return 784;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, false): return 785;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, true): return 786;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, false): return 787;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, true): return 788;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, false): return 789;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, true): return 790;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, false): return 791;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, true): return 792;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, false): return 793;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, true): return 794;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, false): return 795;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, true): return 796;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, false): return 797;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, true): return 798;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, false): return 799;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, true): return 800;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, false): return 801;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, true): return 802;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, false): return 803;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, true): return 804;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, false): return 805;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, true): return 806;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, false): return 807;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, true): return 808;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, false): return 809;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, true): return 810;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, false): return 811;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, true): return 812;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, false): return 813;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, true): return 814;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, false): return 815;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, true): return 816;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, false): return 817;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, true): return 818;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, false): return 819;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, true): return 820;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, false): return 821;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, true): return 822;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, false): return 823;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, true): return 824;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, false): return 825;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, true): return 826;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, false): return 827;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, true): return 828;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, false): return 829;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, true): return 830;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, false): return 831;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, true): return 832;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, false): return 833;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, true): return 834;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, false): return 835;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, true): return 836;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, false): return 837;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, true): return 838;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, false): return 839;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, true): return 840;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, false): return 841;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, true): return 842;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, false): return 843;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, true): return 844;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, false): return 845;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, true): return 846;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, false): return 847;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, true): return 848;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, false): return 849;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, true): return 850;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, false): return 851;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, true): return 852;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, false): return 853;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, true): return 854;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, false): return 855;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, true): return 856;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, false): return 857;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, true): return 858;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, false): return 859;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, true): return 860;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, false): return 861;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, true): return 862;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, false): return 863;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, true): return 864;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, false): return 865;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, true): return 866;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, false): return 867;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, true): return 868;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, false): return 869;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, true): return 870;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, false): return 871;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, true): return 872;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, false): return 873;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, true): return 874;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, false): return 875;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, true): return 876;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, false): return 877;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, true): return 878;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, false): return 879;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, true): return 880;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, false): return 881;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, true): return 882;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, false): return 883;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, true): return 884;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, false): return 885;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, true): return 886;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, false): return 887;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, true): return 888;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, false): return 889;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, true): return 890;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, false): return 891;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, true): return 892;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, false): return 893;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, true): return 894;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, false): return 895;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, true): return 896;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, false): return 897;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, true): return 898;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, false): return 899;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, true): return 900;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, false): return 901;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, true): return 902;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, false): return 903;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, true): return 904;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, false): return 905;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, true): return 906;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, false): return 907;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, true): return 908;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, false): return 909;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, true): return 910;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, false): return 911;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, true): return 912;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, false): return 913;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, true): return 914;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, false): return 915;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, true): return 916;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, false): return 917;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, true): return 918;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, false): return 919;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, true): return 920;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, false): return 921;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, true): return 922;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, false): return 923;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, true): return 924;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, false): return 925;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, true): return 926;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, false): return 927;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, true): return 928;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, false): return 929;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, true): return 930;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, false): return 931;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, true): return 932;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, false): return 933;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, true): return 934;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, false): return 935;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, true): return 936;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, false): return 937;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, true): return 938;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, false): return 939;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, true): return 940;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, false): return 941;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, true): return 942;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, false): return 943;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, true): return 944;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, false): return 945;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, true): return 946;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, false): return 947;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, true): return 948;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, false): return 949;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, true): return 950;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, false): return 951;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, true): return 952;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, false): return 953;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, true): return 954;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, false): return 955;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, true): return 956;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, false): return 957;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, true): return 958;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, false): return 959;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, true): return 960;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, false): return 961;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, true): return 962;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, false): return 963;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, true): return 964;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, false): return 965;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, true): return 966;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, false): return 967;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, true): return 968;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, false): return 969;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, true): return 970;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, false): return 971;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, true): return 972;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, false): return 973;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, true): return 974;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, false): return 975;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, true): return 976;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, false): return 977;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, true): return 978;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, false): return 979;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, true): return 980;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, false): return 981;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, true): return 982;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, false): return 983;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, true): return 984;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, false): return 985;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, true): return 986;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, false): return 987;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, true): return 988;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, false): return 989;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, true): return 990;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, false): return 991;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, true): return 992;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, false): return 993;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, true): return 994;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, false): return 995;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, true): return 996;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, false): return 997;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, true): return 998;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, false): return 999;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, true): return 1000;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, false): return 1001;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, true): return 1002;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, false): return 1003;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, true): return 1004;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, false): return 1005;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, true): return 1006;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, false): return 1007;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, true): return 1008;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, false): return 1009;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, true): return 1010;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, false): return 1011;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, true): return 1012;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, false): return 1013;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, true): return 1014;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, false): return 1015;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, true): return 1016;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, false): return 1017;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, true): return 1018;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, false): return 1019;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, true): return 1020;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, false): return 1021;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, true): return 1022;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, false): return 1023;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, true): return 1024;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, false): return 1025;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, true): return 1026;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, false): return 1027;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, true): return 1028;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, false): return 1029;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, true): return 1030;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, false): return 1031;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, true): return 1032;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, false): return 1033;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, true): return 1034;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, false): return 1035;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, true): return 1036;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, false): return 1037;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, true): return 1038;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, false): return 1039;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, true): return 1040;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, false): return 1041;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, true): return 1042;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, false): return 1043;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, true): return 1044;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, false): return 1045;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, true): return 1046;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, false): return 1047;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5810;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5811;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5812;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5813;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5814;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5815;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5816;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5817;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5818;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5819;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5820;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5821;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5822;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5823;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5824;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5825;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5826;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5827;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5828;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5829;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5830;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5831;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5832;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5833;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3571;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3572;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3573;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3574;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3575;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3576;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3577;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3578;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3579;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3580;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3581;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3582;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3583;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3584;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3585;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3586;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3587;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3588;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3589;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3590;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3591;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3592;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3593;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3594;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3595;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3596;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3597;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3598;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3599;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3600;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3601;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3602;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3603;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3604;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3605;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3606;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3607;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3608;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3609;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3610;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3611;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3612;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3613;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3614;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3615;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3616;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3617;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3618;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3619;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3620;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3621;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3622;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3623;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3624;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3625;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3626;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3627;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3628;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3629;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3630;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3631;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3632;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3633;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3634;
- case OakFence::OakFence(true, true, true, true): return 3966;
- case OakFence::OakFence(true, true, true, false): return 3967;
- case OakFence::OakFence(true, true, false, true): return 3970;
- case OakFence::OakFence(true, true, false, false): return 3971;
- case OakFence::OakFence(true, false, true, true): return 3974;
- case OakFence::OakFence(true, false, true, false): return 3975;
- case OakFence::OakFence(true, false, false, true): return 3978;
- case OakFence::OakFence(true, false, false, false): return 3979;
- case OakFence::OakFence(false, true, true, true): return 3982;
- case OakFence::OakFence(false, true, true, false): return 3983;
- case OakFence::OakFence(false, true, false, true): return 3986;
- case OakFence::OakFence(false, true, false, false): return 3987;
- case OakFence::OakFence(false, false, true, true): return 3990;
- case OakFence::OakFence(false, false, true, false): return 3991;
- case OakFence::OakFence(false, false, false, true): return 3994;
- case OakFence::OakFence(false, false, false, false): return 3995;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 4804;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 4805;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 4806;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 4807;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 4808;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 4809;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 4810;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 4811;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 4812;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 4813;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 4814;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 4815;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 4816;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 4817;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 4818;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 4819;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 4820;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 4821;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 4822;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 4823;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 4824;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 4825;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 4826;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 4827;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 4828;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 4829;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 4830;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 4831;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 4832;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 4833;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 4834;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 4835;
- case OakLeaves::OakLeaves(1, true): return 144;
- case OakLeaves::OakLeaves(1, false): return 145;
- case OakLeaves::OakLeaves(2, true): return 146;
- case OakLeaves::OakLeaves(2, false): return 147;
- case OakLeaves::OakLeaves(3, true): return 148;
- case OakLeaves::OakLeaves(3, false): return 149;
- case OakLeaves::OakLeaves(4, true): return 150;
- case OakLeaves::OakLeaves(4, false): return 151;
- case OakLeaves::OakLeaves(5, true): return 152;
- case OakLeaves::OakLeaves(5, false): return 153;
- case OakLeaves::OakLeaves(6, true): return 154;
- case OakLeaves::OakLeaves(6, false): return 155;
- case OakLeaves::OakLeaves(7, true): return 156;
- case OakLeaves::OakLeaves(7, false): return 157;
- case OakLog::OakLog(OakLog::Axis::X): return 72;
- case OakLog::OakLog(OakLog::Axis::Y): return 73;
- case OakLog::OakLog(OakLog::Axis::Z): return 74;
- case OakPlanks::OakPlanks(): return 15;
- case OakPressurePlate::OakPressurePlate(true): return 3871;
- case OakPressurePlate::OakPressurePlate(false): return 3872;
- case OakSapling::OakSapling(0): return 21;
- case OakSapling::OakSapling(1): return 22;
- case OakSign::OakSign(0): return 3380;
- case OakSign::OakSign(1): return 3382;
- case OakSign::OakSign(2): return 3384;
- case OakSign::OakSign(3): return 3386;
- case OakSign::OakSign(4): return 3388;
- case OakSign::OakSign(5): return 3390;
- case OakSign::OakSign(6): return 3392;
- case OakSign::OakSign(7): return 3394;
- case OakSign::OakSign(8): return 3396;
- case OakSign::OakSign(9): return 3398;
- case OakSign::OakSign(10): return 3400;
- case OakSign::OakSign(11): return 3402;
- case OakSign::OakSign(12): return 3404;
- case OakSign::OakSign(13): return 3406;
- case OakSign::OakSign(14): return 3408;
- case OakSign::OakSign(15): return 3410;
- case OakSlab::OakSlab(OakSlab::Type::Top): return 7765;
- case OakSlab::OakSlab(OakSlab::Type::Bottom): return 7767;
- case OakSlab::OakSlab(OakSlab::Type::Double): return 7769;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1953;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1955;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1957;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1959;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1961;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1963;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1965;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1967;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1969;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1971;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1973;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1975;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1977;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1979;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1981;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1983;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1985;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1987;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1989;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1991;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1993;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1995;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1997;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1999;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 2001;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 2003;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 2005;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 2007;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 2009;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 2011;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 2013;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 2015;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 2017;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 2019;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 2021;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 2023;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 2025;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 2027;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 2029;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 2031;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, true): return 4098;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, false): return 4100;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, true): return 4102;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, false): return 4104;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, true): return 4106;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, false): return 4108;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, true): return 4110;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, false): return 4112;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, true): return 4114;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, false): return 4116;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, true): return 4118;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, false): return 4120;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, true): return 4122;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, false): return 4124;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, true): return 4126;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, false): return 4128;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, true): return 4130;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, false): return 4132;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, true): return 4134;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, false): return 4136;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, true): return 4138;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, false): return 4140;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, true): return 4142;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, false): return 4144;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, true): return 4146;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, false): return 4148;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, true): return 4150;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, false): return 4152;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, true): return 4154;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, false): return 4156;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, true): return 4158;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, false): return 4160;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZM): return 3734;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZP): return 3736;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XM): return 3738;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XP): return 3740;
- case OakWood::OakWood(OakWood::Axis::X): return 108;
- case OakWood::OakWood(OakWood::Axis::Y): return 109;
- case OakWood::OakWood(OakWood::Axis::Z): return 110;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, true): return 8724;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, false): return 8725;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XP, true): return 8726;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XP, false): return 8727;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, true): return 8728;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, false): return 8729;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XM, true): return 8730;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XM, false): return 8731;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YP, true): return 8732;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YP, false): return 8733;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YM, true): return 8734;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YM, false): return 8735;
- case Obsidian::Obsidian(): return 1433;
- case OrangeBanner::OrangeBanner(0): return 7377;
- case OrangeBanner::OrangeBanner(1): return 7378;
- case OrangeBanner::OrangeBanner(2): return 7379;
- case OrangeBanner::OrangeBanner(3): return 7380;
- case OrangeBanner::OrangeBanner(4): return 7381;
- case OrangeBanner::OrangeBanner(5): return 7382;
- case OrangeBanner::OrangeBanner(6): return 7383;
- case OrangeBanner::OrangeBanner(7): return 7384;
- case OrangeBanner::OrangeBanner(8): return 7385;
- case OrangeBanner::OrangeBanner(9): return 7386;
- case OrangeBanner::OrangeBanner(10): return 7387;
- case OrangeBanner::OrangeBanner(11): return 7388;
- case OrangeBanner::OrangeBanner(12): return 7389;
- case OrangeBanner::OrangeBanner(13): return 7390;
- case OrangeBanner::OrangeBanner(14): return 7391;
- case OrangeBanner::OrangeBanner(15): return 7392;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Head): return 1064;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Foot): return 1065;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Head): return 1066;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Foot): return 1067;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Head): return 1068;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Foot): return 1069;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Head): return 1070;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Foot): return 1071;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Head): return 1072;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Foot): return 1073;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Head): return 1074;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Foot): return 1075;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Head): return 1076;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Foot): return 1077;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Head): return 1078;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Foot): return 1079;
- case OrangeCarpet::OrangeCarpet(): return 7331;
- case OrangeConcrete::OrangeConcrete(): return 8903;
- case OrangeConcretePowder::OrangeConcretePowder(): return 8919;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8842;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8843;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8844;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8845;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8748;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8749;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8750;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8751;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8752;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8753;
- case OrangeStainedGlass::OrangeStainedGlass(): return 4082;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, true): return 6361;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, false): return 6362;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, true): return 6365;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, false): return 6366;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, true): return 6369;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, false): return 6370;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, true): return 6373;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, false): return 6374;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, true): return 6377;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, false): return 6378;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, true): return 6381;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, false): return 6382;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, true): return 6385;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, false): return 6386;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, true): return 6389;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, false): return 6390;
- case OrangeTerracotta::OrangeTerracotta(): return 6312;
- case OrangeTulip::OrangeTulip(): return 1417;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7621;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7622;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XM): return 7623;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XP): return 7624;
- case OrangeWool::OrangeWool(): return 1384;
- case OxeyeDaisy::OxeyeDaisy(): return 1420;
- case PackedIce::PackedIce(): return 7348;
- case Peony::Peony(Peony::Half::Upper): return 7355;
- case Peony::Peony(Peony::Half::Lower): return 7356;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Top): return 7825;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Bottom): return 7827;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double): return 7829;
- case PinkBanner::PinkBanner(0): return 7457;
- case PinkBanner::PinkBanner(1): return 7458;
- case PinkBanner::PinkBanner(2): return 7459;
- case PinkBanner::PinkBanner(3): return 7460;
- case PinkBanner::PinkBanner(4): return 7461;
- case PinkBanner::PinkBanner(5): return 7462;
- case PinkBanner::PinkBanner(6): return 7463;
- case PinkBanner::PinkBanner(7): return 7464;
- case PinkBanner::PinkBanner(8): return 7465;
- case PinkBanner::PinkBanner(9): return 7466;
- case PinkBanner::PinkBanner(10): return 7467;
- case PinkBanner::PinkBanner(11): return 7468;
- case PinkBanner::PinkBanner(12): return 7469;
- case PinkBanner::PinkBanner(13): return 7470;
- case PinkBanner::PinkBanner(14): return 7471;
- case PinkBanner::PinkBanner(15): return 7472;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Head): return 1144;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Foot): return 1145;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Head): return 1146;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Foot): return 1147;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Head): return 1148;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Foot): return 1149;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Head): return 1150;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Foot): return 1151;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Head): return 1152;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Foot): return 1153;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Head): return 1154;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Foot): return 1155;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Head): return 1156;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Foot): return 1157;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Head): return 1158;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Foot): return 1159;
- case PinkCarpet::PinkCarpet(): return 7336;
- case PinkConcrete::PinkConcrete(): return 8908;
- case PinkConcretePowder::PinkConcretePowder(): return 8924;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8862;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8863;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8864;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8865;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8778;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8779;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8780;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8781;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8782;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8783;
- case PinkStainedGlass::PinkStainedGlass(): return 4087;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, true): return 6521;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, false): return 6522;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, true): return 6525;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, false): return 6526;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, true): return 6529;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, false): return 6530;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, true): return 6533;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, false): return 6534;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, true): return 6537;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, false): return 6538;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, true): return 6541;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, false): return 6542;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, true): return 6545;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, false): return 6546;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, true): return 6549;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, false): return 6550;
- case PinkTerracotta::PinkTerracotta(): return 6317;
- case PinkTulip::PinkTulip(): return 1419;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7641;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7642;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XM): return 7643;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XP): return 7644;
- case PinkWool::PinkWool(): return 1389;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZM): return 1347;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_XP): return 1348;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZP): return 1349;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_XM): return 1350;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_YP): return 1351;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_YM): return 1352;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZM): return 1353;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_XP): return 1354;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZP): return 1355;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_XM): return 1356;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_YP): return 1357;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_YM): return 1358;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Normal): return 1359;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Sticky): return 1360;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Normal): return 1361;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Sticky): return 1362;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Normal): return 1363;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Sticky): return 1364;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Normal): return 1365;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Sticky): return 1366;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Normal): return 1367;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Sticky): return 1368;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Normal): return 1369;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Sticky): return 1370;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Normal): return 1371;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Sticky): return 1372;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Normal): return 1373;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Sticky): return 1374;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Normal): return 1375;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Sticky): return 1376;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Normal): return 1377;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Sticky): return 1378;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Normal): return 1379;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Sticky): return 1380;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Normal): return 1381;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Sticky): return 1382;
- case PlayerHead::PlayerHead(0): return 6014;
- case PlayerHead::PlayerHead(1): return 6015;
- case PlayerHead::PlayerHead(2): return 6016;
- case PlayerHead::PlayerHead(3): return 6017;
- case PlayerHead::PlayerHead(4): return 6018;
- case PlayerHead::PlayerHead(5): return 6019;
- case PlayerHead::PlayerHead(6): return 6020;
- case PlayerHead::PlayerHead(7): return 6021;
- case PlayerHead::PlayerHead(8): return 6022;
- case PlayerHead::PlayerHead(9): return 6023;
- case PlayerHead::PlayerHead(10): return 6024;
- case PlayerHead::PlayerHead(11): return 6025;
- case PlayerHead::PlayerHead(12): return 6026;
- case PlayerHead::PlayerHead(13): return 6027;
- case PlayerHead::PlayerHead(14): return 6028;
- case PlayerHead::PlayerHead(15): return 6029;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZM): return 6030;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZP): return 6031;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XM): return 6032;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XP): return 6033;
- case Podzol::Podzol(true): return 12;
- case Podzol::Podzol(false): return 13;
- case PolishedAndesite::PolishedAndesite(): return 7;
- case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Top): return 10320;
- case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Bottom): return 10322;
- case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Double): return 10324;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10094;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10096;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10098;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10100;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10102;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10104;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10106;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10108;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10110;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10112;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10114;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10116;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10118;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10120;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10122;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10124;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10126;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10128;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10130;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10132;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10134;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10136;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10138;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10140;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10142;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10144;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10146;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10148;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10150;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10152;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10154;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10156;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10158;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10160;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10162;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10164;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10166;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10168;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10170;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10172;
- case PolishedDiorite::PolishedDiorite(): return 5;
- case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Top): return 10272;
- case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Bottom): return 10274;
- case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Double): return 10276;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9374;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9376;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9378;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9380;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9382;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9384;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9386;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9388;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9390;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9392;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9394;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9396;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9398;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9400;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9402;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9404;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9406;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9408;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9410;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9412;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9414;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9416;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9418;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9420;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9422;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9424;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9426;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9428;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9430;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9432;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9434;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9436;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9438;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9440;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9442;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9444;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9446;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9448;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9450;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9452;
- case PolishedGranite::PolishedGranite(): return 3;
- case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Top): return 10254;
- case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Bottom): return 10256;
- case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Double): return 10258;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9134;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9136;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9138;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9140;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9142;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9144;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9146;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9148;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9150;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9152;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9154;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9156;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9158;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9160;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9162;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9164;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9166;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9168;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9170;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9172;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9174;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9176;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9178;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9180;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9182;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9184;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9186;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9188;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9190;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9192;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9194;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9196;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9198;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9200;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9202;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9204;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9206;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9208;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9210;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9212;
- case Poppy::Poppy(): return 1412;
- case Potatoes::Potatoes(0): return 5802;
- case Potatoes::Potatoes(1): return 5803;
- case Potatoes::Potatoes(2): return 5804;
- case Potatoes::Potatoes(3): return 5805;
- case Potatoes::Potatoes(4): return 5806;
- case Potatoes::Potatoes(5): return 5807;
- case Potatoes::Potatoes(6): return 5808;
- case Potatoes::Potatoes(7): return 5809;
- case PottedAcaciaSapling::PottedAcaciaSapling(): return 5774;
- case PottedAllium::PottedAllium(): return 5780;
- case PottedAzureBluet::PottedAzureBluet(): return 5781;
- case PottedBamboo::PottedBamboo(): return 9128;
- case PottedBirchSapling::PottedBirchSapling(): return 5772;
- case PottedBlueOrchid::PottedBlueOrchid(): return 5779;
- case PottedBrownMushroom::PottedBrownMushroom(): return 5791;
- case PottedCactus::PottedCactus(): return 5793;
- case PottedCornflower::PottedCornflower(): return 5787;
- case PottedDandelion::PottedDandelion(): return 5777;
- case PottedDarkOakSapling::PottedDarkOakSapling(): return 5775;
- case PottedDeadBush::PottedDeadBush(): return 5792;
- case PottedFern::PottedFern(): return 5776;
- case PottedJungleSapling::PottedJungleSapling(): return 5773;
- case PottedLilyOfTheValley::PottedLilyOfTheValley(): return 5788;
- case PottedOakSapling::PottedOakSapling(): return 5770;
- case PottedOrangeTulip::PottedOrangeTulip(): return 5783;
- case PottedOxeyeDaisy::PottedOxeyeDaisy(): return 5786;
- case PottedPinkTulip::PottedPinkTulip(): return 5785;
- case PottedPoppy::PottedPoppy(): return 5778;
- case PottedRedMushroom::PottedRedMushroom(): return 5790;
- case PottedRedTulip::PottedRedTulip(): return 5782;
- case PottedSpruceSapling::PottedSpruceSapling(): return 5771;
- case PottedWhiteTulip::PottedWhiteTulip(): return 5784;
- case PottedWitherRose::PottedWitherRose(): return 5789;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::NorthSouth): return 1304;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::EastWest): return 1305;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingEast): return 1306;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingWest): return 1307;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingNorth): return 1308;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingSouth): return 1309;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::NorthSouth): return 1310;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::EastWest): return 1311;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingEast): return 1312;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingWest): return 1313;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingNorth): return 1314;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingSouth): return 1315;
- case Prismarine::Prismarine(): return 7065;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Top): return 7315;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Bottom): return 7317;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Double): return 7319;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7149;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7151;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7153;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7155;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7157;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7159;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7161;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7163;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7165;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7167;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7169;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7171;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7173;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7175;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7177;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7179;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7181;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7183;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7185;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7187;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7189;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7191;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7193;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7195;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7197;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7199;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7201;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7203;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7205;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7207;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7209;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7211;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7213;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7215;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7217;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7219;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7221;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7223;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7225;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7227;
- case PrismarineBricks::PrismarineBricks(): return 7066;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Top): return 7309;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Bottom): return 7311;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Double): return 7313;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7069;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7071;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7073;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7075;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7077;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7079;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7081;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7083;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7085;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7087;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7089;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7091;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7093;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7095;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7097;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7099;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7101;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7103;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7105;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7107;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7109;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7111;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7113;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7115;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7117;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7119;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7121;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7123;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7125;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7127;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7129;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7131;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7133;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7135;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7137;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7139;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7141;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7143;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7145;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7147;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 10397;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 10398;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 10401;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 10402;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 10405;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None): return 10406;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 10409;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None): return 10410;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 10413;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 10414;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 10417;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 10418;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 10421;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None): return 10422;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 10425;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None): return 10426;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 10429;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 10430;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 10433;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 10434;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 10437;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None): return 10438;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 10441;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None): return 10442;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 10445;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 10446;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 10449;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 10450;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 10453;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None): return 10454;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 10457;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None): return 10458;
- case Pumpkin::Pumpkin(): return 3996;
- case PumpkinStem::PumpkinStem(0): return 4756;
- case PumpkinStem::PumpkinStem(1): return 4757;
- case PumpkinStem::PumpkinStem(2): return 4758;
- case PumpkinStem::PumpkinStem(3): return 4759;
- case PumpkinStem::PumpkinStem(4): return 4760;
- case PumpkinStem::PumpkinStem(5): return 4761;
- case PumpkinStem::PumpkinStem(6): return 4762;
- case PumpkinStem::PumpkinStem(7): return 4763;
- case PurpleBanner::PurpleBanner(0): return 7521;
- case PurpleBanner::PurpleBanner(1): return 7522;
- case PurpleBanner::PurpleBanner(2): return 7523;
- case PurpleBanner::PurpleBanner(3): return 7524;
- case PurpleBanner::PurpleBanner(4): return 7525;
- case PurpleBanner::PurpleBanner(5): return 7526;
- case PurpleBanner::PurpleBanner(6): return 7527;
- case PurpleBanner::PurpleBanner(7): return 7528;
- case PurpleBanner::PurpleBanner(8): return 7529;
- case PurpleBanner::PurpleBanner(9): return 7530;
- case PurpleBanner::PurpleBanner(10): return 7531;
- case PurpleBanner::PurpleBanner(11): return 7532;
- case PurpleBanner::PurpleBanner(12): return 7533;
- case PurpleBanner::PurpleBanner(13): return 7534;
- case PurpleBanner::PurpleBanner(14): return 7535;
- case PurpleBanner::PurpleBanner(15): return 7536;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Head): return 1208;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Foot): return 1209;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Head): return 1210;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Foot): return 1211;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Head): return 1212;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Foot): return 1213;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Head): return 1214;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Foot): return 1215;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Head): return 1216;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Foot): return 1217;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Head): return 1218;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Foot): return 1219;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Head): return 1220;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Foot): return 1221;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Head): return 1222;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Foot): return 1223;
- case PurpleCarpet::PurpleCarpet(): return 7340;
- case PurpleConcrete::PurpleConcrete(): return 8912;
- case PurpleConcretePowder::PurpleConcretePowder(): return 8928;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8878;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8879;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8880;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8881;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8802;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8803;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8804;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8805;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8806;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8807;
- case PurpleStainedGlass::PurpleStainedGlass(): return 4091;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, true): return 6649;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, false): return 6650;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, true): return 6653;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, false): return 6654;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, true): return 6657;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, false): return 6658;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, true): return 6661;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, false): return 6662;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, true): return 6665;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, false): return 6666;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, true): return 6669;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, false): return 6670;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, true): return 6673;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, false): return 6674;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, true): return 6677;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, false): return 6678;
- case PurpleTerracotta::PurpleTerracotta(): return 6321;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7657;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7658;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XM): return 7659;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XP): return 7660;
- case PurpleWool::PurpleWool(): return 1393;
- case PurpurBlock::PurpurBlock(): return 8598;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::X): return 8599;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Y): return 8600;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Z): return 8601;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Top): return 7873;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Bottom): return 7875;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Double): return 7877;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8603;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8605;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8607;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8609;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8611;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8613;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8615;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8617;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8619;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8621;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8623;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8625;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8627;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8629;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8631;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8633;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8635;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8637;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8639;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8641;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8643;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8645;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8647;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8649;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8651;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8653;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8655;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8657;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8659;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8661;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 8663;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 8665;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 8667;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 8669;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 8671;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 8673;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 8675;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 8677;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 8679;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 8681;
- case QuartzBlock::QuartzBlock(): return 6202;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::X): return 6204;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Y): return 6205;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Z): return 6206;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Top): return 7855;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Bottom): return 7857;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Double): return 7859;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6208;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6210;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6212;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6214;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6216;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6218;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6220;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6222;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6224;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6226;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6228;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6230;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6232;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6234;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6236;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6238;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6240;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6242;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6244;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6246;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6248;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6250;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6252;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6254;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6256;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6258;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6260;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6262;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6264;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6266;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6268;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6270;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6272;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6274;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6276;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6278;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6280;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6282;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6284;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6286;
- case Rail::Rail(Rail::Shape::NorthSouth): return 3643;
- case Rail::Rail(Rail::Shape::EastWest): return 3644;
- case Rail::Rail(Rail::Shape::AscendingEast): return 3645;
- case Rail::Rail(Rail::Shape::AscendingWest): return 3646;
- case Rail::Rail(Rail::Shape::AscendingNorth): return 3647;
- case Rail::Rail(Rail::Shape::AscendingSouth): return 3648;
- case Rail::Rail(Rail::Shape::SouthEast): return 3649;
- case Rail::Rail(Rail::Shape::SouthWest): return 3650;
- case Rail::Rail(Rail::Shape::NorthWest): return 3651;
- case Rail::Rail(Rail::Shape::NorthEast): return 3652;
- case RedBanner::RedBanner(0): return 7585;
- case RedBanner::RedBanner(1): return 7586;
- case RedBanner::RedBanner(2): return 7587;
- case RedBanner::RedBanner(3): return 7588;
- case RedBanner::RedBanner(4): return 7589;
- case RedBanner::RedBanner(5): return 7590;
- case RedBanner::RedBanner(6): return 7591;
- case RedBanner::RedBanner(7): return 7592;
- case RedBanner::RedBanner(8): return 7593;
- case RedBanner::RedBanner(9): return 7594;
- case RedBanner::RedBanner(10): return 7595;
- case RedBanner::RedBanner(11): return 7596;
- case RedBanner::RedBanner(12): return 7597;
- case RedBanner::RedBanner(13): return 7598;
- case RedBanner::RedBanner(14): return 7599;
- case RedBanner::RedBanner(15): return 7600;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Head): return 1272;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Foot): return 1273;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Head): return 1274;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Foot): return 1275;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Head): return 1276;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Foot): return 1277;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Head): return 1278;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Foot): return 1279;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Head): return 1280;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Foot): return 1281;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Head): return 1282;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Foot): return 1283;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Head): return 1284;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Foot): return 1285;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Head): return 1286;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Foot): return 1287;
- case RedCarpet::RedCarpet(): return 7344;
- case RedConcrete::RedConcrete(): return 8916;
- case RedConcretePowder::RedConcretePowder(): return 8932;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8894;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8895;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8896;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8897;
- case RedMushroom::RedMushroom(): return 1425;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, true): return 4555;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, false): return 4556;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, true): return 4557;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, false): return 4558;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, true): return 4559;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, false): return 4560;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, true): return 4561;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, false): return 4562;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, true): return 4563;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, false): return 4564;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, true): return 4565;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, false): return 4566;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, true): return 4567;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, false): return 4568;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, true): return 4569;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, false): return 4570;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, true): return 4571;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, false): return 4572;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, true): return 4573;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, false): return 4574;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, true): return 4575;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, false): return 4576;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, true): return 4577;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, false): return 4578;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, true): return 4579;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, false): return 4580;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, true): return 4581;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, false): return 4582;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, true): return 4583;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, false): return 4584;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, true): return 4585;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, false): return 4586;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, true): return 4587;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, false): return 4588;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, true): return 4589;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, false): return 4590;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, true): return 4591;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, false): return 4592;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, true): return 4593;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, false): return 4594;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, true): return 4595;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, false): return 4596;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, true): return 4597;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, false): return 4598;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, true): return 4599;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, false): return 4600;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, true): return 4601;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, false): return 4602;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, true): return 4603;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, false): return 4604;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, true): return 4605;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, false): return 4606;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, true): return 4607;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, false): return 4608;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, true): return 4609;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, false): return 4610;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, true): return 4611;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, false): return 4612;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, true): return 4613;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, false): return 4614;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, true): return 4615;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, false): return 4616;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, true): return 4617;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false): return 4618;
- case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Top): return 10314;
- case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Bottom): return 10316;
- case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Double): return 10318;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10014;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10016;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10018;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10020;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10022;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10024;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10026;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10028;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10030;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10032;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10034;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10036;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10038;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10040;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10042;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10044;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10046;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10048;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10050;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10052;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10054;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10056;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10058;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10060;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10062;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10064;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10066;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10068;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10070;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10072;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10074;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10076;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10078;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10080;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10082;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10084;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10086;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10088;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10090;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10092;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 10845;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 10846;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 10849;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 10850;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 10853;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 10854;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 10857;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 10858;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 10861;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 10862;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 10865;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 10866;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 10869;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 10870;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 10873;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 10874;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 10877;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 10878;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 10881;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 10882;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 10885;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 10886;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 10889;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 10890;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 10893;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 10894;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 10897;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 10898;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 10901;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 10902;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 10905;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 10906;
- case RedNetherBricks::RedNetherBricks(): return 8719;
- case RedSand::RedSand(): return 67;
- case RedSandstone::RedSandstone(): return 7681;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Top): return 7861;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Bottom): return 7863;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Double): return 7865;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7685;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7687;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7689;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7691;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7693;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7695;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7697;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7699;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7701;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7703;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7705;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7707;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7709;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7711;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7713;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7715;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7717;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7719;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7721;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7723;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7725;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7727;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7729;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7731;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7733;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7735;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7737;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7739;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7741;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7743;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 7745;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 7747;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 7749;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 7751;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 7753;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 7755;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 7757;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 7759;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 7761;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 7763;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 10461;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 10462;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 10465;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 10466;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 10469;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 10470;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 10473;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 10474;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 10477;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 10478;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 10481;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 10482;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 10485;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 10486;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 10489;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 10490;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 10493;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 10494;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 10497;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 10498;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 10501;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 10502;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 10505;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 10506;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 10509;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 10510;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 10513;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 10514;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 10517;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 10518;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 10521;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 10522;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8826;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8827;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8828;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8829;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8830;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8831;
- case RedStainedGlass::RedStainedGlass(): return 4095;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, true, true): return 6777;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, true, false): return 6778;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, false, true): return 6781;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, false, false): return 6782;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, true, true): return 6785;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, true, false): return 6786;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, false, true): return 6789;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, false, false): return 6790;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, true, true): return 6793;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, true, false): return 6794;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, false, true): return 6797;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, false, false): return 6798;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, true, true): return 6801;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, true, false): return 6802;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, false, true): return 6805;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, false, false): return 6806;
- case RedTerracotta::RedTerracotta(): return 6325;
- case RedTulip::RedTulip(): return 1416;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7673;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7674;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XM): return 7675;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XP): return 7676;
- case RedWool::RedWool(): return 1397;
- case RedstoneBlock::RedstoneBlock(): return 6190;
- case RedstoneLamp::RedstoneLamp(true): return 5140;
- case RedstoneLamp::RedstoneLamp(false): return 5141;
- case RedstoneOre::RedstoneOre(true): return 3883;
- case RedstoneOre::RedstoneOre(false): return 3884;
- case RedstoneTorch::RedstoneTorch(true): return 3885;
- case RedstoneTorch::RedstoneTorch(false): return 3886;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, true): return 3887;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, false): return 3888;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, true): return 3889;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, false): return 3890;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, true): return 3891;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, false): return 3892;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, true): return 3893;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, false): return 3894;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2056;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2057;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2058;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2059;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2060;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2061;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2062;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2063;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2064;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2065;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2066;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2067;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2068;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2069;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2070;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2071;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2072;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2073;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2074;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2075;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2076;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2077;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2078;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2079;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2080;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2081;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2082;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2083;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2084;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2085;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2086;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2087;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2088;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2089;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2090;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2091;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2092;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2093;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2094;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2095;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2096;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2097;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2098;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2099;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2100;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2101;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2102;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2103;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2104;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2105;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2106;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2107;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2108;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2109;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2110;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2111;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2112;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2113;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2114;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2115;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2116;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2117;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2118;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2119;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2120;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2121;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2122;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2123;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2124;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2125;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2126;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2127;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2128;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2129;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2130;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2131;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2132;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2133;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2134;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2135;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2136;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2137;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2138;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2139;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2140;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2141;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2142;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2143;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2144;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2145;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2146;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2147;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2148;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2149;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2150;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2151;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2152;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2153;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2154;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2155;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2156;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2157;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2158;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2159;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2160;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2161;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2162;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2163;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2164;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2165;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2166;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2167;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2168;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2169;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2170;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2171;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2172;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2173;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2174;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2175;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2176;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2177;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2178;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2179;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2180;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2181;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2182;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2183;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2184;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2185;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2186;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2187;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2188;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2189;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2190;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2191;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2192;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2193;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2194;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2195;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2196;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2197;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2198;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2199;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2200;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2201;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2202;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2203;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2204;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2205;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2206;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2207;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2208;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2209;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2210;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2211;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2212;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2213;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2214;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2215;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2216;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2217;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2218;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2219;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2220;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2221;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2222;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2223;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2224;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2225;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2226;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2227;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2228;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2229;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2230;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2231;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2232;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2233;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2234;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2235;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2236;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2237;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2238;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2239;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2240;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2241;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2242;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2243;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2244;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2245;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2246;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2247;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2248;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2249;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2250;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2251;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2252;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2253;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2254;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2255;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2256;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2257;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2258;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2259;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2260;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2261;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2262;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2263;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2264;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2265;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2266;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2267;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2268;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2269;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2270;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2271;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2272;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2273;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2274;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2275;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2276;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2277;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2278;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2279;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2280;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2281;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2282;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2283;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2284;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2285;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2286;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2287;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2288;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2289;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2290;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2291;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2292;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2293;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2294;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2295;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2296;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2297;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2298;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2299;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2300;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2301;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2302;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2303;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2304;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2305;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2306;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2307;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2308;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2309;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2310;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2311;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2312;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2313;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2314;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2315;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2316;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2317;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2318;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2319;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2320;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2321;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2322;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2323;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2324;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2325;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2326;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2327;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2328;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2329;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2330;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2331;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2332;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2333;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2334;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2335;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2336;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2337;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2338;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2339;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2340;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2341;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2342;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2343;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2344;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2345;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2346;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2347;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2348;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2349;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2350;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2351;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2352;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2353;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2354;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2355;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2356;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2357;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2358;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2359;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2360;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2361;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2362;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2363;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2364;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2365;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2366;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2367;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2368;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2369;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2370;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2371;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2372;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2373;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2374;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2375;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2376;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2377;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2378;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2379;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2380;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2381;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2382;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2383;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2384;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2385;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2386;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2387;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2388;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2389;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2390;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2391;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2392;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2393;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2394;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2395;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2396;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2397;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2398;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2399;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2400;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2401;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2402;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2403;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2404;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2405;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2406;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2407;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2408;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2409;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2410;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2411;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2412;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2413;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2414;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2415;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2416;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2417;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2418;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2419;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2420;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2421;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2422;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2423;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2424;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2425;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2426;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2427;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2428;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2429;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2430;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2431;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2432;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2433;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2434;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2435;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2436;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2437;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2438;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2439;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2440;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2441;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2442;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2443;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2444;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2445;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2446;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2447;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2448;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2449;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2450;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2451;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2452;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2453;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2454;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2455;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2456;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2457;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2458;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2459;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2460;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2461;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2462;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2463;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2464;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2465;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2466;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2467;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2468;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2469;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2470;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2471;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2472;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2473;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2474;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2475;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2476;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2477;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2478;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2479;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2480;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2481;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2482;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2483;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2484;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2485;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2486;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2487;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2488;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2489;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2490;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2491;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2492;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2493;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2494;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2495;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2496;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2497;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2498;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2499;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2500;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2501;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2502;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2503;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2504;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2505;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2506;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2507;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2508;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2509;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2510;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2511;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2512;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2513;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2514;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2515;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2516;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2517;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2518;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2519;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2520;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2521;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2522;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2523;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2524;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2525;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2526;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2527;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2528;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2529;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2530;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2531;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2532;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2533;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2534;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2535;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2536;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2537;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2538;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2539;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2540;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2541;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2542;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2543;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2544;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2545;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2546;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2547;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2548;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2549;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2550;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2551;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2552;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2553;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2554;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2555;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2556;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2557;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2558;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2559;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2560;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2561;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2562;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2563;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2564;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2565;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2566;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2567;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2568;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2569;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2570;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2571;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2572;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2573;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2574;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2575;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2576;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2577;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2578;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2579;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2580;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2581;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2582;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2583;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2584;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2585;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2586;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2587;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2588;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2589;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2590;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2591;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2592;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2593;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2594;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2595;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2596;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2597;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2598;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2599;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2600;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2601;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2602;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2603;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2604;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2605;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2606;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2607;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2608;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2609;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2610;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2611;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2612;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2613;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2614;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2615;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2616;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2617;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2618;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2619;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2620;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2621;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2622;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2623;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2624;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2625;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2626;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2627;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2628;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2629;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2630;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2631;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2632;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2633;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2634;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2635;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2636;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2637;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2638;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2639;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2640;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2641;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2642;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2643;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2644;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2645;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2646;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2647;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2648;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2649;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2650;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2651;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2652;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2653;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2654;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2655;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2656;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2657;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2658;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2659;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2660;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2661;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2662;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2663;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2664;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2665;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2666;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2667;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2668;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2669;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2670;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2671;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2672;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2673;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2674;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2675;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2676;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2677;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2678;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2679;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2680;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2681;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2682;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2683;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2684;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2685;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2686;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2687;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2688;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2689;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2690;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2691;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2692;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2693;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2694;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2695;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2696;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2697;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2698;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2699;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2700;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2701;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2702;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2703;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2704;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2705;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2706;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2707;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2708;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2709;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2710;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2711;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2712;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2713;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2714;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2715;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2716;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2717;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2718;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2719;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2720;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2721;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2722;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2723;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2724;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2725;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2726;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2727;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2728;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2729;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2730;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2731;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2732;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2733;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2734;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2735;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2736;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2737;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2738;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2739;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2740;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2741;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2742;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2743;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2744;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2745;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2746;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2747;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2748;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2749;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2750;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2751;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2752;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2753;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2754;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2755;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2756;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2757;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2758;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2759;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2760;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2761;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2762;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2763;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2764;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2765;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2766;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2767;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2768;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2769;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2770;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2771;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2772;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2773;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2774;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2775;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2776;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2777;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2778;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2779;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2780;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2781;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2782;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2783;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2784;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2785;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2786;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2787;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2788;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2789;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2790;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2791;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2792;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2793;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2794;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2795;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2796;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2797;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2798;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2799;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2800;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2801;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2802;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2803;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2804;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2805;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2806;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2807;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2808;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2809;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2810;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2811;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2812;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2813;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2814;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2815;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2816;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2817;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2818;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2819;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2820;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2821;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2822;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2823;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2824;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2825;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2826;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2827;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2828;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2829;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2830;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2831;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2832;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2833;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2834;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2835;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2836;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2837;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2838;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2839;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2840;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2841;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2842;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2843;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2844;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2845;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2846;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2847;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2848;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2849;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2850;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2851;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2852;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2853;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2854;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2855;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2856;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2857;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2858;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2859;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2860;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2861;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2862;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2863;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2864;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2865;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2866;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2867;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2868;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2869;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2870;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2871;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2872;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2873;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2874;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2875;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2876;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2877;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2878;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2879;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2880;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2881;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2882;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2883;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2884;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2885;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2886;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2887;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2888;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2889;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2890;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2891;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2892;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2893;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2894;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2895;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2896;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2897;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2898;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2899;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2900;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2901;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2902;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2903;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2904;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2905;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2906;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2907;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2908;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2909;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2910;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2911;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2912;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2913;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2914;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2915;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2916;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2917;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2918;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2919;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2920;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2921;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2922;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2923;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2924;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2925;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2926;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2927;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2928;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2929;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2930;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2931;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2932;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2933;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2934;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2935;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2936;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2937;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2938;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2939;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2940;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2941;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2942;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2943;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2944;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2945;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2946;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2947;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2948;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2949;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2950;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2951;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2952;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2953;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2954;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2955;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2956;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2957;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2958;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2959;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2960;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2961;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2962;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2963;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2964;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2965;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2966;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2967;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2968;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2969;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2970;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2971;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2972;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2973;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2974;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2975;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2976;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2977;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2978;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2979;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2980;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2981;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2982;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2983;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2984;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2985;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2986;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2987;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2988;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2989;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2990;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2991;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2992;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2993;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2994;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2995;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2996;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2997;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2998;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2999;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 3000;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3001;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3002;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 3003;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3004;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3005;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 3006;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 3007;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 3008;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 3009;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3010;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3011;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 3012;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3013;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3014;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 3015;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3016;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3017;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3018;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3019;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3020;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3021;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3022;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3023;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3024;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3025;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3026;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3027;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3028;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3029;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3030;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3031;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3032;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3033;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3034;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3035;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3036;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3037;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3038;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3039;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3040;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3041;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3042;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3043;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3044;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3045;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3046;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3047;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3048;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3049;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3050;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3051;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3052;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3053;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3054;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3055;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3056;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3057;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3058;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3059;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3060;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3061;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3062;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3063;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3064;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3065;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 3066;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3067;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3068;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 3069;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 3070;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 3071;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 3072;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3073;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3074;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 3075;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3076;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3077;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 3078;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 3079;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 3080;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 3081;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3082;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3083;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 3084;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3085;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3086;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 3087;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 3088;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 3089;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 3090;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3091;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3092;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 3093;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3094;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3095;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 3096;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 3097;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 3098;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 3099;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3100;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3101;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 3102;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3103;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3104;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 3105;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 3106;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 3107;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 3108;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3109;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3110;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 3111;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3112;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3113;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 3114;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 3115;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 3116;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 3117;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3118;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3119;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 3120;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3121;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3122;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 3123;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 3124;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 3125;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 3126;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3127;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3128;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 3129;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3130;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3131;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 3132;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 3133;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 3134;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 3135;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3136;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3137;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 3138;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3139;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3140;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 3141;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 3142;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 3143;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 3144;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3145;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3146;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 3147;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3148;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3149;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 3150;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 3151;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 3152;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 3153;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3154;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3155;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 3156;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3157;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3158;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 3159;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3160;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3161;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3162;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3163;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3164;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3165;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3166;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3167;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3168;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3169;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3170;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3171;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3172;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3173;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3174;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3175;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3176;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3177;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3178;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3179;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3180;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3181;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3182;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3183;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3184;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3185;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3186;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3187;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3188;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3189;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3190;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3191;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3192;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3193;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3194;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3195;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3196;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3197;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3198;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3199;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3200;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3201;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3202;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3203;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3204;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3205;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3206;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3207;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3208;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3209;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 3210;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3211;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3212;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 3213;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 3214;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 3215;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 3216;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3217;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3218;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 3219;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3220;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3221;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 3222;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 3223;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 3224;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 3225;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3226;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3227;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 3228;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3229;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3230;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 3231;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 3232;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 3233;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 3234;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3235;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3236;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 3237;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3238;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3239;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 3240;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 3241;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 3242;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 3243;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3244;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3245;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 3246;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3247;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3248;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 3249;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 3250;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 3251;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 3252;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3253;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3254;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 3255;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3256;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3257;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 3258;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 3259;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 3260;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 3261;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3262;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3263;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 3264;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3265;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3266;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 3267;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 3268;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 3269;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 3270;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3271;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3272;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 3273;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3274;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3275;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 3276;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 3277;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 3278;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 3279;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3280;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3281;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 3282;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3283;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3284;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 3285;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 3286;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 3287;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 3288;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3289;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3290;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 3291;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3292;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3293;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 3294;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 3295;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 3296;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 3297;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3298;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3299;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 3300;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3301;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3302;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 3303;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3304;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3305;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3306;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3307;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3308;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3309;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3310;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3311;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3312;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3313;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3314;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3315;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3316;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3317;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3318;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3319;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3320;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3321;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3322;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3323;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3324;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3325;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3326;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3327;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3328;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3329;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3330;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3331;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3332;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3333;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3334;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3335;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3336;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3337;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3338;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3339;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3340;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3341;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3342;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3343;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3344;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3345;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3346;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3347;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3348;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3349;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3350;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3351;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, true): return 4017;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, false): return 4018;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, true): return 4019;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, false): return 4020;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, true): return 4021;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, false): return 4022;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, true): return 4023;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, false): return 4024;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, true): return 4025;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, false): return 4026;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, true): return 4027;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, false): return 4028;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, true): return 4029;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, false): return 4030;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, true): return 4031;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, false): return 4032;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, true): return 4033;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, false): return 4034;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, true): return 4035;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, false): return 4036;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, true): return 4037;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, false): return 4038;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, true): return 4039;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, false): return 4040;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, true): return 4041;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, false): return 4042;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, true): return 4043;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, false): return 4044;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, true): return 4045;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, false): return 4046;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, true): return 4047;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, false): return 4048;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, true): return 4049;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, false): return 4050;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, true): return 4051;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, false): return 4052;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, true): return 4053;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, false): return 4054;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, true): return 4055;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, false): return 4056;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, true): return 4057;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, false): return 4058;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, true): return 4059;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, false): return 4060;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, true): return 4061;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, false): return 4062;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, true): return 4063;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, false): return 4064;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, true): return 4065;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, false): return 4066;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, true): return 4067;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, false): return 4068;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, true): return 4069;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, false): return 4070;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, true): return 4071;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, false): return 4072;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, true): return 4073;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, false): return 4074;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, true): return 4075;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, false): return 4076;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, true): return 4077;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, false): return 4078;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, true): return 4079;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, false): return 4080;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 8689;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 8690;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 8691;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 8692;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 8693;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 8694;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 8695;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 8696;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 8697;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 8698;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 8699;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 8700;
- case RoseBush::RoseBush(RoseBush::Half::Upper): return 7353;
- case RoseBush::RoseBush(RoseBush::Half::Lower): return 7354;
- case Sand::Sand(): return 66;
- case Sandstone::Sandstone(): return 245;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Top): return 7813;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Bottom): return 7815;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Double): return 7817;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5155;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5157;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5159;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5161;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5163;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5165;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5167;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5169;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5171;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5173;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5175;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5177;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5179;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5181;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5183;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5185;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5187;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5189;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5191;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5193;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5195;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5197;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5199;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5201;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5203;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5205;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5207;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5209;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5211;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5213;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5215;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5217;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5219;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5221;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5223;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5225;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5227;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5229;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5231;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5233;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 10909;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 10910;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 10913;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 10914;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 10917;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None): return 10918;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 10921;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None): return 10922;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 10925;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 10926;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 10929;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 10930;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 10933;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None): return 10934;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 10937;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None): return 10938;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 10941;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 10942;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 10945;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 10946;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 10949;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None): return 10950;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 10953;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None): return 10954;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 10957;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 10958;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 10961;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 10962;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 10965;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None): return 10966;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 10969;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None): return 10970;
- case Scaffolding::Scaffolding(true, 0): return 11100;
- case Scaffolding::Scaffolding(true, 1): return 11102;
- case Scaffolding::Scaffolding(true, 2): return 11104;
- case Scaffolding::Scaffolding(true, 3): return 11106;
- case Scaffolding::Scaffolding(true, 4): return 11108;
- case Scaffolding::Scaffolding(true, 5): return 11110;
- case Scaffolding::Scaffolding(true, 6): return 11112;
- case Scaffolding::Scaffolding(true, 7): return 11114;
- case Scaffolding::Scaffolding(false, 0): return 11116;
- case Scaffolding::Scaffolding(false, 1): return 11118;
- case Scaffolding::Scaffolding(false, 2): return 11120;
- case Scaffolding::Scaffolding(false, 3): return 11122;
- case Scaffolding::Scaffolding(false, 4): return 11124;
- case Scaffolding::Scaffolding(false, 5): return 11126;
- case Scaffolding::Scaffolding(false, 6): return 11128;
- case Scaffolding::Scaffolding(false, 7): return 11130;
- case SeaLantern::SeaLantern(): return 7326;
- case SeaPickle::SeaPickle(1): return 9105;
- case SeaPickle::SeaPickle(2): return 9107;
- case SeaPickle::SeaPickle(3): return 9109;
- case SeaPickle::SeaPickle(4): return 9111;
- case Seagrass::Seagrass(): return 1344;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8736;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8737;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8738;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8739;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8740;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8741;
- case SkeletonSkull::SkeletonSkull(0): return 5954;
- case SkeletonSkull::SkeletonSkull(1): return 5955;
- case SkeletonSkull::SkeletonSkull(2): return 5956;
- case SkeletonSkull::SkeletonSkull(3): return 5957;
- case SkeletonSkull::SkeletonSkull(4): return 5958;
- case SkeletonSkull::SkeletonSkull(5): return 5959;
- case SkeletonSkull::SkeletonSkull(6): return 5960;
- case SkeletonSkull::SkeletonSkull(7): return 5961;
- case SkeletonSkull::SkeletonSkull(8): return 5962;
- case SkeletonSkull::SkeletonSkull(9): return 5963;
- case SkeletonSkull::SkeletonSkull(10): return 5964;
- case SkeletonSkull::SkeletonSkull(11): return 5965;
- case SkeletonSkull::SkeletonSkull(12): return 5966;
- case SkeletonSkull::SkeletonSkull(13): return 5967;
- case SkeletonSkull::SkeletonSkull(14): return 5968;
- case SkeletonSkull::SkeletonSkull(15): return 5969;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 5970;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 5971;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 5972;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 5973;
- case SlimeBlock::SlimeBlock(): return 6999;
- case SmithingTable::SmithingTable(): return 11193;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, true): return 11147;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, false): return 11148;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, true): return 11149;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, false): return 11150;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, true): return 11151;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, false): return 11152;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, true): return 11153;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, false): return 11154;
- case SmoothQuartz::SmoothQuartz(): return 7880;
- case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Top): return 10296;
- case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Bottom): return 10298;
- case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Double): return 10300;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 9774;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 9776;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 9778;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 9780;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 9782;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 9784;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 9786;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 9788;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 9790;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 9792;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 9794;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 9796;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 9798;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 9800;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 9802;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 9804;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 9806;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 9808;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 9810;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 9812;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 9814;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 9816;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 9818;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 9820;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 9822;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 9824;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 9826;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 9828;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 9830;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 9832;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 9834;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 9836;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 9838;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 9840;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 9842;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 9844;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 9846;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 9848;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 9850;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 9852;
- case SmoothRedSandstone::SmoothRedSandstone(): return 7881;
- case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Top): return 10260;
- case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Bottom): return 10262;
- case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Double): return 10264;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9214;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9216;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9218;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9220;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9222;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9224;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9226;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9228;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9230;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9232;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9234;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9236;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9238;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9240;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9242;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9244;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9246;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9248;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9250;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9252;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9254;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9256;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9258;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9260;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9262;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9264;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9266;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9268;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9270;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9272;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9274;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9276;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9278;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9280;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9282;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9284;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9286;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9288;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9290;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9292;
- case SmoothSandstone::SmoothSandstone(): return 7879;
- case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Top): return 10290;
- case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Bottom): return 10292;
- case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Double): return 10294;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 9694;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 9696;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 9698;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 9700;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 9702;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 9704;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 9706;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 9708;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 9710;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 9712;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 9714;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 9716;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 9718;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 9720;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 9722;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 9724;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 9726;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 9728;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 9730;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 9732;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 9734;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 9736;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 9738;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 9740;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 9742;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 9744;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 9746;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 9748;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 9750;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 9752;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 9754;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 9756;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 9758;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 9760;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 9762;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 9764;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 9766;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 9768;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 9770;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 9772;
- case SmoothStone::SmoothStone(): return 7878;
- case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Top): return 7807;
- case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Bottom): return 7809;
- case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Double): return 7811;
- case Snow::Snow(1): return 3919;
- case Snow::Snow(2): return 3920;
- case Snow::Snow(3): return 3921;
- case Snow::Snow(4): return 3922;
- case Snow::Snow(5): return 3923;
- case Snow::Snow(6): return 3924;
- case Snow::Snow(7): return 3925;
- case Snow::Snow(8): return 3926;
- case SnowBlock::SnowBlock(): return 3928;
- case SoulSand::SoulSand(): return 3998;
- case Spawner::Spawner(): return 1951;
- case Sponge::Sponge(): return 228;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 5834;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 5835;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 5836;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 5837;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 5838;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 5839;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 5840;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 5841;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 5842;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 5843;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 5844;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 5845;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 5846;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 5847;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 5848;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 5849;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 5850;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 5851;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 5852;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 5853;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 5854;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 5855;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 5856;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 5857;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8202;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8203;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8204;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8205;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8206;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8207;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8208;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8209;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8210;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8211;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8212;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8213;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8214;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8215;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8216;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8217;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8218;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8219;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8220;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8221;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8222;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8223;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8224;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8225;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8226;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8227;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8228;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8229;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8230;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8231;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8232;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8233;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8234;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8235;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8236;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8237;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8238;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8239;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8240;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8241;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8242;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8243;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8244;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8245;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8246;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8247;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8248;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8249;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8250;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8251;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8252;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8253;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8254;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8255;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8256;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8257;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8258;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8259;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8260;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8261;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8262;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8263;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8264;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8265;
- case SpruceFence::SpruceFence(true, true, true, true): return 8044;
- case SpruceFence::SpruceFence(true, true, true, false): return 8045;
- case SpruceFence::SpruceFence(true, true, false, true): return 8048;
- case SpruceFence::SpruceFence(true, true, false, false): return 8049;
- case SpruceFence::SpruceFence(true, false, true, true): return 8052;
- case SpruceFence::SpruceFence(true, false, true, false): return 8053;
- case SpruceFence::SpruceFence(true, false, false, true): return 8056;
- case SpruceFence::SpruceFence(true, false, false, false): return 8057;
- case SpruceFence::SpruceFence(false, true, true, true): return 8060;
- case SpruceFence::SpruceFence(false, true, true, false): return 8061;
- case SpruceFence::SpruceFence(false, true, false, true): return 8064;
- case SpruceFence::SpruceFence(false, true, false, false): return 8065;
- case SpruceFence::SpruceFence(false, false, true, true): return 8068;
- case SpruceFence::SpruceFence(false, false, true, false): return 8069;
- case SpruceFence::SpruceFence(false, false, false, true): return 8072;
- case SpruceFence::SpruceFence(false, false, false, false): return 8073;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 7882;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 7883;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 7884;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 7885;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 7886;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 7887;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 7888;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 7889;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 7890;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 7891;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 7892;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 7893;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 7894;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 7895;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 7896;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 7897;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 7898;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 7899;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 7900;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 7901;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 7902;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 7903;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 7904;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 7905;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 7906;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 7907;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 7908;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 7909;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 7910;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 7911;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 7912;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 7913;
- case SpruceLeaves::SpruceLeaves(1, true): return 158;
- case SpruceLeaves::SpruceLeaves(1, false): return 159;
- case SpruceLeaves::SpruceLeaves(2, true): return 160;
- case SpruceLeaves::SpruceLeaves(2, false): return 161;
- case SpruceLeaves::SpruceLeaves(3, true): return 162;
- case SpruceLeaves::SpruceLeaves(3, false): return 163;
- case SpruceLeaves::SpruceLeaves(4, true): return 164;
- case SpruceLeaves::SpruceLeaves(4, false): return 165;
- case SpruceLeaves::SpruceLeaves(5, true): return 166;
- case SpruceLeaves::SpruceLeaves(5, false): return 167;
- case SpruceLeaves::SpruceLeaves(6, true): return 168;
- case SpruceLeaves::SpruceLeaves(6, false): return 169;
- case SpruceLeaves::SpruceLeaves(7, true): return 170;
- case SpruceLeaves::SpruceLeaves(7, false): return 171;
- case SpruceLog::SpruceLog(SpruceLog::Axis::X): return 75;
- case SpruceLog::SpruceLog(SpruceLog::Axis::Y): return 76;
- case SpruceLog::SpruceLog(SpruceLog::Axis::Z): return 77;
- case SprucePlanks::SprucePlanks(): return 16;
- case SprucePressurePlate::SprucePressurePlate(true): return 3873;
- case SprucePressurePlate::SprucePressurePlate(false): return 3874;
- case SpruceSapling::SpruceSapling(0): return 23;
- case SpruceSapling::SpruceSapling(1): return 24;
- case SpruceSign::SpruceSign(0): return 3412;
- case SpruceSign::SpruceSign(1): return 3414;
- case SpruceSign::SpruceSign(2): return 3416;
- case SpruceSign::SpruceSign(3): return 3418;
- case SpruceSign::SpruceSign(4): return 3420;
- case SpruceSign::SpruceSign(5): return 3422;
- case SpruceSign::SpruceSign(6): return 3424;
- case SpruceSign::SpruceSign(7): return 3426;
- case SpruceSign::SpruceSign(8): return 3428;
- case SpruceSign::SpruceSign(9): return 3430;
- case SpruceSign::SpruceSign(10): return 3432;
- case SpruceSign::SpruceSign(11): return 3434;
- case SpruceSign::SpruceSign(12): return 3436;
- case SpruceSign::SpruceSign(13): return 3438;
- case SpruceSign::SpruceSign(14): return 3440;
- case SpruceSign::SpruceSign(15): return 3442;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Top): return 7771;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Bottom): return 7773;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Double): return 7775;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5389;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5391;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5393;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5395;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5397;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5399;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5401;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5403;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5405;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5407;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5409;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5411;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5413;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5415;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5417;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5419;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5421;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5423;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5425;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5427;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5429;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5431;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5433;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5435;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5437;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5439;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5441;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5443;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5445;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5447;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5449;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5451;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5453;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5455;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5457;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5459;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5461;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5463;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5465;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5467;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, true): return 4162;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, false): return 4164;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, true): return 4166;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, false): return 4168;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, true): return 4170;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, false): return 4172;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, true): return 4174;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, false): return 4176;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, true): return 4178;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, false): return 4180;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, true): return 4182;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, false): return 4184;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, true): return 4186;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, false): return 4188;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, true): return 4190;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, false): return 4192;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, true): return 4194;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, false): return 4196;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, true): return 4198;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, false): return 4200;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, true): return 4202;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, false): return 4204;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, true): return 4206;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, false): return 4208;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, true): return 4210;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, false): return 4212;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, true): return 4214;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, false): return 4216;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, true): return 4218;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, false): return 4220;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, true): return 4222;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, false): return 4224;
- case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZM): return 3742;
- case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZP): return 3744;
- case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XM): return 3746;
- case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XP): return 3748;
- case SpruceWood::SpruceWood(SpruceWood::Axis::X): return 111;
- case SpruceWood::SpruceWood(SpruceWood::Axis::Y): return 112;
- case SpruceWood::SpruceWood(SpruceWood::Axis::Z): return 113;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZM): return 1328;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XP): return 1329;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZP): return 1330;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XM): return 1331;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YP): return 1332;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YM): return 1333;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZM): return 1334;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XP): return 1335;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZP): return 1336;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XM): return 1337;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YP): return 1338;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YM): return 1339;
- case Stone::Stone(): return 1;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Top): return 7843;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Bottom): return 7845;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double): return 7847;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4917;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4919;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4921;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4923;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4925;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4927;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4929;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4931;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4933;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4935;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4937;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4939;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4941;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4943;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4945;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4947;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4949;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4951;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4953;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4955;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4957;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4959;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4961;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4963;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4965;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4967;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4969;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4971;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4973;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4975;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4977;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4979;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4981;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4983;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4985;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4987;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4989;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4991;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4993;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4995;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 10653;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 10654;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 10657;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 10658;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 10661;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 10662;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 10665;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 10666;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 10669;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 10670;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 10673;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 10674;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 10677;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 10678;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 10681;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 10682;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 10685;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 10686;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 10689;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 10690;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 10693;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 10694;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 10697;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 10698;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 10701;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 10702;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 10705;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 10706;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 10709;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 10710;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 10713;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 10714;
- case StoneBricks::StoneBricks(): return 4481;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3895;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3896;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3897;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3898;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3899;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3900;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3901;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3902;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3903;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3904;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3905;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3906;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3907;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3908;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3909;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3910;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3911;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3912;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3913;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3914;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3915;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3916;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3917;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3918;
- case StonePressurePlate::StonePressurePlate(true): return 3805;
- case StonePressurePlate::StonePressurePlate(false): return 3806;
- case StoneSlab::StoneSlab(StoneSlab::Type::Top): return 7801;
- case StoneSlab::StoneSlab(StoneSlab::Type::Bottom): return 7803;
- case StoneSlab::StoneSlab(StoneSlab::Type::Double): return 7805;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 9614;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 9616;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 9618;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 9620;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 9622;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 9624;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 9626;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 9628;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 9630;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 9632;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 9634;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 9636;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 9638;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 9640;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 9642;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 9644;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 9646;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 9648;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 9650;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 9652;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 9654;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 9656;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 9658;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 9660;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 9662;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 9664;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 9666;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 9668;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 9670;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 9672;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 9674;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 9676;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 9678;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 9680;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 9682;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 9684;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 9686;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 9688;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 9690;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 9692;
- case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZM): return 11194;
- case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZP): return 11195;
- case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XM): return 11196;
- case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XP): return 11197;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::X): return 99;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Y): return 100;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Z): return 101;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::X): return 138;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Y): return 139;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Z): return 140;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::X): return 93;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Y): return 94;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Z): return 95;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::X): return 132;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Y): return 133;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Z): return 134;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::X): return 102;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Y): return 103;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Z): return 104;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::X): return 141;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Y): return 142;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Z): return 143;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::X): return 96;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Y): return 97;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Z): return 98;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::X): return 135;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Y): return 136;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Z): return 137;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::X): return 105;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Y): return 106;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Z): return 107;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::X): return 126;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Y): return 127;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Z): return 128;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::X): return 90;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Y): return 91;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Z): return 92;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::X): return 129;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Y): return 130;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Z): return 131;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Save): return 11268;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Load): return 11269;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Corner): return 11270;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Data): return 11271;
- case StructureVoid::StructureVoid(): return 8723;
- case SugarCane::SugarCane(0): return 3946;
- case SugarCane::SugarCane(1): return 3947;
- case SugarCane::SugarCane(2): return 3948;
- case SugarCane::SugarCane(3): return 3949;
- case SugarCane::SugarCane(4): return 3950;
- case SugarCane::SugarCane(5): return 3951;
- case SugarCane::SugarCane(6): return 3952;
- case SugarCane::SugarCane(7): return 3953;
- case SugarCane::SugarCane(8): return 3954;
- case SugarCane::SugarCane(9): return 3955;
- case SugarCane::SugarCane(10): return 3956;
- case SugarCane::SugarCane(11): return 3957;
- case SugarCane::SugarCane(12): return 3958;
- case SugarCane::SugarCane(13): return 3959;
- case SugarCane::SugarCane(14): return 3960;
- case SugarCane::SugarCane(15): return 3961;
- case Sunflower::Sunflower(Sunflower::Half::Upper): return 7349;
- case Sunflower::Sunflower(Sunflower::Half::Lower): return 7350;
- case SweetBerryBush::SweetBerryBush(0): return 11264;
- case SweetBerryBush::SweetBerryBush(1): return 11265;
- case SweetBerryBush::SweetBerryBush(2): return 11266;
- case SweetBerryBush::SweetBerryBush(3): return 11267;
- case TNT::TNT(true): return 1429;
- case TNT::TNT(false): return 1430;
- case TallGrass::TallGrass(TallGrass::Half::Upper): return 7357;
- case TallGrass::TallGrass(TallGrass::Half::Lower): return 7358;
- case TallSeagrass::TallSeagrass(TallSeagrass::Half::Upper): return 1345;
- case TallSeagrass::TallSeagrass(TallSeagrass::Half::Lower): return 1346;
- case Terracotta::Terracotta(): return 7346;
- case Torch::Torch(): return 1434;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Single): return 6087;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Left): return 6089;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Right): return 6091;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Single): return 6093;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Left): return 6095;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Right): return 6097;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Single): return 6099;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Left): return 6101;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Right): return 6103;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Single): return 6105;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Left): return 6107;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Right): return 6109;
- case Tripwire::Tripwire(true, true, true, true, true, true, true): return 5259;
- case Tripwire::Tripwire(true, true, true, true, true, true, false): return 5260;
- case Tripwire::Tripwire(true, true, true, true, true, false, true): return 5261;
- case Tripwire::Tripwire(true, true, true, true, true, false, false): return 5262;
- case Tripwire::Tripwire(true, true, true, true, false, true, true): return 5263;
- case Tripwire::Tripwire(true, true, true, true, false, true, false): return 5264;
- case Tripwire::Tripwire(true, true, true, true, false, false, true): return 5265;
- case Tripwire::Tripwire(true, true, true, true, false, false, false): return 5266;
- case Tripwire::Tripwire(true, true, true, false, true, true, true): return 5267;
- case Tripwire::Tripwire(true, true, true, false, true, true, false): return 5268;
- case Tripwire::Tripwire(true, true, true, false, true, false, true): return 5269;
- case Tripwire::Tripwire(true, true, true, false, true, false, false): return 5270;
- case Tripwire::Tripwire(true, true, true, false, false, true, true): return 5271;
- case Tripwire::Tripwire(true, true, true, false, false, true, false): return 5272;
- case Tripwire::Tripwire(true, true, true, false, false, false, true): return 5273;
- case Tripwire::Tripwire(true, true, true, false, false, false, false): return 5274;
- case Tripwire::Tripwire(true, true, false, true, true, true, true): return 5275;
- case Tripwire::Tripwire(true, true, false, true, true, true, false): return 5276;
- case Tripwire::Tripwire(true, true, false, true, true, false, true): return 5277;
- case Tripwire::Tripwire(true, true, false, true, true, false, false): return 5278;
- case Tripwire::Tripwire(true, true, false, true, false, true, true): return 5279;
- case Tripwire::Tripwire(true, true, false, true, false, true, false): return 5280;
- case Tripwire::Tripwire(true, true, false, true, false, false, true): return 5281;
- case Tripwire::Tripwire(true, true, false, true, false, false, false): return 5282;
- case Tripwire::Tripwire(true, true, false, false, true, true, true): return 5283;
- case Tripwire::Tripwire(true, true, false, false, true, true, false): return 5284;
- case Tripwire::Tripwire(true, true, false, false, true, false, true): return 5285;
- case Tripwire::Tripwire(true, true, false, false, true, false, false): return 5286;
- case Tripwire::Tripwire(true, true, false, false, false, true, true): return 5287;
- case Tripwire::Tripwire(true, true, false, false, false, true, false): return 5288;
- case Tripwire::Tripwire(true, true, false, false, false, false, true): return 5289;
- case Tripwire::Tripwire(true, true, false, false, false, false, false): return 5290;
- case Tripwire::Tripwire(true, false, true, true, true, true, true): return 5291;
- case Tripwire::Tripwire(true, false, true, true, true, true, false): return 5292;
- case Tripwire::Tripwire(true, false, true, true, true, false, true): return 5293;
- case Tripwire::Tripwire(true, false, true, true, true, false, false): return 5294;
- case Tripwire::Tripwire(true, false, true, true, false, true, true): return 5295;
- case Tripwire::Tripwire(true, false, true, true, false, true, false): return 5296;
- case Tripwire::Tripwire(true, false, true, true, false, false, true): return 5297;
- case Tripwire::Tripwire(true, false, true, true, false, false, false): return 5298;
- case Tripwire::Tripwire(true, false, true, false, true, true, true): return 5299;
- case Tripwire::Tripwire(true, false, true, false, true, true, false): return 5300;
- case Tripwire::Tripwire(true, false, true, false, true, false, true): return 5301;
- case Tripwire::Tripwire(true, false, true, false, true, false, false): return 5302;
- case Tripwire::Tripwire(true, false, true, false, false, true, true): return 5303;
- case Tripwire::Tripwire(true, false, true, false, false, true, false): return 5304;
- case Tripwire::Tripwire(true, false, true, false, false, false, true): return 5305;
- case Tripwire::Tripwire(true, false, true, false, false, false, false): return 5306;
- case Tripwire::Tripwire(true, false, false, true, true, true, true): return 5307;
- case Tripwire::Tripwire(true, false, false, true, true, true, false): return 5308;
- case Tripwire::Tripwire(true, false, false, true, true, false, true): return 5309;
- case Tripwire::Tripwire(true, false, false, true, true, false, false): return 5310;
- case Tripwire::Tripwire(true, false, false, true, false, true, true): return 5311;
- case Tripwire::Tripwire(true, false, false, true, false, true, false): return 5312;
- case Tripwire::Tripwire(true, false, false, true, false, false, true): return 5313;
- case Tripwire::Tripwire(true, false, false, true, false, false, false): return 5314;
- case Tripwire::Tripwire(true, false, false, false, true, true, true): return 5315;
- case Tripwire::Tripwire(true, false, false, false, true, true, false): return 5316;
- case Tripwire::Tripwire(true, false, false, false, true, false, true): return 5317;
- case Tripwire::Tripwire(true, false, false, false, true, false, false): return 5318;
- case Tripwire::Tripwire(true, false, false, false, false, true, true): return 5319;
- case Tripwire::Tripwire(true, false, false, false, false, true, false): return 5320;
- case Tripwire::Tripwire(true, false, false, false, false, false, true): return 5321;
- case Tripwire::Tripwire(true, false, false, false, false, false, false): return 5322;
- case Tripwire::Tripwire(false, true, true, true, true, true, true): return 5323;
- case Tripwire::Tripwire(false, true, true, true, true, true, false): return 5324;
- case Tripwire::Tripwire(false, true, true, true, true, false, true): return 5325;
- case Tripwire::Tripwire(false, true, true, true, true, false, false): return 5326;
- case Tripwire::Tripwire(false, true, true, true, false, true, true): return 5327;
- case Tripwire::Tripwire(false, true, true, true, false, true, false): return 5328;
- case Tripwire::Tripwire(false, true, true, true, false, false, true): return 5329;
- case Tripwire::Tripwire(false, true, true, true, false, false, false): return 5330;
- case Tripwire::Tripwire(false, true, true, false, true, true, true): return 5331;
- case Tripwire::Tripwire(false, true, true, false, true, true, false): return 5332;
- case Tripwire::Tripwire(false, true, true, false, true, false, true): return 5333;
- case Tripwire::Tripwire(false, true, true, false, true, false, false): return 5334;
- case Tripwire::Tripwire(false, true, true, false, false, true, true): return 5335;
- case Tripwire::Tripwire(false, true, true, false, false, true, false): return 5336;
- case Tripwire::Tripwire(false, true, true, false, false, false, true): return 5337;
- case Tripwire::Tripwire(false, true, true, false, false, false, false): return 5338;
- case Tripwire::Tripwire(false, true, false, true, true, true, true): return 5339;
- case Tripwire::Tripwire(false, true, false, true, true, true, false): return 5340;
- case Tripwire::Tripwire(false, true, false, true, true, false, true): return 5341;
- case Tripwire::Tripwire(false, true, false, true, true, false, false): return 5342;
- case Tripwire::Tripwire(false, true, false, true, false, true, true): return 5343;
- case Tripwire::Tripwire(false, true, false, true, false, true, false): return 5344;
- case Tripwire::Tripwire(false, true, false, true, false, false, true): return 5345;
- case Tripwire::Tripwire(false, true, false, true, false, false, false): return 5346;
- case Tripwire::Tripwire(false, true, false, false, true, true, true): return 5347;
- case Tripwire::Tripwire(false, true, false, false, true, true, false): return 5348;
- case Tripwire::Tripwire(false, true, false, false, true, false, true): return 5349;
- case Tripwire::Tripwire(false, true, false, false, true, false, false): return 5350;
- case Tripwire::Tripwire(false, true, false, false, false, true, true): return 5351;
- case Tripwire::Tripwire(false, true, false, false, false, true, false): return 5352;
- case Tripwire::Tripwire(false, true, false, false, false, false, true): return 5353;
- case Tripwire::Tripwire(false, true, false, false, false, false, false): return 5354;
- case Tripwire::Tripwire(false, false, true, true, true, true, true): return 5355;
- case Tripwire::Tripwire(false, false, true, true, true, true, false): return 5356;
- case Tripwire::Tripwire(false, false, true, true, true, false, true): return 5357;
- case Tripwire::Tripwire(false, false, true, true, true, false, false): return 5358;
- case Tripwire::Tripwire(false, false, true, true, false, true, true): return 5359;
- case Tripwire::Tripwire(false, false, true, true, false, true, false): return 5360;
- case Tripwire::Tripwire(false, false, true, true, false, false, true): return 5361;
- case Tripwire::Tripwire(false, false, true, true, false, false, false): return 5362;
- case Tripwire::Tripwire(false, false, true, false, true, true, true): return 5363;
- case Tripwire::Tripwire(false, false, true, false, true, true, false): return 5364;
- case Tripwire::Tripwire(false, false, true, false, true, false, true): return 5365;
- case Tripwire::Tripwire(false, false, true, false, true, false, false): return 5366;
- case Tripwire::Tripwire(false, false, true, false, false, true, true): return 5367;
- case Tripwire::Tripwire(false, false, true, false, false, true, false): return 5368;
- case Tripwire::Tripwire(false, false, true, false, false, false, true): return 5369;
- case Tripwire::Tripwire(false, false, true, false, false, false, false): return 5370;
- case Tripwire::Tripwire(false, false, false, true, true, true, true): return 5371;
- case Tripwire::Tripwire(false, false, false, true, true, true, false): return 5372;
- case Tripwire::Tripwire(false, false, false, true, true, false, true): return 5373;
- case Tripwire::Tripwire(false, false, false, true, true, false, false): return 5374;
- case Tripwire::Tripwire(false, false, false, true, false, true, true): return 5375;
- case Tripwire::Tripwire(false, false, false, true, false, true, false): return 5376;
- case Tripwire::Tripwire(false, false, false, true, false, false, true): return 5377;
- case Tripwire::Tripwire(false, false, false, true, false, false, false): return 5378;
- case Tripwire::Tripwire(false, false, false, false, true, true, true): return 5379;
- case Tripwire::Tripwire(false, false, false, false, true, true, false): return 5380;
- case Tripwire::Tripwire(false, false, false, false, true, false, true): return 5381;
- case Tripwire::Tripwire(false, false, false, false, true, false, false): return 5382;
- case Tripwire::Tripwire(false, false, false, false, false, true, true): return 5383;
- case Tripwire::Tripwire(false, false, false, false, false, true, false): return 5384;
- case Tripwire::Tripwire(false, false, false, false, false, false, true): return 5385;
- case Tripwire::Tripwire(false, false, false, false, false, false, false): return 5386;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, true): return 5243;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, false): return 5244;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, true): return 5245;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, false): return 5246;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, true): return 5247;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, false): return 5248;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, true): return 5249;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, false): return 5250;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, true): return 5251;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, false): return 5252;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, true): return 5253;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, false): return 5254;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, true): return 5255;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, false): return 5256;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, true): return 5257;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, false): return 5258;
- case TubeCoral::TubeCoral(): return 8995;
- case TubeCoralBlock::TubeCoralBlock(): return 8979;
- case TubeCoralFan::TubeCoralFan(): return 9015;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9065;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9067;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9069;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9071;
- case TurtleEgg::TurtleEgg(1, 0): return 8962;
- case TurtleEgg::TurtleEgg(1, 1): return 8963;
- case TurtleEgg::TurtleEgg(1, 2): return 8964;
- case TurtleEgg::TurtleEgg(2, 0): return 8965;
- case TurtleEgg::TurtleEgg(2, 1): return 8966;
- case TurtleEgg::TurtleEgg(2, 2): return 8967;
- case TurtleEgg::TurtleEgg(3, 0): return 8968;
- case TurtleEgg::TurtleEgg(3, 1): return 8969;
- case TurtleEgg::TurtleEgg(3, 2): return 8970;
- case TurtleEgg::TurtleEgg(4, 0): return 8971;
- case TurtleEgg::TurtleEgg(4, 1): return 8972;
- case TurtleEgg::TurtleEgg(4, 2): return 8973;
- case Vine::Vine(true, true, true, true, true): return 4772;
- case Vine::Vine(true, true, true, true, false): return 4773;
- case Vine::Vine(true, true, true, false, true): return 4774;
- case Vine::Vine(true, true, true, false, false): return 4775;
- case Vine::Vine(true, true, false, true, true): return 4776;
- case Vine::Vine(true, true, false, true, false): return 4777;
- case Vine::Vine(true, true, false, false, true): return 4778;
- case Vine::Vine(true, true, false, false, false): return 4779;
- case Vine::Vine(true, false, true, true, true): return 4780;
- case Vine::Vine(true, false, true, true, false): return 4781;
- case Vine::Vine(true, false, true, false, true): return 4782;
- case Vine::Vine(true, false, true, false, false): return 4783;
- case Vine::Vine(true, false, false, true, true): return 4784;
- case Vine::Vine(true, false, false, true, false): return 4785;
- case Vine::Vine(true, false, false, false, true): return 4786;
- case Vine::Vine(true, false, false, false, false): return 4787;
- case Vine::Vine(false, true, true, true, true): return 4788;
- case Vine::Vine(false, true, true, true, false): return 4789;
- case Vine::Vine(false, true, true, false, true): return 4790;
- case Vine::Vine(false, true, true, false, false): return 4791;
- case Vine::Vine(false, true, false, true, true): return 4792;
- case Vine::Vine(false, true, false, true, false): return 4793;
- case Vine::Vine(false, true, false, false, true): return 4794;
- case Vine::Vine(false, true, false, false, false): return 4795;
- case Vine::Vine(false, false, true, true, true): return 4796;
- case Vine::Vine(false, false, true, true, false): return 4797;
- case Vine::Vine(false, false, true, false, true): return 4798;
- case Vine::Vine(false, false, true, false, false): return 4799;
- case Vine::Vine(false, false, false, true, true): return 4800;
- case Vine::Vine(false, false, false, true, false): return 4801;
- case Vine::Vine(false, false, false, false, true): return 4802;
- case Vine::Vine(false, false, false, false, false): return 4803;
- case VoidAir::VoidAir(): return 9129;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZM): return 1435;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZP): return 1436;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XM): return 1437;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XP): return 1438;
- case Water::Water(0): return 34;
- case Water::Water(1): return 35;
- case Water::Water(2): return 36;
- case Water::Water(3): return 37;
- case Water::Water(4): return 38;
- case Water::Water(5): return 39;
- case Water::Water(6): return 40;
- case Water::Water(7): return 41;
- case Water::Water(8): return 42;
- case Water::Water(9): return 43;
- case Water::Water(10): return 44;
- case Water::Water(11): return 45;
- case Water::Water(12): return 46;
- case Water::Water(13): return 47;
- case Water::Water(14): return 48;
- case Water::Water(15): return 49;
- case WetSponge::WetSponge(): return 229;
- case Wheat::Wheat(0): return 3355;
- case Wheat::Wheat(1): return 3356;
- case Wheat::Wheat(2): return 3357;
- case Wheat::Wheat(3): return 3358;
- case Wheat::Wheat(4): return 3359;
- case Wheat::Wheat(5): return 3360;
- case Wheat::Wheat(6): return 3361;
- case Wheat::Wheat(7): return 3362;
- case WhiteBanner::WhiteBanner(0): return 7361;
- case WhiteBanner::WhiteBanner(1): return 7362;
- case WhiteBanner::WhiteBanner(2): return 7363;
- case WhiteBanner::WhiteBanner(3): return 7364;
- case WhiteBanner::WhiteBanner(4): return 7365;
- case WhiteBanner::WhiteBanner(5): return 7366;
- case WhiteBanner::WhiteBanner(6): return 7367;
- case WhiteBanner::WhiteBanner(7): return 7368;
- case WhiteBanner::WhiteBanner(8): return 7369;
- case WhiteBanner::WhiteBanner(9): return 7370;
- case WhiteBanner::WhiteBanner(10): return 7371;
- case WhiteBanner::WhiteBanner(11): return 7372;
- case WhiteBanner::WhiteBanner(12): return 7373;
- case WhiteBanner::WhiteBanner(13): return 7374;
- case WhiteBanner::WhiteBanner(14): return 7375;
- case WhiteBanner::WhiteBanner(15): return 7376;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Head): return 1048;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Foot): return 1049;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Head): return 1050;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Foot): return 1051;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Head): return 1052;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Foot): return 1053;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Head): return 1054;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Foot): return 1055;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Head): return 1056;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Foot): return 1057;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Head): return 1058;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Foot): return 1059;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Head): return 1060;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Foot): return 1061;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Head): return 1062;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Foot): return 1063;
- case WhiteCarpet::WhiteCarpet(): return 7330;
- case WhiteConcrete::WhiteConcrete(): return 8902;
- case WhiteConcretePowder::WhiteConcretePowder(): return 8918;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8838;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8839;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8840;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8841;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8742;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8743;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8744;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8745;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8746;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8747;
- case WhiteStainedGlass::WhiteStainedGlass(): return 4081;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, true): return 6329;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, false): return 6330;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, true): return 6333;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, false): return 6334;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, true): return 6337;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, false): return 6338;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, true): return 6341;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, false): return 6342;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, true): return 6345;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, false): return 6346;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, true): return 6349;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, false): return 6350;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, true): return 6353;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, false): return 6354;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, true): return 6357;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, false): return 6358;
- case WhiteTerracotta::WhiteTerracotta(): return 6311;
- case WhiteTulip::WhiteTulip(): return 1418;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7617;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7618;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XM): return 7619;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XP): return 7620;
- case WhiteWool::WhiteWool(): return 1383;
- case WitherRose::WitherRose(): return 1422;
- case WitherSkeletonSkull::WitherSkeletonSkull(0): return 5974;
- case WitherSkeletonSkull::WitherSkeletonSkull(1): return 5975;
- case WitherSkeletonSkull::WitherSkeletonSkull(2): return 5976;
- case WitherSkeletonSkull::WitherSkeletonSkull(3): return 5977;
- case WitherSkeletonSkull::WitherSkeletonSkull(4): return 5978;
- case WitherSkeletonSkull::WitherSkeletonSkull(5): return 5979;
- case WitherSkeletonSkull::WitherSkeletonSkull(6): return 5980;
- case WitherSkeletonSkull::WitherSkeletonSkull(7): return 5981;
- case WitherSkeletonSkull::WitherSkeletonSkull(8): return 5982;
- case WitherSkeletonSkull::WitherSkeletonSkull(9): return 5983;
- case WitherSkeletonSkull::WitherSkeletonSkull(10): return 5984;
- case WitherSkeletonSkull::WitherSkeletonSkull(11): return 5985;
- case WitherSkeletonSkull::WitherSkeletonSkull(12): return 5986;
- case WitherSkeletonSkull::WitherSkeletonSkull(13): return 5987;
- case WitherSkeletonSkull::WitherSkeletonSkull(14): return 5988;
- case WitherSkeletonSkull::WitherSkeletonSkull(15): return 5989;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 5990;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 5991;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 5992;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 5993;
- case YellowBanner::YellowBanner(0): return 7425;
- case YellowBanner::YellowBanner(1): return 7426;
- case YellowBanner::YellowBanner(2): return 7427;
- case YellowBanner::YellowBanner(3): return 7428;
- case YellowBanner::YellowBanner(4): return 7429;
- case YellowBanner::YellowBanner(5): return 7430;
- case YellowBanner::YellowBanner(6): return 7431;
- case YellowBanner::YellowBanner(7): return 7432;
- case YellowBanner::YellowBanner(8): return 7433;
- case YellowBanner::YellowBanner(9): return 7434;
- case YellowBanner::YellowBanner(10): return 7435;
- case YellowBanner::YellowBanner(11): return 7436;
- case YellowBanner::YellowBanner(12): return 7437;
- case YellowBanner::YellowBanner(13): return 7438;
- case YellowBanner::YellowBanner(14): return 7439;
- case YellowBanner::YellowBanner(15): return 7440;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Head): return 1112;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Foot): return 1113;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Head): return 1114;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Foot): return 1115;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Head): return 1116;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Foot): return 1117;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Head): return 1118;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Foot): return 1119;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Head): return 1120;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Foot): return 1121;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Head): return 1122;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Foot): return 1123;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Head): return 1124;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Foot): return 1125;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Head): return 1126;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Foot): return 1127;
- case YellowCarpet::YellowCarpet(): return 7334;
- case YellowConcrete::YellowConcrete(): return 8906;
- case YellowConcretePowder::YellowConcretePowder(): return 8922;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 8854;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 8855;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 8856;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 8857;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 8766;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XP): return 8767;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 8768;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XM): return 8769;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YP): return 8770;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YM): return 8771;
- case YellowStainedGlass::YellowStainedGlass(): return 4085;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, true): return 6457;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, false): return 6458;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, true): return 6461;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, false): return 6462;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, true): return 6465;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, false): return 6466;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, true): return 6469;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, false): return 6470;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, true): return 6473;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, false): return 6474;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, true): return 6477;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, false): return 6478;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, true): return 6481;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, false): return 6482;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, true): return 6485;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, false): return 6486;
- case YellowTerracotta::YellowTerracotta(): return 6315;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZM): return 7633;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZP): return 7634;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XM): return 7635;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XP): return 7636;
- case YellowWool::YellowWool(): return 1387;
- case ZombieHead::ZombieHead(0): return 5994;
- case ZombieHead::ZombieHead(1): return 5995;
- case ZombieHead::ZombieHead(2): return 5996;
- case ZombieHead::ZombieHead(3): return 5997;
- case ZombieHead::ZombieHead(4): return 5998;
- case ZombieHead::ZombieHead(5): return 5999;
- case ZombieHead::ZombieHead(6): return 6000;
- case ZombieHead::ZombieHead(7): return 6001;
- case ZombieHead::ZombieHead(8): return 6002;
- case ZombieHead::ZombieHead(9): return 6003;
- case ZombieHead::ZombieHead(10): return 6004;
- case ZombieHead::ZombieHead(11): return 6005;
- case ZombieHead::ZombieHead(12): return 6006;
- case ZombieHead::ZombieHead(13): return 6007;
- case ZombieHead::ZombieHead(14): return 6008;
- case ZombieHead::ZombieHead(15): return 6009;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZM): return 6010;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZP): return 6011;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XM): return 6012;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XP): return 6013;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5906;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5907;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5908;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5909;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5910;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5911;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5912;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5913;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5914;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5915;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5916;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5917;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5918;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5919;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5920;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5921;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5922;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5923;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5924;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5925;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5926;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5927;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5928;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5929;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 8394;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 8395;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 8396;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 8397;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 8398;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 8399;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 8400;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 8401;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 8402;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 8403;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 8404;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 8405;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 8406;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 8407;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 8408;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 8409;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 8410;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 8411;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 8412;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 8413;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 8414;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 8415;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 8416;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 8417;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 8418;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 8419;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 8420;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 8421;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 8422;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 8423;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 8424;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 8425;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 8426;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 8427;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 8428;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 8429;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 8430;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 8431;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 8432;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 8433;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 8434;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 8435;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 8436;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 8437;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 8438;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 8439;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 8440;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 8441;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 8442;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 8443;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 8444;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 8445;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 8446;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 8447;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 8448;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 8449;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 8450;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 8451;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 8452;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 8453;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 8454;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 8455;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 8456;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 8457;
+ case AcaciaFence::AcaciaFence(true, true, true, true).ID: return 8140;
+ case AcaciaFence::AcaciaFence(true, true, true, false).ID: return 8141;
+ case AcaciaFence::AcaciaFence(true, true, false, true).ID: return 8144;
+ case AcaciaFence::AcaciaFence(true, true, false, false).ID: return 8145;
+ case AcaciaFence::AcaciaFence(true, false, true, true).ID: return 8148;
+ case AcaciaFence::AcaciaFence(true, false, true, false).ID: return 8149;
+ case AcaciaFence::AcaciaFence(true, false, false, true).ID: return 8152;
+ case AcaciaFence::AcaciaFence(true, false, false, false).ID: return 8153;
+ case AcaciaFence::AcaciaFence(false, true, true, true).ID: return 8156;
+ case AcaciaFence::AcaciaFence(false, true, true, false).ID: return 8157;
+ case AcaciaFence::AcaciaFence(false, true, false, true).ID: return 8160;
+ case AcaciaFence::AcaciaFence(false, true, false, false).ID: return 8161;
+ case AcaciaFence::AcaciaFence(false, false, true, true).ID: return 8164;
+ case AcaciaFence::AcaciaFence(false, false, true, false).ID: return 8165;
+ case AcaciaFence::AcaciaFence(false, false, false, true).ID: return 8168;
+ case AcaciaFence::AcaciaFence(false, false, false, false).ID: return 8169;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7978;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7979;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7980;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7981;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7982;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7983;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7984;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7985;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7986;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7987;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7988;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7989;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7990;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7991;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7992;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7993;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7994;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7995;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7996;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7997;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7998;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7999;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 8000;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 8001;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 8002;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 8003;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 8004;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 8005;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 8006;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 8007;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 8008;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 8009;
+ case AcaciaLeaves::AcaciaLeaves(1, true).ID: return 200;
+ case AcaciaLeaves::AcaciaLeaves(1, false).ID: return 201;
+ case AcaciaLeaves::AcaciaLeaves(2, true).ID: return 202;
+ case AcaciaLeaves::AcaciaLeaves(2, false).ID: return 203;
+ case AcaciaLeaves::AcaciaLeaves(3, true).ID: return 204;
+ case AcaciaLeaves::AcaciaLeaves(3, false).ID: return 205;
+ case AcaciaLeaves::AcaciaLeaves(4, true).ID: return 206;
+ case AcaciaLeaves::AcaciaLeaves(4, false).ID: return 207;
+ case AcaciaLeaves::AcaciaLeaves(5, true).ID: return 208;
+ case AcaciaLeaves::AcaciaLeaves(5, false).ID: return 209;
+ case AcaciaLeaves::AcaciaLeaves(6, true).ID: return 210;
+ case AcaciaLeaves::AcaciaLeaves(6, false).ID: return 211;
+ case AcaciaLeaves::AcaciaLeaves(7, true).ID: return 212;
+ case AcaciaLeaves::AcaciaLeaves(7, false).ID: return 213;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::X).ID: return 84;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Y).ID: return 85;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Z).ID: return 86;
+ case AcaciaPlanks::AcaciaPlanks().ID: return 19;
+ case AcaciaPressurePlate::AcaciaPressurePlate(true).ID: return 3879;
+ case AcaciaPressurePlate::AcaciaPressurePlate(false).ID: return 3880;
+ case AcaciaSapling::AcaciaSapling(0).ID: return 29;
+ case AcaciaSapling::AcaciaSapling(1).ID: return 30;
+ case AcaciaSign::AcaciaSign(0).ID: return 3476;
+ case AcaciaSign::AcaciaSign(1).ID: return 3478;
+ case AcaciaSign::AcaciaSign(2).ID: return 3480;
+ case AcaciaSign::AcaciaSign(3).ID: return 3482;
+ case AcaciaSign::AcaciaSign(4).ID: return 3484;
+ case AcaciaSign::AcaciaSign(5).ID: return 3486;
+ case AcaciaSign::AcaciaSign(6).ID: return 3488;
+ case AcaciaSign::AcaciaSign(7).ID: return 3490;
+ case AcaciaSign::AcaciaSign(8).ID: return 3492;
+ case AcaciaSign::AcaciaSign(9).ID: return 3494;
+ case AcaciaSign::AcaciaSign(10).ID: return 3496;
+ case AcaciaSign::AcaciaSign(11).ID: return 3498;
+ case AcaciaSign::AcaciaSign(12).ID: return 3500;
+ case AcaciaSign::AcaciaSign(13).ID: return 3502;
+ case AcaciaSign::AcaciaSign(14).ID: return 3504;
+ case AcaciaSign::AcaciaSign(15).ID: return 3506;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Top).ID: return 7789;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Bottom).ID: return 7791;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Double).ID: return 7793;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6840;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6842;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6844;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6846;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6848;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6850;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6852;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6854;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6856;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6858;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6860;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6862;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6864;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6866;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6868;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6870;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6872;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6874;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6876;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6878;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6880;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6882;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6884;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6886;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6888;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6890;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6892;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6894;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6896;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6898;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 6900;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 6902;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 6904;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 6906;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 6908;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 6910;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 6912;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 6914;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 6916;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 6918;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, true).ID: return 4354;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, false).ID: return 4356;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, true).ID: return 4358;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, false).ID: return 4360;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 4362;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 4364;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 4366;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 4368;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, true).ID: return 4370;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, false).ID: return 4372;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, true).ID: return 4374;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, false).ID: return 4376;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 4378;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 4380;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 4382;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 4384;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, true).ID: return 4386;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, false).ID: return 4388;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, true).ID: return 4390;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, false).ID: return 4392;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 4394;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 4396;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 4398;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 4400;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, true).ID: return 4402;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, false).ID: return 4404;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, true).ID: return 4406;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, false).ID: return 4408;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 4410;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 4412;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 4414;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 4416;
+ case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3758;
+ case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3760;
+ case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3762;
+ case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3764;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::X).ID: return 120;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Y).ID: return 121;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Z).ID: return 122;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::NorthSouth).ID: return 6287;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::EastWest).ID: return 6288;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingEast).ID: return 6289;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingWest).ID: return 6290;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingNorth).ID: return 6291;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingSouth).ID: return 6292;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::NorthSouth).ID: return 6293;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::EastWest).ID: return 6294;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingEast).ID: return 6295;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingWest).ID: return 6296;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingNorth).ID: return 6297;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingSouth).ID: return 6298;
+ case Air::Air().ID: return -0;
+ case Allium::Allium().ID: return 1414;
+ case Andesite::Andesite().ID: return 6;
+ case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Top).ID: return 10308;
+ case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Bottom).ID: return 10310;
+ case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Double).ID: return 10312;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight).ID: return 9934;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft).ID: return 9936;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight).ID: return 9938;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft).ID: return 9940;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight).ID: return 9942;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight).ID: return 9944;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft).ID: return 9946;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight).ID: return 9948;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft).ID: return 9950;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight).ID: return 9952;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight).ID: return 9954;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft).ID: return 9956;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight).ID: return 9958;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft).ID: return 9960;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight).ID: return 9962;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight).ID: return 9964;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft).ID: return 9966;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight).ID: return 9968;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft).ID: return 9970;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight).ID: return 9972;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight).ID: return 9974;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft).ID: return 9976;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight).ID: return 9978;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft).ID: return 9980;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight).ID: return 9982;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight).ID: return 9984;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft).ID: return 9986;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight).ID: return 9988;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft).ID: return 9990;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight).ID: return 9992;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight).ID: return 9994;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft).ID: return 9996;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight).ID: return 9998;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft).ID: return 10000;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight).ID: return 10002;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight).ID: return 10004;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft).ID: return 10006;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight).ID: return 10008;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft).ID: return 10010;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight).ID: return 10012;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 10781;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 10782;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 10785;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 10786;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 10789;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 10790;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 10793;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 10794;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 10797;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 10798;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 10801;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 10802;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 10805;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 10806;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 10809;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 10810;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 10813;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 10814;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 10817;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 10818;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 10821;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 10822;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 10825;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 10826;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 10829;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 10830;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 10833;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 10834;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 10837;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 10838;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 10841;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 10842;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZM).ID: return 6074;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZP).ID: return 6075;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_XM).ID: return 6076;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_XP).ID: return 6077;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZM).ID: return 4752;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZP).ID: return 4753;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XM).ID: return 4754;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XP).ID: return 4755;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZM).ID: return 4748;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZP).ID: return 4749;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XM).ID: return 4750;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XP).ID: return 4751;
+ case AzureBluet::AzureBluet().ID: return 1415;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::None, 0).ID: return 9116;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::None, 1).ID: return 9117;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 0).ID: return 9118;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 1).ID: return 9119;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 0).ID: return 9120;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 1).ID: return 9121;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::None, 0).ID: return 9122;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::None, 1).ID: return 9123;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 0).ID: return 9124;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 1).ID: return 9125;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 0).ID: return 9126;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 1).ID: return 9127;
+ case BambooSapling::BambooSapling().ID: return 9115;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, true).ID: return 11135;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, false).ID: return 11136;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, true).ID: return 11137;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, false).ID: return 11138;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, true).ID: return 11139;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, false).ID: return 11140;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, true).ID: return 11141;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, false).ID: return 11142;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, true).ID: return 11143;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, false).ID: return 11144;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, true).ID: return 11145;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, false).ID: return 11146;
+ case Barrier::Barrier().ID: return 7000;
+ case Beacon::Beacon().ID: return 5640;
+ case Bedrock::Bedrock().ID: return 33;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 0).ID: return 11287;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 1).ID: return 11288;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 2).ID: return 11289;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 3).ID: return 11290;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 4).ID: return 11291;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 5).ID: return 11292;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 0).ID: return 11293;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 1).ID: return 11294;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 2).ID: return 11295;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 3).ID: return 11296;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 4).ID: return 11297;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 5).ID: return 11298;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 0).ID: return 11299;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 1).ID: return 11300;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 2).ID: return 11301;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 3).ID: return 11302;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 4).ID: return 11303;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 5).ID: return 11304;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 0).ID: return 11305;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 1).ID: return 11306;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 2).ID: return 11307;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 3).ID: return 11308;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 4).ID: return 11309;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 5).ID: return 11310;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 0).ID: return 11311;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 1).ID: return 11312;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 2).ID: return 11313;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 3).ID: return 11314;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 4).ID: return 11315;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 5).ID: return 11316;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 0).ID: return 11317;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 1).ID: return 11318;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 2).ID: return 11319;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 3).ID: return 11320;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 4).ID: return 11321;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 5).ID: return 11322;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 0).ID: return 11323;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 1).ID: return 11324;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 2).ID: return 11325;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 3).ID: return 11326;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 4).ID: return 11327;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 5).ID: return 11328;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 0).ID: return 11329;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 1).ID: return 11330;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 2).ID: return 11331;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 3).ID: return 11332;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 4).ID: return 11333;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 5).ID: return 11334;
+ case Beetroots::Beetroots(0).ID: return 8683;
+ case Beetroots::Beetroots(1).ID: return 8684;
+ case Beetroots::Beetroots(2).ID: return 8685;
+ case Beetroots::Beetroots(3).ID: return 8686;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 11198;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 11199;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 11200;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 11201;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 11202;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 11203;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 11204;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 11205;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 11206;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 11207;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 11208;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 11209;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 11210;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 11211;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 11212;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 11213;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 11214;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 11215;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 11216;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 11217;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XM, true).ID: return 11218;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XM, false).ID: return 11219;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XP, true).ID: return 11220;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XP, false).ID: return 11221;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 11222;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 11223;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 11224;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 11225;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XM, true).ID: return 11226;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XM, false).ID: return 11227;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XP, true).ID: return 11228;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XP, false).ID: return 11229;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5858;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5859;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5860;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5861;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5862;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5863;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5864;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5865;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5866;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5867;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5868;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5869;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5870;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5871;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5872;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5873;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5874;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5875;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5876;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5877;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5878;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5879;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5880;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5881;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 8266;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 8267;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 8268;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 8269;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 8270;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 8271;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 8272;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 8273;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 8274;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 8275;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 8276;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 8277;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 8278;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 8279;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 8280;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 8281;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 8282;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 8283;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 8284;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 8285;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 8286;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 8287;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 8288;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 8289;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 8290;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 8291;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 8292;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 8293;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 8294;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 8295;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 8296;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 8297;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 8298;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 8299;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 8300;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 8301;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 8302;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 8303;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 8304;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 8305;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 8306;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 8307;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 8308;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 8309;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 8310;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 8311;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 8312;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 8313;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 8314;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 8315;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 8316;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 8317;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 8318;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 8319;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 8320;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 8321;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 8322;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 8323;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 8324;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 8325;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 8326;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 8327;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 8328;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 8329;
+ case BirchFence::BirchFence(true, true, true, true).ID: return 8076;
+ case BirchFence::BirchFence(true, true, true, false).ID: return 8077;
+ case BirchFence::BirchFence(true, true, false, true).ID: return 8080;
+ case BirchFence::BirchFence(true, true, false, false).ID: return 8081;
+ case BirchFence::BirchFence(true, false, true, true).ID: return 8084;
+ case BirchFence::BirchFence(true, false, true, false).ID: return 8085;
+ case BirchFence::BirchFence(true, false, false, true).ID: return 8088;
+ case BirchFence::BirchFence(true, false, false, false).ID: return 8089;
+ case BirchFence::BirchFence(false, true, true, true).ID: return 8092;
+ case BirchFence::BirchFence(false, true, true, false).ID: return 8093;
+ case BirchFence::BirchFence(false, true, false, true).ID: return 8096;
+ case BirchFence::BirchFence(false, true, false, false).ID: return 8097;
+ case BirchFence::BirchFence(false, false, true, true).ID: return 8100;
+ case BirchFence::BirchFence(false, false, true, false).ID: return 8101;
+ case BirchFence::BirchFence(false, false, false, true).ID: return 8104;
+ case BirchFence::BirchFence(false, false, false, false).ID: return 8105;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7914;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7915;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7916;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7917;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7918;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7919;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7920;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7921;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7922;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7923;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7924;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7925;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7926;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7927;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7928;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7929;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7930;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7931;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7932;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7933;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7934;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7935;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7936;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7937;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7938;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7939;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7940;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7941;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7942;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7943;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7944;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7945;
+ case BirchLeaves::BirchLeaves(1, true).ID: return 172;
+ case BirchLeaves::BirchLeaves(1, false).ID: return 173;
+ case BirchLeaves::BirchLeaves(2, true).ID: return 174;
+ case BirchLeaves::BirchLeaves(2, false).ID: return 175;
+ case BirchLeaves::BirchLeaves(3, true).ID: return 176;
+ case BirchLeaves::BirchLeaves(3, false).ID: return 177;
+ case BirchLeaves::BirchLeaves(4, true).ID: return 178;
+ case BirchLeaves::BirchLeaves(4, false).ID: return 179;
+ case BirchLeaves::BirchLeaves(5, true).ID: return 180;
+ case BirchLeaves::BirchLeaves(5, false).ID: return 181;
+ case BirchLeaves::BirchLeaves(6, true).ID: return 182;
+ case BirchLeaves::BirchLeaves(6, false).ID: return 183;
+ case BirchLeaves::BirchLeaves(7, true).ID: return 184;
+ case BirchLeaves::BirchLeaves(7, false).ID: return 185;
+ case BirchLog::BirchLog(BirchLog::Axis::X).ID: return 78;
+ case BirchLog::BirchLog(BirchLog::Axis::Y).ID: return 79;
+ case BirchLog::BirchLog(BirchLog::Axis::Z).ID: return 80;
+ case BirchPlanks::BirchPlanks().ID: return 17;
+ case BirchPressurePlate::BirchPressurePlate(true).ID: return 3875;
+ case BirchPressurePlate::BirchPressurePlate(false).ID: return 3876;
+ case BirchSapling::BirchSapling(0).ID: return 25;
+ case BirchSapling::BirchSapling(1).ID: return 26;
+ case BirchSign::BirchSign(0).ID: return 3444;
+ case BirchSign::BirchSign(1).ID: return 3446;
+ case BirchSign::BirchSign(2).ID: return 3448;
+ case BirchSign::BirchSign(3).ID: return 3450;
+ case BirchSign::BirchSign(4).ID: return 3452;
+ case BirchSign::BirchSign(5).ID: return 3454;
+ case BirchSign::BirchSign(6).ID: return 3456;
+ case BirchSign::BirchSign(7).ID: return 3458;
+ case BirchSign::BirchSign(8).ID: return 3460;
+ case BirchSign::BirchSign(9).ID: return 3462;
+ case BirchSign::BirchSign(10).ID: return 3464;
+ case BirchSign::BirchSign(11).ID: return 3466;
+ case BirchSign::BirchSign(12).ID: return 3468;
+ case BirchSign::BirchSign(13).ID: return 3470;
+ case BirchSign::BirchSign(14).ID: return 3472;
+ case BirchSign::BirchSign(15).ID: return 3474;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Top).ID: return 7777;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Bottom).ID: return 7779;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Double).ID: return 7781;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5469;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5471;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5473;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5475;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5477;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5479;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5481;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5483;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5485;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5487;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5489;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5491;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5493;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5495;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5497;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5499;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5501;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5503;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5505;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5507;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5509;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5511;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5513;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5515;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5517;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5519;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5521;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5523;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5525;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5527;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5529;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5531;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5533;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5535;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5537;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5539;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5541;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5543;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5545;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5547;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, true).ID: return 4226;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, false).ID: return 4228;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, true).ID: return 4230;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, false).ID: return 4232;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, true).ID: return 4234;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, false).ID: return 4236;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, true).ID: return 4238;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, false).ID: return 4240;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, true).ID: return 4242;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, false).ID: return 4244;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, true).ID: return 4246;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, false).ID: return 4248;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, true).ID: return 4250;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, false).ID: return 4252;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, true).ID: return 4254;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, false).ID: return 4256;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, true).ID: return 4258;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, false).ID: return 4260;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, true).ID: return 4262;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, false).ID: return 4264;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, true).ID: return 4266;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, false).ID: return 4268;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, true).ID: return 4270;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, false).ID: return 4272;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, true).ID: return 4274;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, false).ID: return 4276;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, true).ID: return 4278;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, false).ID: return 4280;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, true).ID: return 4282;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, false).ID: return 4284;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, true).ID: return 4286;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, false).ID: return 4288;
+ case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3750;
+ case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3752;
+ case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3754;
+ case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3756;
+ case BirchWood::BirchWood(BirchWood::Axis::X).ID: return 114;
+ case BirchWood::BirchWood(BirchWood::Axis::Y).ID: return 115;
+ case BirchWood::BirchWood(BirchWood::Axis::Z).ID: return 116;
+ case BlackBanner::BlackBanner(0).ID: return 7601;
+ case BlackBanner::BlackBanner(1).ID: return 7602;
+ case BlackBanner::BlackBanner(2).ID: return 7603;
+ case BlackBanner::BlackBanner(3).ID: return 7604;
+ case BlackBanner::BlackBanner(4).ID: return 7605;
+ case BlackBanner::BlackBanner(5).ID: return 7606;
+ case BlackBanner::BlackBanner(6).ID: return 7607;
+ case BlackBanner::BlackBanner(7).ID: return 7608;
+ case BlackBanner::BlackBanner(8).ID: return 7609;
+ case BlackBanner::BlackBanner(9).ID: return 7610;
+ case BlackBanner::BlackBanner(10).ID: return 7611;
+ case BlackBanner::BlackBanner(11).ID: return 7612;
+ case BlackBanner::BlackBanner(12).ID: return 7613;
+ case BlackBanner::BlackBanner(13).ID: return 7614;
+ case BlackBanner::BlackBanner(14).ID: return 7615;
+ case BlackBanner::BlackBanner(15).ID: return 7616;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Head).ID: return 1288;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Foot).ID: return 1289;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Head).ID: return 1290;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Foot).ID: return 1291;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Head).ID: return 1292;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Foot).ID: return 1293;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Head).ID: return 1294;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Foot).ID: return 1295;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Head).ID: return 1296;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Foot).ID: return 1297;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Head).ID: return 1298;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Foot).ID: return 1299;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Head).ID: return 1300;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Foot).ID: return 1301;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Head).ID: return 1302;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Foot).ID: return 1303;
+ case BlackCarpet::BlackCarpet().ID: return 7345;
+ case BlackConcrete::BlackConcrete().ID: return 8917;
+ case BlackConcretePowder::BlackConcretePowder().ID: return 8933;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8898;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8899;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8900;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8901;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8832;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8833;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8834;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8835;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8836;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8837;
+ case BlackStainedGlass::BlackStainedGlass().ID: return 4096;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, true).ID: return 6809;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, false).ID: return 6810;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, true).ID: return 6813;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, false).ID: return 6814;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, true).ID: return 6817;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, false).ID: return 6818;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, true).ID: return 6821;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, false).ID: return 6822;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, true).ID: return 6825;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, false).ID: return 6826;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, true).ID: return 6829;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, false).ID: return 6830;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, true).ID: return 6833;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, false).ID: return 6834;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, true).ID: return 6837;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, false).ID: return 6838;
+ case BlackTerracotta::BlackTerracotta().ID: return 6326;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7677;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7678;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7679;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7680;
+ case BlackWool::BlackWool().ID: return 1398;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, true).ID: return 11155;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, false).ID: return 11156;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, true).ID: return 11157;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, false).ID: return 11158;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, true).ID: return 11159;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, false).ID: return 11160;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, true).ID: return 11161;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, false).ID: return 11162;
+ case BlueBanner::BlueBanner(0).ID: return 7537;
+ case BlueBanner::BlueBanner(1).ID: return 7538;
+ case BlueBanner::BlueBanner(2).ID: return 7539;
+ case BlueBanner::BlueBanner(3).ID: return 7540;
+ case BlueBanner::BlueBanner(4).ID: return 7541;
+ case BlueBanner::BlueBanner(5).ID: return 7542;
+ case BlueBanner::BlueBanner(6).ID: return 7543;
+ case BlueBanner::BlueBanner(7).ID: return 7544;
+ case BlueBanner::BlueBanner(8).ID: return 7545;
+ case BlueBanner::BlueBanner(9).ID: return 7546;
+ case BlueBanner::BlueBanner(10).ID: return 7547;
+ case BlueBanner::BlueBanner(11).ID: return 7548;
+ case BlueBanner::BlueBanner(12).ID: return 7549;
+ case BlueBanner::BlueBanner(13).ID: return 7550;
+ case BlueBanner::BlueBanner(14).ID: return 7551;
+ case BlueBanner::BlueBanner(15).ID: return 7552;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Head).ID: return 1224;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Foot).ID: return 1225;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Head).ID: return 1226;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Foot).ID: return 1227;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Head).ID: return 1228;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Foot).ID: return 1229;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Head).ID: return 1230;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Foot).ID: return 1231;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Head).ID: return 1232;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Foot).ID: return 1233;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Head).ID: return 1234;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Foot).ID: return 1235;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Head).ID: return 1236;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Foot).ID: return 1237;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Head).ID: return 1238;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Foot).ID: return 1239;
+ case BlueCarpet::BlueCarpet().ID: return 7341;
+ case BlueConcrete::BlueConcrete().ID: return 8913;
+ case BlueConcretePowder::BlueConcretePowder().ID: return 8929;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8882;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8883;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8884;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8885;
+ case BlueIce::BlueIce().ID: return 9112;
+ case BlueOrchid::BlueOrchid().ID: return 1413;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8808;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8809;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8810;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8811;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8812;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8813;
+ case BlueStainedGlass::BlueStainedGlass().ID: return 4092;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, true).ID: return 6681;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, false).ID: return 6682;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, true).ID: return 6685;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, false).ID: return 6686;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, true).ID: return 6689;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, false).ID: return 6690;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, true).ID: return 6693;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, false).ID: return 6694;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, true).ID: return 6697;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, false).ID: return 6698;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, true).ID: return 6701;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, false).ID: return 6702;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, true).ID: return 6705;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, false).ID: return 6706;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, true).ID: return 6709;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, false).ID: return 6710;
+ case BlueTerracotta::BlueTerracotta().ID: return 6322;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7661;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7662;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7663;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7664;
+ case BlueWool::BlueWool().ID: return 1394;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::X).ID: return 8720;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::Y).ID: return 8721;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::Z).ID: return 8722;
+ case Bookshelf::Bookshelf().ID: return 1431;
+ case BrainCoral::BrainCoral().ID: return 8997;
+ case BrainCoralBlock::BrainCoralBlock().ID: return 8980;
+ case BrainCoralFan::BrainCoralFan().ID: return 9017;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9073;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9075;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9077;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9079;
+ case BrewingStand::BrewingStand(true, true, true).ID: return 5117;
+ case BrewingStand::BrewingStand(true, true, false).ID: return 5118;
+ case BrewingStand::BrewingStand(true, false, true).ID: return 5119;
+ case BrewingStand::BrewingStand(true, false, false).ID: return 5120;
+ case BrewingStand::BrewingStand(false, true, true).ID: return 5121;
+ case BrewingStand::BrewingStand(false, true, false).ID: return 5122;
+ case BrewingStand::BrewingStand(false, false, true).ID: return 5123;
+ case BrewingStand::BrewingStand(false, false, false).ID: return 5124;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Top).ID: return 7837;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Bottom).ID: return 7839;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Double).ID: return 7841;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4837;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4839;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4841;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4843;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4845;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4847;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4849;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4851;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4853;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4855;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4857;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4859;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4861;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4863;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4865;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4867;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4869;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4871;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4873;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4875;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4877;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4879;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4881;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4883;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4885;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4887;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4889;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4891;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4893;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4895;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4897;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4899;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4901;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4903;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4905;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4907;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4909;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4911;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4913;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4915;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 10333;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None).ID: return 10334;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 10337;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None).ID: return 10338;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low).ID: return 10341;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None).ID: return 10342;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low).ID: return 10345;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None).ID: return 10346;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 10349;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None).ID: return 10350;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 10353;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None).ID: return 10354;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low).ID: return 10357;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None).ID: return 10358;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low).ID: return 10361;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None).ID: return 10362;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 10365;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None).ID: return 10366;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 10369;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None).ID: return 10370;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low).ID: return 10373;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None).ID: return 10374;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low).ID: return 10377;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None).ID: return 10378;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 10381;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None).ID: return 10382;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 10385;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None).ID: return 10386;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low).ID: return 10389;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None).ID: return 10390;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low).ID: return 10393;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None).ID: return 10394;
+ case Bricks::Bricks().ID: return 1428;
+ case BrownBanner::BrownBanner(0).ID: return 7553;
+ case BrownBanner::BrownBanner(1).ID: return 7554;
+ case BrownBanner::BrownBanner(2).ID: return 7555;
+ case BrownBanner::BrownBanner(3).ID: return 7556;
+ case BrownBanner::BrownBanner(4).ID: return 7557;
+ case BrownBanner::BrownBanner(5).ID: return 7558;
+ case BrownBanner::BrownBanner(6).ID: return 7559;
+ case BrownBanner::BrownBanner(7).ID: return 7560;
+ case BrownBanner::BrownBanner(8).ID: return 7561;
+ case BrownBanner::BrownBanner(9).ID: return 7562;
+ case BrownBanner::BrownBanner(10).ID: return 7563;
+ case BrownBanner::BrownBanner(11).ID: return 7564;
+ case BrownBanner::BrownBanner(12).ID: return 7565;
+ case BrownBanner::BrownBanner(13).ID: return 7566;
+ case BrownBanner::BrownBanner(14).ID: return 7567;
+ case BrownBanner::BrownBanner(15).ID: return 7568;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Head).ID: return 1240;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Foot).ID: return 1241;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Head).ID: return 1242;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Foot).ID: return 1243;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Head).ID: return 1244;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Foot).ID: return 1245;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Head).ID: return 1246;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Foot).ID: return 1247;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Head).ID: return 1248;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Foot).ID: return 1249;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Head).ID: return 1250;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Foot).ID: return 1251;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Head).ID: return 1252;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Foot).ID: return 1253;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Head).ID: return 1254;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Foot).ID: return 1255;
+ case BrownCarpet::BrownCarpet().ID: return 7342;
+ case BrownConcrete::BrownConcrete().ID: return 8914;
+ case BrownConcretePowder::BrownConcretePowder().ID: return 8930;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8886;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8887;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8888;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8889;
+ case BrownMushroom::BrownMushroom().ID: return 1424;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, true).ID: return 4491;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, false).ID: return 4492;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, true).ID: return 4493;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, false).ID: return 4494;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, true).ID: return 4495;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, false).ID: return 4496;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, true).ID: return 4497;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, false).ID: return 4498;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, true).ID: return 4499;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, false).ID: return 4500;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, true).ID: return 4501;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, false).ID: return 4502;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, true).ID: return 4503;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, false).ID: return 4504;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, true).ID: return 4505;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, false).ID: return 4506;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, true).ID: return 4507;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, false).ID: return 4508;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, true).ID: return 4509;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, false).ID: return 4510;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, true).ID: return 4511;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, false).ID: return 4512;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, true).ID: return 4513;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, false).ID: return 4514;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, true).ID: return 4515;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, false).ID: return 4516;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, true).ID: return 4517;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, false).ID: return 4518;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, true).ID: return 4519;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, false).ID: return 4520;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, true).ID: return 4521;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, false).ID: return 4522;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, true).ID: return 4523;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, false).ID: return 4524;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, true).ID: return 4525;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, false).ID: return 4526;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, true).ID: return 4527;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, false).ID: return 4528;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, true).ID: return 4529;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, false).ID: return 4530;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, true).ID: return 4531;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, false).ID: return 4532;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, true).ID: return 4533;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, false).ID: return 4534;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, true).ID: return 4535;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, false).ID: return 4536;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, true).ID: return 4537;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, false).ID: return 4538;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, true).ID: return 4539;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, false).ID: return 4540;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, true).ID: return 4541;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, false).ID: return 4542;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, true).ID: return 4543;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, false).ID: return 4544;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, true).ID: return 4545;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, false).ID: return 4546;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, true).ID: return 4547;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, false).ID: return 4548;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, true).ID: return 4549;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, false).ID: return 4550;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, true).ID: return 4551;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, false).ID: return 4552;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, true).ID: return 4553;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false).ID: return 4554;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8814;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8815;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8816;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8817;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8818;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8819;
+ case BrownStainedGlass::BrownStainedGlass().ID: return 4093;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, true).ID: return 6713;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, false).ID: return 6714;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, true).ID: return 6717;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, false).ID: return 6718;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, true).ID: return 6721;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, false).ID: return 6722;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, true).ID: return 6725;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, false).ID: return 6726;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, true).ID: return 6729;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, false).ID: return 6730;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, true).ID: return 6733;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, false).ID: return 6734;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, true).ID: return 6737;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, false).ID: return 6738;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, true).ID: return 6741;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, false).ID: return 6742;
+ case BrownTerracotta::BrownTerracotta().ID: return 6323;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7665;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7666;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7667;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7668;
+ case BrownWool::BrownWool().ID: return 1395;
+ case BubbleColumn::BubbleColumn(true).ID: return 9131;
+ case BubbleColumn::BubbleColumn(false).ID: return 9132;
+ case BubbleCoral::BubbleCoral().ID: return 8999;
+ case BubbleCoralBlock::BubbleCoralBlock().ID: return 8981;
+ case BubbleCoralFan::BubbleCoralFan().ID: return 9019;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9081;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9083;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9085;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9087;
+ case Cactus::Cactus(0).ID: return 3929;
+ case Cactus::Cactus(1).ID: return 3930;
+ case Cactus::Cactus(2).ID: return 3931;
+ case Cactus::Cactus(3).ID: return 3932;
+ case Cactus::Cactus(4).ID: return 3933;
+ case Cactus::Cactus(5).ID: return 3934;
+ case Cactus::Cactus(6).ID: return 3935;
+ case Cactus::Cactus(7).ID: return 3936;
+ case Cactus::Cactus(8).ID: return 3937;
+ case Cactus::Cactus(9).ID: return 3938;
+ case Cactus::Cactus(10).ID: return 3939;
+ case Cactus::Cactus(11).ID: return 3940;
+ case Cactus::Cactus(12).ID: return 3941;
+ case Cactus::Cactus(13).ID: return 3942;
+ case Cactus::Cactus(14).ID: return 3943;
+ case Cactus::Cactus(15).ID: return 3944;
+ case Cake::Cake(0).ID: return 4010;
+ case Cake::Cake(1).ID: return 4011;
+ case Cake::Cake(2).ID: return 4012;
+ case Cake::Cake(3).ID: return 4013;
+ case Cake::Cake(4).ID: return 4014;
+ case Cake::Cake(5).ID: return 4015;
+ case Cake::Cake(6).ID: return 4016;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 11233;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 11235;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 11237;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 11239;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 11241;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 11243;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 11245;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 11247;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, true).ID: return 11249;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, false).ID: return 11251;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, true).ID: return 11253;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, false).ID: return 11255;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, true).ID: return 11257;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, false).ID: return 11259;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, true).ID: return 11261;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, false).ID: return 11263;
+ case Carrots::Carrots(0).ID: return 5794;
+ case Carrots::Carrots(1).ID: return 5795;
+ case Carrots::Carrots(2).ID: return 5796;
+ case Carrots::Carrots(3).ID: return 5797;
+ case Carrots::Carrots(4).ID: return 5798;
+ case Carrots::Carrots(5).ID: return 5799;
+ case Carrots::Carrots(6).ID: return 5800;
+ case Carrots::Carrots(7).ID: return 5801;
+ case CartographyTable::CartographyTable().ID: return 11163;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZM).ID: return 4002;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZP).ID: return 4003;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XM).ID: return 4004;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XP).ID: return 4005;
+ case Cauldron::Cauldron(0).ID: return 5125;
+ case Cauldron::Cauldron(1).ID: return 5126;
+ case Cauldron::Cauldron(2).ID: return 5127;
+ case Cauldron::Cauldron(3).ID: return 5128;
+ case CaveAir::CaveAir().ID: return 9130;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 8701;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 8702;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 8703;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 8704;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 8705;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 8706;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 8707;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 8708;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 8709;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 8710;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 8711;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 8712;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Single).ID: return 2033;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Left).ID: return 2035;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Right).ID: return 2037;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Single).ID: return 2039;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Left).ID: return 2041;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Right).ID: return 2043;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Single).ID: return 2045;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Left).ID: return 2047;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Right).ID: return 2049;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Single).ID: return 2051;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Left).ID: return 2053;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Right).ID: return 2055;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZM).ID: return 6078;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZP).ID: return 6079;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XM).ID: return 6080;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XP).ID: return 6081;
+ case ChiseledQuartzBlock::ChiseledQuartzBlock().ID: return 6203;
+ case ChiseledRedSandstone::ChiseledRedSandstone().ID: return 7682;
+ case ChiseledSandstone::ChiseledSandstone().ID: return 246;
+ case ChiseledStoneBricks::ChiseledStoneBricks().ID: return 4484;
+ case ChorusFlower::ChorusFlower(0).ID: return 8592;
+ case ChorusFlower::ChorusFlower(1).ID: return 8593;
+ case ChorusFlower::ChorusFlower(2).ID: return 8594;
+ case ChorusFlower::ChorusFlower(3).ID: return 8595;
+ case ChorusFlower::ChorusFlower(4).ID: return 8596;
+ case ChorusFlower::ChorusFlower(5).ID: return 8597;
+ case ChorusPlant::ChorusPlant(true, true, true, true, true, true).ID: return 8528;
+ case ChorusPlant::ChorusPlant(true, true, true, true, true, false).ID: return 8529;
+ case ChorusPlant::ChorusPlant(true, true, true, true, false, true).ID: return 8530;
+ case ChorusPlant::ChorusPlant(true, true, true, true, false, false).ID: return 8531;
+ case ChorusPlant::ChorusPlant(true, true, true, false, true, true).ID: return 8532;
+ case ChorusPlant::ChorusPlant(true, true, true, false, true, false).ID: return 8533;
+ case ChorusPlant::ChorusPlant(true, true, true, false, false, true).ID: return 8534;
+ case ChorusPlant::ChorusPlant(true, true, true, false, false, false).ID: return 8535;
+ case ChorusPlant::ChorusPlant(true, true, false, true, true, true).ID: return 8536;
+ case ChorusPlant::ChorusPlant(true, true, false, true, true, false).ID: return 8537;
+ case ChorusPlant::ChorusPlant(true, true, false, true, false, true).ID: return 8538;
+ case ChorusPlant::ChorusPlant(true, true, false, true, false, false).ID: return 8539;
+ case ChorusPlant::ChorusPlant(true, true, false, false, true, true).ID: return 8540;
+ case ChorusPlant::ChorusPlant(true, true, false, false, true, false).ID: return 8541;
+ case ChorusPlant::ChorusPlant(true, true, false, false, false, true).ID: return 8542;
+ case ChorusPlant::ChorusPlant(true, true, false, false, false, false).ID: return 8543;
+ case ChorusPlant::ChorusPlant(true, false, true, true, true, true).ID: return 8544;
+ case ChorusPlant::ChorusPlant(true, false, true, true, true, false).ID: return 8545;
+ case ChorusPlant::ChorusPlant(true, false, true, true, false, true).ID: return 8546;
+ case ChorusPlant::ChorusPlant(true, false, true, true, false, false).ID: return 8547;
+ case ChorusPlant::ChorusPlant(true, false, true, false, true, true).ID: return 8548;
+ case ChorusPlant::ChorusPlant(true, false, true, false, true, false).ID: return 8549;
+ case ChorusPlant::ChorusPlant(true, false, true, false, false, true).ID: return 8550;
+ case ChorusPlant::ChorusPlant(true, false, true, false, false, false).ID: return 8551;
+ case ChorusPlant::ChorusPlant(true, false, false, true, true, true).ID: return 8552;
+ case ChorusPlant::ChorusPlant(true, false, false, true, true, false).ID: return 8553;
+ case ChorusPlant::ChorusPlant(true, false, false, true, false, true).ID: return 8554;
+ case ChorusPlant::ChorusPlant(true, false, false, true, false, false).ID: return 8555;
+ case ChorusPlant::ChorusPlant(true, false, false, false, true, true).ID: return 8556;
+ case ChorusPlant::ChorusPlant(true, false, false, false, true, false).ID: return 8557;
+ case ChorusPlant::ChorusPlant(true, false, false, false, false, true).ID: return 8558;
+ case ChorusPlant::ChorusPlant(true, false, false, false, false, false).ID: return 8559;
+ case ChorusPlant::ChorusPlant(false, true, true, true, true, true).ID: return 8560;
+ case ChorusPlant::ChorusPlant(false, true, true, true, true, false).ID: return 8561;
+ case ChorusPlant::ChorusPlant(false, true, true, true, false, true).ID: return 8562;
+ case ChorusPlant::ChorusPlant(false, true, true, true, false, false).ID: return 8563;
+ case ChorusPlant::ChorusPlant(false, true, true, false, true, true).ID: return 8564;
+ case ChorusPlant::ChorusPlant(false, true, true, false, true, false).ID: return 8565;
+ case ChorusPlant::ChorusPlant(false, true, true, false, false, true).ID: return 8566;
+ case ChorusPlant::ChorusPlant(false, true, true, false, false, false).ID: return 8567;
+ case ChorusPlant::ChorusPlant(false, true, false, true, true, true).ID: return 8568;
+ case ChorusPlant::ChorusPlant(false, true, false, true, true, false).ID: return 8569;
+ case ChorusPlant::ChorusPlant(false, true, false, true, false, true).ID: return 8570;
+ case ChorusPlant::ChorusPlant(false, true, false, true, false, false).ID: return 8571;
+ case ChorusPlant::ChorusPlant(false, true, false, false, true, true).ID: return 8572;
+ case ChorusPlant::ChorusPlant(false, true, false, false, true, false).ID: return 8573;
+ case ChorusPlant::ChorusPlant(false, true, false, false, false, true).ID: return 8574;
+ case ChorusPlant::ChorusPlant(false, true, false, false, false, false).ID: return 8575;
+ case ChorusPlant::ChorusPlant(false, false, true, true, true, true).ID: return 8576;
+ case ChorusPlant::ChorusPlant(false, false, true, true, true, false).ID: return 8577;
+ case ChorusPlant::ChorusPlant(false, false, true, true, false, true).ID: return 8578;
+ case ChorusPlant::ChorusPlant(false, false, true, true, false, false).ID: return 8579;
+ case ChorusPlant::ChorusPlant(false, false, true, false, true, true).ID: return 8580;
+ case ChorusPlant::ChorusPlant(false, false, true, false, true, false).ID: return 8581;
+ case ChorusPlant::ChorusPlant(false, false, true, false, false, true).ID: return 8582;
+ case ChorusPlant::ChorusPlant(false, false, true, false, false, false).ID: return 8583;
+ case ChorusPlant::ChorusPlant(false, false, false, true, true, true).ID: return 8584;
+ case ChorusPlant::ChorusPlant(false, false, false, true, true, false).ID: return 8585;
+ case ChorusPlant::ChorusPlant(false, false, false, true, false, true).ID: return 8586;
+ case ChorusPlant::ChorusPlant(false, false, false, true, false, false).ID: return 8587;
+ case ChorusPlant::ChorusPlant(false, false, false, false, true, true).ID: return 8588;
+ case ChorusPlant::ChorusPlant(false, false, false, false, true, false).ID: return 8589;
+ case ChorusPlant::ChorusPlant(false, false, false, false, false, true).ID: return 8590;
+ case ChorusPlant::ChorusPlant(false, false, false, false, false, false).ID: return 8591;
+ case Clay::Clay().ID: return 3945;
+ case CoalBlock::CoalBlock().ID: return 7347;
+ case CoalOre::CoalOre().ID: return 71;
+ case CoarseDirt::CoarseDirt().ID: return 11;
+ case Cobblestone::Cobblestone().ID: return 14;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Top).ID: return 7831;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Bottom).ID: return 7833;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double).ID: return 7835;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3654;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3656;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3658;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3660;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3662;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3664;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3666;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3668;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3670;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3672;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3674;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3676;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3678;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3680;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3682;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3684;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3686;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3688;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3690;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3692;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3694;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3696;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3698;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3700;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3702;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3704;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3706;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3708;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3710;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3712;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3714;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3716;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3718;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3720;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3722;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3724;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3726;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3728;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3730;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3732;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5643;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5644;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5647;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5648;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5651;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5652;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5655;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5656;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5659;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5660;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5663;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5664;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5667;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5668;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5671;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5672;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5675;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5676;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5679;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5680;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5683;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5684;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5687;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5688;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5691;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5692;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5695;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5696;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5699;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5700;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5703;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5704;
+ case Cobweb::Cobweb().ID: return 1340;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZM).ID: return 5142;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZP).ID: return 5143;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XM).ID: return 5144;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XP).ID: return 5145;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZM).ID: return 5146;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZP).ID: return 5147;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XM).ID: return 5148;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XP).ID: return 5149;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZM).ID: return 5150;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZP).ID: return 5151;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XM).ID: return 5152;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XP).ID: return 5153;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 5628;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 5629;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 5630;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 5631;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 5632;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 5633;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 5634;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 5635;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 5636;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 5637;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 5638;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 5639;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true).ID: return 6142;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false).ID: return 6143;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true).ID: return 6144;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false).ID: return 6145;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true).ID: return 6146;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false).ID: return 6147;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true).ID: return 6148;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false).ID: return 6149;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true).ID: return 6150;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false).ID: return 6151;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true).ID: return 6152;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false).ID: return 6153;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true).ID: return 6154;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false).ID: return 6155;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true).ID: return 6156;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false).ID: return 6157;
+ case Composter::Composter(0).ID: return 11278;
+ case Composter::Composter(1).ID: return 11279;
+ case Composter::Composter(2).ID: return 11280;
+ case Composter::Composter(3).ID: return 11281;
+ case Composter::Composter(4).ID: return 11282;
+ case Composter::Composter(5).ID: return 11283;
+ case Composter::Composter(6).ID: return 11284;
+ case Composter::Composter(7).ID: return 11285;
+ case Composter::Composter(8).ID: return 11286;
+ case Conduit::Conduit().ID: return 9114;
+ case Cornflower::Cornflower().ID: return 1421;
+ case CrackedStoneBricks::CrackedStoneBricks().ID: return 4483;
+ case CraftingTable::CraftingTable().ID: return 3354;
+ case CreeperHead::CreeperHead(0).ID: return 6034;
+ case CreeperHead::CreeperHead(1).ID: return 6035;
+ case CreeperHead::CreeperHead(2).ID: return 6036;
+ case CreeperHead::CreeperHead(3).ID: return 6037;
+ case CreeperHead::CreeperHead(4).ID: return 6038;
+ case CreeperHead::CreeperHead(5).ID: return 6039;
+ case CreeperHead::CreeperHead(6).ID: return 6040;
+ case CreeperHead::CreeperHead(7).ID: return 6041;
+ case CreeperHead::CreeperHead(8).ID: return 6042;
+ case CreeperHead::CreeperHead(9).ID: return 6043;
+ case CreeperHead::CreeperHead(10).ID: return 6044;
+ case CreeperHead::CreeperHead(11).ID: return 6045;
+ case CreeperHead::CreeperHead(12).ID: return 6046;
+ case CreeperHead::CreeperHead(13).ID: return 6047;
+ case CreeperHead::CreeperHead(14).ID: return 6048;
+ case CreeperHead::CreeperHead(15).ID: return 6049;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 6050;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 6051;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 6052;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 6053;
+ case CutRedSandstone::CutRedSandstone().ID: return 7683;
+ case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Top).ID: return 7867;
+ case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Bottom).ID: return 7869;
+ case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Double).ID: return 7871;
+ case CutSandstone::CutSandstone().ID: return 247;
+ case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Top).ID: return 7819;
+ case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Bottom).ID: return 7821;
+ case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Double).ID: return 7823;
+ case CyanBanner::CyanBanner(0).ID: return 7505;
+ case CyanBanner::CyanBanner(1).ID: return 7506;
+ case CyanBanner::CyanBanner(2).ID: return 7507;
+ case CyanBanner::CyanBanner(3).ID: return 7508;
+ case CyanBanner::CyanBanner(4).ID: return 7509;
+ case CyanBanner::CyanBanner(5).ID: return 7510;
+ case CyanBanner::CyanBanner(6).ID: return 7511;
+ case CyanBanner::CyanBanner(7).ID: return 7512;
+ case CyanBanner::CyanBanner(8).ID: return 7513;
+ case CyanBanner::CyanBanner(9).ID: return 7514;
+ case CyanBanner::CyanBanner(10).ID: return 7515;
+ case CyanBanner::CyanBanner(11).ID: return 7516;
+ case CyanBanner::CyanBanner(12).ID: return 7517;
+ case CyanBanner::CyanBanner(13).ID: return 7518;
+ case CyanBanner::CyanBanner(14).ID: return 7519;
+ case CyanBanner::CyanBanner(15).ID: return 7520;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Head).ID: return 1192;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Foot).ID: return 1193;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Head).ID: return 1194;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Foot).ID: return 1195;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Head).ID: return 1196;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Foot).ID: return 1197;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Head).ID: return 1198;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Foot).ID: return 1199;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Head).ID: return 1200;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Foot).ID: return 1201;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Head).ID: return 1202;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Foot).ID: return 1203;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Head).ID: return 1204;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Foot).ID: return 1205;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Head).ID: return 1206;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Foot).ID: return 1207;
+ case CyanCarpet::CyanCarpet().ID: return 7339;
+ case CyanConcrete::CyanConcrete().ID: return 8911;
+ case CyanConcretePowder::CyanConcretePowder().ID: return 8927;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8874;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8875;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8876;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8877;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8796;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8797;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8798;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8799;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8800;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8801;
+ case CyanStainedGlass::CyanStainedGlass().ID: return 4090;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, true).ID: return 6617;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, false).ID: return 6618;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, true).ID: return 6621;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, false).ID: return 6622;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, true).ID: return 6625;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, false).ID: return 6626;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, true).ID: return 6629;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, false).ID: return 6630;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, true).ID: return 6633;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, false).ID: return 6634;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, true).ID: return 6637;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, false).ID: return 6638;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, true).ID: return 6641;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, false).ID: return 6642;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, true).ID: return 6645;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, false).ID: return 6646;
+ case CyanTerracotta::CyanTerracotta().ID: return 6320;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7653;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7654;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7655;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7656;
+ case CyanWool::CyanWool().ID: return 1392;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZM).ID: return 6082;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZP).ID: return 6083;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XM).ID: return 6084;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XP).ID: return 6085;
+ case Dandelion::Dandelion().ID: return 1411;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5930;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5931;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5932;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5933;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5934;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5935;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5936;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5937;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5938;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5939;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5940;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5941;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5942;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5943;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5944;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5945;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5946;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5947;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5948;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5949;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5950;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5951;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5952;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5953;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 8458;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 8459;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 8460;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 8461;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 8462;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 8463;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 8464;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 8465;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 8466;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 8467;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 8468;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 8469;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 8470;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 8471;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 8472;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 8473;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 8474;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 8475;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 8476;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 8477;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 8478;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 8479;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 8480;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 8481;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 8482;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 8483;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 8484;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 8485;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 8486;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 8487;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 8488;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 8489;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 8490;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 8491;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 8492;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 8493;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 8494;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 8495;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 8496;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 8497;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 8498;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 8499;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 8500;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 8501;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 8502;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 8503;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 8504;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 8505;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 8506;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 8507;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 8508;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 8509;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 8510;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 8511;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 8512;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 8513;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 8514;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 8515;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 8516;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 8517;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 8518;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 8519;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 8520;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 8521;
+ case DarkOakFence::DarkOakFence(true, true, true, true).ID: return 8172;
+ case DarkOakFence::DarkOakFence(true, true, true, false).ID: return 8173;
+ case DarkOakFence::DarkOakFence(true, true, false, true).ID: return 8176;
+ case DarkOakFence::DarkOakFence(true, true, false, false).ID: return 8177;
+ case DarkOakFence::DarkOakFence(true, false, true, true).ID: return 8180;
+ case DarkOakFence::DarkOakFence(true, false, true, false).ID: return 8181;
+ case DarkOakFence::DarkOakFence(true, false, false, true).ID: return 8184;
+ case DarkOakFence::DarkOakFence(true, false, false, false).ID: return 8185;
+ case DarkOakFence::DarkOakFence(false, true, true, true).ID: return 8188;
+ case DarkOakFence::DarkOakFence(false, true, true, false).ID: return 8189;
+ case DarkOakFence::DarkOakFence(false, true, false, true).ID: return 8192;
+ case DarkOakFence::DarkOakFence(false, true, false, false).ID: return 8193;
+ case DarkOakFence::DarkOakFence(false, false, true, true).ID: return 8196;
+ case DarkOakFence::DarkOakFence(false, false, true, false).ID: return 8197;
+ case DarkOakFence::DarkOakFence(false, false, false, true).ID: return 8200;
+ case DarkOakFence::DarkOakFence(false, false, false, false).ID: return 8201;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 8010;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 8011;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 8012;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 8013;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 8014;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 8015;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 8016;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 8017;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 8018;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 8019;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 8020;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 8021;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 8022;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 8023;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 8024;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 8025;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 8026;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 8027;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 8028;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 8029;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 8030;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 8031;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 8032;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 8033;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 8034;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 8035;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 8036;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 8037;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 8038;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 8039;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 8040;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 8041;
+ case DarkOakLeaves::DarkOakLeaves(1, true).ID: return 214;
+ case DarkOakLeaves::DarkOakLeaves(1, false).ID: return 215;
+ case DarkOakLeaves::DarkOakLeaves(2, true).ID: return 216;
+ case DarkOakLeaves::DarkOakLeaves(2, false).ID: return 217;
+ case DarkOakLeaves::DarkOakLeaves(3, true).ID: return 218;
+ case DarkOakLeaves::DarkOakLeaves(3, false).ID: return 219;
+ case DarkOakLeaves::DarkOakLeaves(4, true).ID: return 220;
+ case DarkOakLeaves::DarkOakLeaves(4, false).ID: return 221;
+ case DarkOakLeaves::DarkOakLeaves(5, true).ID: return 222;
+ case DarkOakLeaves::DarkOakLeaves(5, false).ID: return 223;
+ case DarkOakLeaves::DarkOakLeaves(6, true).ID: return 224;
+ case DarkOakLeaves::DarkOakLeaves(6, false).ID: return 225;
+ case DarkOakLeaves::DarkOakLeaves(7, true).ID: return 226;
+ case DarkOakLeaves::DarkOakLeaves(7, false).ID: return 227;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::X).ID: return 87;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Y).ID: return 88;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Z).ID: return 89;
+ case DarkOakPlanks::DarkOakPlanks().ID: return 20;
+ case DarkOakPressurePlate::DarkOakPressurePlate(true).ID: return 3881;
+ case DarkOakPressurePlate::DarkOakPressurePlate(false).ID: return 3882;
+ case DarkOakSapling::DarkOakSapling(0).ID: return 31;
+ case DarkOakSapling::DarkOakSapling(1).ID: return 32;
+ case DarkOakSign::DarkOakSign(0).ID: return 3540;
+ case DarkOakSign::DarkOakSign(1).ID: return 3542;
+ case DarkOakSign::DarkOakSign(2).ID: return 3544;
+ case DarkOakSign::DarkOakSign(3).ID: return 3546;
+ case DarkOakSign::DarkOakSign(4).ID: return 3548;
+ case DarkOakSign::DarkOakSign(5).ID: return 3550;
+ case DarkOakSign::DarkOakSign(6).ID: return 3552;
+ case DarkOakSign::DarkOakSign(7).ID: return 3554;
+ case DarkOakSign::DarkOakSign(8).ID: return 3556;
+ case DarkOakSign::DarkOakSign(9).ID: return 3558;
+ case DarkOakSign::DarkOakSign(10).ID: return 3560;
+ case DarkOakSign::DarkOakSign(11).ID: return 3562;
+ case DarkOakSign::DarkOakSign(12).ID: return 3564;
+ case DarkOakSign::DarkOakSign(13).ID: return 3566;
+ case DarkOakSign::DarkOakSign(14).ID: return 3568;
+ case DarkOakSign::DarkOakSign(15).ID: return 3570;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Top).ID: return 7795;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Bottom).ID: return 7797;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Double).ID: return 7799;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6920;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6922;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6924;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6926;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6928;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6930;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6932;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6934;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6936;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6938;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6940;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6942;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6944;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6946;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6948;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6950;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6952;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6954;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6956;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6958;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6960;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6962;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6964;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6966;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6968;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6970;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6972;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6974;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6976;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6978;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 6980;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 6982;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 6984;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 6986;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 6988;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 6990;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 6992;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 6994;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 6996;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 6998;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, true).ID: return 4418;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, false).ID: return 4420;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, true).ID: return 4422;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, false).ID: return 4424;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 4426;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 4428;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 4430;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 4432;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, true).ID: return 4434;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, false).ID: return 4436;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, true).ID: return 4438;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, false).ID: return 4440;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 4442;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 4444;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 4446;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 4448;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, true).ID: return 4450;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, false).ID: return 4452;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, true).ID: return 4454;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, false).ID: return 4456;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 4458;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 4460;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 4462;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 4464;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, true).ID: return 4466;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, false).ID: return 4468;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, true).ID: return 4470;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, false).ID: return 4472;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 4474;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 4476;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 4478;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 4480;
+ case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3774;
+ case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3776;
+ case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3778;
+ case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3780;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::X).ID: return 123;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Y).ID: return 124;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Z).ID: return 125;
+ case DarkPrismarine::DarkPrismarine().ID: return 7067;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Top).ID: return 7321;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Bottom).ID: return 7323;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Double).ID: return 7325;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 7229;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7231;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 7233;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7235;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 7237;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 7239;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7241;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 7243;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7245;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 7247;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 7249;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7251;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 7253;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7255;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 7257;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 7259;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7261;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 7263;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7265;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 7267;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 7269;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7271;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 7273;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7275;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 7277;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 7279;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7281;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 7283;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7285;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 7287;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 7289;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7291;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 7293;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7295;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 7297;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 7299;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7301;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 7303;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7305;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 7307;
+ case DaylightDetector::DaylightDetector(true, 0).ID: return 6158;
+ case DaylightDetector::DaylightDetector(true, 1).ID: return 6159;
+ case DaylightDetector::DaylightDetector(true, 2).ID: return 6160;
+ case DaylightDetector::DaylightDetector(true, 3).ID: return 6161;
+ case DaylightDetector::DaylightDetector(true, 4).ID: return 6162;
+ case DaylightDetector::DaylightDetector(true, 5).ID: return 6163;
+ case DaylightDetector::DaylightDetector(true, 6).ID: return 6164;
+ case DaylightDetector::DaylightDetector(true, 7).ID: return 6165;
+ case DaylightDetector::DaylightDetector(true, 8).ID: return 6166;
+ case DaylightDetector::DaylightDetector(true, 9).ID: return 6167;
+ case DaylightDetector::DaylightDetector(true, 10).ID: return 6168;
+ case DaylightDetector::DaylightDetector(true, 11).ID: return 6169;
+ case DaylightDetector::DaylightDetector(true, 12).ID: return 6170;
+ case DaylightDetector::DaylightDetector(true, 13).ID: return 6171;
+ case DaylightDetector::DaylightDetector(true, 14).ID: return 6172;
+ case DaylightDetector::DaylightDetector(true, 15).ID: return 6173;
+ case DaylightDetector::DaylightDetector(false, 0).ID: return 6174;
+ case DaylightDetector::DaylightDetector(false, 1).ID: return 6175;
+ case DaylightDetector::DaylightDetector(false, 2).ID: return 6176;
+ case DaylightDetector::DaylightDetector(false, 3).ID: return 6177;
+ case DaylightDetector::DaylightDetector(false, 4).ID: return 6178;
+ case DaylightDetector::DaylightDetector(false, 5).ID: return 6179;
+ case DaylightDetector::DaylightDetector(false, 6).ID: return 6180;
+ case DaylightDetector::DaylightDetector(false, 7).ID: return 6181;
+ case DaylightDetector::DaylightDetector(false, 8).ID: return 6182;
+ case DaylightDetector::DaylightDetector(false, 9).ID: return 6183;
+ case DaylightDetector::DaylightDetector(false, 10).ID: return 6184;
+ case DaylightDetector::DaylightDetector(false, 11).ID: return 6185;
+ case DaylightDetector::DaylightDetector(false, 12).ID: return 6186;
+ case DaylightDetector::DaylightDetector(false, 13).ID: return 6187;
+ case DaylightDetector::DaylightDetector(false, 14).ID: return 6188;
+ case DaylightDetector::DaylightDetector(false, 15).ID: return 6189;
+ case DeadBrainCoral::DeadBrainCoral().ID: return 8987;
+ case DeadBrainCoralBlock::DeadBrainCoralBlock().ID: return 8975;
+ case DeadBrainCoralFan::DeadBrainCoralFan().ID: return 9007;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9033;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9035;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9037;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9039;
+ case DeadBubbleCoral::DeadBubbleCoral().ID: return 8989;
+ case DeadBubbleCoralBlock::DeadBubbleCoralBlock().ID: return 8976;
+ case DeadBubbleCoralFan::DeadBubbleCoralFan().ID: return 9009;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9041;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9043;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9045;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9047;
+ case DeadBush::DeadBush().ID: return 1343;
+ case DeadFireCoral::DeadFireCoral().ID: return 8991;
+ case DeadFireCoralBlock::DeadFireCoralBlock().ID: return 8977;
+ case DeadFireCoralFan::DeadFireCoralFan().ID: return 9011;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9049;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9051;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9053;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9055;
+ case DeadHornCoral::DeadHornCoral().ID: return 8993;
+ case DeadHornCoralBlock::DeadHornCoralBlock().ID: return 8978;
+ case DeadHornCoralFan::DeadHornCoralFan().ID: return 9013;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9057;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9059;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9061;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9063;
+ case DeadTubeCoral::DeadTubeCoral().ID: return 8985;
+ case DeadTubeCoralBlock::DeadTubeCoralBlock().ID: return 8974;
+ case DeadTubeCoralFan::DeadTubeCoralFan().ID: return 9005;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9025;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9027;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9029;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9031;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::NorthSouth).ID: return 1316;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::EastWest).ID: return 1317;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingEast).ID: return 1318;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingWest).ID: return 1319;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingNorth).ID: return 1320;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingSouth).ID: return 1321;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::NorthSouth).ID: return 1322;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::EastWest).ID: return 1323;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingEast).ID: return 1324;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingWest).ID: return 1325;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingNorth).ID: return 1326;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingSouth).ID: return 1327;
+ case DiamondBlock::DiamondBlock().ID: return 3353;
+ case DiamondOre::DiamondOre().ID: return 3352;
+ case Diorite::Diorite().ID: return 4;
+ case DioriteSlab::DioriteSlab(DioriteSlab::Type::Top).ID: return 10326;
+ case DioriteSlab::DioriteSlab(DioriteSlab::Type::Bottom).ID: return 10328;
+ case DioriteSlab::DioriteSlab(DioriteSlab::Type::Double).ID: return 10330;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight).ID: return 10174;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft).ID: return 10176;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight).ID: return 10178;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft).ID: return 10180;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight).ID: return 10182;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight).ID: return 10184;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft).ID: return 10186;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight).ID: return 10188;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft).ID: return 10190;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight).ID: return 10192;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight).ID: return 10194;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft).ID: return 10196;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight).ID: return 10198;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft).ID: return 10200;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight).ID: return 10202;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight).ID: return 10204;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft).ID: return 10206;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight).ID: return 10208;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft).ID: return 10210;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight).ID: return 10212;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight).ID: return 10214;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft).ID: return 10216;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight).ID: return 10218;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft).ID: return 10220;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight).ID: return 10222;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight).ID: return 10224;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft).ID: return 10226;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight).ID: return 10228;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft).ID: return 10230;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight).ID: return 10232;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight).ID: return 10234;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft).ID: return 10236;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight).ID: return 10238;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft).ID: return 10240;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight).ID: return 10242;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight).ID: return 10244;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft).ID: return 10246;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight).ID: return 10248;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft).ID: return 10250;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight).ID: return 10252;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 11037;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 11038;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 11041;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 11042;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 11045;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 11046;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 11049;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 11050;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 11053;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 11054;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 11057;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 11058;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 11061;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 11062;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 11065;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 11066;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 11069;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 11070;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 11073;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 11074;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 11077;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 11078;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 11081;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 11082;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 11085;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 11086;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 11089;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 11090;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 11093;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 11094;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 11097;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 11098;
+ case Dirt::Dirt().ID: return 10;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, true).ID: return 233;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, false).ID: return 234;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, true).ID: return 235;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, false).ID: return 236;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, true).ID: return 237;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, false).ID: return 238;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, true).ID: return 239;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, false).ID: return 240;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, true).ID: return 241;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, false).ID: return 242;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, true).ID: return 243;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, false).ID: return 244;
+ case DragonEgg::DragonEgg().ID: return 5139;
+ case DragonHead::DragonHead(0).ID: return 6054;
+ case DragonHead::DragonHead(1).ID: return 6055;
+ case DragonHead::DragonHead(2).ID: return 6056;
+ case DragonHead::DragonHead(3).ID: return 6057;
+ case DragonHead::DragonHead(4).ID: return 6058;
+ case DragonHead::DragonHead(5).ID: return 6059;
+ case DragonHead::DragonHead(6).ID: return 6060;
+ case DragonHead::DragonHead(7).ID: return 6061;
+ case DragonHead::DragonHead(8).ID: return 6062;
+ case DragonHead::DragonHead(9).ID: return 6063;
+ case DragonHead::DragonHead(10).ID: return 6064;
+ case DragonHead::DragonHead(11).ID: return 6065;
+ case DragonHead::DragonHead(12).ID: return 6066;
+ case DragonHead::DragonHead(13).ID: return 6067;
+ case DragonHead::DragonHead(14).ID: return 6068;
+ case DragonHead::DragonHead(15).ID: return 6069;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 6070;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 6071;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 6072;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 6073;
+ case DriedKelpBlock::DriedKelpBlock().ID: return 8961;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, true).ID: return 6299;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, false).ID: return 6300;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, true).ID: return 6301;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, false).ID: return 6302;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, true).ID: return 6303;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, false).ID: return 6304;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, true).ID: return 6305;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, false).ID: return 6306;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, true).ID: return 6307;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, false).ID: return 6308;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, true).ID: return 6309;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, false).ID: return 6310;
+ case EmeraldBlock::EmeraldBlock().ID: return 5387;
+ case EmeraldOre::EmeraldOre().ID: return 5234;
+ case EnchantingTable::EnchantingTable().ID: return 5116;
+ case EndGateway::EndGateway().ID: return 8688;
+ case EndPortal::EndPortal().ID: return 5129;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZM).ID: return 5130;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZP).ID: return 5131;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XM).ID: return 5132;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XP).ID: return 5133;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZM).ID: return 5134;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZP).ID: return 5135;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XM).ID: return 5136;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XP).ID: return 5137;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZM).ID: return 8522;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_XP).ID: return 8523;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZP).ID: return 8524;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_XM).ID: return 8525;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_YP).ID: return 8526;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_YM).ID: return 8527;
+ case EndStone::EndStone().ID: return 5138;
+ case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Top).ID: return 10284;
+ case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Bottom).ID: return 10286;
+ case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Double).ID: return 10288;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight).ID: return 9534;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9536;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight).ID: return 9538;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9540;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight).ID: return 9542;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight).ID: return 9544;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9546;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight).ID: return 9548;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9550;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight).ID: return 9552;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight).ID: return 9554;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9556;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight).ID: return 9558;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9560;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight).ID: return 9562;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight).ID: return 9564;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9566;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight).ID: return 9568;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9570;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight).ID: return 9572;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight).ID: return 9574;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9576;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight).ID: return 9578;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9580;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight).ID: return 9582;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight).ID: return 9584;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9586;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight).ID: return 9588;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9590;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight).ID: return 9592;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight).ID: return 9594;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9596;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight).ID: return 9598;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9600;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight).ID: return 9602;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight).ID: return 9604;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft).ID: return 9606;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight).ID: return 9608;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft).ID: return 9610;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight).ID: return 9612;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 10973;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 10974;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 10977;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 10978;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 10981;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 10982;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 10985;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 10986;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 10989;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 10990;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 10993;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 10994;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 10997;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 10998;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 11001;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 11002;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 11005;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 11006;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 11009;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 11010;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 11013;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 11014;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 11017;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 11018;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 11021;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 11022;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 11025;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 11026;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 11029;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 11030;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 11033;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 11034;
+ case EndStoneBricks::EndStoneBricks().ID: return 8682;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZM).ID: return 5236;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZP).ID: return 5238;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XM).ID: return 5240;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XP).ID: return 5242;
+ case Farmland::Farmland(0).ID: return 3363;
+ case Farmland::Farmland(1).ID: return 3364;
+ case Farmland::Farmland(2).ID: return 3365;
+ case Farmland::Farmland(3).ID: return 3366;
+ case Farmland::Farmland(4).ID: return 3367;
+ case Farmland::Farmland(5).ID: return 3368;
+ case Farmland::Farmland(6).ID: return 3369;
+ case Farmland::Farmland(7).ID: return 3370;
+ case Fern::Fern().ID: return 1342;
+ case Fire::Fire(0, true, true, true, true, true).ID: return 1439;
+ case Fire::Fire(0, true, true, true, true, false).ID: return 1440;
+ case Fire::Fire(0, true, true, true, false, true).ID: return 1441;
+ case Fire::Fire(0, true, true, true, false, false).ID: return 1442;
+ case Fire::Fire(0, true, true, false, true, true).ID: return 1443;
+ case Fire::Fire(0, true, true, false, true, false).ID: return 1444;
+ case Fire::Fire(0, true, true, false, false, true).ID: return 1445;
+ case Fire::Fire(0, true, true, false, false, false).ID: return 1446;
+ case Fire::Fire(0, true, false, true, true, true).ID: return 1447;
+ case Fire::Fire(0, true, false, true, true, false).ID: return 1448;
+ case Fire::Fire(0, true, false, true, false, true).ID: return 1449;
+ case Fire::Fire(0, true, false, true, false, false).ID: return 1450;
+ case Fire::Fire(0, true, false, false, true, true).ID: return 1451;
+ case Fire::Fire(0, true, false, false, true, false).ID: return 1452;
+ case Fire::Fire(0, true, false, false, false, true).ID: return 1453;
+ case Fire::Fire(0, true, false, false, false, false).ID: return 1454;
+ case Fire::Fire(0, false, true, true, true, true).ID: return 1455;
+ case Fire::Fire(0, false, true, true, true, false).ID: return 1456;
+ case Fire::Fire(0, false, true, true, false, true).ID: return 1457;
+ case Fire::Fire(0, false, true, true, false, false).ID: return 1458;
+ case Fire::Fire(0, false, true, false, true, true).ID: return 1459;
+ case Fire::Fire(0, false, true, false, true, false).ID: return 1460;
+ case Fire::Fire(0, false, true, false, false, true).ID: return 1461;
+ case Fire::Fire(0, false, true, false, false, false).ID: return 1462;
+ case Fire::Fire(0, false, false, true, true, true).ID: return 1463;
+ case Fire::Fire(0, false, false, true, true, false).ID: return 1464;
+ case Fire::Fire(0, false, false, true, false, true).ID: return 1465;
+ case Fire::Fire(0, false, false, true, false, false).ID: return 1466;
+ case Fire::Fire(0, false, false, false, true, true).ID: return 1467;
+ case Fire::Fire(0, false, false, false, true, false).ID: return 1468;
+ case Fire::Fire(0, false, false, false, false, true).ID: return 1469;
+ case Fire::Fire(0, false, false, false, false, false).ID: return 1470;
+ case Fire::Fire(1, true, true, true, true, true).ID: return 1471;
+ case Fire::Fire(1, true, true, true, true, false).ID: return 1472;
+ case Fire::Fire(1, true, true, true, false, true).ID: return 1473;
+ case Fire::Fire(1, true, true, true, false, false).ID: return 1474;
+ case Fire::Fire(1, true, true, false, true, true).ID: return 1475;
+ case Fire::Fire(1, true, true, false, true, false).ID: return 1476;
+ case Fire::Fire(1, true, true, false, false, true).ID: return 1477;
+ case Fire::Fire(1, true, true, false, false, false).ID: return 1478;
+ case Fire::Fire(1, true, false, true, true, true).ID: return 1479;
+ case Fire::Fire(1, true, false, true, true, false).ID: return 1480;
+ case Fire::Fire(1, true, false, true, false, true).ID: return 1481;
+ case Fire::Fire(1, true, false, true, false, false).ID: return 1482;
+ case Fire::Fire(1, true, false, false, true, true).ID: return 1483;
+ case Fire::Fire(1, true, false, false, true, false).ID: return 1484;
+ case Fire::Fire(1, true, false, false, false, true).ID: return 1485;
+ case Fire::Fire(1, true, false, false, false, false).ID: return 1486;
+ case Fire::Fire(1, false, true, true, true, true).ID: return 1487;
+ case Fire::Fire(1, false, true, true, true, false).ID: return 1488;
+ case Fire::Fire(1, false, true, true, false, true).ID: return 1489;
+ case Fire::Fire(1, false, true, true, false, false).ID: return 1490;
+ case Fire::Fire(1, false, true, false, true, true).ID: return 1491;
+ case Fire::Fire(1, false, true, false, true, false).ID: return 1492;
+ case Fire::Fire(1, false, true, false, false, true).ID: return 1493;
+ case Fire::Fire(1, false, true, false, false, false).ID: return 1494;
+ case Fire::Fire(1, false, false, true, true, true).ID: return 1495;
+ case Fire::Fire(1, false, false, true, true, false).ID: return 1496;
+ case Fire::Fire(1, false, false, true, false, true).ID: return 1497;
+ case Fire::Fire(1, false, false, true, false, false).ID: return 1498;
+ case Fire::Fire(1, false, false, false, true, true).ID: return 1499;
+ case Fire::Fire(1, false, false, false, true, false).ID: return 1500;
+ case Fire::Fire(1, false, false, false, false, true).ID: return 1501;
+ case Fire::Fire(1, false, false, false, false, false).ID: return 1502;
+ case Fire::Fire(2, true, true, true, true, true).ID: return 1503;
+ case Fire::Fire(2, true, true, true, true, false).ID: return 1504;
+ case Fire::Fire(2, true, true, true, false, true).ID: return 1505;
+ case Fire::Fire(2, true, true, true, false, false).ID: return 1506;
+ case Fire::Fire(2, true, true, false, true, true).ID: return 1507;
+ case Fire::Fire(2, true, true, false, true, false).ID: return 1508;
+ case Fire::Fire(2, true, true, false, false, true).ID: return 1509;
+ case Fire::Fire(2, true, true, false, false, false).ID: return 1510;
+ case Fire::Fire(2, true, false, true, true, true).ID: return 1511;
+ case Fire::Fire(2, true, false, true, true, false).ID: return 1512;
+ case Fire::Fire(2, true, false, true, false, true).ID: return 1513;
+ case Fire::Fire(2, true, false, true, false, false).ID: return 1514;
+ case Fire::Fire(2, true, false, false, true, true).ID: return 1515;
+ case Fire::Fire(2, true, false, false, true, false).ID: return 1516;
+ case Fire::Fire(2, true, false, false, false, true).ID: return 1517;
+ case Fire::Fire(2, true, false, false, false, false).ID: return 1518;
+ case Fire::Fire(2, false, true, true, true, true).ID: return 1519;
+ case Fire::Fire(2, false, true, true, true, false).ID: return 1520;
+ case Fire::Fire(2, false, true, true, false, true).ID: return 1521;
+ case Fire::Fire(2, false, true, true, false, false).ID: return 1522;
+ case Fire::Fire(2, false, true, false, true, true).ID: return 1523;
+ case Fire::Fire(2, false, true, false, true, false).ID: return 1524;
+ case Fire::Fire(2, false, true, false, false, true).ID: return 1525;
+ case Fire::Fire(2, false, true, false, false, false).ID: return 1526;
+ case Fire::Fire(2, false, false, true, true, true).ID: return 1527;
+ case Fire::Fire(2, false, false, true, true, false).ID: return 1528;
+ case Fire::Fire(2, false, false, true, false, true).ID: return 1529;
+ case Fire::Fire(2, false, false, true, false, false).ID: return 1530;
+ case Fire::Fire(2, false, false, false, true, true).ID: return 1531;
+ case Fire::Fire(2, false, false, false, true, false).ID: return 1532;
+ case Fire::Fire(2, false, false, false, false, true).ID: return 1533;
+ case Fire::Fire(2, false, false, false, false, false).ID: return 1534;
+ case Fire::Fire(3, true, true, true, true, true).ID: return 1535;
+ case Fire::Fire(3, true, true, true, true, false).ID: return 1536;
+ case Fire::Fire(3, true, true, true, false, true).ID: return 1537;
+ case Fire::Fire(3, true, true, true, false, false).ID: return 1538;
+ case Fire::Fire(3, true, true, false, true, true).ID: return 1539;
+ case Fire::Fire(3, true, true, false, true, false).ID: return 1540;
+ case Fire::Fire(3, true, true, false, false, true).ID: return 1541;
+ case Fire::Fire(3, true, true, false, false, false).ID: return 1542;
+ case Fire::Fire(3, true, false, true, true, true).ID: return 1543;
+ case Fire::Fire(3, true, false, true, true, false).ID: return 1544;
+ case Fire::Fire(3, true, false, true, false, true).ID: return 1545;
+ case Fire::Fire(3, true, false, true, false, false).ID: return 1546;
+ case Fire::Fire(3, true, false, false, true, true).ID: return 1547;
+ case Fire::Fire(3, true, false, false, true, false).ID: return 1548;
+ case Fire::Fire(3, true, false, false, false, true).ID: return 1549;
+ case Fire::Fire(3, true, false, false, false, false).ID: return 1550;
+ case Fire::Fire(3, false, true, true, true, true).ID: return 1551;
+ case Fire::Fire(3, false, true, true, true, false).ID: return 1552;
+ case Fire::Fire(3, false, true, true, false, true).ID: return 1553;
+ case Fire::Fire(3, false, true, true, false, false).ID: return 1554;
+ case Fire::Fire(3, false, true, false, true, true).ID: return 1555;
+ case Fire::Fire(3, false, true, false, true, false).ID: return 1556;
+ case Fire::Fire(3, false, true, false, false, true).ID: return 1557;
+ case Fire::Fire(3, false, true, false, false, false).ID: return 1558;
+ case Fire::Fire(3, false, false, true, true, true).ID: return 1559;
+ case Fire::Fire(3, false, false, true, true, false).ID: return 1560;
+ case Fire::Fire(3, false, false, true, false, true).ID: return 1561;
+ case Fire::Fire(3, false, false, true, false, false).ID: return 1562;
+ case Fire::Fire(3, false, false, false, true, true).ID: return 1563;
+ case Fire::Fire(3, false, false, false, true, false).ID: return 1564;
+ case Fire::Fire(3, false, false, false, false, true).ID: return 1565;
+ case Fire::Fire(3, false, false, false, false, false).ID: return 1566;
+ case Fire::Fire(4, true, true, true, true, true).ID: return 1567;
+ case Fire::Fire(4, true, true, true, true, false).ID: return 1568;
+ case Fire::Fire(4, true, true, true, false, true).ID: return 1569;
+ case Fire::Fire(4, true, true, true, false, false).ID: return 1570;
+ case Fire::Fire(4, true, true, false, true, true).ID: return 1571;
+ case Fire::Fire(4, true, true, false, true, false).ID: return 1572;
+ case Fire::Fire(4, true, true, false, false, true).ID: return 1573;
+ case Fire::Fire(4, true, true, false, false, false).ID: return 1574;
+ case Fire::Fire(4, true, false, true, true, true).ID: return 1575;
+ case Fire::Fire(4, true, false, true, true, false).ID: return 1576;
+ case Fire::Fire(4, true, false, true, false, true).ID: return 1577;
+ case Fire::Fire(4, true, false, true, false, false).ID: return 1578;
+ case Fire::Fire(4, true, false, false, true, true).ID: return 1579;
+ case Fire::Fire(4, true, false, false, true, false).ID: return 1580;
+ case Fire::Fire(4, true, false, false, false, true).ID: return 1581;
+ case Fire::Fire(4, true, false, false, false, false).ID: return 1582;
+ case Fire::Fire(4, false, true, true, true, true).ID: return 1583;
+ case Fire::Fire(4, false, true, true, true, false).ID: return 1584;
+ case Fire::Fire(4, false, true, true, false, true).ID: return 1585;
+ case Fire::Fire(4, false, true, true, false, false).ID: return 1586;
+ case Fire::Fire(4, false, true, false, true, true).ID: return 1587;
+ case Fire::Fire(4, false, true, false, true, false).ID: return 1588;
+ case Fire::Fire(4, false, true, false, false, true).ID: return 1589;
+ case Fire::Fire(4, false, true, false, false, false).ID: return 1590;
+ case Fire::Fire(4, false, false, true, true, true).ID: return 1591;
+ case Fire::Fire(4, false, false, true, true, false).ID: return 1592;
+ case Fire::Fire(4, false, false, true, false, true).ID: return 1593;
+ case Fire::Fire(4, false, false, true, false, false).ID: return 1594;
+ case Fire::Fire(4, false, false, false, true, true).ID: return 1595;
+ case Fire::Fire(4, false, false, false, true, false).ID: return 1596;
+ case Fire::Fire(4, false, false, false, false, true).ID: return 1597;
+ case Fire::Fire(4, false, false, false, false, false).ID: return 1598;
+ case Fire::Fire(5, true, true, true, true, true).ID: return 1599;
+ case Fire::Fire(5, true, true, true, true, false).ID: return 1600;
+ case Fire::Fire(5, true, true, true, false, true).ID: return 1601;
+ case Fire::Fire(5, true, true, true, false, false).ID: return 1602;
+ case Fire::Fire(5, true, true, false, true, true).ID: return 1603;
+ case Fire::Fire(5, true, true, false, true, false).ID: return 1604;
+ case Fire::Fire(5, true, true, false, false, true).ID: return 1605;
+ case Fire::Fire(5, true, true, false, false, false).ID: return 1606;
+ case Fire::Fire(5, true, false, true, true, true).ID: return 1607;
+ case Fire::Fire(5, true, false, true, true, false).ID: return 1608;
+ case Fire::Fire(5, true, false, true, false, true).ID: return 1609;
+ case Fire::Fire(5, true, false, true, false, false).ID: return 1610;
+ case Fire::Fire(5, true, false, false, true, true).ID: return 1611;
+ case Fire::Fire(5, true, false, false, true, false).ID: return 1612;
+ case Fire::Fire(5, true, false, false, false, true).ID: return 1613;
+ case Fire::Fire(5, true, false, false, false, false).ID: return 1614;
+ case Fire::Fire(5, false, true, true, true, true).ID: return 1615;
+ case Fire::Fire(5, false, true, true, true, false).ID: return 1616;
+ case Fire::Fire(5, false, true, true, false, true).ID: return 1617;
+ case Fire::Fire(5, false, true, true, false, false).ID: return 1618;
+ case Fire::Fire(5, false, true, false, true, true).ID: return 1619;
+ case Fire::Fire(5, false, true, false, true, false).ID: return 1620;
+ case Fire::Fire(5, false, true, false, false, true).ID: return 1621;
+ case Fire::Fire(5, false, true, false, false, false).ID: return 1622;
+ case Fire::Fire(5, false, false, true, true, true).ID: return 1623;
+ case Fire::Fire(5, false, false, true, true, false).ID: return 1624;
+ case Fire::Fire(5, false, false, true, false, true).ID: return 1625;
+ case Fire::Fire(5, false, false, true, false, false).ID: return 1626;
+ case Fire::Fire(5, false, false, false, true, true).ID: return 1627;
+ case Fire::Fire(5, false, false, false, true, false).ID: return 1628;
+ case Fire::Fire(5, false, false, false, false, true).ID: return 1629;
+ case Fire::Fire(5, false, false, false, false, false).ID: return 1630;
+ case Fire::Fire(6, true, true, true, true, true).ID: return 1631;
+ case Fire::Fire(6, true, true, true, true, false).ID: return 1632;
+ case Fire::Fire(6, true, true, true, false, true).ID: return 1633;
+ case Fire::Fire(6, true, true, true, false, false).ID: return 1634;
+ case Fire::Fire(6, true, true, false, true, true).ID: return 1635;
+ case Fire::Fire(6, true, true, false, true, false).ID: return 1636;
+ case Fire::Fire(6, true, true, false, false, true).ID: return 1637;
+ case Fire::Fire(6, true, true, false, false, false).ID: return 1638;
+ case Fire::Fire(6, true, false, true, true, true).ID: return 1639;
+ case Fire::Fire(6, true, false, true, true, false).ID: return 1640;
+ case Fire::Fire(6, true, false, true, false, true).ID: return 1641;
+ case Fire::Fire(6, true, false, true, false, false).ID: return 1642;
+ case Fire::Fire(6, true, false, false, true, true).ID: return 1643;
+ case Fire::Fire(6, true, false, false, true, false).ID: return 1644;
+ case Fire::Fire(6, true, false, false, false, true).ID: return 1645;
+ case Fire::Fire(6, true, false, false, false, false).ID: return 1646;
+ case Fire::Fire(6, false, true, true, true, true).ID: return 1647;
+ case Fire::Fire(6, false, true, true, true, false).ID: return 1648;
+ case Fire::Fire(6, false, true, true, false, true).ID: return 1649;
+ case Fire::Fire(6, false, true, true, false, false).ID: return 1650;
+ case Fire::Fire(6, false, true, false, true, true).ID: return 1651;
+ case Fire::Fire(6, false, true, false, true, false).ID: return 1652;
+ case Fire::Fire(6, false, true, false, false, true).ID: return 1653;
+ case Fire::Fire(6, false, true, false, false, false).ID: return 1654;
+ case Fire::Fire(6, false, false, true, true, true).ID: return 1655;
+ case Fire::Fire(6, false, false, true, true, false).ID: return 1656;
+ case Fire::Fire(6, false, false, true, false, true).ID: return 1657;
+ case Fire::Fire(6, false, false, true, false, false).ID: return 1658;
+ case Fire::Fire(6, false, false, false, true, true).ID: return 1659;
+ case Fire::Fire(6, false, false, false, true, false).ID: return 1660;
+ case Fire::Fire(6, false, false, false, false, true).ID: return 1661;
+ case Fire::Fire(6, false, false, false, false, false).ID: return 1662;
+ case Fire::Fire(7, true, true, true, true, true).ID: return 1663;
+ case Fire::Fire(7, true, true, true, true, false).ID: return 1664;
+ case Fire::Fire(7, true, true, true, false, true).ID: return 1665;
+ case Fire::Fire(7, true, true, true, false, false).ID: return 1666;
+ case Fire::Fire(7, true, true, false, true, true).ID: return 1667;
+ case Fire::Fire(7, true, true, false, true, false).ID: return 1668;
+ case Fire::Fire(7, true, true, false, false, true).ID: return 1669;
+ case Fire::Fire(7, true, true, false, false, false).ID: return 1670;
+ case Fire::Fire(7, true, false, true, true, true).ID: return 1671;
+ case Fire::Fire(7, true, false, true, true, false).ID: return 1672;
+ case Fire::Fire(7, true, false, true, false, true).ID: return 1673;
+ case Fire::Fire(7, true, false, true, false, false).ID: return 1674;
+ case Fire::Fire(7, true, false, false, true, true).ID: return 1675;
+ case Fire::Fire(7, true, false, false, true, false).ID: return 1676;
+ case Fire::Fire(7, true, false, false, false, true).ID: return 1677;
+ case Fire::Fire(7, true, false, false, false, false).ID: return 1678;
+ case Fire::Fire(7, false, true, true, true, true).ID: return 1679;
+ case Fire::Fire(7, false, true, true, true, false).ID: return 1680;
+ case Fire::Fire(7, false, true, true, false, true).ID: return 1681;
+ case Fire::Fire(7, false, true, true, false, false).ID: return 1682;
+ case Fire::Fire(7, false, true, false, true, true).ID: return 1683;
+ case Fire::Fire(7, false, true, false, true, false).ID: return 1684;
+ case Fire::Fire(7, false, true, false, false, true).ID: return 1685;
+ case Fire::Fire(7, false, true, false, false, false).ID: return 1686;
+ case Fire::Fire(7, false, false, true, true, true).ID: return 1687;
+ case Fire::Fire(7, false, false, true, true, false).ID: return 1688;
+ case Fire::Fire(7, false, false, true, false, true).ID: return 1689;
+ case Fire::Fire(7, false, false, true, false, false).ID: return 1690;
+ case Fire::Fire(7, false, false, false, true, true).ID: return 1691;
+ case Fire::Fire(7, false, false, false, true, false).ID: return 1692;
+ case Fire::Fire(7, false, false, false, false, true).ID: return 1693;
+ case Fire::Fire(7, false, false, false, false, false).ID: return 1694;
+ case Fire::Fire(8, true, true, true, true, true).ID: return 1695;
+ case Fire::Fire(8, true, true, true, true, false).ID: return 1696;
+ case Fire::Fire(8, true, true, true, false, true).ID: return 1697;
+ case Fire::Fire(8, true, true, true, false, false).ID: return 1698;
+ case Fire::Fire(8, true, true, false, true, true).ID: return 1699;
+ case Fire::Fire(8, true, true, false, true, false).ID: return 1700;
+ case Fire::Fire(8, true, true, false, false, true).ID: return 1701;
+ case Fire::Fire(8, true, true, false, false, false).ID: return 1702;
+ case Fire::Fire(8, true, false, true, true, true).ID: return 1703;
+ case Fire::Fire(8, true, false, true, true, false).ID: return 1704;
+ case Fire::Fire(8, true, false, true, false, true).ID: return 1705;
+ case Fire::Fire(8, true, false, true, false, false).ID: return 1706;
+ case Fire::Fire(8, true, false, false, true, true).ID: return 1707;
+ case Fire::Fire(8, true, false, false, true, false).ID: return 1708;
+ case Fire::Fire(8, true, false, false, false, true).ID: return 1709;
+ case Fire::Fire(8, true, false, false, false, false).ID: return 1710;
+ case Fire::Fire(8, false, true, true, true, true).ID: return 1711;
+ case Fire::Fire(8, false, true, true, true, false).ID: return 1712;
+ case Fire::Fire(8, false, true, true, false, true).ID: return 1713;
+ case Fire::Fire(8, false, true, true, false, false).ID: return 1714;
+ case Fire::Fire(8, false, true, false, true, true).ID: return 1715;
+ case Fire::Fire(8, false, true, false, true, false).ID: return 1716;
+ case Fire::Fire(8, false, true, false, false, true).ID: return 1717;
+ case Fire::Fire(8, false, true, false, false, false).ID: return 1718;
+ case Fire::Fire(8, false, false, true, true, true).ID: return 1719;
+ case Fire::Fire(8, false, false, true, true, false).ID: return 1720;
+ case Fire::Fire(8, false, false, true, false, true).ID: return 1721;
+ case Fire::Fire(8, false, false, true, false, false).ID: return 1722;
+ case Fire::Fire(8, false, false, false, true, true).ID: return 1723;
+ case Fire::Fire(8, false, false, false, true, false).ID: return 1724;
+ case Fire::Fire(8, false, false, false, false, true).ID: return 1725;
+ case Fire::Fire(8, false, false, false, false, false).ID: return 1726;
+ case Fire::Fire(9, true, true, true, true, true).ID: return 1727;
+ case Fire::Fire(9, true, true, true, true, false).ID: return 1728;
+ case Fire::Fire(9, true, true, true, false, true).ID: return 1729;
+ case Fire::Fire(9, true, true, true, false, false).ID: return 1730;
+ case Fire::Fire(9, true, true, false, true, true).ID: return 1731;
+ case Fire::Fire(9, true, true, false, true, false).ID: return 1732;
+ case Fire::Fire(9, true, true, false, false, true).ID: return 1733;
+ case Fire::Fire(9, true, true, false, false, false).ID: return 1734;
+ case Fire::Fire(9, true, false, true, true, true).ID: return 1735;
+ case Fire::Fire(9, true, false, true, true, false).ID: return 1736;
+ case Fire::Fire(9, true, false, true, false, true).ID: return 1737;
+ case Fire::Fire(9, true, false, true, false, false).ID: return 1738;
+ case Fire::Fire(9, true, false, false, true, true).ID: return 1739;
+ case Fire::Fire(9, true, false, false, true, false).ID: return 1740;
+ case Fire::Fire(9, true, false, false, false, true).ID: return 1741;
+ case Fire::Fire(9, true, false, false, false, false).ID: return 1742;
+ case Fire::Fire(9, false, true, true, true, true).ID: return 1743;
+ case Fire::Fire(9, false, true, true, true, false).ID: return 1744;
+ case Fire::Fire(9, false, true, true, false, true).ID: return 1745;
+ case Fire::Fire(9, false, true, true, false, false).ID: return 1746;
+ case Fire::Fire(9, false, true, false, true, true).ID: return 1747;
+ case Fire::Fire(9, false, true, false, true, false).ID: return 1748;
+ case Fire::Fire(9, false, true, false, false, true).ID: return 1749;
+ case Fire::Fire(9, false, true, false, false, false).ID: return 1750;
+ case Fire::Fire(9, false, false, true, true, true).ID: return 1751;
+ case Fire::Fire(9, false, false, true, true, false).ID: return 1752;
+ case Fire::Fire(9, false, false, true, false, true).ID: return 1753;
+ case Fire::Fire(9, false, false, true, false, false).ID: return 1754;
+ case Fire::Fire(9, false, false, false, true, true).ID: return 1755;
+ case Fire::Fire(9, false, false, false, true, false).ID: return 1756;
+ case Fire::Fire(9, false, false, false, false, true).ID: return 1757;
+ case Fire::Fire(9, false, false, false, false, false).ID: return 1758;
+ case Fire::Fire(10, true, true, true, true, true).ID: return 1759;
+ case Fire::Fire(10, true, true, true, true, false).ID: return 1760;
+ case Fire::Fire(10, true, true, true, false, true).ID: return 1761;
+ case Fire::Fire(10, true, true, true, false, false).ID: return 1762;
+ case Fire::Fire(10, true, true, false, true, true).ID: return 1763;
+ case Fire::Fire(10, true, true, false, true, false).ID: return 1764;
+ case Fire::Fire(10, true, true, false, false, true).ID: return 1765;
+ case Fire::Fire(10, true, true, false, false, false).ID: return 1766;
+ case Fire::Fire(10, true, false, true, true, true).ID: return 1767;
+ case Fire::Fire(10, true, false, true, true, false).ID: return 1768;
+ case Fire::Fire(10, true, false, true, false, true).ID: return 1769;
+ case Fire::Fire(10, true, false, true, false, false).ID: return 1770;
+ case Fire::Fire(10, true, false, false, true, true).ID: return 1771;
+ case Fire::Fire(10, true, false, false, true, false).ID: return 1772;
+ case Fire::Fire(10, true, false, false, false, true).ID: return 1773;
+ case Fire::Fire(10, true, false, false, false, false).ID: return 1774;
+ case Fire::Fire(10, false, true, true, true, true).ID: return 1775;
+ case Fire::Fire(10, false, true, true, true, false).ID: return 1776;
+ case Fire::Fire(10, false, true, true, false, true).ID: return 1777;
+ case Fire::Fire(10, false, true, true, false, false).ID: return 1778;
+ case Fire::Fire(10, false, true, false, true, true).ID: return 1779;
+ case Fire::Fire(10, false, true, false, true, false).ID: return 1780;
+ case Fire::Fire(10, false, true, false, false, true).ID: return 1781;
+ case Fire::Fire(10, false, true, false, false, false).ID: return 1782;
+ case Fire::Fire(10, false, false, true, true, true).ID: return 1783;
+ case Fire::Fire(10, false, false, true, true, false).ID: return 1784;
+ case Fire::Fire(10, false, false, true, false, true).ID: return 1785;
+ case Fire::Fire(10, false, false, true, false, false).ID: return 1786;
+ case Fire::Fire(10, false, false, false, true, true).ID: return 1787;
+ case Fire::Fire(10, false, false, false, true, false).ID: return 1788;
+ case Fire::Fire(10, false, false, false, false, true).ID: return 1789;
+ case Fire::Fire(10, false, false, false, false, false).ID: return 1790;
+ case Fire::Fire(11, true, true, true, true, true).ID: return 1791;
+ case Fire::Fire(11, true, true, true, true, false).ID: return 1792;
+ case Fire::Fire(11, true, true, true, false, true).ID: return 1793;
+ case Fire::Fire(11, true, true, true, false, false).ID: return 1794;
+ case Fire::Fire(11, true, true, false, true, true).ID: return 1795;
+ case Fire::Fire(11, true, true, false, true, false).ID: return 1796;
+ case Fire::Fire(11, true, true, false, false, true).ID: return 1797;
+ case Fire::Fire(11, true, true, false, false, false).ID: return 1798;
+ case Fire::Fire(11, true, false, true, true, true).ID: return 1799;
+ case Fire::Fire(11, true, false, true, true, false).ID: return 1800;
+ case Fire::Fire(11, true, false, true, false, true).ID: return 1801;
+ case Fire::Fire(11, true, false, true, false, false).ID: return 1802;
+ case Fire::Fire(11, true, false, false, true, true).ID: return 1803;
+ case Fire::Fire(11, true, false, false, true, false).ID: return 1804;
+ case Fire::Fire(11, true, false, false, false, true).ID: return 1805;
+ case Fire::Fire(11, true, false, false, false, false).ID: return 1806;
+ case Fire::Fire(11, false, true, true, true, true).ID: return 1807;
+ case Fire::Fire(11, false, true, true, true, false).ID: return 1808;
+ case Fire::Fire(11, false, true, true, false, true).ID: return 1809;
+ case Fire::Fire(11, false, true, true, false, false).ID: return 1810;
+ case Fire::Fire(11, false, true, false, true, true).ID: return 1811;
+ case Fire::Fire(11, false, true, false, true, false).ID: return 1812;
+ case Fire::Fire(11, false, true, false, false, true).ID: return 1813;
+ case Fire::Fire(11, false, true, false, false, false).ID: return 1814;
+ case Fire::Fire(11, false, false, true, true, true).ID: return 1815;
+ case Fire::Fire(11, false, false, true, true, false).ID: return 1816;
+ case Fire::Fire(11, false, false, true, false, true).ID: return 1817;
+ case Fire::Fire(11, false, false, true, false, false).ID: return 1818;
+ case Fire::Fire(11, false, false, false, true, true).ID: return 1819;
+ case Fire::Fire(11, false, false, false, true, false).ID: return 1820;
+ case Fire::Fire(11, false, false, false, false, true).ID: return 1821;
+ case Fire::Fire(11, false, false, false, false, false).ID: return 1822;
+ case Fire::Fire(12, true, true, true, true, true).ID: return 1823;
+ case Fire::Fire(12, true, true, true, true, false).ID: return 1824;
+ case Fire::Fire(12, true, true, true, false, true).ID: return 1825;
+ case Fire::Fire(12, true, true, true, false, false).ID: return 1826;
+ case Fire::Fire(12, true, true, false, true, true).ID: return 1827;
+ case Fire::Fire(12, true, true, false, true, false).ID: return 1828;
+ case Fire::Fire(12, true, true, false, false, true).ID: return 1829;
+ case Fire::Fire(12, true, true, false, false, false).ID: return 1830;
+ case Fire::Fire(12, true, false, true, true, true).ID: return 1831;
+ case Fire::Fire(12, true, false, true, true, false).ID: return 1832;
+ case Fire::Fire(12, true, false, true, false, true).ID: return 1833;
+ case Fire::Fire(12, true, false, true, false, false).ID: return 1834;
+ case Fire::Fire(12, true, false, false, true, true).ID: return 1835;
+ case Fire::Fire(12, true, false, false, true, false).ID: return 1836;
+ case Fire::Fire(12, true, false, false, false, true).ID: return 1837;
+ case Fire::Fire(12, true, false, false, false, false).ID: return 1838;
+ case Fire::Fire(12, false, true, true, true, true).ID: return 1839;
+ case Fire::Fire(12, false, true, true, true, false).ID: return 1840;
+ case Fire::Fire(12, false, true, true, false, true).ID: return 1841;
+ case Fire::Fire(12, false, true, true, false, false).ID: return 1842;
+ case Fire::Fire(12, false, true, false, true, true).ID: return 1843;
+ case Fire::Fire(12, false, true, false, true, false).ID: return 1844;
+ case Fire::Fire(12, false, true, false, false, true).ID: return 1845;
+ case Fire::Fire(12, false, true, false, false, false).ID: return 1846;
+ case Fire::Fire(12, false, false, true, true, true).ID: return 1847;
+ case Fire::Fire(12, false, false, true, true, false).ID: return 1848;
+ case Fire::Fire(12, false, false, true, false, true).ID: return 1849;
+ case Fire::Fire(12, false, false, true, false, false).ID: return 1850;
+ case Fire::Fire(12, false, false, false, true, true).ID: return 1851;
+ case Fire::Fire(12, false, false, false, true, false).ID: return 1852;
+ case Fire::Fire(12, false, false, false, false, true).ID: return 1853;
+ case Fire::Fire(12, false, false, false, false, false).ID: return 1854;
+ case Fire::Fire(13, true, true, true, true, true).ID: return 1855;
+ case Fire::Fire(13, true, true, true, true, false).ID: return 1856;
+ case Fire::Fire(13, true, true, true, false, true).ID: return 1857;
+ case Fire::Fire(13, true, true, true, false, false).ID: return 1858;
+ case Fire::Fire(13, true, true, false, true, true).ID: return 1859;
+ case Fire::Fire(13, true, true, false, true, false).ID: return 1860;
+ case Fire::Fire(13, true, true, false, false, true).ID: return 1861;
+ case Fire::Fire(13, true, true, false, false, false).ID: return 1862;
+ case Fire::Fire(13, true, false, true, true, true).ID: return 1863;
+ case Fire::Fire(13, true, false, true, true, false).ID: return 1864;
+ case Fire::Fire(13, true, false, true, false, true).ID: return 1865;
+ case Fire::Fire(13, true, false, true, false, false).ID: return 1866;
+ case Fire::Fire(13, true, false, false, true, true).ID: return 1867;
+ case Fire::Fire(13, true, false, false, true, false).ID: return 1868;
+ case Fire::Fire(13, true, false, false, false, true).ID: return 1869;
+ case Fire::Fire(13, true, false, false, false, false).ID: return 1870;
+ case Fire::Fire(13, false, true, true, true, true).ID: return 1871;
+ case Fire::Fire(13, false, true, true, true, false).ID: return 1872;
+ case Fire::Fire(13, false, true, true, false, true).ID: return 1873;
+ case Fire::Fire(13, false, true, true, false, false).ID: return 1874;
+ case Fire::Fire(13, false, true, false, true, true).ID: return 1875;
+ case Fire::Fire(13, false, true, false, true, false).ID: return 1876;
+ case Fire::Fire(13, false, true, false, false, true).ID: return 1877;
+ case Fire::Fire(13, false, true, false, false, false).ID: return 1878;
+ case Fire::Fire(13, false, false, true, true, true).ID: return 1879;
+ case Fire::Fire(13, false, false, true, true, false).ID: return 1880;
+ case Fire::Fire(13, false, false, true, false, true).ID: return 1881;
+ case Fire::Fire(13, false, false, true, false, false).ID: return 1882;
+ case Fire::Fire(13, false, false, false, true, true).ID: return 1883;
+ case Fire::Fire(13, false, false, false, true, false).ID: return 1884;
+ case Fire::Fire(13, false, false, false, false, true).ID: return 1885;
+ case Fire::Fire(13, false, false, false, false, false).ID: return 1886;
+ case Fire::Fire(14, true, true, true, true, true).ID: return 1887;
+ case Fire::Fire(14, true, true, true, true, false).ID: return 1888;
+ case Fire::Fire(14, true, true, true, false, true).ID: return 1889;
+ case Fire::Fire(14, true, true, true, false, false).ID: return 1890;
+ case Fire::Fire(14, true, true, false, true, true).ID: return 1891;
+ case Fire::Fire(14, true, true, false, true, false).ID: return 1892;
+ case Fire::Fire(14, true, true, false, false, true).ID: return 1893;
+ case Fire::Fire(14, true, true, false, false, false).ID: return 1894;
+ case Fire::Fire(14, true, false, true, true, true).ID: return 1895;
+ case Fire::Fire(14, true, false, true, true, false).ID: return 1896;
+ case Fire::Fire(14, true, false, true, false, true).ID: return 1897;
+ case Fire::Fire(14, true, false, true, false, false).ID: return 1898;
+ case Fire::Fire(14, true, false, false, true, true).ID: return 1899;
+ case Fire::Fire(14, true, false, false, true, false).ID: return 1900;
+ case Fire::Fire(14, true, false, false, false, true).ID: return 1901;
+ case Fire::Fire(14, true, false, false, false, false).ID: return 1902;
+ case Fire::Fire(14, false, true, true, true, true).ID: return 1903;
+ case Fire::Fire(14, false, true, true, true, false).ID: return 1904;
+ case Fire::Fire(14, false, true, true, false, true).ID: return 1905;
+ case Fire::Fire(14, false, true, true, false, false).ID: return 1906;
+ case Fire::Fire(14, false, true, false, true, true).ID: return 1907;
+ case Fire::Fire(14, false, true, false, true, false).ID: return 1908;
+ case Fire::Fire(14, false, true, false, false, true).ID: return 1909;
+ case Fire::Fire(14, false, true, false, false, false).ID: return 1910;
+ case Fire::Fire(14, false, false, true, true, true).ID: return 1911;
+ case Fire::Fire(14, false, false, true, true, false).ID: return 1912;
+ case Fire::Fire(14, false, false, true, false, true).ID: return 1913;
+ case Fire::Fire(14, false, false, true, false, false).ID: return 1914;
+ case Fire::Fire(14, false, false, false, true, true).ID: return 1915;
+ case Fire::Fire(14, false, false, false, true, false).ID: return 1916;
+ case Fire::Fire(14, false, false, false, false, true).ID: return 1917;
+ case Fire::Fire(14, false, false, false, false, false).ID: return 1918;
+ case Fire::Fire(15, true, true, true, true, true).ID: return 1919;
+ case Fire::Fire(15, true, true, true, true, false).ID: return 1920;
+ case Fire::Fire(15, true, true, true, false, true).ID: return 1921;
+ case Fire::Fire(15, true, true, true, false, false).ID: return 1922;
+ case Fire::Fire(15, true, true, false, true, true).ID: return 1923;
+ case Fire::Fire(15, true, true, false, true, false).ID: return 1924;
+ case Fire::Fire(15, true, true, false, false, true).ID: return 1925;
+ case Fire::Fire(15, true, true, false, false, false).ID: return 1926;
+ case Fire::Fire(15, true, false, true, true, true).ID: return 1927;
+ case Fire::Fire(15, true, false, true, true, false).ID: return 1928;
+ case Fire::Fire(15, true, false, true, false, true).ID: return 1929;
+ case Fire::Fire(15, true, false, true, false, false).ID: return 1930;
+ case Fire::Fire(15, true, false, false, true, true).ID: return 1931;
+ case Fire::Fire(15, true, false, false, true, false).ID: return 1932;
+ case Fire::Fire(15, true, false, false, false, true).ID: return 1933;
+ case Fire::Fire(15, true, false, false, false, false).ID: return 1934;
+ case Fire::Fire(15, false, true, true, true, true).ID: return 1935;
+ case Fire::Fire(15, false, true, true, true, false).ID: return 1936;
+ case Fire::Fire(15, false, true, true, false, true).ID: return 1937;
+ case Fire::Fire(15, false, true, true, false, false).ID: return 1938;
+ case Fire::Fire(15, false, true, false, true, true).ID: return 1939;
+ case Fire::Fire(15, false, true, false, true, false).ID: return 1940;
+ case Fire::Fire(15, false, true, false, false, true).ID: return 1941;
+ case Fire::Fire(15, false, true, false, false, false).ID: return 1942;
+ case Fire::Fire(15, false, false, true, true, true).ID: return 1943;
+ case Fire::Fire(15, false, false, true, true, false).ID: return 1944;
+ case Fire::Fire(15, false, false, true, false, true).ID: return 1945;
+ case Fire::Fire(15, false, false, true, false, false).ID: return 1946;
+ case Fire::Fire(15, false, false, false, true, true).ID: return 1947;
+ case Fire::Fire(15, false, false, false, true, false).ID: return 1948;
+ case Fire::Fire(15, false, false, false, false, true).ID: return 1949;
+ case Fire::Fire(15, false, false, false, false, false).ID: return 1950;
+ case FireCoral::FireCoral().ID: return 9001;
+ case FireCoralBlock::FireCoralBlock().ID: return 8982;
+ case FireCoralFan::FireCoralFan().ID: return 9021;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9089;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9091;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9093;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9095;
+ case FletchingTable::FletchingTable().ID: return 11164;
+ case FlowerPot::FlowerPot().ID: return 5769;
+ case FrostedIce::FrostedIce(0).ID: return 8713;
+ case FrostedIce::FrostedIce(1).ID: return 8714;
+ case FrostedIce::FrostedIce(2).ID: return 8715;
+ case FrostedIce::FrostedIce(3).ID: return 8716;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, true).ID: return 3371;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, false).ID: return 3372;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, true).ID: return 3373;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, false).ID: return 3374;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, true).ID: return 3375;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, false).ID: return 3376;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, true).ID: return 3377;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, false).ID: return 3378;
+ case Glass::Glass().ID: return 230;
+ case GlassPane::GlassPane(true, true, true, true).ID: return 4717;
+ case GlassPane::GlassPane(true, true, true, false).ID: return 4718;
+ case GlassPane::GlassPane(true, true, false, true).ID: return 4721;
+ case GlassPane::GlassPane(true, true, false, false).ID: return 4722;
+ case GlassPane::GlassPane(true, false, true, true).ID: return 4725;
+ case GlassPane::GlassPane(true, false, true, false).ID: return 4726;
+ case GlassPane::GlassPane(true, false, false, true).ID: return 4729;
+ case GlassPane::GlassPane(true, false, false, false).ID: return 4730;
+ case GlassPane::GlassPane(false, true, true, true).ID: return 4733;
+ case GlassPane::GlassPane(false, true, true, false).ID: return 4734;
+ case GlassPane::GlassPane(false, true, false, true).ID: return 4737;
+ case GlassPane::GlassPane(false, true, false, false).ID: return 4738;
+ case GlassPane::GlassPane(false, false, true, true).ID: return 4741;
+ case GlassPane::GlassPane(false, false, true, false).ID: return 4742;
+ case GlassPane::GlassPane(false, false, false, true).ID: return 4745;
+ case GlassPane::GlassPane(false, false, false, false).ID: return 4746;
+ case Glowstone::Glowstone().ID: return 3999;
+ case GoldBlock::GoldBlock().ID: return 1426;
+ case GoldOre::GoldOre().ID: return 69;
+ case Granite::Granite().ID: return 2;
+ case GraniteSlab::GraniteSlab(GraniteSlab::Type::Top).ID: return 10302;
+ case GraniteSlab::GraniteSlab(GraniteSlab::Type::Bottom).ID: return 10304;
+ case GraniteSlab::GraniteSlab(GraniteSlab::Type::Double).ID: return 10306;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight).ID: return 9854;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft).ID: return 9856;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight).ID: return 9858;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft).ID: return 9860;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight).ID: return 9862;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight).ID: return 9864;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft).ID: return 9866;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight).ID: return 9868;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft).ID: return 9870;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight).ID: return 9872;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight).ID: return 9874;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft).ID: return 9876;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight).ID: return 9878;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft).ID: return 9880;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight).ID: return 9882;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight).ID: return 9884;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft).ID: return 9886;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight).ID: return 9888;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft).ID: return 9890;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight).ID: return 9892;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight).ID: return 9894;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft).ID: return 9896;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight).ID: return 9898;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft).ID: return 9900;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight).ID: return 9902;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight).ID: return 9904;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft).ID: return 9906;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight).ID: return 9908;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft).ID: return 9910;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight).ID: return 9912;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight).ID: return 9914;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft).ID: return 9916;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight).ID: return 9918;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft).ID: return 9920;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight).ID: return 9922;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight).ID: return 9924;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft).ID: return 9926;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight).ID: return 9928;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft).ID: return 9930;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight).ID: return 9932;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 10589;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 10590;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 10593;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 10594;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 10597;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 10598;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 10601;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 10602;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 10605;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 10606;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 10609;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 10610;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 10613;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 10614;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 10617;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 10618;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 10621;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 10622;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 10625;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 10626;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 10629;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 10630;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 10633;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 10634;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 10637;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 10638;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 10641;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 10642;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 10645;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 10646;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 10649;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 10650;
+ case Grass::Grass().ID: return 1341;
+ case GrassBlock::GrassBlock(true).ID: return 8;
+ case GrassBlock::GrassBlock(false).ID: return 9;
+ case GrassPath::GrassPath().ID: return 8687;
+ case Gravel::Gravel().ID: return 68;
+ case GrayBanner::GrayBanner(0).ID: return 7473;
+ case GrayBanner::GrayBanner(1).ID: return 7474;
+ case GrayBanner::GrayBanner(2).ID: return 7475;
+ case GrayBanner::GrayBanner(3).ID: return 7476;
+ case GrayBanner::GrayBanner(4).ID: return 7477;
+ case GrayBanner::GrayBanner(5).ID: return 7478;
+ case GrayBanner::GrayBanner(6).ID: return 7479;
+ case GrayBanner::GrayBanner(7).ID: return 7480;
+ case GrayBanner::GrayBanner(8).ID: return 7481;
+ case GrayBanner::GrayBanner(9).ID: return 7482;
+ case GrayBanner::GrayBanner(10).ID: return 7483;
+ case GrayBanner::GrayBanner(11).ID: return 7484;
+ case GrayBanner::GrayBanner(12).ID: return 7485;
+ case GrayBanner::GrayBanner(13).ID: return 7486;
+ case GrayBanner::GrayBanner(14).ID: return 7487;
+ case GrayBanner::GrayBanner(15).ID: return 7488;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Head).ID: return 1160;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Foot).ID: return 1161;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Head).ID: return 1162;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Foot).ID: return 1163;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Head).ID: return 1164;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Foot).ID: return 1165;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Head).ID: return 1166;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Foot).ID: return 1167;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Head).ID: return 1168;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Foot).ID: return 1169;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Head).ID: return 1170;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Foot).ID: return 1171;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Head).ID: return 1172;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Foot).ID: return 1173;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Head).ID: return 1174;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Foot).ID: return 1175;
+ case GrayCarpet::GrayCarpet().ID: return 7337;
+ case GrayConcrete::GrayConcrete().ID: return 8909;
+ case GrayConcretePowder::GrayConcretePowder().ID: return 8925;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8866;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8867;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8868;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8869;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8784;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8785;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8786;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8787;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8788;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8789;
+ case GrayStainedGlass::GrayStainedGlass().ID: return 4088;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, true).ID: return 6553;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, false).ID: return 6554;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, true).ID: return 6557;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, false).ID: return 6558;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, true).ID: return 6561;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, false).ID: return 6562;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, true).ID: return 6565;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, false).ID: return 6566;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, true).ID: return 6569;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, false).ID: return 6570;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, true).ID: return 6573;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, false).ID: return 6574;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, true).ID: return 6577;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, false).ID: return 6578;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, true).ID: return 6581;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, false).ID: return 6582;
+ case GrayTerracotta::GrayTerracotta().ID: return 6318;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7645;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7646;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7647;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7648;
+ case GrayWool::GrayWool().ID: return 1390;
+ case GreenBanner::GreenBanner(0).ID: return 7569;
+ case GreenBanner::GreenBanner(1).ID: return 7570;
+ case GreenBanner::GreenBanner(2).ID: return 7571;
+ case GreenBanner::GreenBanner(3).ID: return 7572;
+ case GreenBanner::GreenBanner(4).ID: return 7573;
+ case GreenBanner::GreenBanner(5).ID: return 7574;
+ case GreenBanner::GreenBanner(6).ID: return 7575;
+ case GreenBanner::GreenBanner(7).ID: return 7576;
+ case GreenBanner::GreenBanner(8).ID: return 7577;
+ case GreenBanner::GreenBanner(9).ID: return 7578;
+ case GreenBanner::GreenBanner(10).ID: return 7579;
+ case GreenBanner::GreenBanner(11).ID: return 7580;
+ case GreenBanner::GreenBanner(12).ID: return 7581;
+ case GreenBanner::GreenBanner(13).ID: return 7582;
+ case GreenBanner::GreenBanner(14).ID: return 7583;
+ case GreenBanner::GreenBanner(15).ID: return 7584;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Head).ID: return 1256;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Foot).ID: return 1257;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Head).ID: return 1258;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Foot).ID: return 1259;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Head).ID: return 1260;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Foot).ID: return 1261;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Head).ID: return 1262;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Foot).ID: return 1263;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Head).ID: return 1264;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Foot).ID: return 1265;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Head).ID: return 1266;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Foot).ID: return 1267;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Head).ID: return 1268;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Foot).ID: return 1269;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Head).ID: return 1270;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Foot).ID: return 1271;
+ case GreenCarpet::GreenCarpet().ID: return 7343;
+ case GreenConcrete::GreenConcrete().ID: return 8915;
+ case GreenConcretePowder::GreenConcretePowder().ID: return 8931;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8890;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8891;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8892;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8893;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8820;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8821;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8822;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8823;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8824;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8825;
+ case GreenStainedGlass::GreenStainedGlass().ID: return 4094;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, true).ID: return 6745;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, false).ID: return 6746;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, true).ID: return 6749;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, false).ID: return 6750;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, true).ID: return 6753;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, false).ID: return 6754;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, true).ID: return 6757;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, false).ID: return 6758;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, true).ID: return 6761;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, false).ID: return 6762;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, true).ID: return 6765;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, false).ID: return 6766;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, true).ID: return 6769;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, false).ID: return 6770;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, true).ID: return 6773;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, false).ID: return 6774;
+ case GreenTerracotta::GreenTerracotta().ID: return 6324;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7669;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7670;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7671;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7672;
+ case GreenWool::GreenWool().ID: return 1396;
+ case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZM).ID: return 11165;
+ case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZP).ID: return 11166;
+ case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XM).ID: return 11167;
+ case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XP).ID: return 11168;
+ case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZM).ID: return 11169;
+ case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZP).ID: return 11170;
+ case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XM).ID: return 11171;
+ case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XP).ID: return 11172;
+ case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM).ID: return 11173;
+ case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP).ID: return 11174;
+ case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XM).ID: return 11175;
+ case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XP).ID: return 11176;
+ case HayBale::HayBale(HayBale::Axis::X).ID: return 7327;
+ case HayBale::HayBale(HayBale::Axis::Y).ID: return 7328;
+ case HayBale::HayBale(HayBale::Axis::Z).ID: return 7329;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(0).ID: return 6126;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(1).ID: return 6127;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(2).ID: return 6128;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(3).ID: return 6129;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(4).ID: return 6130;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(5).ID: return 6131;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(6).ID: return 6132;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(7).ID: return 6133;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(8).ID: return 6134;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(9).ID: return 6135;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(10).ID: return 6136;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(11).ID: return 6137;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(12).ID: return 6138;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(13).ID: return 6139;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(14).ID: return 6140;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(15).ID: return 6141;
+ case HoneyBlock::HoneyBlock().ID: return 11335;
+ case HoneycombBlock::HoneycombBlock().ID: return 11336;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_YM).ID: return 6192;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZM).ID: return 6193;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZP).ID: return 6194;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XM).ID: return 6195;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XP).ID: return 6196;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_YM).ID: return 6197;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZM).ID: return 6198;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZP).ID: return 6199;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XM).ID: return 6200;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XP).ID: return 6201;
+ case HornCoral::HornCoral().ID: return 9003;
+ case HornCoralBlock::HornCoralBlock().ID: return 8983;
+ case HornCoralFan::HornCoralFan().ID: return 9023;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9097;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9099;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9101;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9103;
+ case Ice::Ice().ID: return 3927;
+ case InfestedChiseledStoneBricks::InfestedChiseledStoneBricks().ID: return 4490;
+ case InfestedCobblestone::InfestedCobblestone().ID: return 4486;
+ case InfestedCrackedStoneBricks::InfestedCrackedStoneBricks().ID: return 4489;
+ case InfestedMossyStoneBricks::InfestedMossyStoneBricks().ID: return 4488;
+ case InfestedStone::InfestedStone().ID: return 4485;
+ case InfestedStoneBricks::InfestedStoneBricks().ID: return 4487;
+ case IronBars::IronBars(true, true, true, true).ID: return 4685;
+ case IronBars::IronBars(true, true, true, false).ID: return 4686;
+ case IronBars::IronBars(true, true, false, true).ID: return 4689;
+ case IronBars::IronBars(true, true, false, false).ID: return 4690;
+ case IronBars::IronBars(true, false, true, true).ID: return 4693;
+ case IronBars::IronBars(true, false, true, false).ID: return 4694;
+ case IronBars::IronBars(true, false, false, true).ID: return 4697;
+ case IronBars::IronBars(true, false, false, false).ID: return 4698;
+ case IronBars::IronBars(false, true, true, true).ID: return 4701;
+ case IronBars::IronBars(false, true, true, false).ID: return 4702;
+ case IronBars::IronBars(false, true, false, true).ID: return 4705;
+ case IronBars::IronBars(false, true, false, false).ID: return 4706;
+ case IronBars::IronBars(false, false, true, true).ID: return 4709;
+ case IronBars::IronBars(false, false, true, false).ID: return 4710;
+ case IronBars::IronBars(false, false, false, true).ID: return 4713;
+ case IronBars::IronBars(false, false, false, false).ID: return 4714;
+ case IronBlock::IronBlock().ID: return 1427;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3807;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3808;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3809;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3810;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3811;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3812;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3813;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3814;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3815;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3816;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3817;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3818;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3819;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3820;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3821;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3822;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3823;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3824;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3825;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3826;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3827;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3828;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3829;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3830;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3831;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3832;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3833;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3834;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3835;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3836;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3837;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3838;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3839;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3840;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3841;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3842;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3843;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3844;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3845;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3846;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3847;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3848;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3849;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3850;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3851;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3852;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3853;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3854;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3855;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3856;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3857;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3858;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3859;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3860;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3861;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3862;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3863;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3864;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3865;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3866;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3867;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3868;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3869;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3870;
+ case IronOre::IronOre().ID: return 70;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, true).ID: return 7002;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, false).ID: return 7004;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, true).ID: return 7006;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, false).ID: return 7008;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, true).ID: return 7010;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, false).ID: return 7012;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, true).ID: return 7014;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, false).ID: return 7016;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, true).ID: return 7018;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, false).ID: return 7020;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, true).ID: return 7022;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, false).ID: return 7024;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, true).ID: return 7026;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, false).ID: return 7028;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, true).ID: return 7030;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, false).ID: return 7032;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, true).ID: return 7034;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, false).ID: return 7036;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, true).ID: return 7038;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, false).ID: return 7040;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, true).ID: return 7042;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, false).ID: return 7044;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, true).ID: return 7046;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, false).ID: return 7048;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, true).ID: return 7050;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, false).ID: return 7052;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, true).ID: return 7054;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, false).ID: return 7056;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, true).ID: return 7058;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, false).ID: return 7060;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, true).ID: return 7062;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, false).ID: return 7064;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZM).ID: return 4006;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZP).ID: return 4007;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XM).ID: return 4008;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XP).ID: return 4009;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::NorthUp).ID: return 11272;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::EastUp).ID: return 11273;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::SouthUp).ID: return 11274;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::WestUp).ID: return 11275;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::UpSouth).ID: return 11276;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::DownSouth).ID: return 11277;
+ case Jukebox::Jukebox(true).ID: return 3962;
+ case Jukebox::Jukebox(false).ID: return 3963;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5882;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5883;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5884;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5885;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5886;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5887;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5888;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5889;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5890;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5891;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5892;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5893;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5894;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5895;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5896;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5897;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5898;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5899;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5900;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5901;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5902;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5903;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5904;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5905;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 8330;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 8331;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 8332;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 8333;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 8334;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 8335;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 8336;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 8337;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 8338;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 8339;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 8340;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 8341;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 8342;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 8343;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 8344;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 8345;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 8346;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 8347;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 8348;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 8349;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 8350;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 8351;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 8352;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 8353;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 8354;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 8355;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 8356;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 8357;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 8358;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 8359;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 8360;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 8361;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 8362;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 8363;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 8364;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 8365;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 8366;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 8367;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 8368;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 8369;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 8370;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 8371;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 8372;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 8373;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 8374;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 8375;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 8376;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 8377;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 8378;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 8379;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 8380;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 8381;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 8382;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 8383;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 8384;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 8385;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 8386;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 8387;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 8388;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 8389;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 8390;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 8391;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 8392;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 8393;
+ case JungleFence::JungleFence(true, true, true, true).ID: return 8108;
+ case JungleFence::JungleFence(true, true, true, false).ID: return 8109;
+ case JungleFence::JungleFence(true, true, false, true).ID: return 8112;
+ case JungleFence::JungleFence(true, true, false, false).ID: return 8113;
+ case JungleFence::JungleFence(true, false, true, true).ID: return 8116;
+ case JungleFence::JungleFence(true, false, true, false).ID: return 8117;
+ case JungleFence::JungleFence(true, false, false, true).ID: return 8120;
+ case JungleFence::JungleFence(true, false, false, false).ID: return 8121;
+ case JungleFence::JungleFence(false, true, true, true).ID: return 8124;
+ case JungleFence::JungleFence(false, true, true, false).ID: return 8125;
+ case JungleFence::JungleFence(false, true, false, true).ID: return 8128;
+ case JungleFence::JungleFence(false, true, false, false).ID: return 8129;
+ case JungleFence::JungleFence(false, false, true, true).ID: return 8132;
+ case JungleFence::JungleFence(false, false, true, false).ID: return 8133;
+ case JungleFence::JungleFence(false, false, false, true).ID: return 8136;
+ case JungleFence::JungleFence(false, false, false, false).ID: return 8137;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7946;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7947;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7948;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7949;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7950;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7951;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7952;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7953;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7954;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7955;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7956;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7957;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7958;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7959;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7960;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7961;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7962;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7963;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7964;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7965;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7966;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7967;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7968;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7969;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7970;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7971;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7972;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7973;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7974;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7975;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7976;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7977;
+ case JungleLeaves::JungleLeaves(1, true).ID: return 186;
+ case JungleLeaves::JungleLeaves(1, false).ID: return 187;
+ case JungleLeaves::JungleLeaves(2, true).ID: return 188;
+ case JungleLeaves::JungleLeaves(2, false).ID: return 189;
+ case JungleLeaves::JungleLeaves(3, true).ID: return 190;
+ case JungleLeaves::JungleLeaves(3, false).ID: return 191;
+ case JungleLeaves::JungleLeaves(4, true).ID: return 192;
+ case JungleLeaves::JungleLeaves(4, false).ID: return 193;
+ case JungleLeaves::JungleLeaves(5, true).ID: return 194;
+ case JungleLeaves::JungleLeaves(5, false).ID: return 195;
+ case JungleLeaves::JungleLeaves(6, true).ID: return 196;
+ case JungleLeaves::JungleLeaves(6, false).ID: return 197;
+ case JungleLeaves::JungleLeaves(7, true).ID: return 198;
+ case JungleLeaves::JungleLeaves(7, false).ID: return 199;
+ case JungleLog::JungleLog(JungleLog::Axis::X).ID: return 81;
+ case JungleLog::JungleLog(JungleLog::Axis::Y).ID: return 82;
+ case JungleLog::JungleLog(JungleLog::Axis::Z).ID: return 83;
+ case JunglePlanks::JunglePlanks().ID: return 18;
+ case JunglePressurePlate::JunglePressurePlate(true).ID: return 3877;
+ case JunglePressurePlate::JunglePressurePlate(false).ID: return 3878;
+ case JungleSapling::JungleSapling(0).ID: return 27;
+ case JungleSapling::JungleSapling(1).ID: return 28;
+ case JungleSign::JungleSign(0).ID: return 3508;
+ case JungleSign::JungleSign(1).ID: return 3510;
+ case JungleSign::JungleSign(2).ID: return 3512;
+ case JungleSign::JungleSign(3).ID: return 3514;
+ case JungleSign::JungleSign(4).ID: return 3516;
+ case JungleSign::JungleSign(5).ID: return 3518;
+ case JungleSign::JungleSign(6).ID: return 3520;
+ case JungleSign::JungleSign(7).ID: return 3522;
+ case JungleSign::JungleSign(8).ID: return 3524;
+ case JungleSign::JungleSign(9).ID: return 3526;
+ case JungleSign::JungleSign(10).ID: return 3528;
+ case JungleSign::JungleSign(11).ID: return 3530;
+ case JungleSign::JungleSign(12).ID: return 3532;
+ case JungleSign::JungleSign(13).ID: return 3534;
+ case JungleSign::JungleSign(14).ID: return 3536;
+ case JungleSign::JungleSign(15).ID: return 3538;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Top).ID: return 7783;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Bottom).ID: return 7785;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Double).ID: return 7787;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5549;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5551;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5553;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5555;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5557;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5559;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5561;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5563;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5565;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5567;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5569;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5571;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5573;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5575;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5577;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5579;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5581;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5583;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5585;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5587;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5589;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5591;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5593;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5595;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5597;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5599;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5601;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5603;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5605;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5607;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5609;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5611;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5613;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5615;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5617;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5619;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5621;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5623;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5625;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5627;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, true).ID: return 4290;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, false).ID: return 4292;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, true).ID: return 4294;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, false).ID: return 4296;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, true).ID: return 4298;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, false).ID: return 4300;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, true).ID: return 4302;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, false).ID: return 4304;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, true).ID: return 4306;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, false).ID: return 4308;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, true).ID: return 4310;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, false).ID: return 4312;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, true).ID: return 4314;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, false).ID: return 4316;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, true).ID: return 4318;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, false).ID: return 4320;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, true).ID: return 4322;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, false).ID: return 4324;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, true).ID: return 4326;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, false).ID: return 4328;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, true).ID: return 4330;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, false).ID: return 4332;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, true).ID: return 4334;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, false).ID: return 4336;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, true).ID: return 4338;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, false).ID: return 4340;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, true).ID: return 4342;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, false).ID: return 4344;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, true).ID: return 4346;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, false).ID: return 4348;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, true).ID: return 4350;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, false).ID: return 4352;
+ case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3766;
+ case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3768;
+ case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3770;
+ case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3772;
+ case JungleWood::JungleWood(JungleWood::Axis::X).ID: return 117;
+ case JungleWood::JungleWood(JungleWood::Axis::Y).ID: return 118;
+ case JungleWood::JungleWood(JungleWood::Axis::Z).ID: return 119;
+ case Kelp::Kelp(0).ID: return 8934;
+ case Kelp::Kelp(1).ID: return 8935;
+ case Kelp::Kelp(2).ID: return 8936;
+ case Kelp::Kelp(3).ID: return 8937;
+ case Kelp::Kelp(4).ID: return 8938;
+ case Kelp::Kelp(5).ID: return 8939;
+ case Kelp::Kelp(6).ID: return 8940;
+ case Kelp::Kelp(7).ID: return 8941;
+ case Kelp::Kelp(8).ID: return 8942;
+ case Kelp::Kelp(9).ID: return 8943;
+ case Kelp::Kelp(10).ID: return 8944;
+ case Kelp::Kelp(11).ID: return 8945;
+ case Kelp::Kelp(12).ID: return 8946;
+ case Kelp::Kelp(13).ID: return 8947;
+ case Kelp::Kelp(14).ID: return 8948;
+ case Kelp::Kelp(15).ID: return 8949;
+ case Kelp::Kelp(16).ID: return 8950;
+ case Kelp::Kelp(17).ID: return 8951;
+ case Kelp::Kelp(18).ID: return 8952;
+ case Kelp::Kelp(19).ID: return 8953;
+ case Kelp::Kelp(20).ID: return 8954;
+ case Kelp::Kelp(21).ID: return 8955;
+ case Kelp::Kelp(22).ID: return 8956;
+ case Kelp::Kelp(23).ID: return 8957;
+ case Kelp::Kelp(24).ID: return 8958;
+ case Kelp::Kelp(25).ID: return 8959;
+ case KelpPlant::KelpPlant().ID: return 8960;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZM).ID: return 3636;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZP).ID: return 3638;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_XM).ID: return 3640;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_XP).ID: return 3642;
+ case Lantern::Lantern(true).ID: return 11230;
+ case Lantern::Lantern(false).ID: return 11231;
+ case LapisBlock::LapisBlock().ID: return 232;
+ case LapisOre::LapisOre().ID: return 231;
+ case LargeFern::LargeFern(LargeFern::Half::Upper).ID: return 7359;
+ case LargeFern::LargeFern(LargeFern::Half::Lower).ID: return 7360;
+ case Lava::Lava(0).ID: return 50;
+ case Lava::Lava(1).ID: return 51;
+ case Lava::Lava(2).ID: return 52;
+ case Lava::Lava(3).ID: return 53;
+ case Lava::Lava(4).ID: return 54;
+ case Lava::Lava(5).ID: return 55;
+ case Lava::Lava(6).ID: return 56;
+ case Lava::Lava(7).ID: return 57;
+ case Lava::Lava(8).ID: return 58;
+ case Lava::Lava(9).ID: return 59;
+ case Lava::Lava(10).ID: return 60;
+ case Lava::Lava(11).ID: return 61;
+ case Lava::Lava(12).ID: return 62;
+ case Lava::Lava(13).ID: return 63;
+ case Lava::Lava(14).ID: return 64;
+ case Lava::Lava(15).ID: return 65;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 11177;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 11178;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 11179;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 11180;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 11181;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 11182;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 11183;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 11184;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, true).ID: return 11185;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, false).ID: return 11186;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, true).ID: return 11187;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, false).ID: return 11188;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, true).ID: return 11189;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, false).ID: return 11190;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, true).ID: return 11191;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, false).ID: return 11192;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3781;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3782;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3783;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3784;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 3785;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 3786;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 3787;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 3788;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3789;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3790;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3791;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3792;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 3793;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 3794;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 3795;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 3796;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3797;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3798;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3799;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3800;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 3801;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 3802;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 3803;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 3804;
+ case LightBlueBanner::LightBlueBanner(0).ID: return 7409;
+ case LightBlueBanner::LightBlueBanner(1).ID: return 7410;
+ case LightBlueBanner::LightBlueBanner(2).ID: return 7411;
+ case LightBlueBanner::LightBlueBanner(3).ID: return 7412;
+ case LightBlueBanner::LightBlueBanner(4).ID: return 7413;
+ case LightBlueBanner::LightBlueBanner(5).ID: return 7414;
+ case LightBlueBanner::LightBlueBanner(6).ID: return 7415;
+ case LightBlueBanner::LightBlueBanner(7).ID: return 7416;
+ case LightBlueBanner::LightBlueBanner(8).ID: return 7417;
+ case LightBlueBanner::LightBlueBanner(9).ID: return 7418;
+ case LightBlueBanner::LightBlueBanner(10).ID: return 7419;
+ case LightBlueBanner::LightBlueBanner(11).ID: return 7420;
+ case LightBlueBanner::LightBlueBanner(12).ID: return 7421;
+ case LightBlueBanner::LightBlueBanner(13).ID: return 7422;
+ case LightBlueBanner::LightBlueBanner(14).ID: return 7423;
+ case LightBlueBanner::LightBlueBanner(15).ID: return 7424;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Head).ID: return 1096;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Foot).ID: return 1097;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Head).ID: return 1098;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Foot).ID: return 1099;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Head).ID: return 1100;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Foot).ID: return 1101;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Head).ID: return 1102;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Foot).ID: return 1103;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Head).ID: return 1104;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Foot).ID: return 1105;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Head).ID: return 1106;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Foot).ID: return 1107;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Head).ID: return 1108;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Foot).ID: return 1109;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Head).ID: return 1110;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Foot).ID: return 1111;
+ case LightBlueCarpet::LightBlueCarpet().ID: return 7333;
+ case LightBlueConcrete::LightBlueConcrete().ID: return 8905;
+ case LightBlueConcretePowder::LightBlueConcretePowder().ID: return 8921;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8850;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8851;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8852;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8853;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8760;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8761;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8762;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8763;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8764;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8765;
+ case LightBlueStainedGlass::LightBlueStainedGlass().ID: return 4084;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, true).ID: return 6425;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, false).ID: return 6426;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, true).ID: return 6429;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, false).ID: return 6430;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, true).ID: return 6433;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, false).ID: return 6434;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, true).ID: return 6437;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, false).ID: return 6438;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, true).ID: return 6441;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, false).ID: return 6442;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, true).ID: return 6445;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, false).ID: return 6446;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, true).ID: return 6449;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, false).ID: return 6450;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, true).ID: return 6453;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, false).ID: return 6454;
+ case LightBlueTerracotta::LightBlueTerracotta().ID: return 6314;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7629;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7630;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7631;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7632;
+ case LightBlueWool::LightBlueWool().ID: return 1386;
+ case LightGrayBanner::LightGrayBanner(0).ID: return 7489;
+ case LightGrayBanner::LightGrayBanner(1).ID: return 7490;
+ case LightGrayBanner::LightGrayBanner(2).ID: return 7491;
+ case LightGrayBanner::LightGrayBanner(3).ID: return 7492;
+ case LightGrayBanner::LightGrayBanner(4).ID: return 7493;
+ case LightGrayBanner::LightGrayBanner(5).ID: return 7494;
+ case LightGrayBanner::LightGrayBanner(6).ID: return 7495;
+ case LightGrayBanner::LightGrayBanner(7).ID: return 7496;
+ case LightGrayBanner::LightGrayBanner(8).ID: return 7497;
+ case LightGrayBanner::LightGrayBanner(9).ID: return 7498;
+ case LightGrayBanner::LightGrayBanner(10).ID: return 7499;
+ case LightGrayBanner::LightGrayBanner(11).ID: return 7500;
+ case LightGrayBanner::LightGrayBanner(12).ID: return 7501;
+ case LightGrayBanner::LightGrayBanner(13).ID: return 7502;
+ case LightGrayBanner::LightGrayBanner(14).ID: return 7503;
+ case LightGrayBanner::LightGrayBanner(15).ID: return 7504;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Head).ID: return 1176;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Foot).ID: return 1177;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Head).ID: return 1178;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Foot).ID: return 1179;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Head).ID: return 1180;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Foot).ID: return 1181;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Head).ID: return 1182;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Foot).ID: return 1183;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Head).ID: return 1184;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Foot).ID: return 1185;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Head).ID: return 1186;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Foot).ID: return 1187;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Head).ID: return 1188;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Foot).ID: return 1189;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Head).ID: return 1190;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Foot).ID: return 1191;
+ case LightGrayCarpet::LightGrayCarpet().ID: return 7338;
+ case LightGrayConcrete::LightGrayConcrete().ID: return 8910;
+ case LightGrayConcretePowder::LightGrayConcretePowder().ID: return 8926;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8870;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8871;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8872;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8873;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8790;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8791;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8792;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8793;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8794;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8795;
+ case LightGrayStainedGlass::LightGrayStainedGlass().ID: return 4089;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, true).ID: return 6585;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, false).ID: return 6586;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, true).ID: return 6589;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, false).ID: return 6590;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, true).ID: return 6593;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, false).ID: return 6594;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, true).ID: return 6597;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, false).ID: return 6598;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, true).ID: return 6601;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, false).ID: return 6602;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, true).ID: return 6605;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, false).ID: return 6606;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, true).ID: return 6609;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, false).ID: return 6610;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, true).ID: return 6613;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, false).ID: return 6614;
+ case LightGrayTerracotta::LightGrayTerracotta().ID: return 6319;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7649;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7650;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7651;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7652;
+ case LightGrayWool::LightGrayWool().ID: return 1391;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(0).ID: return 6110;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(1).ID: return 6111;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(2).ID: return 6112;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(3).ID: return 6113;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(4).ID: return 6114;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(5).ID: return 6115;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(6).ID: return 6116;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(7).ID: return 6117;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(8).ID: return 6118;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(9).ID: return 6119;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(10).ID: return 6120;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(11).ID: return 6121;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(12).ID: return 6122;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(13).ID: return 6123;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(14).ID: return 6124;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(15).ID: return 6125;
+ case Lilac::Lilac(Lilac::Half::Upper).ID: return 7351;
+ case Lilac::Lilac(Lilac::Half::Lower).ID: return 7352;
+ case LilyOfTheValley::LilyOfTheValley().ID: return 1423;
+ case LilyPad::LilyPad().ID: return 4998;
+ case LimeBanner::LimeBanner(0).ID: return 7441;
+ case LimeBanner::LimeBanner(1).ID: return 7442;
+ case LimeBanner::LimeBanner(2).ID: return 7443;
+ case LimeBanner::LimeBanner(3).ID: return 7444;
+ case LimeBanner::LimeBanner(4).ID: return 7445;
+ case LimeBanner::LimeBanner(5).ID: return 7446;
+ case LimeBanner::LimeBanner(6).ID: return 7447;
+ case LimeBanner::LimeBanner(7).ID: return 7448;
+ case LimeBanner::LimeBanner(8).ID: return 7449;
+ case LimeBanner::LimeBanner(9).ID: return 7450;
+ case LimeBanner::LimeBanner(10).ID: return 7451;
+ case LimeBanner::LimeBanner(11).ID: return 7452;
+ case LimeBanner::LimeBanner(12).ID: return 7453;
+ case LimeBanner::LimeBanner(13).ID: return 7454;
+ case LimeBanner::LimeBanner(14).ID: return 7455;
+ case LimeBanner::LimeBanner(15).ID: return 7456;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Head).ID: return 1128;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Foot).ID: return 1129;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Head).ID: return 1130;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Foot).ID: return 1131;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Head).ID: return 1132;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Foot).ID: return 1133;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Head).ID: return 1134;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Foot).ID: return 1135;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Head).ID: return 1136;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Foot).ID: return 1137;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Head).ID: return 1138;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Foot).ID: return 1139;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Head).ID: return 1140;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Foot).ID: return 1141;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Head).ID: return 1142;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Foot).ID: return 1143;
+ case LimeCarpet::LimeCarpet().ID: return 7335;
+ case LimeConcrete::LimeConcrete().ID: return 8907;
+ case LimeConcretePowder::LimeConcretePowder().ID: return 8923;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8858;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8859;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8860;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8861;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8772;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8773;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8774;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8775;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8776;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8777;
+ case LimeStainedGlass::LimeStainedGlass().ID: return 4086;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, true).ID: return 6489;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, false).ID: return 6490;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, true).ID: return 6493;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, false).ID: return 6494;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, true).ID: return 6497;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, false).ID: return 6498;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, true).ID: return 6501;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, false).ID: return 6502;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, true).ID: return 6505;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, false).ID: return 6506;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, true).ID: return 6509;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, false).ID: return 6510;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, true).ID: return 6513;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, false).ID: return 6514;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, true).ID: return 6517;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, false).ID: return 6518;
+ case LimeTerracotta::LimeTerracotta().ID: return 6316;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7637;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7638;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7639;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7640;
+ case LimeWool::LimeWool().ID: return 1388;
+ case Loom::Loom(eBlockFace::BLOCK_FACE_ZM).ID: return 11131;
+ case Loom::Loom(eBlockFace::BLOCK_FACE_ZP).ID: return 11132;
+ case Loom::Loom(eBlockFace::BLOCK_FACE_XM).ID: return 11133;
+ case Loom::Loom(eBlockFace::BLOCK_FACE_XP).ID: return 11134;
+ case MagentaBanner::MagentaBanner(0).ID: return 7393;
+ case MagentaBanner::MagentaBanner(1).ID: return 7394;
+ case MagentaBanner::MagentaBanner(2).ID: return 7395;
+ case MagentaBanner::MagentaBanner(3).ID: return 7396;
+ case MagentaBanner::MagentaBanner(4).ID: return 7397;
+ case MagentaBanner::MagentaBanner(5).ID: return 7398;
+ case MagentaBanner::MagentaBanner(6).ID: return 7399;
+ case MagentaBanner::MagentaBanner(7).ID: return 7400;
+ case MagentaBanner::MagentaBanner(8).ID: return 7401;
+ case MagentaBanner::MagentaBanner(9).ID: return 7402;
+ case MagentaBanner::MagentaBanner(10).ID: return 7403;
+ case MagentaBanner::MagentaBanner(11).ID: return 7404;
+ case MagentaBanner::MagentaBanner(12).ID: return 7405;
+ case MagentaBanner::MagentaBanner(13).ID: return 7406;
+ case MagentaBanner::MagentaBanner(14).ID: return 7407;
+ case MagentaBanner::MagentaBanner(15).ID: return 7408;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Head).ID: return 1080;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Foot).ID: return 1081;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Head).ID: return 1082;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Foot).ID: return 1083;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Head).ID: return 1084;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Foot).ID: return 1085;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Head).ID: return 1086;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Foot).ID: return 1087;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Head).ID: return 1088;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Foot).ID: return 1089;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Head).ID: return 1090;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Foot).ID: return 1091;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Head).ID: return 1092;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Foot).ID: return 1093;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Head).ID: return 1094;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Foot).ID: return 1095;
+ case MagentaCarpet::MagentaCarpet().ID: return 7332;
+ case MagentaConcrete::MagentaConcrete().ID: return 8904;
+ case MagentaConcretePowder::MagentaConcretePowder().ID: return 8920;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8846;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8847;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8848;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8849;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8754;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8755;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8756;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8757;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8758;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8759;
+ case MagentaStainedGlass::MagentaStainedGlass().ID: return 4083;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, true).ID: return 6393;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, false).ID: return 6394;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, true).ID: return 6397;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, false).ID: return 6398;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, true).ID: return 6401;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, false).ID: return 6402;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, true).ID: return 6405;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, false).ID: return 6406;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, true).ID: return 6409;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, false).ID: return 6410;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, true).ID: return 6413;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, false).ID: return 6414;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, true).ID: return 6417;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, false).ID: return 6418;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, true).ID: return 6421;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, false).ID: return 6422;
+ case MagentaTerracotta::MagentaTerracotta().ID: return 6313;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7625;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7626;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7627;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7628;
+ case MagentaWool::MagentaWool().ID: return 1385;
+ case MagmaBlock::MagmaBlock().ID: return 8717;
+ case Melon::Melon().ID: return 4747;
+ case MelonStem::MelonStem(0).ID: return 4764;
+ case MelonStem::MelonStem(1).ID: return 4765;
+ case MelonStem::MelonStem(2).ID: return 4766;
+ case MelonStem::MelonStem(3).ID: return 4767;
+ case MelonStem::MelonStem(4).ID: return 4768;
+ case MelonStem::MelonStem(5).ID: return 4769;
+ case MelonStem::MelonStem(6).ID: return 4770;
+ case MelonStem::MelonStem(7).ID: return 4771;
+ case MossyCobblestone::MossyCobblestone().ID: return 1432;
+ case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Top).ID: return 10278;
+ case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Bottom).ID: return 10280;
+ case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Double).ID: return 10282;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight).ID: return 9454;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9456;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9458;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9460;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9462;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight).ID: return 9464;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9466;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9468;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9470;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9472;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight).ID: return 9474;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9476;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9478;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9480;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9482;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight).ID: return 9484;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9486;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9488;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9490;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9492;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight).ID: return 9494;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9496;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9498;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9500;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9502;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight).ID: return 9504;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9506;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9508;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9510;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9512;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight).ID: return 9514;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9516;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9518;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9520;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9522;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight).ID: return 9524;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9526;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9528;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9530;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9532;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5707;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5708;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5711;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5712;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5715;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5716;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5719;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5720;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5723;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5724;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5727;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5728;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5731;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5732;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5735;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5736;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5739;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5740;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5743;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5744;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5747;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5748;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5751;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5752;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5755;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5756;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 5759;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 5760;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5763;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5764;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5767;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5768;
+ case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Top).ID: return 10266;
+ case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Bottom).ID: return 10268;
+ case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Double).ID: return 10270;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight).ID: return 9294;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9296;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9298;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9300;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9302;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight).ID: return 9304;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9306;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9308;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9310;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9312;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight).ID: return 9314;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9316;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9318;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9320;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9322;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight).ID: return 9324;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9326;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9328;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9330;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9332;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight).ID: return 9334;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9336;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9338;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9340;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9342;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight).ID: return 9344;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9346;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9348;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9350;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9352;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight).ID: return 9354;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9356;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9358;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9360;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9362;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight).ID: return 9364;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9366;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9368;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9370;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9372;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 10525;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 10526;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 10529;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 10530;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 10533;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 10534;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 10537;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 10538;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 10541;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 10542;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 10545;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 10546;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 10549;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 10550;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 10553;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 10554;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 10557;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 10558;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 10561;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 10562;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 10565;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 10566;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 10569;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 10570;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 10573;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 10574;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 10577;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 10578;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 10581;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 10582;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 10585;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 10586;
+ case MossyStoneBricks::MossyStoneBricks().ID: return 4482;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Normal).ID: return 1399;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Sticky).ID: return 1400;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Normal).ID: return 1401;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Sticky).ID: return 1402;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Normal).ID: return 1403;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Sticky).ID: return 1404;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Normal).ID: return 1405;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Sticky).ID: return 1406;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Normal).ID: return 1407;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Sticky).ID: return 1408;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Normal).ID: return 1409;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Sticky).ID: return 1410;
+ case MushroomStem::MushroomStem(true, true, true, true, true, true).ID: return 4619;
+ case MushroomStem::MushroomStem(true, true, true, true, true, false).ID: return 4620;
+ case MushroomStem::MushroomStem(true, true, true, true, false, true).ID: return 4621;
+ case MushroomStem::MushroomStem(true, true, true, true, false, false).ID: return 4622;
+ case MushroomStem::MushroomStem(true, true, true, false, true, true).ID: return 4623;
+ case MushroomStem::MushroomStem(true, true, true, false, true, false).ID: return 4624;
+ case MushroomStem::MushroomStem(true, true, true, false, false, true).ID: return 4625;
+ case MushroomStem::MushroomStem(true, true, true, false, false, false).ID: return 4626;
+ case MushroomStem::MushroomStem(true, true, false, true, true, true).ID: return 4627;
+ case MushroomStem::MushroomStem(true, true, false, true, true, false).ID: return 4628;
+ case MushroomStem::MushroomStem(true, true, false, true, false, true).ID: return 4629;
+ case MushroomStem::MushroomStem(true, true, false, true, false, false).ID: return 4630;
+ case MushroomStem::MushroomStem(true, true, false, false, true, true).ID: return 4631;
+ case MushroomStem::MushroomStem(true, true, false, false, true, false).ID: return 4632;
+ case MushroomStem::MushroomStem(true, true, false, false, false, true).ID: return 4633;
+ case MushroomStem::MushroomStem(true, true, false, false, false, false).ID: return 4634;
+ case MushroomStem::MushroomStem(true, false, true, true, true, true).ID: return 4635;
+ case MushroomStem::MushroomStem(true, false, true, true, true, false).ID: return 4636;
+ case MushroomStem::MushroomStem(true, false, true, true, false, true).ID: return 4637;
+ case MushroomStem::MushroomStem(true, false, true, true, false, false).ID: return 4638;
+ case MushroomStem::MushroomStem(true, false, true, false, true, true).ID: return 4639;
+ case MushroomStem::MushroomStem(true, false, true, false, true, false).ID: return 4640;
+ case MushroomStem::MushroomStem(true, false, true, false, false, true).ID: return 4641;
+ case MushroomStem::MushroomStem(true, false, true, false, false, false).ID: return 4642;
+ case MushroomStem::MushroomStem(true, false, false, true, true, true).ID: return 4643;
+ case MushroomStem::MushroomStem(true, false, false, true, true, false).ID: return 4644;
+ case MushroomStem::MushroomStem(true, false, false, true, false, true).ID: return 4645;
+ case MushroomStem::MushroomStem(true, false, false, true, false, false).ID: return 4646;
+ case MushroomStem::MushroomStem(true, false, false, false, true, true).ID: return 4647;
+ case MushroomStem::MushroomStem(true, false, false, false, true, false).ID: return 4648;
+ case MushroomStem::MushroomStem(true, false, false, false, false, true).ID: return 4649;
+ case MushroomStem::MushroomStem(true, false, false, false, false, false).ID: return 4650;
+ case MushroomStem::MushroomStem(false, true, true, true, true, true).ID: return 4651;
+ case MushroomStem::MushroomStem(false, true, true, true, true, false).ID: return 4652;
+ case MushroomStem::MushroomStem(false, true, true, true, false, true).ID: return 4653;
+ case MushroomStem::MushroomStem(false, true, true, true, false, false).ID: return 4654;
+ case MushroomStem::MushroomStem(false, true, true, false, true, true).ID: return 4655;
+ case MushroomStem::MushroomStem(false, true, true, false, true, false).ID: return 4656;
+ case MushroomStem::MushroomStem(false, true, true, false, false, true).ID: return 4657;
+ case MushroomStem::MushroomStem(false, true, true, false, false, false).ID: return 4658;
+ case MushroomStem::MushroomStem(false, true, false, true, true, true).ID: return 4659;
+ case MushroomStem::MushroomStem(false, true, false, true, true, false).ID: return 4660;
+ case MushroomStem::MushroomStem(false, true, false, true, false, true).ID: return 4661;
+ case MushroomStem::MushroomStem(false, true, false, true, false, false).ID: return 4662;
+ case MushroomStem::MushroomStem(false, true, false, false, true, true).ID: return 4663;
+ case MushroomStem::MushroomStem(false, true, false, false, true, false).ID: return 4664;
+ case MushroomStem::MushroomStem(false, true, false, false, false, true).ID: return 4665;
+ case MushroomStem::MushroomStem(false, true, false, false, false, false).ID: return 4666;
+ case MushroomStem::MushroomStem(false, false, true, true, true, true).ID: return 4667;
+ case MushroomStem::MushroomStem(false, false, true, true, true, false).ID: return 4668;
+ case MushroomStem::MushroomStem(false, false, true, true, false, true).ID: return 4669;
+ case MushroomStem::MushroomStem(false, false, true, true, false, false).ID: return 4670;
+ case MushroomStem::MushroomStem(false, false, true, false, true, true).ID: return 4671;
+ case MushroomStem::MushroomStem(false, false, true, false, true, false).ID: return 4672;
+ case MushroomStem::MushroomStem(false, false, true, false, false, true).ID: return 4673;
+ case MushroomStem::MushroomStem(false, false, true, false, false, false).ID: return 4674;
+ case MushroomStem::MushroomStem(false, false, false, true, true, true).ID: return 4675;
+ case MushroomStem::MushroomStem(false, false, false, true, true, false).ID: return 4676;
+ case MushroomStem::MushroomStem(false, false, false, true, false, true).ID: return 4677;
+ case MushroomStem::MushroomStem(false, false, false, true, false, false).ID: return 4678;
+ case MushroomStem::MushroomStem(false, false, false, false, true, true).ID: return 4679;
+ case MushroomStem::MushroomStem(false, false, false, false, true, false).ID: return 4680;
+ case MushroomStem::MushroomStem(false, false, false, false, false, true).ID: return 4681;
+ case MushroomStem::MushroomStem(false, false, false, false, false, false).ID: return 4682;
+ case Mycelium::Mycelium(true).ID: return 4996;
+ case Mycelium::Mycelium(false).ID: return 4997;
+ case NetherBrickFence::NetherBrickFence(true, true, true, true).ID: return 5002;
+ case NetherBrickFence::NetherBrickFence(true, true, true, false).ID: return 5003;
+ case NetherBrickFence::NetherBrickFence(true, true, false, true).ID: return 5006;
+ case NetherBrickFence::NetherBrickFence(true, true, false, false).ID: return 5007;
+ case NetherBrickFence::NetherBrickFence(true, false, true, true).ID: return 5010;
+ case NetherBrickFence::NetherBrickFence(true, false, true, false).ID: return 5011;
+ case NetherBrickFence::NetherBrickFence(true, false, false, true).ID: return 5014;
+ case NetherBrickFence::NetherBrickFence(true, false, false, false).ID: return 5015;
+ case NetherBrickFence::NetherBrickFence(false, true, true, true).ID: return 5018;
+ case NetherBrickFence::NetherBrickFence(false, true, true, false).ID: return 5019;
+ case NetherBrickFence::NetherBrickFence(false, true, false, true).ID: return 5022;
+ case NetherBrickFence::NetherBrickFence(false, true, false, false).ID: return 5023;
+ case NetherBrickFence::NetherBrickFence(false, false, true, true).ID: return 5026;
+ case NetherBrickFence::NetherBrickFence(false, false, true, false).ID: return 5027;
+ case NetherBrickFence::NetherBrickFence(false, false, false, true).ID: return 5030;
+ case NetherBrickFence::NetherBrickFence(false, false, false, false).ID: return 5031;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Top).ID: return 7849;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Bottom).ID: return 7851;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double).ID: return 7853;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 5033;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 5035;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 5037;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 5039;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 5041;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 5043;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 5045;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 5047;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 5049;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 5051;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 5053;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 5055;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 5057;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 5059;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 5061;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 5063;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 5065;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 5067;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 5069;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 5071;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 5073;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 5075;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 5077;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 5079;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 5081;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 5083;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 5085;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 5087;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 5089;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 5091;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 5093;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 5095;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 5097;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 5099;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 5101;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 5103;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 5105;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 5107;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 5109;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 5111;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 10717;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 10718;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 10721;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 10722;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 10725;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 10726;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 10729;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 10730;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 10733;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 10734;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 10737;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 10738;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 10741;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 10742;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 10745;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 10746;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 10749;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 10750;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 10753;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 10754;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 10757;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 10758;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 10761;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 10762;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 10765;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 10766;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 10769;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 10770;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 10773;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 10774;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 10777;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 10778;
+ case NetherBricks::NetherBricks().ID: return 4999;
+ case NetherPortal::NetherPortal(NetherPortal::Axis::X).ID: return 4000;
+ case NetherPortal::NetherPortal(NetherPortal::Axis::Z).ID: return 4001;
+ case NetherQuartzOre::NetherQuartzOre().ID: return 6191;
+ case NetherWart::NetherWart(0).ID: return 5112;
+ case NetherWart::NetherWart(1).ID: return 5113;
+ case NetherWart::NetherWart(2).ID: return 5114;
+ case NetherWart::NetherWart(3).ID: return 5115;
+ case NetherWartBlock::NetherWartBlock().ID: return 8718;
+ case Netherrack::Netherrack().ID: return 3997;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, true).ID: return 248;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, false).ID: return 249;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, true).ID: return 250;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, false).ID: return 251;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, true).ID: return 252;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, false).ID: return 253;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, true).ID: return 254;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, false).ID: return 255;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, true).ID: return 256;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, false).ID: return 257;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, true).ID: return 258;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, false).ID: return 259;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, true).ID: return 260;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, false).ID: return 261;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, true).ID: return 262;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, false).ID: return 263;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, true).ID: return 264;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, false).ID: return 265;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, true).ID: return 266;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, false).ID: return 267;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, true).ID: return 268;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, false).ID: return 269;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, true).ID: return 270;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, false).ID: return 271;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, true).ID: return 272;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, false).ID: return 273;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, true).ID: return 274;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, false).ID: return 275;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, true).ID: return 276;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, false).ID: return 277;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, true).ID: return 278;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, false).ID: return 279;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, true).ID: return 280;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, false).ID: return 281;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, true).ID: return 282;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, false).ID: return 283;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, true).ID: return 284;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, false).ID: return 285;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, true).ID: return 286;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, false).ID: return 287;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, true).ID: return 288;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, false).ID: return 289;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, true).ID: return 290;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, false).ID: return 291;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, true).ID: return 292;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, false).ID: return 293;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, true).ID: return 294;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, false).ID: return 295;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, true).ID: return 296;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, false).ID: return 297;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, true).ID: return 298;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, false).ID: return 299;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, true).ID: return 300;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, false).ID: return 301;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, true).ID: return 302;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, false).ID: return 303;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, true).ID: return 304;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, false).ID: return 305;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, true).ID: return 306;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, false).ID: return 307;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, true).ID: return 308;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, false).ID: return 309;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, true).ID: return 310;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, false).ID: return 311;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, true).ID: return 312;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, false).ID: return 313;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, true).ID: return 314;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, false).ID: return 315;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, true).ID: return 316;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, false).ID: return 317;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, true).ID: return 318;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, false).ID: return 319;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, true).ID: return 320;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, false).ID: return 321;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, true).ID: return 322;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, false).ID: return 323;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, true).ID: return 324;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, false).ID: return 325;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, true).ID: return 326;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, false).ID: return 327;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, true).ID: return 328;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, false).ID: return 329;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, true).ID: return 330;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, false).ID: return 331;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, true).ID: return 332;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, false).ID: return 333;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, true).ID: return 334;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, false).ID: return 335;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, true).ID: return 336;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, false).ID: return 337;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, true).ID: return 338;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, false).ID: return 339;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, true).ID: return 340;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, false).ID: return 341;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, true).ID: return 342;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, false).ID: return 343;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, true).ID: return 344;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, false).ID: return 345;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, true).ID: return 346;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, false).ID: return 347;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, true).ID: return 348;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, false).ID: return 349;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, true).ID: return 350;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, false).ID: return 351;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, true).ID: return 352;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, false).ID: return 353;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, true).ID: return 354;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, false).ID: return 355;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, true).ID: return 356;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, false).ID: return 357;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, true).ID: return 358;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, false).ID: return 359;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, true).ID: return 360;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, false).ID: return 361;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, true).ID: return 362;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, false).ID: return 363;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, true).ID: return 364;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, false).ID: return 365;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, true).ID: return 366;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, false).ID: return 367;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, true).ID: return 368;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, false).ID: return 369;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, true).ID: return 370;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, false).ID: return 371;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, true).ID: return 372;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, false).ID: return 373;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, true).ID: return 374;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, false).ID: return 375;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, true).ID: return 376;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, false).ID: return 377;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, true).ID: return 378;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, false).ID: return 379;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, true).ID: return 380;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, false).ID: return 381;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, true).ID: return 382;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, false).ID: return 383;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, true).ID: return 384;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, false).ID: return 385;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, true).ID: return 386;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, false).ID: return 387;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, true).ID: return 388;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, false).ID: return 389;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, true).ID: return 390;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, false).ID: return 391;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, true).ID: return 392;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, false).ID: return 393;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, true).ID: return 394;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, false).ID: return 395;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, true).ID: return 396;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, false).ID: return 397;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, true).ID: return 398;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, false).ID: return 399;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, true).ID: return 400;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, false).ID: return 401;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, true).ID: return 402;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, false).ID: return 403;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, true).ID: return 404;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, false).ID: return 405;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, true).ID: return 406;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, false).ID: return 407;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, true).ID: return 408;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, false).ID: return 409;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, true).ID: return 410;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, false).ID: return 411;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, true).ID: return 412;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, false).ID: return 413;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, true).ID: return 414;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, false).ID: return 415;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, true).ID: return 416;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, false).ID: return 417;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, true).ID: return 418;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, false).ID: return 419;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, true).ID: return 420;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, false).ID: return 421;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, true).ID: return 422;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, false).ID: return 423;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, true).ID: return 424;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, false).ID: return 425;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, true).ID: return 426;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, false).ID: return 427;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, true).ID: return 428;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, false).ID: return 429;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, true).ID: return 430;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, false).ID: return 431;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, true).ID: return 432;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, false).ID: return 433;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, true).ID: return 434;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, false).ID: return 435;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, true).ID: return 436;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, false).ID: return 437;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, true).ID: return 438;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, false).ID: return 439;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, true).ID: return 440;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, false).ID: return 441;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, true).ID: return 442;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, false).ID: return 443;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, true).ID: return 444;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, false).ID: return 445;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, true).ID: return 446;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, false).ID: return 447;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, true).ID: return 448;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, false).ID: return 449;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, true).ID: return 450;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, false).ID: return 451;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, true).ID: return 452;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, false).ID: return 453;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, true).ID: return 454;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, false).ID: return 455;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, true).ID: return 456;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, false).ID: return 457;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, true).ID: return 458;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, false).ID: return 459;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, true).ID: return 460;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, false).ID: return 461;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, true).ID: return 462;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, false).ID: return 463;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, true).ID: return 464;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, false).ID: return 465;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, true).ID: return 466;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, false).ID: return 467;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, true).ID: return 468;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, false).ID: return 469;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, true).ID: return 470;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, false).ID: return 471;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, true).ID: return 472;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, false).ID: return 473;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, true).ID: return 474;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, false).ID: return 475;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, true).ID: return 476;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, false).ID: return 477;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, true).ID: return 478;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, false).ID: return 479;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, true).ID: return 480;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, false).ID: return 481;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, true).ID: return 482;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, false).ID: return 483;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, true).ID: return 484;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, false).ID: return 485;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, true).ID: return 486;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, false).ID: return 487;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, true).ID: return 488;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, false).ID: return 489;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, true).ID: return 490;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, false).ID: return 491;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, true).ID: return 492;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, false).ID: return 493;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, true).ID: return 494;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, false).ID: return 495;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, true).ID: return 496;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, false).ID: return 497;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, true).ID: return 498;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, false).ID: return 499;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, true).ID: return 500;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, false).ID: return 501;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, true).ID: return 502;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, false).ID: return 503;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, true).ID: return 504;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, false).ID: return 505;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, true).ID: return 506;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, false).ID: return 507;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, true).ID: return 508;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, false).ID: return 509;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, true).ID: return 510;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, false).ID: return 511;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, true).ID: return 512;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, false).ID: return 513;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, true).ID: return 514;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, false).ID: return 515;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, true).ID: return 516;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, false).ID: return 517;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, true).ID: return 518;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, false).ID: return 519;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, true).ID: return 520;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, false).ID: return 521;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, true).ID: return 522;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, false).ID: return 523;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, true).ID: return 524;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, false).ID: return 525;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, true).ID: return 526;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, false).ID: return 527;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, true).ID: return 528;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, false).ID: return 529;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, true).ID: return 530;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, false).ID: return 531;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, true).ID: return 532;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, false).ID: return 533;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, true).ID: return 534;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, false).ID: return 535;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, true).ID: return 536;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, false).ID: return 537;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, true).ID: return 538;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, false).ID: return 539;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, true).ID: return 540;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, false).ID: return 541;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, true).ID: return 542;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, false).ID: return 543;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, true).ID: return 544;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, false).ID: return 545;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, true).ID: return 546;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, false).ID: return 547;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, true).ID: return 548;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, false).ID: return 549;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, true).ID: return 550;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, false).ID: return 551;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, true).ID: return 552;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, false).ID: return 553;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, true).ID: return 554;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, false).ID: return 555;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, true).ID: return 556;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, false).ID: return 557;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, true).ID: return 558;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, false).ID: return 559;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, true).ID: return 560;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, false).ID: return 561;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, true).ID: return 562;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, false).ID: return 563;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, true).ID: return 564;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, false).ID: return 565;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, true).ID: return 566;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, false).ID: return 567;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, true).ID: return 568;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, false).ID: return 569;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, true).ID: return 570;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, false).ID: return 571;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, true).ID: return 572;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, false).ID: return 573;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, true).ID: return 574;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, false).ID: return 575;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, true).ID: return 576;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, false).ID: return 577;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, true).ID: return 578;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, false).ID: return 579;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, true).ID: return 580;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, false).ID: return 581;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, true).ID: return 582;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, false).ID: return 583;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, true).ID: return 584;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, false).ID: return 585;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, true).ID: return 586;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, false).ID: return 587;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, true).ID: return 588;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, false).ID: return 589;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, true).ID: return 590;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, false).ID: return 591;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, true).ID: return 592;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, false).ID: return 593;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, true).ID: return 594;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, false).ID: return 595;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, true).ID: return 596;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, false).ID: return 597;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, true).ID: return 598;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, false).ID: return 599;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, true).ID: return 600;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, false).ID: return 601;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, true).ID: return 602;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, false).ID: return 603;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, true).ID: return 604;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, false).ID: return 605;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, true).ID: return 606;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, false).ID: return 607;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, true).ID: return 608;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, false).ID: return 609;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, true).ID: return 610;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, false).ID: return 611;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, true).ID: return 612;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, false).ID: return 613;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, true).ID: return 614;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, false).ID: return 615;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, true).ID: return 616;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, false).ID: return 617;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, true).ID: return 618;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, false).ID: return 619;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, true).ID: return 620;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, false).ID: return 621;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, true).ID: return 622;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, false).ID: return 623;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, true).ID: return 624;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, false).ID: return 625;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, true).ID: return 626;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, false).ID: return 627;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, true).ID: return 628;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, false).ID: return 629;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, true).ID: return 630;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, false).ID: return 631;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, true).ID: return 632;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, false).ID: return 633;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, true).ID: return 634;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, false).ID: return 635;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, true).ID: return 636;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, false).ID: return 637;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, true).ID: return 638;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, false).ID: return 639;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, true).ID: return 640;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, false).ID: return 641;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, true).ID: return 642;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, false).ID: return 643;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, true).ID: return 644;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, false).ID: return 645;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, true).ID: return 646;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, false).ID: return 647;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, true).ID: return 648;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, false).ID: return 649;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, true).ID: return 650;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, false).ID: return 651;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, true).ID: return 652;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, false).ID: return 653;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, true).ID: return 654;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, false).ID: return 655;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, true).ID: return 656;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, false).ID: return 657;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, true).ID: return 658;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, false).ID: return 659;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, true).ID: return 660;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, false).ID: return 661;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, true).ID: return 662;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, false).ID: return 663;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, true).ID: return 664;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, false).ID: return 665;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, true).ID: return 666;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, false).ID: return 667;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, true).ID: return 668;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, false).ID: return 669;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, true).ID: return 670;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, false).ID: return 671;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, true).ID: return 672;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, false).ID: return 673;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, true).ID: return 674;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, false).ID: return 675;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, true).ID: return 676;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, false).ID: return 677;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, true).ID: return 678;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, false).ID: return 679;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, true).ID: return 680;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, false).ID: return 681;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, true).ID: return 682;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, false).ID: return 683;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, true).ID: return 684;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, false).ID: return 685;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, true).ID: return 686;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, false).ID: return 687;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, true).ID: return 688;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, false).ID: return 689;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, true).ID: return 690;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, false).ID: return 691;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, true).ID: return 692;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, false).ID: return 693;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, true).ID: return 694;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, false).ID: return 695;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, true).ID: return 696;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, false).ID: return 697;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, true).ID: return 698;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, false).ID: return 699;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, true).ID: return 700;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, false).ID: return 701;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, true).ID: return 702;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, false).ID: return 703;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, true).ID: return 704;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, false).ID: return 705;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, true).ID: return 706;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, false).ID: return 707;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, true).ID: return 708;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, false).ID: return 709;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, true).ID: return 710;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, false).ID: return 711;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, true).ID: return 712;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, false).ID: return 713;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, true).ID: return 714;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, false).ID: return 715;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, true).ID: return 716;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, false).ID: return 717;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, true).ID: return 718;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, false).ID: return 719;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, true).ID: return 720;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, false).ID: return 721;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, true).ID: return 722;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, false).ID: return 723;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, true).ID: return 724;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, false).ID: return 725;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, true).ID: return 726;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, false).ID: return 727;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, true).ID: return 728;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, false).ID: return 729;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, true).ID: return 730;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, false).ID: return 731;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, true).ID: return 732;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, false).ID: return 733;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, true).ID: return 734;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, false).ID: return 735;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, true).ID: return 736;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, false).ID: return 737;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, true).ID: return 738;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, false).ID: return 739;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, true).ID: return 740;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, false).ID: return 741;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, true).ID: return 742;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, false).ID: return 743;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, true).ID: return 744;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, false).ID: return 745;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, true).ID: return 746;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, false).ID: return 747;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, true).ID: return 748;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, false).ID: return 749;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, true).ID: return 750;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, false).ID: return 751;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, true).ID: return 752;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, false).ID: return 753;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, true).ID: return 754;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, false).ID: return 755;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, true).ID: return 756;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, false).ID: return 757;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, true).ID: return 758;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, false).ID: return 759;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, true).ID: return 760;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, false).ID: return 761;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, true).ID: return 762;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, false).ID: return 763;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, true).ID: return 764;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, false).ID: return 765;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, true).ID: return 766;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, false).ID: return 767;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, true).ID: return 768;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, false).ID: return 769;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, true).ID: return 770;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, false).ID: return 771;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, true).ID: return 772;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, false).ID: return 773;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, true).ID: return 774;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, false).ID: return 775;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, true).ID: return 776;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, false).ID: return 777;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, true).ID: return 778;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, false).ID: return 779;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, true).ID: return 780;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, false).ID: return 781;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, true).ID: return 782;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, false).ID: return 783;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, true).ID: return 784;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, false).ID: return 785;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, true).ID: return 786;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, false).ID: return 787;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, true).ID: return 788;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, false).ID: return 789;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, true).ID: return 790;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, false).ID: return 791;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, true).ID: return 792;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, false).ID: return 793;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, true).ID: return 794;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, false).ID: return 795;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, true).ID: return 796;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, false).ID: return 797;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, true).ID: return 798;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, false).ID: return 799;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, true).ID: return 800;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, false).ID: return 801;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, true).ID: return 802;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, false).ID: return 803;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, true).ID: return 804;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, false).ID: return 805;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, true).ID: return 806;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, false).ID: return 807;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, true).ID: return 808;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, false).ID: return 809;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, true).ID: return 810;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, false).ID: return 811;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, true).ID: return 812;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, false).ID: return 813;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, true).ID: return 814;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, false).ID: return 815;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, true).ID: return 816;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, false).ID: return 817;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, true).ID: return 818;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, false).ID: return 819;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, true).ID: return 820;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, false).ID: return 821;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, true).ID: return 822;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, false).ID: return 823;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, true).ID: return 824;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, false).ID: return 825;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, true).ID: return 826;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, false).ID: return 827;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, true).ID: return 828;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, false).ID: return 829;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, true).ID: return 830;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, false).ID: return 831;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, true).ID: return 832;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, false).ID: return 833;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, true).ID: return 834;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, false).ID: return 835;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, true).ID: return 836;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, false).ID: return 837;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, true).ID: return 838;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, false).ID: return 839;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, true).ID: return 840;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, false).ID: return 841;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, true).ID: return 842;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, false).ID: return 843;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, true).ID: return 844;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, false).ID: return 845;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, true).ID: return 846;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, false).ID: return 847;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, true).ID: return 848;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, false).ID: return 849;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, true).ID: return 850;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, false).ID: return 851;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, true).ID: return 852;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, false).ID: return 853;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, true).ID: return 854;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, false).ID: return 855;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, true).ID: return 856;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, false).ID: return 857;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, true).ID: return 858;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, false).ID: return 859;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, true).ID: return 860;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, false).ID: return 861;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, true).ID: return 862;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, false).ID: return 863;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, true).ID: return 864;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, false).ID: return 865;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, true).ID: return 866;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, false).ID: return 867;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, true).ID: return 868;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, false).ID: return 869;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, true).ID: return 870;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, false).ID: return 871;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, true).ID: return 872;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, false).ID: return 873;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, true).ID: return 874;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, false).ID: return 875;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, true).ID: return 876;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, false).ID: return 877;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, true).ID: return 878;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, false).ID: return 879;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, true).ID: return 880;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, false).ID: return 881;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, true).ID: return 882;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, false).ID: return 883;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, true).ID: return 884;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, false).ID: return 885;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, true).ID: return 886;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, false).ID: return 887;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, true).ID: return 888;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, false).ID: return 889;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, true).ID: return 890;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, false).ID: return 891;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, true).ID: return 892;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, false).ID: return 893;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, true).ID: return 894;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, false).ID: return 895;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, true).ID: return 896;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, false).ID: return 897;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, true).ID: return 898;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, false).ID: return 899;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, true).ID: return 900;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, false).ID: return 901;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, true).ID: return 902;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, false).ID: return 903;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, true).ID: return 904;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, false).ID: return 905;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, true).ID: return 906;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, false).ID: return 907;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, true).ID: return 908;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, false).ID: return 909;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, true).ID: return 910;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, false).ID: return 911;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, true).ID: return 912;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, false).ID: return 913;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, true).ID: return 914;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, false).ID: return 915;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, true).ID: return 916;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, false).ID: return 917;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, true).ID: return 918;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, false).ID: return 919;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, true).ID: return 920;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, false).ID: return 921;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, true).ID: return 922;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, false).ID: return 923;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, true).ID: return 924;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, false).ID: return 925;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, true).ID: return 926;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, false).ID: return 927;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, true).ID: return 928;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, false).ID: return 929;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, true).ID: return 930;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, false).ID: return 931;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, true).ID: return 932;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, false).ID: return 933;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, true).ID: return 934;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, false).ID: return 935;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, true).ID: return 936;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, false).ID: return 937;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, true).ID: return 938;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, false).ID: return 939;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, true).ID: return 940;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, false).ID: return 941;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, true).ID: return 942;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, false).ID: return 943;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, true).ID: return 944;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, false).ID: return 945;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, true).ID: return 946;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, false).ID: return 947;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, true).ID: return 948;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, false).ID: return 949;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, true).ID: return 950;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, false).ID: return 951;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, true).ID: return 952;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, false).ID: return 953;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, true).ID: return 954;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, false).ID: return 955;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, true).ID: return 956;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, false).ID: return 957;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, true).ID: return 958;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, false).ID: return 959;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, true).ID: return 960;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, false).ID: return 961;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, true).ID: return 962;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, false).ID: return 963;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, true).ID: return 964;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, false).ID: return 965;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, true).ID: return 966;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, false).ID: return 967;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, true).ID: return 968;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, false).ID: return 969;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, true).ID: return 970;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, false).ID: return 971;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, true).ID: return 972;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, false).ID: return 973;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, true).ID: return 974;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, false).ID: return 975;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, true).ID: return 976;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, false).ID: return 977;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, true).ID: return 978;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, false).ID: return 979;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, true).ID: return 980;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, false).ID: return 981;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, true).ID: return 982;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, false).ID: return 983;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, true).ID: return 984;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, false).ID: return 985;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, true).ID: return 986;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, false).ID: return 987;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, true).ID: return 988;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, false).ID: return 989;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, true).ID: return 990;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, false).ID: return 991;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, true).ID: return 992;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, false).ID: return 993;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, true).ID: return 994;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, false).ID: return 995;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, true).ID: return 996;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, false).ID: return 997;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, true).ID: return 998;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, false).ID: return 999;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, true).ID: return 1000;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, false).ID: return 1001;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, true).ID: return 1002;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, false).ID: return 1003;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, true).ID: return 1004;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, false).ID: return 1005;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, true).ID: return 1006;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, false).ID: return 1007;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, true).ID: return 1008;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, false).ID: return 1009;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, true).ID: return 1010;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, false).ID: return 1011;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, true).ID: return 1012;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, false).ID: return 1013;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, true).ID: return 1014;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, false).ID: return 1015;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, true).ID: return 1016;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, false).ID: return 1017;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, true).ID: return 1018;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, false).ID: return 1019;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, true).ID: return 1020;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, false).ID: return 1021;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, true).ID: return 1022;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, false).ID: return 1023;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, true).ID: return 1024;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, false).ID: return 1025;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, true).ID: return 1026;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, false).ID: return 1027;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, true).ID: return 1028;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, false).ID: return 1029;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, true).ID: return 1030;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, false).ID: return 1031;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, true).ID: return 1032;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, false).ID: return 1033;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, true).ID: return 1034;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, false).ID: return 1035;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, true).ID: return 1036;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, false).ID: return 1037;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, true).ID: return 1038;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, false).ID: return 1039;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, true).ID: return 1040;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, false).ID: return 1041;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, true).ID: return 1042;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, false).ID: return 1043;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, true).ID: return 1044;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, false).ID: return 1045;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, true).ID: return 1046;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, false).ID: return 1047;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5810;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5811;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5812;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5813;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5814;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5815;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5816;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5817;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5818;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5819;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5820;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5821;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5822;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5823;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5824;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5825;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5826;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5827;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5828;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5829;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5830;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5831;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5832;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5833;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3571;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3572;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3573;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3574;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3575;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3576;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3577;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3578;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3579;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3580;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3581;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3582;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3583;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3584;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3585;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3586;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3587;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3588;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3589;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3590;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3591;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3592;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3593;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3594;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3595;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3596;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3597;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3598;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3599;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3600;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3601;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3602;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3603;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3604;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3605;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3606;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3607;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3608;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3609;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3610;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3611;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3612;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3613;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3614;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3615;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3616;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3617;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3618;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3619;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3620;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3621;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3622;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3623;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3624;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3625;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3626;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3627;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3628;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3629;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3630;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3631;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3632;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3633;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3634;
+ case OakFence::OakFence(true, true, true, true).ID: return 3966;
+ case OakFence::OakFence(true, true, true, false).ID: return 3967;
+ case OakFence::OakFence(true, true, false, true).ID: return 3970;
+ case OakFence::OakFence(true, true, false, false).ID: return 3971;
+ case OakFence::OakFence(true, false, true, true).ID: return 3974;
+ case OakFence::OakFence(true, false, true, false).ID: return 3975;
+ case OakFence::OakFence(true, false, false, true).ID: return 3978;
+ case OakFence::OakFence(true, false, false, false).ID: return 3979;
+ case OakFence::OakFence(false, true, true, true).ID: return 3982;
+ case OakFence::OakFence(false, true, true, false).ID: return 3983;
+ case OakFence::OakFence(false, true, false, true).ID: return 3986;
+ case OakFence::OakFence(false, true, false, false).ID: return 3987;
+ case OakFence::OakFence(false, false, true, true).ID: return 3990;
+ case OakFence::OakFence(false, false, true, false).ID: return 3991;
+ case OakFence::OakFence(false, false, false, true).ID: return 3994;
+ case OakFence::OakFence(false, false, false, false).ID: return 3995;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 4804;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 4805;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 4806;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 4807;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 4808;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 4809;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 4810;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 4811;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 4812;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 4813;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 4814;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 4815;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 4816;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 4817;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 4818;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 4819;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 4820;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 4821;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 4822;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 4823;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 4824;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 4825;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 4826;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 4827;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 4828;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 4829;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 4830;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 4831;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 4832;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 4833;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 4834;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 4835;
+ case OakLeaves::OakLeaves(1, true).ID: return 144;
+ case OakLeaves::OakLeaves(1, false).ID: return 145;
+ case OakLeaves::OakLeaves(2, true).ID: return 146;
+ case OakLeaves::OakLeaves(2, false).ID: return 147;
+ case OakLeaves::OakLeaves(3, true).ID: return 148;
+ case OakLeaves::OakLeaves(3, false).ID: return 149;
+ case OakLeaves::OakLeaves(4, true).ID: return 150;
+ case OakLeaves::OakLeaves(4, false).ID: return 151;
+ case OakLeaves::OakLeaves(5, true).ID: return 152;
+ case OakLeaves::OakLeaves(5, false).ID: return 153;
+ case OakLeaves::OakLeaves(6, true).ID: return 154;
+ case OakLeaves::OakLeaves(6, false).ID: return 155;
+ case OakLeaves::OakLeaves(7, true).ID: return 156;
+ case OakLeaves::OakLeaves(7, false).ID: return 157;
+ case OakLog::OakLog(OakLog::Axis::X).ID: return 72;
+ case OakLog::OakLog(OakLog::Axis::Y).ID: return 73;
+ case OakLog::OakLog(OakLog::Axis::Z).ID: return 74;
+ case OakPlanks::OakPlanks().ID: return 15;
+ case OakPressurePlate::OakPressurePlate(true).ID: return 3871;
+ case OakPressurePlate::OakPressurePlate(false).ID: return 3872;
+ case OakSapling::OakSapling(0).ID: return 21;
+ case OakSapling::OakSapling(1).ID: return 22;
+ case OakSign::OakSign(0).ID: return 3380;
+ case OakSign::OakSign(1).ID: return 3382;
+ case OakSign::OakSign(2).ID: return 3384;
+ case OakSign::OakSign(3).ID: return 3386;
+ case OakSign::OakSign(4).ID: return 3388;
+ case OakSign::OakSign(5).ID: return 3390;
+ case OakSign::OakSign(6).ID: return 3392;
+ case OakSign::OakSign(7).ID: return 3394;
+ case OakSign::OakSign(8).ID: return 3396;
+ case OakSign::OakSign(9).ID: return 3398;
+ case OakSign::OakSign(10).ID: return 3400;
+ case OakSign::OakSign(11).ID: return 3402;
+ case OakSign::OakSign(12).ID: return 3404;
+ case OakSign::OakSign(13).ID: return 3406;
+ case OakSign::OakSign(14).ID: return 3408;
+ case OakSign::OakSign(15).ID: return 3410;
+ case OakSlab::OakSlab(OakSlab::Type::Top).ID: return 7765;
+ case OakSlab::OakSlab(OakSlab::Type::Bottom).ID: return 7767;
+ case OakSlab::OakSlab(OakSlab::Type::Double).ID: return 7769;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1953;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1955;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1957;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1959;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1961;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1963;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1965;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1967;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1969;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1971;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1973;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1975;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1977;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1979;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1981;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1983;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1985;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1987;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1989;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1991;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1993;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1995;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1997;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1999;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 2001;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 2003;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 2005;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 2007;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 2009;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 2011;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 2013;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 2015;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 2017;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 2019;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 2021;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 2023;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 2025;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 2027;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 2029;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 2031;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, true).ID: return 4098;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, false).ID: return 4100;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, true).ID: return 4102;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, false).ID: return 4104;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, true).ID: return 4106;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, false).ID: return 4108;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, true).ID: return 4110;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, false).ID: return 4112;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, true).ID: return 4114;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, false).ID: return 4116;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, true).ID: return 4118;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, false).ID: return 4120;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, true).ID: return 4122;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, false).ID: return 4124;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, true).ID: return 4126;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, false).ID: return 4128;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, true).ID: return 4130;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, false).ID: return 4132;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, true).ID: return 4134;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, false).ID: return 4136;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, true).ID: return 4138;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, false).ID: return 4140;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, true).ID: return 4142;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, false).ID: return 4144;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, true).ID: return 4146;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, false).ID: return 4148;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, true).ID: return 4150;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, false).ID: return 4152;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, true).ID: return 4154;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, false).ID: return 4156;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, true).ID: return 4158;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, false).ID: return 4160;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3734;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3736;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3738;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3740;
+ case OakWood::OakWood(OakWood::Axis::X).ID: return 108;
+ case OakWood::OakWood(OakWood::Axis::Y).ID: return 109;
+ case OakWood::OakWood(OakWood::Axis::Z).ID: return 110;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, true).ID: return 8724;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, false).ID: return 8725;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XP, true).ID: return 8726;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XP, false).ID: return 8727;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, true).ID: return 8728;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, false).ID: return 8729;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XM, true).ID: return 8730;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XM, false).ID: return 8731;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YP, true).ID: return 8732;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YP, false).ID: return 8733;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YM, true).ID: return 8734;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YM, false).ID: return 8735;
+ case Obsidian::Obsidian().ID: return 1433;
+ case OrangeBanner::OrangeBanner(0).ID: return 7377;
+ case OrangeBanner::OrangeBanner(1).ID: return 7378;
+ case OrangeBanner::OrangeBanner(2).ID: return 7379;
+ case OrangeBanner::OrangeBanner(3).ID: return 7380;
+ case OrangeBanner::OrangeBanner(4).ID: return 7381;
+ case OrangeBanner::OrangeBanner(5).ID: return 7382;
+ case OrangeBanner::OrangeBanner(6).ID: return 7383;
+ case OrangeBanner::OrangeBanner(7).ID: return 7384;
+ case OrangeBanner::OrangeBanner(8).ID: return 7385;
+ case OrangeBanner::OrangeBanner(9).ID: return 7386;
+ case OrangeBanner::OrangeBanner(10).ID: return 7387;
+ case OrangeBanner::OrangeBanner(11).ID: return 7388;
+ case OrangeBanner::OrangeBanner(12).ID: return 7389;
+ case OrangeBanner::OrangeBanner(13).ID: return 7390;
+ case OrangeBanner::OrangeBanner(14).ID: return 7391;
+ case OrangeBanner::OrangeBanner(15).ID: return 7392;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Head).ID: return 1064;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Foot).ID: return 1065;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Head).ID: return 1066;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Foot).ID: return 1067;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Head).ID: return 1068;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Foot).ID: return 1069;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Head).ID: return 1070;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Foot).ID: return 1071;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Head).ID: return 1072;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Foot).ID: return 1073;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Head).ID: return 1074;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Foot).ID: return 1075;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Head).ID: return 1076;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Foot).ID: return 1077;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Head).ID: return 1078;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Foot).ID: return 1079;
+ case OrangeCarpet::OrangeCarpet().ID: return 7331;
+ case OrangeConcrete::OrangeConcrete().ID: return 8903;
+ case OrangeConcretePowder::OrangeConcretePowder().ID: return 8919;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8842;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8843;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8844;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8845;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8748;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8749;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8750;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8751;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8752;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8753;
+ case OrangeStainedGlass::OrangeStainedGlass().ID: return 4082;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, true).ID: return 6361;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, false).ID: return 6362;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, true).ID: return 6365;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, false).ID: return 6366;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, true).ID: return 6369;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, false).ID: return 6370;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, true).ID: return 6373;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, false).ID: return 6374;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, true).ID: return 6377;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, false).ID: return 6378;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, true).ID: return 6381;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, false).ID: return 6382;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, true).ID: return 6385;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, false).ID: return 6386;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, true).ID: return 6389;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, false).ID: return 6390;
+ case OrangeTerracotta::OrangeTerracotta().ID: return 6312;
+ case OrangeTulip::OrangeTulip().ID: return 1417;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7621;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7622;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7623;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7624;
+ case OrangeWool::OrangeWool().ID: return 1384;
+ case OxeyeDaisy::OxeyeDaisy().ID: return 1420;
+ case PackedIce::PackedIce().ID: return 7348;
+ case Peony::Peony(Peony::Half::Upper).ID: return 7355;
+ case Peony::Peony(Peony::Half::Lower).ID: return 7356;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Top).ID: return 7825;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Bottom).ID: return 7827;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double).ID: return 7829;
+ case PinkBanner::PinkBanner(0).ID: return 7457;
+ case PinkBanner::PinkBanner(1).ID: return 7458;
+ case PinkBanner::PinkBanner(2).ID: return 7459;
+ case PinkBanner::PinkBanner(3).ID: return 7460;
+ case PinkBanner::PinkBanner(4).ID: return 7461;
+ case PinkBanner::PinkBanner(5).ID: return 7462;
+ case PinkBanner::PinkBanner(6).ID: return 7463;
+ case PinkBanner::PinkBanner(7).ID: return 7464;
+ case PinkBanner::PinkBanner(8).ID: return 7465;
+ case PinkBanner::PinkBanner(9).ID: return 7466;
+ case PinkBanner::PinkBanner(10).ID: return 7467;
+ case PinkBanner::PinkBanner(11).ID: return 7468;
+ case PinkBanner::PinkBanner(12).ID: return 7469;
+ case PinkBanner::PinkBanner(13).ID: return 7470;
+ case PinkBanner::PinkBanner(14).ID: return 7471;
+ case PinkBanner::PinkBanner(15).ID: return 7472;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Head).ID: return 1144;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Foot).ID: return 1145;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Head).ID: return 1146;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Foot).ID: return 1147;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Head).ID: return 1148;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Foot).ID: return 1149;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Head).ID: return 1150;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Foot).ID: return 1151;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Head).ID: return 1152;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Foot).ID: return 1153;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Head).ID: return 1154;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Foot).ID: return 1155;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Head).ID: return 1156;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Foot).ID: return 1157;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Head).ID: return 1158;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Foot).ID: return 1159;
+ case PinkCarpet::PinkCarpet().ID: return 7336;
+ case PinkConcrete::PinkConcrete().ID: return 8908;
+ case PinkConcretePowder::PinkConcretePowder().ID: return 8924;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8862;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8863;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8864;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8865;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8778;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8779;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8780;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8781;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8782;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8783;
+ case PinkStainedGlass::PinkStainedGlass().ID: return 4087;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, true).ID: return 6521;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, false).ID: return 6522;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, true).ID: return 6525;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, false).ID: return 6526;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, true).ID: return 6529;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, false).ID: return 6530;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, true).ID: return 6533;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, false).ID: return 6534;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, true).ID: return 6537;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, false).ID: return 6538;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, true).ID: return 6541;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, false).ID: return 6542;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, true).ID: return 6545;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, false).ID: return 6546;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, true).ID: return 6549;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, false).ID: return 6550;
+ case PinkTerracotta::PinkTerracotta().ID: return 6317;
+ case PinkTulip::PinkTulip().ID: return 1419;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7641;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7642;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7643;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7644;
+ case PinkWool::PinkWool().ID: return 1389;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZM).ID: return 1347;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_XP).ID: return 1348;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZP).ID: return 1349;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_XM).ID: return 1350;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_YP).ID: return 1351;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_YM).ID: return 1352;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZM).ID: return 1353;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_XP).ID: return 1354;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZP).ID: return 1355;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_XM).ID: return 1356;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_YP).ID: return 1357;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_YM).ID: return 1358;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Normal).ID: return 1359;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Sticky).ID: return 1360;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Normal).ID: return 1361;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Sticky).ID: return 1362;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Normal).ID: return 1363;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Sticky).ID: return 1364;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Normal).ID: return 1365;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Sticky).ID: return 1366;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Normal).ID: return 1367;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Sticky).ID: return 1368;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Normal).ID: return 1369;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Sticky).ID: return 1370;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Normal).ID: return 1371;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Sticky).ID: return 1372;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Normal).ID: return 1373;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Sticky).ID: return 1374;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Normal).ID: return 1375;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Sticky).ID: return 1376;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Normal).ID: return 1377;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Sticky).ID: return 1378;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Normal).ID: return 1379;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Sticky).ID: return 1380;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Normal).ID: return 1381;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Sticky).ID: return 1382;
+ case PlayerHead::PlayerHead(0).ID: return 6014;
+ case PlayerHead::PlayerHead(1).ID: return 6015;
+ case PlayerHead::PlayerHead(2).ID: return 6016;
+ case PlayerHead::PlayerHead(3).ID: return 6017;
+ case PlayerHead::PlayerHead(4).ID: return 6018;
+ case PlayerHead::PlayerHead(5).ID: return 6019;
+ case PlayerHead::PlayerHead(6).ID: return 6020;
+ case PlayerHead::PlayerHead(7).ID: return 6021;
+ case PlayerHead::PlayerHead(8).ID: return 6022;
+ case PlayerHead::PlayerHead(9).ID: return 6023;
+ case PlayerHead::PlayerHead(10).ID: return 6024;
+ case PlayerHead::PlayerHead(11).ID: return 6025;
+ case PlayerHead::PlayerHead(12).ID: return 6026;
+ case PlayerHead::PlayerHead(13).ID: return 6027;
+ case PlayerHead::PlayerHead(14).ID: return 6028;
+ case PlayerHead::PlayerHead(15).ID: return 6029;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 6030;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 6031;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 6032;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 6033;
+ case Podzol::Podzol(true).ID: return 12;
+ case Podzol::Podzol(false).ID: return 13;
+ case PolishedAndesite::PolishedAndesite().ID: return 7;
+ case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Top).ID: return 10320;
+ case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Bottom).ID: return 10322;
+ case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Double).ID: return 10324;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight).ID: return 10094;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10096;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10098;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10100;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10102;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight).ID: return 10104;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10106;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10108;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10110;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10112;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight).ID: return 10114;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10116;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10118;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10120;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10122;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight).ID: return 10124;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10126;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10128;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10130;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10132;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight).ID: return 10134;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10136;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10138;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10140;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10142;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight).ID: return 10144;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10146;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10148;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10150;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10152;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight).ID: return 10154;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10156;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10158;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10160;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10162;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight).ID: return 10164;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10166;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10168;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10170;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10172;
+ case PolishedDiorite::PolishedDiorite().ID: return 5;
+ case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Top).ID: return 10272;
+ case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Bottom).ID: return 10274;
+ case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Double).ID: return 10276;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight).ID: return 9374;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9376;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight).ID: return 9378;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9380;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight).ID: return 9382;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight).ID: return 9384;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9386;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight).ID: return 9388;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9390;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight).ID: return 9392;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight).ID: return 9394;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9396;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight).ID: return 9398;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9400;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight).ID: return 9402;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight).ID: return 9404;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9406;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight).ID: return 9408;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9410;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight).ID: return 9412;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight).ID: return 9414;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9416;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight).ID: return 9418;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9420;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight).ID: return 9422;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight).ID: return 9424;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9426;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight).ID: return 9428;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9430;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight).ID: return 9432;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight).ID: return 9434;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9436;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight).ID: return 9438;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9440;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight).ID: return 9442;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight).ID: return 9444;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9446;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight).ID: return 9448;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9450;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight).ID: return 9452;
+ case PolishedGranite::PolishedGranite().ID: return 3;
+ case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Top).ID: return 10254;
+ case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Bottom).ID: return 10256;
+ case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Double).ID: return 10258;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight).ID: return 9134;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9136;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight).ID: return 9138;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9140;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight).ID: return 9142;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight).ID: return 9144;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9146;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight).ID: return 9148;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9150;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight).ID: return 9152;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight).ID: return 9154;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9156;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight).ID: return 9158;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9160;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight).ID: return 9162;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight).ID: return 9164;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9166;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight).ID: return 9168;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9170;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight).ID: return 9172;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight).ID: return 9174;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9176;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight).ID: return 9178;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9180;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight).ID: return 9182;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight).ID: return 9184;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9186;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight).ID: return 9188;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9190;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight).ID: return 9192;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight).ID: return 9194;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9196;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight).ID: return 9198;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9200;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight).ID: return 9202;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight).ID: return 9204;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9206;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight).ID: return 9208;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9210;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight).ID: return 9212;
+ case Poppy::Poppy().ID: return 1412;
+ case Potatoes::Potatoes(0).ID: return 5802;
+ case Potatoes::Potatoes(1).ID: return 5803;
+ case Potatoes::Potatoes(2).ID: return 5804;
+ case Potatoes::Potatoes(3).ID: return 5805;
+ case Potatoes::Potatoes(4).ID: return 5806;
+ case Potatoes::Potatoes(5).ID: return 5807;
+ case Potatoes::Potatoes(6).ID: return 5808;
+ case Potatoes::Potatoes(7).ID: return 5809;
+ case PottedAcaciaSapling::PottedAcaciaSapling().ID: return 5774;
+ case PottedAllium::PottedAllium().ID: return 5780;
+ case PottedAzureBluet::PottedAzureBluet().ID: return 5781;
+ case PottedBamboo::PottedBamboo().ID: return 9128;
+ case PottedBirchSapling::PottedBirchSapling().ID: return 5772;
+ case PottedBlueOrchid::PottedBlueOrchid().ID: return 5779;
+ case PottedBrownMushroom::PottedBrownMushroom().ID: return 5791;
+ case PottedCactus::PottedCactus().ID: return 5793;
+ case PottedCornflower::PottedCornflower().ID: return 5787;
+ case PottedDandelion::PottedDandelion().ID: return 5777;
+ case PottedDarkOakSapling::PottedDarkOakSapling().ID: return 5775;
+ case PottedDeadBush::PottedDeadBush().ID: return 5792;
+ case PottedFern::PottedFern().ID: return 5776;
+ case PottedJungleSapling::PottedJungleSapling().ID: return 5773;
+ case PottedLilyOfTheValley::PottedLilyOfTheValley().ID: return 5788;
+ case PottedOakSapling::PottedOakSapling().ID: return 5770;
+ case PottedOrangeTulip::PottedOrangeTulip().ID: return 5783;
+ case PottedOxeyeDaisy::PottedOxeyeDaisy().ID: return 5786;
+ case PottedPinkTulip::PottedPinkTulip().ID: return 5785;
+ case PottedPoppy::PottedPoppy().ID: return 5778;
+ case PottedRedMushroom::PottedRedMushroom().ID: return 5790;
+ case PottedRedTulip::PottedRedTulip().ID: return 5782;
+ case PottedSpruceSapling::PottedSpruceSapling().ID: return 5771;
+ case PottedWhiteTulip::PottedWhiteTulip().ID: return 5784;
+ case PottedWitherRose::PottedWitherRose().ID: return 5789;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::NorthSouth).ID: return 1304;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::EastWest).ID: return 1305;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingEast).ID: return 1306;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingWest).ID: return 1307;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingNorth).ID: return 1308;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingSouth).ID: return 1309;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::NorthSouth).ID: return 1310;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::EastWest).ID: return 1311;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingEast).ID: return 1312;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingWest).ID: return 1313;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingNorth).ID: return 1314;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingSouth).ID: return 1315;
+ case Prismarine::Prismarine().ID: return 7065;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Top).ID: return 7315;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Bottom).ID: return 7317;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Double).ID: return 7319;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 7149;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7151;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 7153;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7155;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 7157;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 7159;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7161;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 7163;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7165;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 7167;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 7169;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7171;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 7173;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7175;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 7177;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 7179;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7181;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 7183;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7185;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 7187;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 7189;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7191;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 7193;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7195;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 7197;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 7199;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7201;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 7203;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7205;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 7207;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 7209;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7211;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 7213;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7215;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 7217;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 7219;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7221;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 7223;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7225;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 7227;
+ case PrismarineBricks::PrismarineBricks().ID: return 7066;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Top).ID: return 7309;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Bottom).ID: return 7311;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Double).ID: return 7313;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 7069;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 7071;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 7073;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 7075;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 7077;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 7079;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 7081;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 7083;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 7085;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 7087;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 7089;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 7091;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 7093;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 7095;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 7097;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 7099;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 7101;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 7103;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 7105;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 7107;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 7109;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 7111;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 7113;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 7115;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 7117;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 7119;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 7121;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 7123;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 7125;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 7127;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 7129;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 7131;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 7133;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 7135;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 7137;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 7139;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 7141;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 7143;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 7145;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 7147;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 10397;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 10398;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 10401;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 10402;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 10405;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 10406;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 10409;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 10410;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 10413;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 10414;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 10417;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 10418;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 10421;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 10422;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 10425;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 10426;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 10429;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 10430;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 10433;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 10434;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 10437;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 10438;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 10441;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 10442;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 10445;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 10446;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 10449;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 10450;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 10453;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 10454;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 10457;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 10458;
+ case Pumpkin::Pumpkin().ID: return 3996;
+ case PumpkinStem::PumpkinStem(0).ID: return 4756;
+ case PumpkinStem::PumpkinStem(1).ID: return 4757;
+ case PumpkinStem::PumpkinStem(2).ID: return 4758;
+ case PumpkinStem::PumpkinStem(3).ID: return 4759;
+ case PumpkinStem::PumpkinStem(4).ID: return 4760;
+ case PumpkinStem::PumpkinStem(5).ID: return 4761;
+ case PumpkinStem::PumpkinStem(6).ID: return 4762;
+ case PumpkinStem::PumpkinStem(7).ID: return 4763;
+ case PurpleBanner::PurpleBanner(0).ID: return 7521;
+ case PurpleBanner::PurpleBanner(1).ID: return 7522;
+ case PurpleBanner::PurpleBanner(2).ID: return 7523;
+ case PurpleBanner::PurpleBanner(3).ID: return 7524;
+ case PurpleBanner::PurpleBanner(4).ID: return 7525;
+ case PurpleBanner::PurpleBanner(5).ID: return 7526;
+ case PurpleBanner::PurpleBanner(6).ID: return 7527;
+ case PurpleBanner::PurpleBanner(7).ID: return 7528;
+ case PurpleBanner::PurpleBanner(8).ID: return 7529;
+ case PurpleBanner::PurpleBanner(9).ID: return 7530;
+ case PurpleBanner::PurpleBanner(10).ID: return 7531;
+ case PurpleBanner::PurpleBanner(11).ID: return 7532;
+ case PurpleBanner::PurpleBanner(12).ID: return 7533;
+ case PurpleBanner::PurpleBanner(13).ID: return 7534;
+ case PurpleBanner::PurpleBanner(14).ID: return 7535;
+ case PurpleBanner::PurpleBanner(15).ID: return 7536;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Head).ID: return 1208;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Foot).ID: return 1209;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Head).ID: return 1210;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Foot).ID: return 1211;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Head).ID: return 1212;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Foot).ID: return 1213;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Head).ID: return 1214;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Foot).ID: return 1215;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Head).ID: return 1216;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Foot).ID: return 1217;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Head).ID: return 1218;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Foot).ID: return 1219;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Head).ID: return 1220;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Foot).ID: return 1221;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Head).ID: return 1222;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Foot).ID: return 1223;
+ case PurpleCarpet::PurpleCarpet().ID: return 7340;
+ case PurpleConcrete::PurpleConcrete().ID: return 8912;
+ case PurpleConcretePowder::PurpleConcretePowder().ID: return 8928;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8878;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8879;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8880;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8881;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8802;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8803;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8804;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8805;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8806;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8807;
+ case PurpleStainedGlass::PurpleStainedGlass().ID: return 4091;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, true).ID: return 6649;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, false).ID: return 6650;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, true).ID: return 6653;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, false).ID: return 6654;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, true).ID: return 6657;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, false).ID: return 6658;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, true).ID: return 6661;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, false).ID: return 6662;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, true).ID: return 6665;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, false).ID: return 6666;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, true).ID: return 6669;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, false).ID: return 6670;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, true).ID: return 6673;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, false).ID: return 6674;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, true).ID: return 6677;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, false).ID: return 6678;
+ case PurpleTerracotta::PurpleTerracotta().ID: return 6321;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7657;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7658;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7659;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7660;
+ case PurpleWool::PurpleWool().ID: return 1393;
+ case PurpurBlock::PurpurBlock().ID: return 8598;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::X).ID: return 8599;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Y).ID: return 8600;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Z).ID: return 8601;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Top).ID: return 7873;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Bottom).ID: return 7875;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Double).ID: return 7877;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8603;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8605;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8607;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8609;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8611;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8613;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8615;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8617;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8619;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8621;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8623;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8625;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8627;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8629;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8631;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8633;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8635;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8637;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8639;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8641;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8643;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8645;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8647;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8649;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8651;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8653;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8655;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8657;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8659;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8661;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 8663;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 8665;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 8667;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 8669;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 8671;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 8673;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 8675;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 8677;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 8679;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 8681;
+ case QuartzBlock::QuartzBlock().ID: return 6202;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::X).ID: return 6204;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Y).ID: return 6205;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Z).ID: return 6206;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Top).ID: return 7855;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Bottom).ID: return 7857;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Double).ID: return 7859;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 6208;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 6210;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 6212;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 6214;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 6216;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 6218;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 6220;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 6222;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 6224;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 6226;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 6228;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 6230;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 6232;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 6234;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 6236;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 6238;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 6240;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 6242;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 6244;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 6246;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 6248;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 6250;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 6252;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 6254;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 6256;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 6258;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 6260;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 6262;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 6264;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 6266;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 6268;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 6270;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 6272;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 6274;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 6276;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 6278;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 6280;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 6282;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 6284;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 6286;
+ case Rail::Rail(Rail::Shape::NorthSouth).ID: return 3643;
+ case Rail::Rail(Rail::Shape::EastWest).ID: return 3644;
+ case Rail::Rail(Rail::Shape::AscendingEast).ID: return 3645;
+ case Rail::Rail(Rail::Shape::AscendingWest).ID: return 3646;
+ case Rail::Rail(Rail::Shape::AscendingNorth).ID: return 3647;
+ case Rail::Rail(Rail::Shape::AscendingSouth).ID: return 3648;
+ case Rail::Rail(Rail::Shape::SouthEast).ID: return 3649;
+ case Rail::Rail(Rail::Shape::SouthWest).ID: return 3650;
+ case Rail::Rail(Rail::Shape::NorthWest).ID: return 3651;
+ case Rail::Rail(Rail::Shape::NorthEast).ID: return 3652;
+ case RedBanner::RedBanner(0).ID: return 7585;
+ case RedBanner::RedBanner(1).ID: return 7586;
+ case RedBanner::RedBanner(2).ID: return 7587;
+ case RedBanner::RedBanner(3).ID: return 7588;
+ case RedBanner::RedBanner(4).ID: return 7589;
+ case RedBanner::RedBanner(5).ID: return 7590;
+ case RedBanner::RedBanner(6).ID: return 7591;
+ case RedBanner::RedBanner(7).ID: return 7592;
+ case RedBanner::RedBanner(8).ID: return 7593;
+ case RedBanner::RedBanner(9).ID: return 7594;
+ case RedBanner::RedBanner(10).ID: return 7595;
+ case RedBanner::RedBanner(11).ID: return 7596;
+ case RedBanner::RedBanner(12).ID: return 7597;
+ case RedBanner::RedBanner(13).ID: return 7598;
+ case RedBanner::RedBanner(14).ID: return 7599;
+ case RedBanner::RedBanner(15).ID: return 7600;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Head).ID: return 1272;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Foot).ID: return 1273;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Head).ID: return 1274;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Foot).ID: return 1275;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Head).ID: return 1276;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Foot).ID: return 1277;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Head).ID: return 1278;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Foot).ID: return 1279;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Head).ID: return 1280;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Foot).ID: return 1281;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Head).ID: return 1282;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Foot).ID: return 1283;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Head).ID: return 1284;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Foot).ID: return 1285;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Head).ID: return 1286;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Foot).ID: return 1287;
+ case RedCarpet::RedCarpet().ID: return 7344;
+ case RedConcrete::RedConcrete().ID: return 8916;
+ case RedConcretePowder::RedConcretePowder().ID: return 8932;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8894;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8895;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8896;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8897;
+ case RedMushroom::RedMushroom().ID: return 1425;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, true).ID: return 4555;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, false).ID: return 4556;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, true).ID: return 4557;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, false).ID: return 4558;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, true).ID: return 4559;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, false).ID: return 4560;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, true).ID: return 4561;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, false).ID: return 4562;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, true).ID: return 4563;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, false).ID: return 4564;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, true).ID: return 4565;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, false).ID: return 4566;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, true).ID: return 4567;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, false).ID: return 4568;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, true).ID: return 4569;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, false).ID: return 4570;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, true).ID: return 4571;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, false).ID: return 4572;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, true).ID: return 4573;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, false).ID: return 4574;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, true).ID: return 4575;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, false).ID: return 4576;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, true).ID: return 4577;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, false).ID: return 4578;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, true).ID: return 4579;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, false).ID: return 4580;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, true).ID: return 4581;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, false).ID: return 4582;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, true).ID: return 4583;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, false).ID: return 4584;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, true).ID: return 4585;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, false).ID: return 4586;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, true).ID: return 4587;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, false).ID: return 4588;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, true).ID: return 4589;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, false).ID: return 4590;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, true).ID: return 4591;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, false).ID: return 4592;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, true).ID: return 4593;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, false).ID: return 4594;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, true).ID: return 4595;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, false).ID: return 4596;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, true).ID: return 4597;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, false).ID: return 4598;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, true).ID: return 4599;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, false).ID: return 4600;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, true).ID: return 4601;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, false).ID: return 4602;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, true).ID: return 4603;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, false).ID: return 4604;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, true).ID: return 4605;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, false).ID: return 4606;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, true).ID: return 4607;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, false).ID: return 4608;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, true).ID: return 4609;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, false).ID: return 4610;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, true).ID: return 4611;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, false).ID: return 4612;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, true).ID: return 4613;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, false).ID: return 4614;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, true).ID: return 4615;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, false).ID: return 4616;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, true).ID: return 4617;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false).ID: return 4618;
+ case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Top).ID: return 10314;
+ case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Bottom).ID: return 10316;
+ case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Double).ID: return 10318;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight).ID: return 10014;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10016;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight).ID: return 10018;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10020;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight).ID: return 10022;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight).ID: return 10024;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10026;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight).ID: return 10028;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10030;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight).ID: return 10032;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight).ID: return 10034;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10036;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight).ID: return 10038;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10040;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight).ID: return 10042;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight).ID: return 10044;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10046;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight).ID: return 10048;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10050;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight).ID: return 10052;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight).ID: return 10054;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10056;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight).ID: return 10058;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10060;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight).ID: return 10062;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight).ID: return 10064;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10066;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight).ID: return 10068;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10070;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight).ID: return 10072;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight).ID: return 10074;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10076;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight).ID: return 10078;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10080;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight).ID: return 10082;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight).ID: return 10084;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10086;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight).ID: return 10088;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10090;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight).ID: return 10092;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 10845;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 10846;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 10849;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 10850;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 10853;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 10854;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 10857;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 10858;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 10861;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 10862;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 10865;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 10866;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 10869;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 10870;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 10873;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 10874;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 10877;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 10878;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 10881;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 10882;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 10885;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 10886;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 10889;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 10890;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 10893;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 10894;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 10897;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 10898;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 10901;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 10902;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 10905;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 10906;
+ case RedNetherBricks::RedNetherBricks().ID: return 8719;
+ case RedSand::RedSand().ID: return 67;
+ case RedSandstone::RedSandstone().ID: return 7681;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Top).ID: return 7861;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Bottom).ID: return 7863;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Double).ID: return 7865;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7685;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7687;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7689;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7691;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7693;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7695;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7697;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7699;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7701;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7703;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7705;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7707;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7709;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7711;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7713;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7715;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7717;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7719;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7721;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7723;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7725;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7727;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7729;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7731;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7733;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7735;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7737;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7739;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7741;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7743;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 7745;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 7747;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 7749;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 7751;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 7753;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 7755;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 7757;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 7759;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 7761;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 7763;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 10461;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 10462;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 10465;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 10466;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 10469;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 10470;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 10473;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 10474;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 10477;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 10478;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 10481;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 10482;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 10485;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 10486;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 10489;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 10490;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 10493;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 10494;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 10497;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 10498;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 10501;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 10502;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 10505;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 10506;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 10509;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 10510;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 10513;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 10514;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 10517;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 10518;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 10521;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 10522;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8826;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8827;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8828;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8829;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8830;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8831;
+ case RedStainedGlass::RedStainedGlass().ID: return 4095;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, true, true).ID: return 6777;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, true, false).ID: return 6778;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, false, true).ID: return 6781;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, false, false).ID: return 6782;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, true, true).ID: return 6785;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, true, false).ID: return 6786;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, false, true).ID: return 6789;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, false, false).ID: return 6790;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, true, true).ID: return 6793;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, true, false).ID: return 6794;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, false, true).ID: return 6797;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, false, false).ID: return 6798;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, true, true).ID: return 6801;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, true, false).ID: return 6802;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, false, true).ID: return 6805;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, false, false).ID: return 6806;
+ case RedTerracotta::RedTerracotta().ID: return 6325;
+ case RedTulip::RedTulip().ID: return 1416;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7673;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7674;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7675;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7676;
+ case RedWool::RedWool().ID: return 1397;
+ case RedstoneBlock::RedstoneBlock().ID: return 6190;
+ case RedstoneLamp::RedstoneLamp(true).ID: return 5140;
+ case RedstoneLamp::RedstoneLamp(false).ID: return 5141;
+ case RedstoneOre::RedstoneOre(true).ID: return 3883;
+ case RedstoneOre::RedstoneOre(false).ID: return 3884;
+ case RedstoneTorch::RedstoneTorch(true).ID: return 3885;
+ case RedstoneTorch::RedstoneTorch(false).ID: return 3886;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, true).ID: return 3887;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, false).ID: return 3888;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, true).ID: return 3889;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, false).ID: return 3890;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, true).ID: return 3891;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, false).ID: return 3892;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, true).ID: return 3893;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, false).ID: return 3894;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2056;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2057;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2058;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2059;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2060;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2061;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2062;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2063;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2064;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2065;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2066;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2067;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2068;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2069;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2070;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2071;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2072;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2073;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2074;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2075;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2076;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2077;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2078;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2079;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2080;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2081;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2082;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2083;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2084;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2085;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2086;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2087;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2088;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2089;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2090;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2091;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2092;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2093;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2094;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2095;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2096;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2097;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2098;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2099;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2100;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2101;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2102;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2103;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2104;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2105;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2106;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2107;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2108;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2109;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2110;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2111;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2112;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2113;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2114;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2115;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2116;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2117;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2118;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2119;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2120;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2121;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2122;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2123;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2124;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2125;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2126;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2127;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2128;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2129;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2130;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2131;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2132;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2133;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2134;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2135;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2136;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2137;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2138;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2139;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2140;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2141;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2142;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2143;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2144;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2145;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2146;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2147;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2148;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2149;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2150;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2151;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2152;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2153;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2154;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2155;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2156;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2157;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2158;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2159;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2160;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2161;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2162;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2163;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2164;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2165;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2166;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2167;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2168;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2169;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2170;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2171;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2172;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2173;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2174;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2175;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2176;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2177;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2178;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2179;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2180;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2181;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2182;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2183;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2184;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2185;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2186;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2187;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2188;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2189;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2190;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2191;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2192;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2193;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2194;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2195;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2196;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2197;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2198;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2199;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2200;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2201;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2202;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2203;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2204;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2205;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2206;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2207;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2208;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2209;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2210;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2211;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2212;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2213;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2214;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2215;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2216;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2217;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2218;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2219;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2220;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2221;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2222;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2223;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2224;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2225;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2226;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2227;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2228;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2229;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2230;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2231;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2232;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2233;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2234;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2235;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2236;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2237;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2238;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2239;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2240;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2241;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2242;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2243;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2244;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2245;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2246;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2247;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2248;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2249;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2250;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2251;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2252;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2253;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2254;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2255;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2256;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2257;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2258;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2259;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2260;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2261;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2262;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2263;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2264;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2265;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2266;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2267;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2268;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2269;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2270;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2271;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2272;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2273;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2274;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2275;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2276;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2277;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2278;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2279;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2280;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2281;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2282;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2283;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2284;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2285;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2286;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2287;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2288;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2289;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2290;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2291;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2292;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2293;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2294;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2295;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2296;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2297;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2298;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2299;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2300;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2301;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2302;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2303;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2304;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2305;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2306;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2307;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2308;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2309;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2310;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2311;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2312;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2313;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2314;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2315;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2316;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2317;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2318;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2319;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2320;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2321;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2322;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2323;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2324;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2325;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2326;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2327;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2328;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2329;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2330;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2331;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2332;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2333;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2334;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2335;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2336;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2337;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2338;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2339;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2340;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2341;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2342;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2343;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2344;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2345;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2346;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2347;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2348;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2349;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2350;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2351;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2352;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2353;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2354;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2355;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2356;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2357;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2358;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2359;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2360;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2361;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2362;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2363;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2364;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2365;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2366;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2367;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2368;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2369;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2370;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2371;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2372;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2373;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2374;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2375;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2376;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2377;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2378;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2379;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2380;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2381;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2382;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2383;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2384;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2385;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2386;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2387;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2388;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2389;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2390;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2391;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2392;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2393;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2394;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2395;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2396;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2397;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2398;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2399;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2400;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2401;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2402;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2403;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2404;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2405;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2406;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2407;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2408;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2409;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2410;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2411;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2412;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2413;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2414;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2415;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2416;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2417;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2418;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2419;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2420;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2421;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2422;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2423;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2424;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2425;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2426;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2427;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2428;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2429;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2430;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2431;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2432;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2433;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2434;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2435;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2436;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2437;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2438;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2439;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2440;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2441;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2442;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2443;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2444;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2445;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2446;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2447;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2448;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2449;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2450;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2451;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2452;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2453;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2454;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2455;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2456;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2457;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2458;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2459;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2460;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2461;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2462;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2463;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2464;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2465;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2466;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2467;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2468;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2469;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2470;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2471;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2472;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2473;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2474;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2475;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2476;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2477;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2478;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2479;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2480;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2481;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2482;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2483;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2484;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2485;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2486;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2487;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2488;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2489;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2490;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2491;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2492;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2493;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2494;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2495;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2496;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2497;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2498;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2499;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2500;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2501;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2502;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2503;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2504;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2505;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2506;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2507;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2508;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2509;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2510;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2511;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2512;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2513;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2514;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2515;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2516;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2517;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2518;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2519;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2520;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2521;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2522;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2523;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2524;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2525;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2526;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2527;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2528;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2529;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2530;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2531;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2532;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2533;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2534;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2535;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2536;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2537;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2538;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2539;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2540;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2541;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2542;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2543;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2544;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2545;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2546;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2547;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2548;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2549;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2550;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2551;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2552;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2553;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2554;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2555;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2556;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2557;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2558;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2559;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2560;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2561;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2562;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2563;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2564;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2565;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2566;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2567;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2568;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2569;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2570;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2571;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2572;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2573;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2574;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2575;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2576;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2577;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2578;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2579;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2580;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2581;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2582;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2583;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2584;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2585;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2586;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2587;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2588;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2589;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2590;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2591;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2592;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2593;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2594;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2595;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2596;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2597;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2598;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2599;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2600;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2601;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2602;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2603;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2604;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2605;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2606;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2607;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2608;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2609;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2610;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2611;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2612;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2613;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2614;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2615;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2616;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2617;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2618;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2619;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2620;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2621;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2622;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2623;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2624;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2625;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2626;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2627;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2628;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2629;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2630;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2631;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2632;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2633;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2634;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2635;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2636;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2637;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2638;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2639;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2640;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2641;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2642;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2643;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2644;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2645;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2646;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2647;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2648;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2649;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2650;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2651;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2652;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2653;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2654;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2655;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2656;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2657;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2658;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2659;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2660;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2661;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2662;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2663;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2664;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2665;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2666;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2667;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2668;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2669;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2670;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2671;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2672;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2673;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2674;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2675;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2676;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2677;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2678;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2679;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2680;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2681;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2682;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2683;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2684;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2685;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2686;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2687;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2688;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2689;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2690;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2691;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2692;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2693;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2694;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2695;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2696;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2697;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2698;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2699;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2700;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2701;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2702;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2703;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2704;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2705;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2706;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2707;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2708;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2709;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2710;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2711;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2712;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2713;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2714;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2715;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2716;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2717;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2718;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2719;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2720;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2721;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2722;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2723;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2724;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2725;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2726;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2727;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2728;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2729;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2730;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2731;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2732;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2733;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2734;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2735;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2736;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2737;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2738;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2739;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2740;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2741;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2742;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2743;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2744;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2745;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2746;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2747;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2748;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2749;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2750;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2751;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2752;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2753;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2754;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2755;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2756;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2757;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2758;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2759;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2760;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2761;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2762;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2763;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2764;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2765;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2766;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2767;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2768;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2769;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2770;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2771;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2772;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2773;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2774;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2775;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2776;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2777;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2778;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2779;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2780;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2781;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2782;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2783;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2784;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2785;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2786;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2787;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2788;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2789;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2790;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2791;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2792;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2793;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2794;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2795;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2796;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2797;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2798;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2799;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2800;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2801;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2802;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2803;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2804;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2805;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2806;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2807;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2808;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2809;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2810;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2811;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2812;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2813;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2814;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2815;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2816;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2817;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2818;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2819;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2820;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2821;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2822;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2823;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2824;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2825;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2826;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2827;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2828;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2829;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2830;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2831;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2832;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2833;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2834;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2835;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2836;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2837;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2838;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2839;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2840;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2841;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2842;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2843;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2844;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2845;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2846;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2847;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2848;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2849;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2850;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2851;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2852;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2853;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2854;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2855;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2856;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2857;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2858;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2859;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2860;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2861;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2862;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2863;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2864;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2865;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2866;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2867;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2868;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2869;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2870;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2871;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2872;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2873;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2874;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2875;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2876;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2877;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2878;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2879;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2880;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2881;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2882;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2883;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2884;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2885;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2886;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2887;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2888;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2889;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2890;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2891;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2892;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2893;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2894;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2895;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2896;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2897;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2898;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2899;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2900;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2901;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2902;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2903;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2904;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2905;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2906;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2907;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2908;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2909;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2910;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2911;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2912;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2913;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2914;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2915;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2916;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2917;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2918;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2919;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2920;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2921;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2922;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2923;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2924;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2925;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2926;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2927;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2928;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2929;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2930;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2931;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2932;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2933;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2934;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2935;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2936;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2937;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2938;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2939;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2940;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2941;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2942;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2943;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2944;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2945;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2946;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2947;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2948;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2949;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2950;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2951;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2952;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2953;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2954;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2955;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2956;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2957;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2958;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2959;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2960;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2961;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2962;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2963;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2964;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2965;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2966;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2967;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2968;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2969;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2970;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2971;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2972;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2973;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2974;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2975;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2976;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2977;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2978;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2979;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2980;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2981;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2982;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2983;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2984;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2985;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2986;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2987;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2988;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2989;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2990;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2991;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2992;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2993;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2994;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2995;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2996;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2997;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2998;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2999;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3000;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3001;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3002;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3003;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3004;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3005;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3006;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3007;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3008;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3009;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3010;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3011;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3012;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3013;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3014;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3015;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3016;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3017;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3018;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3019;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3020;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3021;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3022;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3023;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3024;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3025;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3026;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3027;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3028;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3029;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3030;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3031;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3032;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3033;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3034;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3035;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3036;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3037;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3038;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3039;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3040;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3041;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3042;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3043;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3044;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3045;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3046;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3047;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3048;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3049;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3050;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3051;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3052;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3053;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3054;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3055;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3056;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3057;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3058;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3059;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3060;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3061;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3062;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3063;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3064;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3065;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3066;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3067;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3068;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3069;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3070;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3071;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3072;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3073;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3074;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3075;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3076;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3077;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3078;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3079;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3080;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3081;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3082;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3083;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3084;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3085;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3086;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3087;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3088;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3089;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3090;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3091;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3092;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3093;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3094;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3095;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3096;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3097;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3098;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3099;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3100;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3101;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3102;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3103;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3104;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3105;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3106;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3107;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3108;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3109;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3110;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3111;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3112;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3113;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3114;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3115;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3116;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3117;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3118;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3119;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3120;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3121;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3122;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3123;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3124;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3125;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3126;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3127;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3128;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3129;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3130;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3131;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3132;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3133;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3134;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3135;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3136;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3137;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3138;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3139;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3140;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3141;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3142;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3143;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3144;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3145;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3146;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3147;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3148;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3149;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3150;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3151;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3152;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3153;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3154;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3155;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3156;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3157;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3158;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3159;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3160;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3161;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3162;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3163;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3164;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3165;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3166;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3167;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3168;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3169;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3170;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3171;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3172;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3173;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3174;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3175;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3176;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3177;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3178;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3179;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3180;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3181;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3182;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3183;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3184;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3185;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3186;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3187;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3188;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3189;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3190;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3191;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3192;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3193;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3194;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3195;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3196;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3197;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3198;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3199;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3200;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3201;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3202;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3203;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3204;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3205;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3206;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3207;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3208;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3209;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3210;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3211;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3212;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3213;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3214;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3215;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3216;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3217;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3218;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3219;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3220;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3221;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3222;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3223;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3224;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3225;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3226;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3227;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3228;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3229;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3230;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3231;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3232;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3233;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3234;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3235;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3236;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3237;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3238;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3239;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3240;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3241;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3242;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3243;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3244;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3245;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3246;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3247;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3248;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3249;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3250;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3251;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3252;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3253;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3254;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3255;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3256;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3257;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3258;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3259;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3260;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3261;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3262;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3263;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3264;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3265;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3266;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3267;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3268;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3269;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3270;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3271;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3272;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3273;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3274;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3275;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3276;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3277;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3278;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3279;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3280;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3281;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3282;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3283;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3284;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3285;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3286;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3287;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3288;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3289;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3290;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3291;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3292;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3293;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3294;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3295;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3296;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3297;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3298;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3299;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3300;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3301;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3302;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3303;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3304;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3305;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3306;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3307;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3308;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3309;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3310;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3311;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3312;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3313;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3314;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3315;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3316;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3317;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3318;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3319;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3320;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3321;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3322;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3323;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3324;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3325;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3326;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3327;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3328;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3329;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3330;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3331;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3332;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3333;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3334;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3335;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3336;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3337;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3338;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3339;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3340;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3341;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3342;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3343;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3344;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3345;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3346;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3347;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3348;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3349;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3350;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3351;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 4017;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 4018;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 4019;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 4020;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 4021;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 4022;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 4023;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 4024;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 4025;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 4026;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 4027;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 4028;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 4029;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 4030;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 4031;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 4032;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 4033;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 4034;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 4035;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 4036;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 4037;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 4038;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 4039;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 4040;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 4041;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 4042;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 4043;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 4044;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 4045;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 4046;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 4047;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 4048;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 4049;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 4050;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 4051;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 4052;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 4053;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 4054;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 4055;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 4056;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 4057;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 4058;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 4059;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 4060;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 4061;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 4062;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 4063;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 4064;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 4065;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 4066;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 4067;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 4068;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 4069;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 4070;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 4071;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 4072;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 4073;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 4074;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 4075;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 4076;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 4077;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 4078;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 4079;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 4080;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 8689;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 8690;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 8691;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 8692;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 8693;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 8694;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 8695;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 8696;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 8697;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 8698;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 8699;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 8700;
+ case RoseBush::RoseBush(RoseBush::Half::Upper).ID: return 7353;
+ case RoseBush::RoseBush(RoseBush::Half::Lower).ID: return 7354;
+ case Sand::Sand().ID: return 66;
+ case Sandstone::Sandstone().ID: return 245;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Top).ID: return 7813;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Bottom).ID: return 7815;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Double).ID: return 7817;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 5155;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 5157;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 5159;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 5161;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 5163;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 5165;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 5167;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 5169;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 5171;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 5173;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 5175;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 5177;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 5179;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 5181;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 5183;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 5185;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 5187;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 5189;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 5191;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 5193;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 5195;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 5197;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 5199;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 5201;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 5203;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 5205;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 5207;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 5209;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 5211;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 5213;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 5215;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 5217;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 5219;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 5221;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 5223;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 5225;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 5227;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 5229;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 5231;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 5233;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 10909;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 10910;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 10913;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 10914;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 10917;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 10918;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 10921;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 10922;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 10925;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 10926;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 10929;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 10930;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 10933;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 10934;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 10937;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 10938;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 10941;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 10942;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 10945;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 10946;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 10949;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 10950;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 10953;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 10954;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 10957;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 10958;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 10961;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 10962;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 10965;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 10966;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 10969;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 10970;
+ case Scaffolding::Scaffolding(true, 0).ID: return 11100;
+ case Scaffolding::Scaffolding(true, 1).ID: return 11102;
+ case Scaffolding::Scaffolding(true, 2).ID: return 11104;
+ case Scaffolding::Scaffolding(true, 3).ID: return 11106;
+ case Scaffolding::Scaffolding(true, 4).ID: return 11108;
+ case Scaffolding::Scaffolding(true, 5).ID: return 11110;
+ case Scaffolding::Scaffolding(true, 6).ID: return 11112;
+ case Scaffolding::Scaffolding(true, 7).ID: return 11114;
+ case Scaffolding::Scaffolding(false, 0).ID: return 11116;
+ case Scaffolding::Scaffolding(false, 1).ID: return 11118;
+ case Scaffolding::Scaffolding(false, 2).ID: return 11120;
+ case Scaffolding::Scaffolding(false, 3).ID: return 11122;
+ case Scaffolding::Scaffolding(false, 4).ID: return 11124;
+ case Scaffolding::Scaffolding(false, 5).ID: return 11126;
+ case Scaffolding::Scaffolding(false, 6).ID: return 11128;
+ case Scaffolding::Scaffolding(false, 7).ID: return 11130;
+ case SeaLantern::SeaLantern().ID: return 7326;
+ case SeaPickle::SeaPickle(1).ID: return 9105;
+ case SeaPickle::SeaPickle(2).ID: return 9107;
+ case SeaPickle::SeaPickle(3).ID: return 9109;
+ case SeaPickle::SeaPickle(4).ID: return 9111;
+ case Seagrass::Seagrass().ID: return 1344;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8736;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8737;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8738;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8739;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8740;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8741;
+ case SkeletonSkull::SkeletonSkull(0).ID: return 5954;
+ case SkeletonSkull::SkeletonSkull(1).ID: return 5955;
+ case SkeletonSkull::SkeletonSkull(2).ID: return 5956;
+ case SkeletonSkull::SkeletonSkull(3).ID: return 5957;
+ case SkeletonSkull::SkeletonSkull(4).ID: return 5958;
+ case SkeletonSkull::SkeletonSkull(5).ID: return 5959;
+ case SkeletonSkull::SkeletonSkull(6).ID: return 5960;
+ case SkeletonSkull::SkeletonSkull(7).ID: return 5961;
+ case SkeletonSkull::SkeletonSkull(8).ID: return 5962;
+ case SkeletonSkull::SkeletonSkull(9).ID: return 5963;
+ case SkeletonSkull::SkeletonSkull(10).ID: return 5964;
+ case SkeletonSkull::SkeletonSkull(11).ID: return 5965;
+ case SkeletonSkull::SkeletonSkull(12).ID: return 5966;
+ case SkeletonSkull::SkeletonSkull(13).ID: return 5967;
+ case SkeletonSkull::SkeletonSkull(14).ID: return 5968;
+ case SkeletonSkull::SkeletonSkull(15).ID: return 5969;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM).ID: return 5970;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP).ID: return 5971;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XM).ID: return 5972;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XP).ID: return 5973;
+ case SlimeBlock::SlimeBlock().ID: return 6999;
+ case SmithingTable::SmithingTable().ID: return 11193;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, true).ID: return 11147;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, false).ID: return 11148;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, true).ID: return 11149;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, false).ID: return 11150;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, true).ID: return 11151;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, false).ID: return 11152;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, true).ID: return 11153;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, false).ID: return 11154;
+ case SmoothQuartz::SmoothQuartz().ID: return 7880;
+ case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Top).ID: return 10296;
+ case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Bottom).ID: return 10298;
+ case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Double).ID: return 10300;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight).ID: return 9774;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9776;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight).ID: return 9778;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9780;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight).ID: return 9782;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight).ID: return 9784;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9786;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight).ID: return 9788;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9790;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight).ID: return 9792;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight).ID: return 9794;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9796;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight).ID: return 9798;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9800;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight).ID: return 9802;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight).ID: return 9804;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9806;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight).ID: return 9808;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9810;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight).ID: return 9812;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight).ID: return 9814;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9816;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight).ID: return 9818;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9820;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight).ID: return 9822;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight).ID: return 9824;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9826;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight).ID: return 9828;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9830;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight).ID: return 9832;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight).ID: return 9834;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9836;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight).ID: return 9838;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9840;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight).ID: return 9842;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight).ID: return 9844;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft).ID: return 9846;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight).ID: return 9848;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft).ID: return 9850;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight).ID: return 9852;
+ case SmoothRedSandstone::SmoothRedSandstone().ID: return 7881;
+ case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Top).ID: return 10260;
+ case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Bottom).ID: return 10262;
+ case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Double).ID: return 10264;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9214;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9216;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9218;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9220;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9222;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9224;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9226;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9228;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9230;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9232;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9234;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9236;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9238;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9240;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9242;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9244;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9246;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9248;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9250;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9252;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9254;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9256;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9258;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9260;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9262;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9264;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9266;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9268;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9270;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9272;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9274;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9276;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9278;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9280;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9282;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9284;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9286;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9288;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9290;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9292;
+ case SmoothSandstone::SmoothSandstone().ID: return 7879;
+ case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Top).ID: return 10290;
+ case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Bottom).ID: return 10292;
+ case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Double).ID: return 10294;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight).ID: return 9694;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9696;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9698;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9700;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9702;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight).ID: return 9704;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9706;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9708;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9710;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9712;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight).ID: return 9714;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9716;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9718;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9720;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9722;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight).ID: return 9724;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9726;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9728;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9730;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9732;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight).ID: return 9734;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9736;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9738;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9740;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9742;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight).ID: return 9744;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9746;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9748;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9750;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9752;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight).ID: return 9754;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9756;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9758;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9760;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9762;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight).ID: return 9764;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 9766;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight).ID: return 9768;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 9770;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight).ID: return 9772;
+ case SmoothStone::SmoothStone().ID: return 7878;
+ case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Top).ID: return 7807;
+ case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Bottom).ID: return 7809;
+ case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Double).ID: return 7811;
+ case Snow::Snow(1).ID: return 3919;
+ case Snow::Snow(2).ID: return 3920;
+ case Snow::Snow(3).ID: return 3921;
+ case Snow::Snow(4).ID: return 3922;
+ case Snow::Snow(5).ID: return 3923;
+ case Snow::Snow(6).ID: return 3924;
+ case Snow::Snow(7).ID: return 3925;
+ case Snow::Snow(8).ID: return 3926;
+ case SnowBlock::SnowBlock().ID: return 3928;
+ case SoulSand::SoulSand().ID: return 3998;
+ case Spawner::Spawner().ID: return 1951;
+ case Sponge::Sponge().ID: return 228;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5834;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5835;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5836;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5837;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 5838;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 5839;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 5840;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 5841;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5842;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5843;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5844;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5845;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 5846;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 5847;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 5848;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 5849;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5850;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5851;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5852;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5853;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 5854;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 5855;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 5856;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 5857;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 8202;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 8203;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 8204;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 8205;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 8206;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 8207;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 8208;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 8209;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 8210;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 8211;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 8212;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 8213;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 8214;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 8215;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 8216;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 8217;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 8218;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 8219;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 8220;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 8221;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 8222;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 8223;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 8224;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 8225;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 8226;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 8227;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 8228;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 8229;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 8230;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 8231;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 8232;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 8233;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 8234;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 8235;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 8236;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 8237;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 8238;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 8239;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 8240;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 8241;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 8242;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 8243;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 8244;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 8245;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 8246;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 8247;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 8248;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 8249;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 8250;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 8251;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 8252;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 8253;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 8254;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 8255;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 8256;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 8257;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 8258;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 8259;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 8260;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 8261;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 8262;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 8263;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 8264;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 8265;
+ case SpruceFence::SpruceFence(true, true, true, true).ID: return 8044;
+ case SpruceFence::SpruceFence(true, true, true, false).ID: return 8045;
+ case SpruceFence::SpruceFence(true, true, false, true).ID: return 8048;
+ case SpruceFence::SpruceFence(true, true, false, false).ID: return 8049;
+ case SpruceFence::SpruceFence(true, false, true, true).ID: return 8052;
+ case SpruceFence::SpruceFence(true, false, true, false).ID: return 8053;
+ case SpruceFence::SpruceFence(true, false, false, true).ID: return 8056;
+ case SpruceFence::SpruceFence(true, false, false, false).ID: return 8057;
+ case SpruceFence::SpruceFence(false, true, true, true).ID: return 8060;
+ case SpruceFence::SpruceFence(false, true, true, false).ID: return 8061;
+ case SpruceFence::SpruceFence(false, true, false, true).ID: return 8064;
+ case SpruceFence::SpruceFence(false, true, false, false).ID: return 8065;
+ case SpruceFence::SpruceFence(false, false, true, true).ID: return 8068;
+ case SpruceFence::SpruceFence(false, false, true, false).ID: return 8069;
+ case SpruceFence::SpruceFence(false, false, false, true).ID: return 8072;
+ case SpruceFence::SpruceFence(false, false, false, false).ID: return 8073;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 7882;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 7883;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 7884;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 7885;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 7886;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 7887;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 7888;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 7889;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 7890;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 7891;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 7892;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 7893;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 7894;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 7895;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 7896;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 7897;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 7898;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 7899;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 7900;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 7901;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 7902;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 7903;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 7904;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 7905;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 7906;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 7907;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 7908;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 7909;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 7910;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 7911;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 7912;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 7913;
+ case SpruceLeaves::SpruceLeaves(1, true).ID: return 158;
+ case SpruceLeaves::SpruceLeaves(1, false).ID: return 159;
+ case SpruceLeaves::SpruceLeaves(2, true).ID: return 160;
+ case SpruceLeaves::SpruceLeaves(2, false).ID: return 161;
+ case SpruceLeaves::SpruceLeaves(3, true).ID: return 162;
+ case SpruceLeaves::SpruceLeaves(3, false).ID: return 163;
+ case SpruceLeaves::SpruceLeaves(4, true).ID: return 164;
+ case SpruceLeaves::SpruceLeaves(4, false).ID: return 165;
+ case SpruceLeaves::SpruceLeaves(5, true).ID: return 166;
+ case SpruceLeaves::SpruceLeaves(5, false).ID: return 167;
+ case SpruceLeaves::SpruceLeaves(6, true).ID: return 168;
+ case SpruceLeaves::SpruceLeaves(6, false).ID: return 169;
+ case SpruceLeaves::SpruceLeaves(7, true).ID: return 170;
+ case SpruceLeaves::SpruceLeaves(7, false).ID: return 171;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::X).ID: return 75;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::Y).ID: return 76;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::Z).ID: return 77;
+ case SprucePlanks::SprucePlanks().ID: return 16;
+ case SprucePressurePlate::SprucePressurePlate(true).ID: return 3873;
+ case SprucePressurePlate::SprucePressurePlate(false).ID: return 3874;
+ case SpruceSapling::SpruceSapling(0).ID: return 23;
+ case SpruceSapling::SpruceSapling(1).ID: return 24;
+ case SpruceSign::SpruceSign(0).ID: return 3412;
+ case SpruceSign::SpruceSign(1).ID: return 3414;
+ case SpruceSign::SpruceSign(2).ID: return 3416;
+ case SpruceSign::SpruceSign(3).ID: return 3418;
+ case SpruceSign::SpruceSign(4).ID: return 3420;
+ case SpruceSign::SpruceSign(5).ID: return 3422;
+ case SpruceSign::SpruceSign(6).ID: return 3424;
+ case SpruceSign::SpruceSign(7).ID: return 3426;
+ case SpruceSign::SpruceSign(8).ID: return 3428;
+ case SpruceSign::SpruceSign(9).ID: return 3430;
+ case SpruceSign::SpruceSign(10).ID: return 3432;
+ case SpruceSign::SpruceSign(11).ID: return 3434;
+ case SpruceSign::SpruceSign(12).ID: return 3436;
+ case SpruceSign::SpruceSign(13).ID: return 3438;
+ case SpruceSign::SpruceSign(14).ID: return 3440;
+ case SpruceSign::SpruceSign(15).ID: return 3442;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Top).ID: return 7771;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Bottom).ID: return 7773;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Double).ID: return 7775;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 5389;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 5391;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 5393;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 5395;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 5397;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 5399;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 5401;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 5403;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 5405;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 5407;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 5409;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 5411;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 5413;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 5415;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 5417;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 5419;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 5421;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 5423;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 5425;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 5427;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 5429;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 5431;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 5433;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 5435;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 5437;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 5439;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 5441;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 5443;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 5445;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 5447;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 5449;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 5451;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 5453;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 5455;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 5457;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 5459;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 5461;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 5463;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 5465;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 5467;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, true).ID: return 4162;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, false).ID: return 4164;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, true).ID: return 4166;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, false).ID: return 4168;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, true).ID: return 4170;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, false).ID: return 4172;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, true).ID: return 4174;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, false).ID: return 4176;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, true).ID: return 4178;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, false).ID: return 4180;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, true).ID: return 4182;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, false).ID: return 4184;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, true).ID: return 4186;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, false).ID: return 4188;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, true).ID: return 4190;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, false).ID: return 4192;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, true).ID: return 4194;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, false).ID: return 4196;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, true).ID: return 4198;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, false).ID: return 4200;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, true).ID: return 4202;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, false).ID: return 4204;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, true).ID: return 4206;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, false).ID: return 4208;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, true).ID: return 4210;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, false).ID: return 4212;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, true).ID: return 4214;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, false).ID: return 4216;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, true).ID: return 4218;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, false).ID: return 4220;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, true).ID: return 4222;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, false).ID: return 4224;
+ case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3742;
+ case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3744;
+ case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3746;
+ case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3748;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::X).ID: return 111;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::Y).ID: return 112;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::Z).ID: return 113;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZM).ID: return 1328;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XP).ID: return 1329;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZP).ID: return 1330;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XM).ID: return 1331;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YP).ID: return 1332;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YM).ID: return 1333;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZM).ID: return 1334;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XP).ID: return 1335;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZP).ID: return 1336;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XM).ID: return 1337;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YP).ID: return 1338;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YM).ID: return 1339;
+ case Stone::Stone().ID: return 1;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Top).ID: return 7843;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Bottom).ID: return 7845;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double).ID: return 7847;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4917;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4919;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4921;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4923;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4925;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4927;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4929;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4931;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4933;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4935;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4937;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4939;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4941;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4943;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4945;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4947;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4949;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4951;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4953;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4955;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4957;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4959;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4961;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4963;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4965;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4967;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4969;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4971;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4973;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4975;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4977;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4979;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4981;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4983;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4985;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4987;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4989;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4991;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4993;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4995;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 10653;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 10654;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 10657;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 10658;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 10661;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 10662;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 10665;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 10666;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 10669;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 10670;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 10673;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 10674;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 10677;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 10678;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 10681;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 10682;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 10685;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 10686;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 10689;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 10690;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 10693;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 10694;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 10697;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 10698;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 10701;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 10702;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 10705;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 10706;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 10709;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 10710;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 10713;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 10714;
+ case StoneBricks::StoneBricks().ID: return 4481;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3895;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3896;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3897;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3898;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 3899;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 3900;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 3901;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 3902;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3903;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3904;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3905;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3906;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 3907;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 3908;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 3909;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 3910;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3911;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3912;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3913;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3914;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 3915;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 3916;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 3917;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 3918;
+ case StonePressurePlate::StonePressurePlate(true).ID: return 3805;
+ case StonePressurePlate::StonePressurePlate(false).ID: return 3806;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Top).ID: return 7801;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Bottom).ID: return 7803;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Double).ID: return 7805;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::Straight).ID: return 9614;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft).ID: return 9616;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight).ID: return 9618;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft).ID: return 9620;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight).ID: return 9622;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight).ID: return 9624;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft).ID: return 9626;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight).ID: return 9628;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft).ID: return 9630;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight).ID: return 9632;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::Straight).ID: return 9634;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft).ID: return 9636;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight).ID: return 9638;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft).ID: return 9640;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight).ID: return 9642;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight).ID: return 9644;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft).ID: return 9646;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight).ID: return 9648;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft).ID: return 9650;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight).ID: return 9652;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::Straight).ID: return 9654;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft).ID: return 9656;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight).ID: return 9658;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft).ID: return 9660;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight).ID: return 9662;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight).ID: return 9664;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft).ID: return 9666;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight).ID: return 9668;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft).ID: return 9670;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight).ID: return 9672;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::Straight).ID: return 9674;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft).ID: return 9676;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight).ID: return 9678;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft).ID: return 9680;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight).ID: return 9682;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight).ID: return 9684;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft).ID: return 9686;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight).ID: return 9688;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft).ID: return 9690;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight).ID: return 9692;
+ case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZM).ID: return 11194;
+ case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZP).ID: return 11195;
+ case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XM).ID: return 11196;
+ case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XP).ID: return 11197;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::X).ID: return 99;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Y).ID: return 100;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Z).ID: return 101;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::X).ID: return 138;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Y).ID: return 139;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Z).ID: return 140;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::X).ID: return 93;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Y).ID: return 94;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Z).ID: return 95;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::X).ID: return 132;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Y).ID: return 133;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Z).ID: return 134;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::X).ID: return 102;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Y).ID: return 103;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Z).ID: return 104;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::X).ID: return 141;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Y).ID: return 142;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Z).ID: return 143;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::X).ID: return 96;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Y).ID: return 97;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Z).ID: return 98;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::X).ID: return 135;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Y).ID: return 136;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Z).ID: return 137;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::X).ID: return 105;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Y).ID: return 106;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Z).ID: return 107;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::X).ID: return 126;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Y).ID: return 127;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Z).ID: return 128;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::X).ID: return 90;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Y).ID: return 91;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Z).ID: return 92;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::X).ID: return 129;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Y).ID: return 130;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Z).ID: return 131;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Save).ID: return 11268;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Load).ID: return 11269;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Corner).ID: return 11270;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Data).ID: return 11271;
+ case StructureVoid::StructureVoid().ID: return 8723;
+ case SugarCane::SugarCane(0).ID: return 3946;
+ case SugarCane::SugarCane(1).ID: return 3947;
+ case SugarCane::SugarCane(2).ID: return 3948;
+ case SugarCane::SugarCane(3).ID: return 3949;
+ case SugarCane::SugarCane(4).ID: return 3950;
+ case SugarCane::SugarCane(5).ID: return 3951;
+ case SugarCane::SugarCane(6).ID: return 3952;
+ case SugarCane::SugarCane(7).ID: return 3953;
+ case SugarCane::SugarCane(8).ID: return 3954;
+ case SugarCane::SugarCane(9).ID: return 3955;
+ case SugarCane::SugarCane(10).ID: return 3956;
+ case SugarCane::SugarCane(11).ID: return 3957;
+ case SugarCane::SugarCane(12).ID: return 3958;
+ case SugarCane::SugarCane(13).ID: return 3959;
+ case SugarCane::SugarCane(14).ID: return 3960;
+ case SugarCane::SugarCane(15).ID: return 3961;
+ case Sunflower::Sunflower(Sunflower::Half::Upper).ID: return 7349;
+ case Sunflower::Sunflower(Sunflower::Half::Lower).ID: return 7350;
+ case SweetBerryBush::SweetBerryBush(0).ID: return 11264;
+ case SweetBerryBush::SweetBerryBush(1).ID: return 11265;
+ case SweetBerryBush::SweetBerryBush(2).ID: return 11266;
+ case SweetBerryBush::SweetBerryBush(3).ID: return 11267;
+ case TNT::TNT(true).ID: return 1429;
+ case TNT::TNT(false).ID: return 1430;
+ case TallGrass::TallGrass(TallGrass::Half::Upper).ID: return 7357;
+ case TallGrass::TallGrass(TallGrass::Half::Lower).ID: return 7358;
+ case TallSeagrass::TallSeagrass(TallSeagrass::Half::Upper).ID: return 1345;
+ case TallSeagrass::TallSeagrass(TallSeagrass::Half::Lower).ID: return 1346;
+ case Terracotta::Terracotta().ID: return 7346;
+ case Torch::Torch().ID: return 1434;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Single).ID: return 6087;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Left).ID: return 6089;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Right).ID: return 6091;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Single).ID: return 6093;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Left).ID: return 6095;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Right).ID: return 6097;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Single).ID: return 6099;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Left).ID: return 6101;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Right).ID: return 6103;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Single).ID: return 6105;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Left).ID: return 6107;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Right).ID: return 6109;
+ case Tripwire::Tripwire(true, true, true, true, true, true, true).ID: return 5259;
+ case Tripwire::Tripwire(true, true, true, true, true, true, false).ID: return 5260;
+ case Tripwire::Tripwire(true, true, true, true, true, false, true).ID: return 5261;
+ case Tripwire::Tripwire(true, true, true, true, true, false, false).ID: return 5262;
+ case Tripwire::Tripwire(true, true, true, true, false, true, true).ID: return 5263;
+ case Tripwire::Tripwire(true, true, true, true, false, true, false).ID: return 5264;
+ case Tripwire::Tripwire(true, true, true, true, false, false, true).ID: return 5265;
+ case Tripwire::Tripwire(true, true, true, true, false, false, false).ID: return 5266;
+ case Tripwire::Tripwire(true, true, true, false, true, true, true).ID: return 5267;
+ case Tripwire::Tripwire(true, true, true, false, true, true, false).ID: return 5268;
+ case Tripwire::Tripwire(true, true, true, false, true, false, true).ID: return 5269;
+ case Tripwire::Tripwire(true, true, true, false, true, false, false).ID: return 5270;
+ case Tripwire::Tripwire(true, true, true, false, false, true, true).ID: return 5271;
+ case Tripwire::Tripwire(true, true, true, false, false, true, false).ID: return 5272;
+ case Tripwire::Tripwire(true, true, true, false, false, false, true).ID: return 5273;
+ case Tripwire::Tripwire(true, true, true, false, false, false, false).ID: return 5274;
+ case Tripwire::Tripwire(true, true, false, true, true, true, true).ID: return 5275;
+ case Tripwire::Tripwire(true, true, false, true, true, true, false).ID: return 5276;
+ case Tripwire::Tripwire(true, true, false, true, true, false, true).ID: return 5277;
+ case Tripwire::Tripwire(true, true, false, true, true, false, false).ID: return 5278;
+ case Tripwire::Tripwire(true, true, false, true, false, true, true).ID: return 5279;
+ case Tripwire::Tripwire(true, true, false, true, false, true, false).ID: return 5280;
+ case Tripwire::Tripwire(true, true, false, true, false, false, true).ID: return 5281;
+ case Tripwire::Tripwire(true, true, false, true, false, false, false).ID: return 5282;
+ case Tripwire::Tripwire(true, true, false, false, true, true, true).ID: return 5283;
+ case Tripwire::Tripwire(true, true, false, false, true, true, false).ID: return 5284;
+ case Tripwire::Tripwire(true, true, false, false, true, false, true).ID: return 5285;
+ case Tripwire::Tripwire(true, true, false, false, true, false, false).ID: return 5286;
+ case Tripwire::Tripwire(true, true, false, false, false, true, true).ID: return 5287;
+ case Tripwire::Tripwire(true, true, false, false, false, true, false).ID: return 5288;
+ case Tripwire::Tripwire(true, true, false, false, false, false, true).ID: return 5289;
+ case Tripwire::Tripwire(true, true, false, false, false, false, false).ID: return 5290;
+ case Tripwire::Tripwire(true, false, true, true, true, true, true).ID: return 5291;
+ case Tripwire::Tripwire(true, false, true, true, true, true, false).ID: return 5292;
+ case Tripwire::Tripwire(true, false, true, true, true, false, true).ID: return 5293;
+ case Tripwire::Tripwire(true, false, true, true, true, false, false).ID: return 5294;
+ case Tripwire::Tripwire(true, false, true, true, false, true, true).ID: return 5295;
+ case Tripwire::Tripwire(true, false, true, true, false, true, false).ID: return 5296;
+ case Tripwire::Tripwire(true, false, true, true, false, false, true).ID: return 5297;
+ case Tripwire::Tripwire(true, false, true, true, false, false, false).ID: return 5298;
+ case Tripwire::Tripwire(true, false, true, false, true, true, true).ID: return 5299;
+ case Tripwire::Tripwire(true, false, true, false, true, true, false).ID: return 5300;
+ case Tripwire::Tripwire(true, false, true, false, true, false, true).ID: return 5301;
+ case Tripwire::Tripwire(true, false, true, false, true, false, false).ID: return 5302;
+ case Tripwire::Tripwire(true, false, true, false, false, true, true).ID: return 5303;
+ case Tripwire::Tripwire(true, false, true, false, false, true, false).ID: return 5304;
+ case Tripwire::Tripwire(true, false, true, false, false, false, true).ID: return 5305;
+ case Tripwire::Tripwire(true, false, true, false, false, false, false).ID: return 5306;
+ case Tripwire::Tripwire(true, false, false, true, true, true, true).ID: return 5307;
+ case Tripwire::Tripwire(true, false, false, true, true, true, false).ID: return 5308;
+ case Tripwire::Tripwire(true, false, false, true, true, false, true).ID: return 5309;
+ case Tripwire::Tripwire(true, false, false, true, true, false, false).ID: return 5310;
+ case Tripwire::Tripwire(true, false, false, true, false, true, true).ID: return 5311;
+ case Tripwire::Tripwire(true, false, false, true, false, true, false).ID: return 5312;
+ case Tripwire::Tripwire(true, false, false, true, false, false, true).ID: return 5313;
+ case Tripwire::Tripwire(true, false, false, true, false, false, false).ID: return 5314;
+ case Tripwire::Tripwire(true, false, false, false, true, true, true).ID: return 5315;
+ case Tripwire::Tripwire(true, false, false, false, true, true, false).ID: return 5316;
+ case Tripwire::Tripwire(true, false, false, false, true, false, true).ID: return 5317;
+ case Tripwire::Tripwire(true, false, false, false, true, false, false).ID: return 5318;
+ case Tripwire::Tripwire(true, false, false, false, false, true, true).ID: return 5319;
+ case Tripwire::Tripwire(true, false, false, false, false, true, false).ID: return 5320;
+ case Tripwire::Tripwire(true, false, false, false, false, false, true).ID: return 5321;
+ case Tripwire::Tripwire(true, false, false, false, false, false, false).ID: return 5322;
+ case Tripwire::Tripwire(false, true, true, true, true, true, true).ID: return 5323;
+ case Tripwire::Tripwire(false, true, true, true, true, true, false).ID: return 5324;
+ case Tripwire::Tripwire(false, true, true, true, true, false, true).ID: return 5325;
+ case Tripwire::Tripwire(false, true, true, true, true, false, false).ID: return 5326;
+ case Tripwire::Tripwire(false, true, true, true, false, true, true).ID: return 5327;
+ case Tripwire::Tripwire(false, true, true, true, false, true, false).ID: return 5328;
+ case Tripwire::Tripwire(false, true, true, true, false, false, true).ID: return 5329;
+ case Tripwire::Tripwire(false, true, true, true, false, false, false).ID: return 5330;
+ case Tripwire::Tripwire(false, true, true, false, true, true, true).ID: return 5331;
+ case Tripwire::Tripwire(false, true, true, false, true, true, false).ID: return 5332;
+ case Tripwire::Tripwire(false, true, true, false, true, false, true).ID: return 5333;
+ case Tripwire::Tripwire(false, true, true, false, true, false, false).ID: return 5334;
+ case Tripwire::Tripwire(false, true, true, false, false, true, true).ID: return 5335;
+ case Tripwire::Tripwire(false, true, true, false, false, true, false).ID: return 5336;
+ case Tripwire::Tripwire(false, true, true, false, false, false, true).ID: return 5337;
+ case Tripwire::Tripwire(false, true, true, false, false, false, false).ID: return 5338;
+ case Tripwire::Tripwire(false, true, false, true, true, true, true).ID: return 5339;
+ case Tripwire::Tripwire(false, true, false, true, true, true, false).ID: return 5340;
+ case Tripwire::Tripwire(false, true, false, true, true, false, true).ID: return 5341;
+ case Tripwire::Tripwire(false, true, false, true, true, false, false).ID: return 5342;
+ case Tripwire::Tripwire(false, true, false, true, false, true, true).ID: return 5343;
+ case Tripwire::Tripwire(false, true, false, true, false, true, false).ID: return 5344;
+ case Tripwire::Tripwire(false, true, false, true, false, false, true).ID: return 5345;
+ case Tripwire::Tripwire(false, true, false, true, false, false, false).ID: return 5346;
+ case Tripwire::Tripwire(false, true, false, false, true, true, true).ID: return 5347;
+ case Tripwire::Tripwire(false, true, false, false, true, true, false).ID: return 5348;
+ case Tripwire::Tripwire(false, true, false, false, true, false, true).ID: return 5349;
+ case Tripwire::Tripwire(false, true, false, false, true, false, false).ID: return 5350;
+ case Tripwire::Tripwire(false, true, false, false, false, true, true).ID: return 5351;
+ case Tripwire::Tripwire(false, true, false, false, false, true, false).ID: return 5352;
+ case Tripwire::Tripwire(false, true, false, false, false, false, true).ID: return 5353;
+ case Tripwire::Tripwire(false, true, false, false, false, false, false).ID: return 5354;
+ case Tripwire::Tripwire(false, false, true, true, true, true, true).ID: return 5355;
+ case Tripwire::Tripwire(false, false, true, true, true, true, false).ID: return 5356;
+ case Tripwire::Tripwire(false, false, true, true, true, false, true).ID: return 5357;
+ case Tripwire::Tripwire(false, false, true, true, true, false, false).ID: return 5358;
+ case Tripwire::Tripwire(false, false, true, true, false, true, true).ID: return 5359;
+ case Tripwire::Tripwire(false, false, true, true, false, true, false).ID: return 5360;
+ case Tripwire::Tripwire(false, false, true, true, false, false, true).ID: return 5361;
+ case Tripwire::Tripwire(false, false, true, true, false, false, false).ID: return 5362;
+ case Tripwire::Tripwire(false, false, true, false, true, true, true).ID: return 5363;
+ case Tripwire::Tripwire(false, false, true, false, true, true, false).ID: return 5364;
+ case Tripwire::Tripwire(false, false, true, false, true, false, true).ID: return 5365;
+ case Tripwire::Tripwire(false, false, true, false, true, false, false).ID: return 5366;
+ case Tripwire::Tripwire(false, false, true, false, false, true, true).ID: return 5367;
+ case Tripwire::Tripwire(false, false, true, false, false, true, false).ID: return 5368;
+ case Tripwire::Tripwire(false, false, true, false, false, false, true).ID: return 5369;
+ case Tripwire::Tripwire(false, false, true, false, false, false, false).ID: return 5370;
+ case Tripwire::Tripwire(false, false, false, true, true, true, true).ID: return 5371;
+ case Tripwire::Tripwire(false, false, false, true, true, true, false).ID: return 5372;
+ case Tripwire::Tripwire(false, false, false, true, true, false, true).ID: return 5373;
+ case Tripwire::Tripwire(false, false, false, true, true, false, false).ID: return 5374;
+ case Tripwire::Tripwire(false, false, false, true, false, true, true).ID: return 5375;
+ case Tripwire::Tripwire(false, false, false, true, false, true, false).ID: return 5376;
+ case Tripwire::Tripwire(false, false, false, true, false, false, true).ID: return 5377;
+ case Tripwire::Tripwire(false, false, false, true, false, false, false).ID: return 5378;
+ case Tripwire::Tripwire(false, false, false, false, true, true, true).ID: return 5379;
+ case Tripwire::Tripwire(false, false, false, false, true, true, false).ID: return 5380;
+ case Tripwire::Tripwire(false, false, false, false, true, false, true).ID: return 5381;
+ case Tripwire::Tripwire(false, false, false, false, true, false, false).ID: return 5382;
+ case Tripwire::Tripwire(false, false, false, false, false, true, true).ID: return 5383;
+ case Tripwire::Tripwire(false, false, false, false, false, true, false).ID: return 5384;
+ case Tripwire::Tripwire(false, false, false, false, false, false, true).ID: return 5385;
+ case Tripwire::Tripwire(false, false, false, false, false, false, false).ID: return 5386;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5243;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5244;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5245;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5246;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, true).ID: return 5247;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, false).ID: return 5248;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, true).ID: return 5249;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, false).ID: return 5250;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5251;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5252;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5253;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5254;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, true).ID: return 5255;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, false).ID: return 5256;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, true).ID: return 5257;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, false).ID: return 5258;
+ case TubeCoral::TubeCoral().ID: return 8995;
+ case TubeCoralBlock::TubeCoralBlock().ID: return 8979;
+ case TubeCoralFan::TubeCoralFan().ID: return 9015;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9065;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9067;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9069;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9071;
+ case TurtleEgg::TurtleEgg(1, 0).ID: return 8962;
+ case TurtleEgg::TurtleEgg(1, 1).ID: return 8963;
+ case TurtleEgg::TurtleEgg(1, 2).ID: return 8964;
+ case TurtleEgg::TurtleEgg(2, 0).ID: return 8965;
+ case TurtleEgg::TurtleEgg(2, 1).ID: return 8966;
+ case TurtleEgg::TurtleEgg(2, 2).ID: return 8967;
+ case TurtleEgg::TurtleEgg(3, 0).ID: return 8968;
+ case TurtleEgg::TurtleEgg(3, 1).ID: return 8969;
+ case TurtleEgg::TurtleEgg(3, 2).ID: return 8970;
+ case TurtleEgg::TurtleEgg(4, 0).ID: return 8971;
+ case TurtleEgg::TurtleEgg(4, 1).ID: return 8972;
+ case TurtleEgg::TurtleEgg(4, 2).ID: return 8973;
+ case Vine::Vine(true, true, true, true, true).ID: return 4772;
+ case Vine::Vine(true, true, true, true, false).ID: return 4773;
+ case Vine::Vine(true, true, true, false, true).ID: return 4774;
+ case Vine::Vine(true, true, true, false, false).ID: return 4775;
+ case Vine::Vine(true, true, false, true, true).ID: return 4776;
+ case Vine::Vine(true, true, false, true, false).ID: return 4777;
+ case Vine::Vine(true, true, false, false, true).ID: return 4778;
+ case Vine::Vine(true, true, false, false, false).ID: return 4779;
+ case Vine::Vine(true, false, true, true, true).ID: return 4780;
+ case Vine::Vine(true, false, true, true, false).ID: return 4781;
+ case Vine::Vine(true, false, true, false, true).ID: return 4782;
+ case Vine::Vine(true, false, true, false, false).ID: return 4783;
+ case Vine::Vine(true, false, false, true, true).ID: return 4784;
+ case Vine::Vine(true, false, false, true, false).ID: return 4785;
+ case Vine::Vine(true, false, false, false, true).ID: return 4786;
+ case Vine::Vine(true, false, false, false, false).ID: return 4787;
+ case Vine::Vine(false, true, true, true, true).ID: return 4788;
+ case Vine::Vine(false, true, true, true, false).ID: return 4789;
+ case Vine::Vine(false, true, true, false, true).ID: return 4790;
+ case Vine::Vine(false, true, true, false, false).ID: return 4791;
+ case Vine::Vine(false, true, false, true, true).ID: return 4792;
+ case Vine::Vine(false, true, false, true, false).ID: return 4793;
+ case Vine::Vine(false, true, false, false, true).ID: return 4794;
+ case Vine::Vine(false, true, false, false, false).ID: return 4795;
+ case Vine::Vine(false, false, true, true, true).ID: return 4796;
+ case Vine::Vine(false, false, true, true, false).ID: return 4797;
+ case Vine::Vine(false, false, true, false, true).ID: return 4798;
+ case Vine::Vine(false, false, true, false, false).ID: return 4799;
+ case Vine::Vine(false, false, false, true, true).ID: return 4800;
+ case Vine::Vine(false, false, false, true, false).ID: return 4801;
+ case Vine::Vine(false, false, false, false, true).ID: return 4802;
+ case Vine::Vine(false, false, false, false, false).ID: return 4803;
+ case VoidAir::VoidAir().ID: return 9129;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZM).ID: return 1435;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZP).ID: return 1436;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XM).ID: return 1437;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XP).ID: return 1438;
+ case Water::Water(0).ID: return 34;
+ case Water::Water(1).ID: return 35;
+ case Water::Water(2).ID: return 36;
+ case Water::Water(3).ID: return 37;
+ case Water::Water(4).ID: return 38;
+ case Water::Water(5).ID: return 39;
+ case Water::Water(6).ID: return 40;
+ case Water::Water(7).ID: return 41;
+ case Water::Water(8).ID: return 42;
+ case Water::Water(9).ID: return 43;
+ case Water::Water(10).ID: return 44;
+ case Water::Water(11).ID: return 45;
+ case Water::Water(12).ID: return 46;
+ case Water::Water(13).ID: return 47;
+ case Water::Water(14).ID: return 48;
+ case Water::Water(15).ID: return 49;
+ case WetSponge::WetSponge().ID: return 229;
+ case Wheat::Wheat(0).ID: return 3355;
+ case Wheat::Wheat(1).ID: return 3356;
+ case Wheat::Wheat(2).ID: return 3357;
+ case Wheat::Wheat(3).ID: return 3358;
+ case Wheat::Wheat(4).ID: return 3359;
+ case Wheat::Wheat(5).ID: return 3360;
+ case Wheat::Wheat(6).ID: return 3361;
+ case Wheat::Wheat(7).ID: return 3362;
+ case WhiteBanner::WhiteBanner(0).ID: return 7361;
+ case WhiteBanner::WhiteBanner(1).ID: return 7362;
+ case WhiteBanner::WhiteBanner(2).ID: return 7363;
+ case WhiteBanner::WhiteBanner(3).ID: return 7364;
+ case WhiteBanner::WhiteBanner(4).ID: return 7365;
+ case WhiteBanner::WhiteBanner(5).ID: return 7366;
+ case WhiteBanner::WhiteBanner(6).ID: return 7367;
+ case WhiteBanner::WhiteBanner(7).ID: return 7368;
+ case WhiteBanner::WhiteBanner(8).ID: return 7369;
+ case WhiteBanner::WhiteBanner(9).ID: return 7370;
+ case WhiteBanner::WhiteBanner(10).ID: return 7371;
+ case WhiteBanner::WhiteBanner(11).ID: return 7372;
+ case WhiteBanner::WhiteBanner(12).ID: return 7373;
+ case WhiteBanner::WhiteBanner(13).ID: return 7374;
+ case WhiteBanner::WhiteBanner(14).ID: return 7375;
+ case WhiteBanner::WhiteBanner(15).ID: return 7376;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Head).ID: return 1048;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Foot).ID: return 1049;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Head).ID: return 1050;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Foot).ID: return 1051;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Head).ID: return 1052;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Foot).ID: return 1053;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Head).ID: return 1054;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Foot).ID: return 1055;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Head).ID: return 1056;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Foot).ID: return 1057;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Head).ID: return 1058;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Foot).ID: return 1059;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Head).ID: return 1060;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Foot).ID: return 1061;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Head).ID: return 1062;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Foot).ID: return 1063;
+ case WhiteCarpet::WhiteCarpet().ID: return 7330;
+ case WhiteConcrete::WhiteConcrete().ID: return 8902;
+ case WhiteConcretePowder::WhiteConcretePowder().ID: return 8918;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8838;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8839;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8840;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8841;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8742;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8743;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8744;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8745;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8746;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8747;
+ case WhiteStainedGlass::WhiteStainedGlass().ID: return 4081;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, true).ID: return 6329;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, false).ID: return 6330;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, true).ID: return 6333;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, false).ID: return 6334;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, true).ID: return 6337;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, false).ID: return 6338;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, true).ID: return 6341;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, false).ID: return 6342;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, true).ID: return 6345;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, false).ID: return 6346;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, true).ID: return 6349;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, false).ID: return 6350;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, true).ID: return 6353;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, false).ID: return 6354;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, true).ID: return 6357;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, false).ID: return 6358;
+ case WhiteTerracotta::WhiteTerracotta().ID: return 6311;
+ case WhiteTulip::WhiteTulip().ID: return 1418;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7617;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7618;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7619;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7620;
+ case WhiteWool::WhiteWool().ID: return 1383;
+ case WitherRose::WitherRose().ID: return 1422;
+ case WitherSkeletonSkull::WitherSkeletonSkull(0).ID: return 5974;
+ case WitherSkeletonSkull::WitherSkeletonSkull(1).ID: return 5975;
+ case WitherSkeletonSkull::WitherSkeletonSkull(2).ID: return 5976;
+ case WitherSkeletonSkull::WitherSkeletonSkull(3).ID: return 5977;
+ case WitherSkeletonSkull::WitherSkeletonSkull(4).ID: return 5978;
+ case WitherSkeletonSkull::WitherSkeletonSkull(5).ID: return 5979;
+ case WitherSkeletonSkull::WitherSkeletonSkull(6).ID: return 5980;
+ case WitherSkeletonSkull::WitherSkeletonSkull(7).ID: return 5981;
+ case WitherSkeletonSkull::WitherSkeletonSkull(8).ID: return 5982;
+ case WitherSkeletonSkull::WitherSkeletonSkull(9).ID: return 5983;
+ case WitherSkeletonSkull::WitherSkeletonSkull(10).ID: return 5984;
+ case WitherSkeletonSkull::WitherSkeletonSkull(11).ID: return 5985;
+ case WitherSkeletonSkull::WitherSkeletonSkull(12).ID: return 5986;
+ case WitherSkeletonSkull::WitherSkeletonSkull(13).ID: return 5987;
+ case WitherSkeletonSkull::WitherSkeletonSkull(14).ID: return 5988;
+ case WitherSkeletonSkull::WitherSkeletonSkull(15).ID: return 5989;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM).ID: return 5990;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP).ID: return 5991;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XM).ID: return 5992;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XP).ID: return 5993;
+ case YellowBanner::YellowBanner(0).ID: return 7425;
+ case YellowBanner::YellowBanner(1).ID: return 7426;
+ case YellowBanner::YellowBanner(2).ID: return 7427;
+ case YellowBanner::YellowBanner(3).ID: return 7428;
+ case YellowBanner::YellowBanner(4).ID: return 7429;
+ case YellowBanner::YellowBanner(5).ID: return 7430;
+ case YellowBanner::YellowBanner(6).ID: return 7431;
+ case YellowBanner::YellowBanner(7).ID: return 7432;
+ case YellowBanner::YellowBanner(8).ID: return 7433;
+ case YellowBanner::YellowBanner(9).ID: return 7434;
+ case YellowBanner::YellowBanner(10).ID: return 7435;
+ case YellowBanner::YellowBanner(11).ID: return 7436;
+ case YellowBanner::YellowBanner(12).ID: return 7437;
+ case YellowBanner::YellowBanner(13).ID: return 7438;
+ case YellowBanner::YellowBanner(14).ID: return 7439;
+ case YellowBanner::YellowBanner(15).ID: return 7440;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Head).ID: return 1112;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Foot).ID: return 1113;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Head).ID: return 1114;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Foot).ID: return 1115;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Head).ID: return 1116;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Foot).ID: return 1117;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Head).ID: return 1118;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Foot).ID: return 1119;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Head).ID: return 1120;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Foot).ID: return 1121;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Head).ID: return 1122;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Foot).ID: return 1123;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Head).ID: return 1124;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Foot).ID: return 1125;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Head).ID: return 1126;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Foot).ID: return 1127;
+ case YellowCarpet::YellowCarpet().ID: return 7334;
+ case YellowConcrete::YellowConcrete().ID: return 8906;
+ case YellowConcretePowder::YellowConcretePowder().ID: return 8922;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 8854;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 8855;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 8856;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 8857;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 8766;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 8767;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 8768;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 8769;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 8770;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 8771;
+ case YellowStainedGlass::YellowStainedGlass().ID: return 4085;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, true).ID: return 6457;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, false).ID: return 6458;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, true).ID: return 6461;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, false).ID: return 6462;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, true).ID: return 6465;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, false).ID: return 6466;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, true).ID: return 6469;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, false).ID: return 6470;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, true).ID: return 6473;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, false).ID: return 6474;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, true).ID: return 6477;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, false).ID: return 6478;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, true).ID: return 6481;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, false).ID: return 6482;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, true).ID: return 6485;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, false).ID: return 6486;
+ case YellowTerracotta::YellowTerracotta().ID: return 6315;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 7633;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 7634;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 7635;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 7636;
+ case YellowWool::YellowWool().ID: return 1387;
+ case ZombieHead::ZombieHead(0).ID: return 5994;
+ case ZombieHead::ZombieHead(1).ID: return 5995;
+ case ZombieHead::ZombieHead(2).ID: return 5996;
+ case ZombieHead::ZombieHead(3).ID: return 5997;
+ case ZombieHead::ZombieHead(4).ID: return 5998;
+ case ZombieHead::ZombieHead(5).ID: return 5999;
+ case ZombieHead::ZombieHead(6).ID: return 6000;
+ case ZombieHead::ZombieHead(7).ID: return 6001;
+ case ZombieHead::ZombieHead(8).ID: return 6002;
+ case ZombieHead::ZombieHead(9).ID: return 6003;
+ case ZombieHead::ZombieHead(10).ID: return 6004;
+ case ZombieHead::ZombieHead(11).ID: return 6005;
+ case ZombieHead::ZombieHead(12).ID: return 6006;
+ case ZombieHead::ZombieHead(13).ID: return 6007;
+ case ZombieHead::ZombieHead(14).ID: return 6008;
+ case ZombieHead::ZombieHead(15).ID: return 6009;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 6010;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 6011;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 6012;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 6013;
default: return 0;
}
}
- UInt32 FromItem(const Item ID)
+ UInt32 From(const Item ID)
{
switch (ID)
{
diff --git a/src/Protocol/Palettes/Palette_1_15.h b/src/Protocol/Palettes/Palette_1_15.h
index 0a742b766..7fcac7e72 100644
--- a/src/Protocol/Palettes/Palette_1_15.h
+++ b/src/Protocol/Palettes/Palette_1_15.h
@@ -1,12 +1,13 @@
#pragma once
-#include "../../Registries/Items.h"
-#include "../../Registries/Statistics.h"
+#include "BlockState.h"
+#include "Registries/Items.h"
+#include "Registries/Statistics.h"
namespace Palette_1_15
{
- UInt32 FromBlock(short ID);
- UInt32 FromItem(Item ID);
+ UInt32 From(BlockState Block);
+ UInt32 From(Item ID);
UInt32 From(Statistic ID);
Item ToItem(UInt32 ID);
}
diff --git a/src/Protocol/Palettes/Palette_1_16.cpp b/src/Protocol/Palettes/Palette_1_16.cpp
index baef7dfd0..fae43766d 100644
--- a/src/Protocol/Palettes/Palette_1_16.cpp
+++ b/src/Protocol/Palettes/Palette_1_16.cpp
@@ -1,11785 +1,11785 @@
#include "Globals.h"
#include "Palette_1_16.h"
-#include "../../Registries/Blocks.h"
+#include "Registries/BlockStates.h"
namespace Palette_1_16
{
- UInt32 FromBlock(const short ID)
+ UInt32 From(const BlockState Block)
{
using namespace Block;
- switch (ID)
+ switch (Block.ID)
{
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 6442;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 6443;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 6444;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 6445;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 6446;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 6447;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 6448;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 6449;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 6450;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 6451;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 6452;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 6453;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 6454;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 6455;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 6456;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 6457;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 6458;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 6459;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 6460;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 6461;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 6462;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 6463;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 6464;
- case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 6465;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8930;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8931;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8932;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8933;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8934;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8935;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8936;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8937;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8938;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8939;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8940;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8941;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8942;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8943;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8944;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8945;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8946;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8947;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8948;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8949;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8950;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8951;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8952;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8953;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8954;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8955;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8956;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8957;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8958;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8959;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8960;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8961;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8962;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8963;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8964;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8965;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8966;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8967;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8968;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8969;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8970;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8971;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8972;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8973;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8974;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8975;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8976;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8977;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true): return 8978;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false): return 8979;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true): return 8980;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false): return 8981;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true): return 8982;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false): return 8983;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true): return 8984;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false): return 8985;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true): return 8986;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false): return 8987;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true): return 8988;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false): return 8989;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true): return 8990;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false): return 8991;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true): return 8992;
- case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false): return 8993;
- case AcaciaFence::AcaciaFence(true, true, true, true): return 8676;
- case AcaciaFence::AcaciaFence(true, true, true, false): return 8677;
- case AcaciaFence::AcaciaFence(true, true, false, true): return 8680;
- case AcaciaFence::AcaciaFence(true, true, false, false): return 8681;
- case AcaciaFence::AcaciaFence(true, false, true, true): return 8684;
- case AcaciaFence::AcaciaFence(true, false, true, false): return 8685;
- case AcaciaFence::AcaciaFence(true, false, false, true): return 8688;
- case AcaciaFence::AcaciaFence(true, false, false, false): return 8689;
- case AcaciaFence::AcaciaFence(false, true, true, true): return 8692;
- case AcaciaFence::AcaciaFence(false, true, true, false): return 8693;
- case AcaciaFence::AcaciaFence(false, true, false, true): return 8696;
- case AcaciaFence::AcaciaFence(false, true, false, false): return 8697;
- case AcaciaFence::AcaciaFence(false, false, true, true): return 8700;
- case AcaciaFence::AcaciaFence(false, false, true, false): return 8701;
- case AcaciaFence::AcaciaFence(false, false, false, true): return 8704;
- case AcaciaFence::AcaciaFence(false, false, false, false): return 8705;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 8514;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 8515;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 8516;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 8517;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 8518;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 8519;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 8520;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 8521;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 8522;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 8523;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 8524;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 8525;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 8526;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 8527;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 8528;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 8529;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 8530;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 8531;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 8532;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 8533;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 8534;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 8535;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8536;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8537;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8538;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8539;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8540;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8541;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8542;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8543;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8544;
- case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8545;
- case AcaciaLeaves::AcaciaLeaves(1, true): return 201;
- case AcaciaLeaves::AcaciaLeaves(1, false): return 202;
- case AcaciaLeaves::AcaciaLeaves(2, true): return 203;
- case AcaciaLeaves::AcaciaLeaves(2, false): return 204;
- case AcaciaLeaves::AcaciaLeaves(3, true): return 205;
- case AcaciaLeaves::AcaciaLeaves(3, false): return 206;
- case AcaciaLeaves::AcaciaLeaves(4, true): return 207;
- case AcaciaLeaves::AcaciaLeaves(4, false): return 208;
- case AcaciaLeaves::AcaciaLeaves(5, true): return 209;
- case AcaciaLeaves::AcaciaLeaves(5, false): return 210;
- case AcaciaLeaves::AcaciaLeaves(6, true): return 211;
- case AcaciaLeaves::AcaciaLeaves(6, false): return 212;
- case AcaciaLeaves::AcaciaLeaves(7, true): return 213;
- case AcaciaLeaves::AcaciaLeaves(7, false): return 214;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::X): return 85;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Y): return 86;
- case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Z): return 87;
- case AcaciaPlanks::AcaciaPlanks(): return 19;
- case AcaciaPressurePlate::AcaciaPressurePlate(true): return 3881;
- case AcaciaPressurePlate::AcaciaPressurePlate(false): return 3882;
- case AcaciaSapling::AcaciaSapling(0): return 29;
- case AcaciaSapling::AcaciaSapling(1): return 30;
- case AcaciaSign::AcaciaSign(0): return 3478;
- case AcaciaSign::AcaciaSign(1): return 3480;
- case AcaciaSign::AcaciaSign(2): return 3482;
- case AcaciaSign::AcaciaSign(3): return 3484;
- case AcaciaSign::AcaciaSign(4): return 3486;
- case AcaciaSign::AcaciaSign(5): return 3488;
- case AcaciaSign::AcaciaSign(6): return 3490;
- case AcaciaSign::AcaciaSign(7): return 3492;
- case AcaciaSign::AcaciaSign(8): return 3494;
- case AcaciaSign::AcaciaSign(9): return 3496;
- case AcaciaSign::AcaciaSign(10): return 3498;
- case AcaciaSign::AcaciaSign(11): return 3500;
- case AcaciaSign::AcaciaSign(12): return 3502;
- case AcaciaSign::AcaciaSign(13): return 3504;
- case AcaciaSign::AcaciaSign(14): return 3506;
- case AcaciaSign::AcaciaSign(15): return 3508;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Top): return 8325;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Bottom): return 8327;
- case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Double): return 8329;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 7376;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 7378;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 7380;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 7382;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 7384;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 7386;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 7388;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 7390;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 7392;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 7394;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 7396;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 7398;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 7400;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 7402;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 7404;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 7406;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 7408;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 7410;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 7412;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 7414;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 7416;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 7418;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 7420;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 7422;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 7424;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 7426;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 7428;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 7430;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 7432;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 7434;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight): return 7436;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft): return 7438;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight): return 7440;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft): return 7442;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight): return 7444;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight): return 7446;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft): return 7448;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight): return 7450;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft): return 7452;
- case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight): return 7454;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, true): return 4368;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, false): return 4370;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, true): return 4372;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, false): return 4374;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, true): return 4376;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, false): return 4378;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, true): return 4380;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, false): return 4382;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, true): return 4384;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, false): return 4386;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, true): return 4388;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, false): return 4390;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, true): return 4392;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, false): return 4394;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, true): return 4396;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, false): return 4398;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, true): return 4400;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, false): return 4402;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, true): return 4404;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, false): return 4406;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, true): return 4408;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, false): return 4410;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, true): return 4412;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, false): return 4414;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, true): return 4416;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, false): return 4418;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, true): return 4420;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, false): return 4422;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, true): return 4424;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, false): return 4426;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, true): return 4428;
- case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, false): return 4430;
- case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZM): return 3760;
- case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZP): return 3762;
- case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XM): return 3764;
- case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XP): return 3766;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::X): return 121;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Y): return 122;
- case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Z): return 123;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::NorthSouth): return 6823;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::EastWest): return 6824;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingEast): return 6825;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingWest): return 6826;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingNorth): return 6827;
- case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingSouth): return 6828;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::NorthSouth): return 6829;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::EastWest): return 6830;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingEast): return 6831;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingWest): return 6832;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingNorth): return 6833;
- case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingSouth): return 6834;
- case Air::Air(): return -0;
- case Allium::Allium(): return 1415;
- case AncientDebris::AncientDebris(): return 15827;
- case Andesite::Andesite(): return 6;
- case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Top): return 10844;
- case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Bottom): return 10846;
- case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Double): return 10848;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 10470;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 10472;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 10474;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 10476;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 10478;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 10480;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 10482;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 10484;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 10486;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 10488;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 10490;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 10492;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 10494;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 10496;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 10498;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 10500;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 10502;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 10504;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 10506;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 10508;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 10510;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 10512;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 10514;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 10516;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 10518;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 10520;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 10522;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 10524;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 10526;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 10528;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight): return 10530;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft): return 10532;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight): return 10534;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft): return 10536;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight): return 10538;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight): return 10540;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft): return 10542;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight): return 10544;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft): return 10546;
- case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight): return 10548;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13138;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13139;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13140;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13144;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13145;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13146;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13150;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13151;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13152;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13156;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13157;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13158;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13162;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13163;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13164;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13168;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13169;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13170;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13174;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13175;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13176;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13180;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13181;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13182;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13186;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13187;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13188;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13192;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13193;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13194;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13198;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13199;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13200;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13204;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13205;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13206;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13210;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13211;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13212;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13216;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13217;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13218;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13222;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13223;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13224;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13228;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13229;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13230;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13234;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13235;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13236;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13240;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13241;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13242;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13246;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13247;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13248;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13252;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13253;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13254;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13258;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13259;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13260;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13264;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13265;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13266;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13270;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13271;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13272;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13276;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13277;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13278;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13282;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13283;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13284;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13288;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13289;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13290;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13294;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13295;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13296;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13300;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13301;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13302;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13306;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13307;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13308;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13312;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13313;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13314;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13318;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13319;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13320;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13324;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13325;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13326;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13330;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13331;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13332;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13336;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13337;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13338;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13342;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13343;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13344;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13348;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13349;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13350;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13354;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13355;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13356;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13360;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13361;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13362;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13366;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13367;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13368;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13372;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13373;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13374;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13378;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13379;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13380;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13384;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13385;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13386;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13390;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13391;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13392;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13396;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13397;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13398;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13402;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13403;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13404;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13408;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13409;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13410;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13414;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13415;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13416;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13420;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13421;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13422;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::None): return 13426;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Low): return 13427;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Tall): return 13428;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::None): return 13432;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Low): return 13433;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Tall): return 13434;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::None): return 13438;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Low): return 13439;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Tall): return 13440;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::None): return 13444;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Low): return 13445;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Tall): return 13446;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::None): return 13450;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Low): return 13451;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall): return 13452;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::None): return 13456;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Low): return 13457;
- case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall): return 13458;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZM): return 6610;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZP): return 6611;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_XM): return 6612;
- case Anvil::Anvil(eBlockFace::BLOCK_FACE_XP): return 6613;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZM): return 4768;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZP): return 4769;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XM): return 4770;
- case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XP): return 4771;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZM): return 4764;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZP): return 4765;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XM): return 4766;
- case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XP): return 4767;
- case AzureBluet::AzureBluet(): return 1416;
- case Bamboo::Bamboo(0, Bamboo::Leaves::None, 0): return 9652;
- case Bamboo::Bamboo(0, Bamboo::Leaves::None, 1): return 9653;
- case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 0): return 9654;
- case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 1): return 9655;
- case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 0): return 9656;
- case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 1): return 9657;
- case Bamboo::Bamboo(1, Bamboo::Leaves::None, 0): return 9658;
- case Bamboo::Bamboo(1, Bamboo::Leaves::None, 1): return 9659;
- case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 0): return 9660;
- case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 1): return 9661;
- case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 0): return 9662;
- case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 1): return 9663;
- case BambooSapling::BambooSapling(): return 9651;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, true): return 14791;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, false): return 14792;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, true): return 14793;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, false): return 14794;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, true): return 14795;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, false): return 14796;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, true): return 14797;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, false): return 14798;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, true): return 14799;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, false): return 14800;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, true): return 14801;
- case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, false): return 14802;
- case Barrier::Barrier(): return 7536;
- case Basalt::Basalt(Basalt::Axis::X): return 4002;
- case Basalt::Basalt(Basalt::Axis::Y): return 4003;
- case Basalt::Basalt(Basalt::Axis::Z): return 4004;
- case Beacon::Beacon(): return 5656;
- case Bedrock::Bedrock(): return 33;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 0): return 15776;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 1): return 15777;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 2): return 15778;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 3): return 15779;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 4): return 15780;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 5): return 15781;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 0): return 15782;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 1): return 15783;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 2): return 15784;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 3): return 15785;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 4): return 15786;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 5): return 15787;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 0): return 15788;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 1): return 15789;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 2): return 15790;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 3): return 15791;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 4): return 15792;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 5): return 15793;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 0): return 15794;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 1): return 15795;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 2): return 15796;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 3): return 15797;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 4): return 15798;
- case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 5): return 15799;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 0): return 15800;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 1): return 15801;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 2): return 15802;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 3): return 15803;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 4): return 15804;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 5): return 15805;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 0): return 15806;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 1): return 15807;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 2): return 15808;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 3): return 15809;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 4): return 15810;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 5): return 15811;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 0): return 15812;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 1): return 15813;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 2): return 15814;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 3): return 15815;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 4): return 15816;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 5): return 15817;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 0): return 15818;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 1): return 15819;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 2): return 15820;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 3): return 15821;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 4): return 15822;
- case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 5): return 15823;
- case Beetroots::Beetroots(0): return 9219;
- case Beetroots::Beetroots(1): return 9220;
- case Beetroots::Beetroots(2): return 9221;
- case Beetroots::Beetroots(3): return 9222;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 14854;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 14855;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 14856;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 14857;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XM, true): return 14858;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XM, false): return 14859;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XP, true): return 14860;
- case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XP, false): return 14861;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 14862;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 14863;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 14864;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 14865;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 14866;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 14867;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 14868;
- case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 14869;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZM, true): return 14870;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZM, false): return 14871;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZP, true): return 14872;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZP, false): return 14873;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XM, true): return 14874;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XM, false): return 14875;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XP, true): return 14876;
- case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XP, false): return 14877;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZM, true): return 14878;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZM, false): return 14879;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZP, true): return 14880;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZP, false): return 14881;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XM, true): return 14882;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XM, false): return 14883;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XP, true): return 14884;
- case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XP, false): return 14885;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 6394;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 6395;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 6396;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 6397;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 6398;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 6399;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 6400;
- case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 6401;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 6402;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 6403;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 6404;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 6405;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 6406;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 6407;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 6408;
- case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 6409;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 6410;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 6411;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 6412;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 6413;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 6414;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 6415;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 6416;
- case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 6417;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8802;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8803;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8804;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8805;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8806;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8807;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8808;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8809;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8810;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8811;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8812;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8813;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8814;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8815;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8816;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8817;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8818;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8819;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8820;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8821;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8822;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8823;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8824;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8825;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8826;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8827;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8828;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8829;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8830;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8831;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8832;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8833;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8834;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8835;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8836;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8837;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8838;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8839;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8840;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8841;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8842;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8843;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8844;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8845;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8846;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8847;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8848;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8849;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true): return 8850;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false): return 8851;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true): return 8852;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false): return 8853;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true): return 8854;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false): return 8855;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true): return 8856;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false): return 8857;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true): return 8858;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false): return 8859;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true): return 8860;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false): return 8861;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true): return 8862;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false): return 8863;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true): return 8864;
- case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false): return 8865;
- case BirchFence::BirchFence(true, true, true, true): return 8612;
- case BirchFence::BirchFence(true, true, true, false): return 8613;
- case BirchFence::BirchFence(true, true, false, true): return 8616;
- case BirchFence::BirchFence(true, true, false, false): return 8617;
- case BirchFence::BirchFence(true, false, true, true): return 8620;
- case BirchFence::BirchFence(true, false, true, false): return 8621;
- case BirchFence::BirchFence(true, false, false, true): return 8624;
- case BirchFence::BirchFence(true, false, false, false): return 8625;
- case BirchFence::BirchFence(false, true, true, true): return 8628;
- case BirchFence::BirchFence(false, true, true, false): return 8629;
- case BirchFence::BirchFence(false, true, false, true): return 8632;
- case BirchFence::BirchFence(false, true, false, false): return 8633;
- case BirchFence::BirchFence(false, false, true, true): return 8636;
- case BirchFence::BirchFence(false, false, true, false): return 8637;
- case BirchFence::BirchFence(false, false, false, true): return 8640;
- case BirchFence::BirchFence(false, false, false, false): return 8641;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 8450;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 8451;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 8452;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 8453;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 8454;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 8455;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 8456;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 8457;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 8458;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 8459;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 8460;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 8461;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 8462;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 8463;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 8464;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 8465;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 8466;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 8467;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 8468;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 8469;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 8470;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 8471;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8472;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8473;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8474;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8475;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8476;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8477;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8478;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8479;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8480;
- case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8481;
- case BirchLeaves::BirchLeaves(1, true): return 173;
- case BirchLeaves::BirchLeaves(1, false): return 174;
- case BirchLeaves::BirchLeaves(2, true): return 175;
- case BirchLeaves::BirchLeaves(2, false): return 176;
- case BirchLeaves::BirchLeaves(3, true): return 177;
- case BirchLeaves::BirchLeaves(3, false): return 178;
- case BirchLeaves::BirchLeaves(4, true): return 179;
- case BirchLeaves::BirchLeaves(4, false): return 180;
- case BirchLeaves::BirchLeaves(5, true): return 181;
- case BirchLeaves::BirchLeaves(5, false): return 182;
- case BirchLeaves::BirchLeaves(6, true): return 183;
- case BirchLeaves::BirchLeaves(6, false): return 184;
- case BirchLeaves::BirchLeaves(7, true): return 185;
- case BirchLeaves::BirchLeaves(7, false): return 186;
- case BirchLog::BirchLog(BirchLog::Axis::X): return 79;
- case BirchLog::BirchLog(BirchLog::Axis::Y): return 80;
- case BirchLog::BirchLog(BirchLog::Axis::Z): return 81;
- case BirchPlanks::BirchPlanks(): return 17;
- case BirchPressurePlate::BirchPressurePlate(true): return 3877;
- case BirchPressurePlate::BirchPressurePlate(false): return 3878;
- case BirchSapling::BirchSapling(0): return 25;
- case BirchSapling::BirchSapling(1): return 26;
- case BirchSign::BirchSign(0): return 3446;
- case BirchSign::BirchSign(1): return 3448;
- case BirchSign::BirchSign(2): return 3450;
- case BirchSign::BirchSign(3): return 3452;
- case BirchSign::BirchSign(4): return 3454;
- case BirchSign::BirchSign(5): return 3456;
- case BirchSign::BirchSign(6): return 3458;
- case BirchSign::BirchSign(7): return 3460;
- case BirchSign::BirchSign(8): return 3462;
- case BirchSign::BirchSign(9): return 3464;
- case BirchSign::BirchSign(10): return 3466;
- case BirchSign::BirchSign(11): return 3468;
- case BirchSign::BirchSign(12): return 3470;
- case BirchSign::BirchSign(13): return 3472;
- case BirchSign::BirchSign(14): return 3474;
- case BirchSign::BirchSign(15): return 3476;
- case BirchSlab::BirchSlab(BirchSlab::Type::Top): return 8313;
- case BirchSlab::BirchSlab(BirchSlab::Type::Bottom): return 8315;
- case BirchSlab::BirchSlab(BirchSlab::Type::Double): return 8317;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5485;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5487;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5489;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5491;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5493;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5495;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5497;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5499;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5501;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5503;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5505;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5507;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5509;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5511;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5513;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5515;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5517;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5519;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5521;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5523;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5525;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5527;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5529;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5531;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5533;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5535;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5537;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5539;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5541;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5543;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::Straight): return 5545;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft): return 5547;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight): return 5549;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft): return 5551;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight): return 5553;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight): return 5555;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft): return 5557;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight): return 5559;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft): return 5561;
- case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight): return 5563;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, true): return 4240;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, false): return 4242;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, true): return 4244;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, false): return 4246;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, true): return 4248;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, false): return 4250;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, true): return 4252;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, false): return 4254;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, true): return 4256;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, false): return 4258;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, true): return 4260;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, false): return 4262;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, true): return 4264;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, false): return 4266;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, true): return 4268;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, false): return 4270;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, true): return 4272;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, false): return 4274;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, true): return 4276;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, false): return 4278;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, true): return 4280;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, false): return 4282;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, true): return 4284;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, false): return 4286;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, true): return 4288;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, false): return 4290;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, true): return 4292;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, false): return 4294;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, true): return 4296;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, false): return 4298;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, true): return 4300;
- case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, false): return 4302;
- case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZM): return 3752;
- case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZP): return 3754;
- case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XM): return 3756;
- case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XP): return 3758;
- case BirchWood::BirchWood(BirchWood::Axis::X): return 115;
- case BirchWood::BirchWood(BirchWood::Axis::Y): return 116;
- case BirchWood::BirchWood(BirchWood::Axis::Z): return 117;
- case BlackBanner::BlackBanner(0): return 8137;
- case BlackBanner::BlackBanner(1): return 8138;
- case BlackBanner::BlackBanner(2): return 8139;
- case BlackBanner::BlackBanner(3): return 8140;
- case BlackBanner::BlackBanner(4): return 8141;
- case BlackBanner::BlackBanner(5): return 8142;
- case BlackBanner::BlackBanner(6): return 8143;
- case BlackBanner::BlackBanner(7): return 8144;
- case BlackBanner::BlackBanner(8): return 8145;
- case BlackBanner::BlackBanner(9): return 8146;
- case BlackBanner::BlackBanner(10): return 8147;
- case BlackBanner::BlackBanner(11): return 8148;
- case BlackBanner::BlackBanner(12): return 8149;
- case BlackBanner::BlackBanner(13): return 8150;
- case BlackBanner::BlackBanner(14): return 8151;
- case BlackBanner::BlackBanner(15): return 8152;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Head): return 1289;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Foot): return 1290;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Head): return 1291;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Foot): return 1292;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Head): return 1293;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Foot): return 1294;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Head): return 1295;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Foot): return 1296;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Head): return 1297;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Foot): return 1298;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Head): return 1299;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Foot): return 1300;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Head): return 1301;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Foot): return 1302;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Head): return 1303;
- case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Foot): return 1304;
- case BlackCarpet::BlackCarpet(): return 7881;
- case BlackConcrete::BlackConcrete(): return 9453;
- case BlackConcretePowder::BlackConcretePowder(): return 9469;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9434;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9435;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9436;
- case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9437;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9368;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9369;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9370;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9371;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9372;
- case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9373;
- case BlackStainedGlass::BlackStainedGlass(): return 4110;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, true): return 7345;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, false): return 7346;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, true): return 7349;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, false): return 7350;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, true): return 7353;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, false): return 7354;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, true): return 7357;
- case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, false): return 7358;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, true): return 7361;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, false): return 7362;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, true): return 7365;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, false): return 7366;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, true): return 7369;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, false): return 7370;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, true): return 7373;
- case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, false): return 7374;
- case BlackTerracotta::BlackTerracotta(): return 6862;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8213;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8214;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XM): return 8215;
- case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XP): return 8216;
- case BlackWool::BlackWool(): return 1399;
- case Blackstone::Blackstone(): return 15839;
- case BlackstoneSlab::BlackstoneSlab(BlackstoneSlab::Type::Top): return 16245;
- case BlackstoneSlab::BlackstoneSlab(BlackstoneSlab::Type::Bottom): return 16247;
- case BlackstoneSlab::BlackstoneSlab(BlackstoneSlab::Type::Double): return 16249;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::Straight): return 15841;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerLeft): return 15843;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerRight): return 15845;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterLeft): return 15847;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterRight): return 15849;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::Straight): return 15851;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerLeft): return 15853;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerRight): return 15855;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterLeft): return 15857;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterRight): return 15859;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::Straight): return 15861;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerLeft): return 15863;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerRight): return 15865;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterLeft): return 15867;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterRight): return 15869;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::Straight): return 15871;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerLeft): return 15873;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerRight): return 15875;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterLeft): return 15877;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterRight): return 15879;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::Straight): return 15881;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerLeft): return 15883;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerRight): return 15885;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterLeft): return 15887;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterRight): return 15889;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::Straight): return 15891;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerLeft): return 15893;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerRight): return 15895;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterLeft): return 15897;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterRight): return 15899;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::Straight): return 15901;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerLeft): return 15903;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerRight): return 15905;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterLeft): return 15907;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterRight): return 15909;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::Straight): return 15911;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerLeft): return 15913;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerRight): return 15915;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterLeft): return 15917;
- case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterRight): return 15919;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 15923;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 15924;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 15925;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 15929;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 15930;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 15931;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 15935;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 15936;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 15937;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 15941;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 15942;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 15943;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 15947;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 15948;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 15949;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 15953;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 15954;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 15955;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 15959;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 15960;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 15961;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 15965;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 15966;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 15967;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 15971;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 15972;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 15973;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 15977;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 15978;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 15979;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 15983;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 15984;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 15985;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 15989;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 15990;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 15991;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 15995;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 15996;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 15997;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16001;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16002;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16003;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16007;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16008;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16009;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16013;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16014;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16015;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16019;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16020;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16021;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16025;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16026;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16027;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 16031;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 16032;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 16033;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16037;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16038;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16039;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16043;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16044;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16045;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16049;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16050;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16051;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16055;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16056;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16057;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16061;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16062;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16063;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 16067;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 16068;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 16069;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16073;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16074;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16075;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16079;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16080;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16081;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16085;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16086;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16087;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16091;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16092;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16093;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16097;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16098;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16099;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 16103;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 16104;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 16105;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16109;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16110;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16111;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16115;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16116;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16117;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16121;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16122;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16123;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16127;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16128;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16129;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16133;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16134;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16135;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 16139;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 16140;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 16141;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16145;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16146;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16147;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16151;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16152;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16153;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16157;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16158;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16159;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16163;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16164;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16165;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16169;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16170;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16171;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 16175;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 16176;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 16177;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16181;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16182;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16183;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16187;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16188;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16189;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16193;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16194;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16195;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16199;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16200;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16201;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16205;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16206;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16207;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::None): return 16211;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Low): return 16212;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall): return 16213;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::None): return 16217;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Low): return 16218;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall): return 16219;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::None): return 16223;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low): return 16224;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall): return 16225;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::None): return 16229;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low): return 16230;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall): return 16231;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None): return 16235;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low): return 16236;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall): return 16237;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None): return 16241;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low): return 16242;
- case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall): return 16243;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, true): return 14811;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, false): return 14812;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, true): return 14813;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, false): return 14814;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, true): return 14815;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, false): return 14816;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, true): return 14817;
- case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, false): return 14818;
- case BlueBanner::BlueBanner(0): return 8073;
- case BlueBanner::BlueBanner(1): return 8074;
- case BlueBanner::BlueBanner(2): return 8075;
- case BlueBanner::BlueBanner(3): return 8076;
- case BlueBanner::BlueBanner(4): return 8077;
- case BlueBanner::BlueBanner(5): return 8078;
- case BlueBanner::BlueBanner(6): return 8079;
- case BlueBanner::BlueBanner(7): return 8080;
- case BlueBanner::BlueBanner(8): return 8081;
- case BlueBanner::BlueBanner(9): return 8082;
- case BlueBanner::BlueBanner(10): return 8083;
- case BlueBanner::BlueBanner(11): return 8084;
- case BlueBanner::BlueBanner(12): return 8085;
- case BlueBanner::BlueBanner(13): return 8086;
- case BlueBanner::BlueBanner(14): return 8087;
- case BlueBanner::BlueBanner(15): return 8088;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Head): return 1225;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Foot): return 1226;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Head): return 1227;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Foot): return 1228;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Head): return 1229;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Foot): return 1230;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Head): return 1231;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Foot): return 1232;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Head): return 1233;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Foot): return 1234;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Head): return 1235;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Foot): return 1236;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Head): return 1237;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Foot): return 1238;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Head): return 1239;
- case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Foot): return 1240;
- case BlueCarpet::BlueCarpet(): return 7877;
- case BlueConcrete::BlueConcrete(): return 9449;
- case BlueConcretePowder::BlueConcretePowder(): return 9465;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9418;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9419;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9420;
- case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9421;
- case BlueIce::BlueIce(): return 9648;
- case BlueOrchid::BlueOrchid(): return 1414;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9344;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9345;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9346;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9347;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9348;
- case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9349;
- case BlueStainedGlass::BlueStainedGlass(): return 4106;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, true): return 7217;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, false): return 7218;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, true): return 7221;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, false): return 7222;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, true): return 7225;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, false): return 7226;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, true): return 7229;
- case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, false): return 7230;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, true): return 7233;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, false): return 7234;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, true): return 7237;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, false): return 7238;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, true): return 7241;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, false): return 7242;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, true): return 7245;
- case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, false): return 7246;
- case BlueTerracotta::BlueTerracotta(): return 6858;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8197;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8198;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 8199;
- case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 8200;
- case BlueWool::BlueWool(): return 1395;
- case BoneBlock::BoneBlock(BoneBlock::Axis::X): return 9256;
- case BoneBlock::BoneBlock(BoneBlock::Axis::Y): return 9257;
- case BoneBlock::BoneBlock(BoneBlock::Axis::Z): return 9258;
- case Bookshelf::Bookshelf(): return 1432;
- case BrainCoral::BrainCoral(): return 9533;
- case BrainCoralBlock::BrainCoralBlock(): return 9516;
- case BrainCoralFan::BrainCoralFan(): return 9553;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9609;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9611;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9613;
- case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9615;
- case BrewingStand::BrewingStand(true, true, true): return 5133;
- case BrewingStand::BrewingStand(true, true, false): return 5134;
- case BrewingStand::BrewingStand(true, false, true): return 5135;
- case BrewingStand::BrewingStand(true, false, false): return 5136;
- case BrewingStand::BrewingStand(false, true, true): return 5137;
- case BrewingStand::BrewingStand(false, true, false): return 5138;
- case BrewingStand::BrewingStand(false, false, true): return 5139;
- case BrewingStand::BrewingStand(false, false, false): return 5140;
- case BrickSlab::BrickSlab(BrickSlab::Type::Top): return 8373;
- case BrickSlab::BrickSlab(BrickSlab::Type::Bottom): return 8375;
- case BrickSlab::BrickSlab(BrickSlab::Type::Double): return 8377;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4853;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4855;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4857;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4859;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4861;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4863;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4865;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4867;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4869;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4871;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4873;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4875;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4877;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4879;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4881;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4883;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4885;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4887;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4889;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4891;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4893;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4895;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4897;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4899;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4901;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4903;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4905;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4907;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4909;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4911;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::Straight): return 4913;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft): return 4915;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight): return 4917;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft): return 4919;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight): return 4921;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight): return 4923;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft): return 4925;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight): return 4927;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft): return 4929;
- case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight): return 4931;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None): return 10870;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low): return 10871;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Tall): return 10872;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None): return 10876;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low): return 10877;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Tall): return 10878;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None): return 10882;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low): return 10883;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Tall): return 10884;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None): return 10888;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low): return 10889;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Tall): return 10890;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::None): return 10894;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Low): return 10895;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Tall): return 10896;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::None): return 10900;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Low): return 10901;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Tall): return 10902;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None): return 10906;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low): return 10907;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Tall): return 10908;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None): return 10912;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low): return 10913;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Tall): return 10914;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None): return 10918;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low): return 10919;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Tall): return 10920;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None): return 10924;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low): return 10925;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Tall): return 10926;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::None): return 10930;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Low): return 10931;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Tall): return 10932;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::None): return 10936;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Low): return 10937;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Tall): return 10938;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::None): return 10942;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Low): return 10943;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Tall): return 10944;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::None): return 10948;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Low): return 10949;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Tall): return 10950;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::None): return 10954;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Low): return 10955;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Tall): return 10956;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::None): return 10960;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Low): return 10961;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Tall): return 10962;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::None): return 10966;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Low): return 10967;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Tall): return 10968;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::None): return 10972;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Low): return 10973;
- case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Tall): return 10974;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None): return 10978;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low): return 10979;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Tall): return 10980;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None): return 10984;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low): return 10985;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Tall): return 10986;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None): return 10990;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low): return 10991;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Tall): return 10992;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None): return 10996;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low): return 10997;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Tall): return 10998;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::None): return 11002;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Low): return 11003;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Tall): return 11004;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::None): return 11008;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Low): return 11009;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Tall): return 11010;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None): return 11014;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low): return 11015;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Tall): return 11016;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None): return 11020;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low): return 11021;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Tall): return 11022;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None): return 11026;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low): return 11027;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Tall): return 11028;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None): return 11032;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low): return 11033;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Tall): return 11034;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::None): return 11038;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Low): return 11039;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Tall): return 11040;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::None): return 11044;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Low): return 11045;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Tall): return 11046;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::None): return 11050;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Low): return 11051;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Tall): return 11052;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::None): return 11056;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Low): return 11057;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Tall): return 11058;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::None): return 11062;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Low): return 11063;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Tall): return 11064;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::None): return 11068;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Low): return 11069;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Tall): return 11070;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::None): return 11074;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Low): return 11075;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Tall): return 11076;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::None): return 11080;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Low): return 11081;
- case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Tall): return 11082;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None): return 11086;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low): return 11087;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Tall): return 11088;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None): return 11092;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low): return 11093;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Tall): return 11094;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None): return 11098;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low): return 11099;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Tall): return 11100;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None): return 11104;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low): return 11105;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Tall): return 11106;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::None): return 11110;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Low): return 11111;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Tall): return 11112;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::None): return 11116;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Low): return 11117;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Tall): return 11118;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None): return 11122;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low): return 11123;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Tall): return 11124;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None): return 11128;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low): return 11129;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Tall): return 11130;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None): return 11134;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low): return 11135;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Tall): return 11136;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None): return 11140;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low): return 11141;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Tall): return 11142;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::None): return 11146;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Low): return 11147;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Tall): return 11148;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::None): return 11152;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Low): return 11153;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Tall): return 11154;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::None): return 11158;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Low): return 11159;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Tall): return 11160;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::None): return 11164;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Low): return 11165;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Tall): return 11166;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::None): return 11170;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Low): return 11171;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Tall): return 11172;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::None): return 11176;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Low): return 11177;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Tall): return 11178;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::None): return 11182;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Low): return 11183;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Tall): return 11184;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::None): return 11188;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Low): return 11189;
- case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Tall): return 11190;
- case Bricks::Bricks(): return 1429;
- case BrownBanner::BrownBanner(0): return 8089;
- case BrownBanner::BrownBanner(1): return 8090;
- case BrownBanner::BrownBanner(2): return 8091;
- case BrownBanner::BrownBanner(3): return 8092;
- case BrownBanner::BrownBanner(4): return 8093;
- case BrownBanner::BrownBanner(5): return 8094;
- case BrownBanner::BrownBanner(6): return 8095;
- case BrownBanner::BrownBanner(7): return 8096;
- case BrownBanner::BrownBanner(8): return 8097;
- case BrownBanner::BrownBanner(9): return 8098;
- case BrownBanner::BrownBanner(10): return 8099;
- case BrownBanner::BrownBanner(11): return 8100;
- case BrownBanner::BrownBanner(12): return 8101;
- case BrownBanner::BrownBanner(13): return 8102;
- case BrownBanner::BrownBanner(14): return 8103;
- case BrownBanner::BrownBanner(15): return 8104;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Head): return 1241;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Foot): return 1242;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Head): return 1243;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Foot): return 1244;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Head): return 1245;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Foot): return 1246;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Head): return 1247;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Foot): return 1248;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Head): return 1249;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Foot): return 1250;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Head): return 1251;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Foot): return 1252;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Head): return 1253;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Foot): return 1254;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Head): return 1255;
- case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Foot): return 1256;
- case BrownCarpet::BrownCarpet(): return 7878;
- case BrownConcrete::BrownConcrete(): return 9450;
- case BrownConcretePowder::BrownConcretePowder(): return 9466;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9422;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9423;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9424;
- case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9425;
- case BrownMushroom::BrownMushroom(): return 1425;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, true): return 4505;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, false): return 4506;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, true): return 4507;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, false): return 4508;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, true): return 4509;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, false): return 4510;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, true): return 4511;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, false): return 4512;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, true): return 4513;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, false): return 4514;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, true): return 4515;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, false): return 4516;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, true): return 4517;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, false): return 4518;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, true): return 4519;
- case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, false): return 4520;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, true): return 4521;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, false): return 4522;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, true): return 4523;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, false): return 4524;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, true): return 4525;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, false): return 4526;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, true): return 4527;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, false): return 4528;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, true): return 4529;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, false): return 4530;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, true): return 4531;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, false): return 4532;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, true): return 4533;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, false): return 4534;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, true): return 4535;
- case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, false): return 4536;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, true): return 4537;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, false): return 4538;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, true): return 4539;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, false): return 4540;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, true): return 4541;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, false): return 4542;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, true): return 4543;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, false): return 4544;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, true): return 4545;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, false): return 4546;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, true): return 4547;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, false): return 4548;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, true): return 4549;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, false): return 4550;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, true): return 4551;
- case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, false): return 4552;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, true): return 4553;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, false): return 4554;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, true): return 4555;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, false): return 4556;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, true): return 4557;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, false): return 4558;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, true): return 4559;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, false): return 4560;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, true): return 4561;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, false): return 4562;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, true): return 4563;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, false): return 4564;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, true): return 4565;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, false): return 4566;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, true): return 4567;
- case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false): return 4568;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9350;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9351;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9352;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9353;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9354;
- case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9355;
- case BrownStainedGlass::BrownStainedGlass(): return 4107;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, true): return 7249;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, false): return 7250;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, true): return 7253;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, false): return 7254;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, true): return 7257;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, false): return 7258;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, true): return 7261;
- case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, false): return 7262;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, true): return 7265;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, false): return 7266;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, true): return 7269;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, false): return 7270;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, true): return 7273;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, false): return 7274;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, true): return 7277;
- case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, false): return 7278;
- case BrownTerracotta::BrownTerracotta(): return 6859;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8201;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8202;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XM): return 8203;
- case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XP): return 8204;
- case BrownWool::BrownWool(): return 1396;
- case BubbleColumn::BubbleColumn(true): return 9667;
- case BubbleColumn::BubbleColumn(false): return 9668;
- case BubbleCoral::BubbleCoral(): return 9535;
- case BubbleCoralBlock::BubbleCoralBlock(): return 9517;
- case BubbleCoralFan::BubbleCoralFan(): return 9555;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9617;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9619;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9621;
- case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9623;
- case Cactus::Cactus(0): return 3931;
- case Cactus::Cactus(1): return 3932;
- case Cactus::Cactus(2): return 3933;
- case Cactus::Cactus(3): return 3934;
- case Cactus::Cactus(4): return 3935;
- case Cactus::Cactus(5): return 3936;
- case Cactus::Cactus(6): return 3937;
- case Cactus::Cactus(7): return 3938;
- case Cactus::Cactus(8): return 3939;
- case Cactus::Cactus(9): return 3940;
- case Cactus::Cactus(10): return 3941;
- case Cactus::Cactus(11): return 3942;
- case Cactus::Cactus(12): return 3943;
- case Cactus::Cactus(13): return 3944;
- case Cactus::Cactus(14): return 3945;
- case Cactus::Cactus(15): return 3946;
- case Cake::Cake(0): return 4024;
- case Cake::Cake(1): return 4025;
- case Cake::Cake(2): return 4026;
- case Cake::Cake(3): return 4027;
- case Cake::Cake(4): return 4028;
- case Cake::Cake(5): return 4029;
- case Cake::Cake(6): return 4030;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, true): return 14891;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, false): return 14893;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, true): return 14895;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, false): return 14897;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, true): return 14899;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, false): return 14901;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, true): return 14903;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, false): return 14905;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, true): return 14907;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, false): return 14909;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, true): return 14911;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, false): return 14913;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, true): return 14915;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, false): return 14917;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, true): return 14919;
- case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, false): return 14921;
- case Carrots::Carrots(0): return 6330;
- case Carrots::Carrots(1): return 6331;
- case Carrots::Carrots(2): return 6332;
- case Carrots::Carrots(3): return 6333;
- case Carrots::Carrots(4): return 6334;
- case Carrots::Carrots(5): return 6335;
- case Carrots::Carrots(6): return 6336;
- case Carrots::Carrots(7): return 6337;
- case CartographyTable::CartographyTable(): return 14819;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZM): return 4016;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZP): return 4017;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XM): return 4018;
- case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XP): return 4019;
- case Cauldron::Cauldron(0): return 5141;
- case Cauldron::Cauldron(1): return 5142;
- case Cauldron::Cauldron(2): return 5143;
- case Cauldron::Cauldron(3): return 5144;
- case CaveAir::CaveAir(): return 9666;
- case Chain::Chain(): return 4730;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 9237;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 9238;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 9239;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 9240;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 9241;
- case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 9242;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 9243;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 9244;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 9245;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 9246;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 9247;
- case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 9248;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Single): return 2035;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Left): return 2037;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Right): return 2039;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Single): return 2041;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Left): return 2043;
- case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Right): return 2045;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Single): return 2047;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Left): return 2049;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Right): return 2051;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Single): return 2053;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Left): return 2055;
- case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Right): return 2057;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZM): return 6614;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZP): return 6615;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XM): return 6616;
- case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XP): return 6617;
- case ChiseledNetherBricks::ChiseledNetherBricks(): return 17101;
- case ChiseledPolishedBlackstone::ChiseledPolishedBlackstone(): return 16253;
- case ChiseledQuartzBlock::ChiseledQuartzBlock(): return 6739;
- case ChiseledRedSandstone::ChiseledRedSandstone(): return 8218;
- case ChiseledSandstone::ChiseledSandstone(): return 247;
- case ChiseledStoneBricks::ChiseledStoneBricks(): return 4498;
- case ChorusFlower::ChorusFlower(0): return 9128;
- case ChorusFlower::ChorusFlower(1): return 9129;
- case ChorusFlower::ChorusFlower(2): return 9130;
- case ChorusFlower::ChorusFlower(3): return 9131;
- case ChorusFlower::ChorusFlower(4): return 9132;
- case ChorusFlower::ChorusFlower(5): return 9133;
- case ChorusPlant::ChorusPlant(true, true, true, true, true, true): return 9064;
- case ChorusPlant::ChorusPlant(true, true, true, true, true, false): return 9065;
- case ChorusPlant::ChorusPlant(true, true, true, true, false, true): return 9066;
- case ChorusPlant::ChorusPlant(true, true, true, true, false, false): return 9067;
- case ChorusPlant::ChorusPlant(true, true, true, false, true, true): return 9068;
- case ChorusPlant::ChorusPlant(true, true, true, false, true, false): return 9069;
- case ChorusPlant::ChorusPlant(true, true, true, false, false, true): return 9070;
- case ChorusPlant::ChorusPlant(true, true, true, false, false, false): return 9071;
- case ChorusPlant::ChorusPlant(true, true, false, true, true, true): return 9072;
- case ChorusPlant::ChorusPlant(true, true, false, true, true, false): return 9073;
- case ChorusPlant::ChorusPlant(true, true, false, true, false, true): return 9074;
- case ChorusPlant::ChorusPlant(true, true, false, true, false, false): return 9075;
- case ChorusPlant::ChorusPlant(true, true, false, false, true, true): return 9076;
- case ChorusPlant::ChorusPlant(true, true, false, false, true, false): return 9077;
- case ChorusPlant::ChorusPlant(true, true, false, false, false, true): return 9078;
- case ChorusPlant::ChorusPlant(true, true, false, false, false, false): return 9079;
- case ChorusPlant::ChorusPlant(true, false, true, true, true, true): return 9080;
- case ChorusPlant::ChorusPlant(true, false, true, true, true, false): return 9081;
- case ChorusPlant::ChorusPlant(true, false, true, true, false, true): return 9082;
- case ChorusPlant::ChorusPlant(true, false, true, true, false, false): return 9083;
- case ChorusPlant::ChorusPlant(true, false, true, false, true, true): return 9084;
- case ChorusPlant::ChorusPlant(true, false, true, false, true, false): return 9085;
- case ChorusPlant::ChorusPlant(true, false, true, false, false, true): return 9086;
- case ChorusPlant::ChorusPlant(true, false, true, false, false, false): return 9087;
- case ChorusPlant::ChorusPlant(true, false, false, true, true, true): return 9088;
- case ChorusPlant::ChorusPlant(true, false, false, true, true, false): return 9089;
- case ChorusPlant::ChorusPlant(true, false, false, true, false, true): return 9090;
- case ChorusPlant::ChorusPlant(true, false, false, true, false, false): return 9091;
- case ChorusPlant::ChorusPlant(true, false, false, false, true, true): return 9092;
- case ChorusPlant::ChorusPlant(true, false, false, false, true, false): return 9093;
- case ChorusPlant::ChorusPlant(true, false, false, false, false, true): return 9094;
- case ChorusPlant::ChorusPlant(true, false, false, false, false, false): return 9095;
- case ChorusPlant::ChorusPlant(false, true, true, true, true, true): return 9096;
- case ChorusPlant::ChorusPlant(false, true, true, true, true, false): return 9097;
- case ChorusPlant::ChorusPlant(false, true, true, true, false, true): return 9098;
- case ChorusPlant::ChorusPlant(false, true, true, true, false, false): return 9099;
- case ChorusPlant::ChorusPlant(false, true, true, false, true, true): return 9100;
- case ChorusPlant::ChorusPlant(false, true, true, false, true, false): return 9101;
- case ChorusPlant::ChorusPlant(false, true, true, false, false, true): return 9102;
- case ChorusPlant::ChorusPlant(false, true, true, false, false, false): return 9103;
- case ChorusPlant::ChorusPlant(false, true, false, true, true, true): return 9104;
- case ChorusPlant::ChorusPlant(false, true, false, true, true, false): return 9105;
- case ChorusPlant::ChorusPlant(false, true, false, true, false, true): return 9106;
- case ChorusPlant::ChorusPlant(false, true, false, true, false, false): return 9107;
- case ChorusPlant::ChorusPlant(false, true, false, false, true, true): return 9108;
- case ChorusPlant::ChorusPlant(false, true, false, false, true, false): return 9109;
- case ChorusPlant::ChorusPlant(false, true, false, false, false, true): return 9110;
- case ChorusPlant::ChorusPlant(false, true, false, false, false, false): return 9111;
- case ChorusPlant::ChorusPlant(false, false, true, true, true, true): return 9112;
- case ChorusPlant::ChorusPlant(false, false, true, true, true, false): return 9113;
- case ChorusPlant::ChorusPlant(false, false, true, true, false, true): return 9114;
- case ChorusPlant::ChorusPlant(false, false, true, true, false, false): return 9115;
- case ChorusPlant::ChorusPlant(false, false, true, false, true, true): return 9116;
- case ChorusPlant::ChorusPlant(false, false, true, false, true, false): return 9117;
- case ChorusPlant::ChorusPlant(false, false, true, false, false, true): return 9118;
- case ChorusPlant::ChorusPlant(false, false, true, false, false, false): return 9119;
- case ChorusPlant::ChorusPlant(false, false, false, true, true, true): return 9120;
- case ChorusPlant::ChorusPlant(false, false, false, true, true, false): return 9121;
- case ChorusPlant::ChorusPlant(false, false, false, true, false, true): return 9122;
- case ChorusPlant::ChorusPlant(false, false, false, true, false, false): return 9123;
- case ChorusPlant::ChorusPlant(false, false, false, false, true, true): return 9124;
- case ChorusPlant::ChorusPlant(false, false, false, false, true, false): return 9125;
- case ChorusPlant::ChorusPlant(false, false, false, false, false, true): return 9126;
- case ChorusPlant::ChorusPlant(false, false, false, false, false, false): return 9127;
- case Clay::Clay(): return 3947;
- case CoalBlock::CoalBlock(): return 7883;
- case CoalOre::CoalOre(): return 71;
- case CoarseDirt::CoarseDirt(): return 11;
- case Cobblestone::Cobblestone(): return 14;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Top): return 8367;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Bottom): return 8369;
- case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double): return 8371;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3656;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3658;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3660;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3662;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3664;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3666;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3668;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3670;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3672;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3674;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3676;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3678;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3680;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3682;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3684;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3686;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3688;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3690;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3692;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3694;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3696;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3698;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3700;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3702;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3704;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3706;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3708;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3710;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3712;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3714;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight): return 3716;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft): return 3718;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight): return 3720;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft): return 3722;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight): return 3724;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight): return 3726;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft): return 3728;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight): return 3730;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft): return 3732;
- case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight): return 3734;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5660;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5661;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5662;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5666;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5667;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5668;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5672;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5673;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5674;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5678;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5679;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5680;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5684;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5685;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5686;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5690;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5691;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5692;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5696;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5697;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5698;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5702;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5703;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5704;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5708;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5709;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5710;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5714;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5715;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5716;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5720;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5721;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5722;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5726;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5727;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5728;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5732;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5733;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5734;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5738;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5739;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5740;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5744;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5745;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5746;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5750;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5751;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5752;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5756;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5757;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5758;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5762;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5763;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5764;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5768;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5769;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5770;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5774;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5775;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5776;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5780;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5781;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5782;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5786;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5787;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5788;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5792;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5793;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5794;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5798;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5799;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5800;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5804;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5805;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5806;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5810;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5811;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5812;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5816;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5817;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5818;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5822;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5823;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5824;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5828;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5829;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5830;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5834;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5835;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5836;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5840;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5841;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5842;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5846;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5847;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5848;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5852;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5853;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5854;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5858;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5859;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5860;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5864;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5865;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5866;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5870;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5871;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5872;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5876;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5877;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5878;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5882;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5883;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5884;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5888;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5889;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5890;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5894;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5895;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5896;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5900;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5901;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5902;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5906;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5907;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5908;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5912;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5913;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5914;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5918;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5919;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5920;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5924;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5925;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5926;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5930;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5931;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5932;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5936;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5937;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5938;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5942;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5943;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5944;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::None): return 5948;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Low): return 5949;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall): return 5950;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::None): return 5954;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Low): return 5955;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall): return 5956;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::None): return 5960;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low): return 5961;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall): return 5962;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::None): return 5966;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low): return 5967;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall): return 5968;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None): return 5972;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low): return 5973;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall): return 5974;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None): return 5978;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low): return 5979;
- case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall): return 5980;
- case Cobweb::Cobweb(): return 1341;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZM): return 5158;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZP): return 5159;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XM): return 5160;
- case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XP): return 5161;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZM): return 5162;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZP): return 5163;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XM): return 5164;
- case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XP): return 5165;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZM): return 5166;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZP): return 5167;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XM): return 5168;
- case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XP): return 5169;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 5644;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 5645;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 5646;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 5647;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 5648;
- case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 5649;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 5650;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 5651;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 5652;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 5653;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 5654;
- case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 5655;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true): return 6678;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false): return 6679;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true): return 6680;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false): return 6681;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true): return 6682;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false): return 6683;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true): return 6684;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false): return 6685;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true): return 6686;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false): return 6687;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true): return 6688;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false): return 6689;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true): return 6690;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false): return 6691;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true): return 6692;
- case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false): return 6693;
- case Composter::Composter(0): return 15751;
- case Composter::Composter(1): return 15752;
- case Composter::Composter(2): return 15753;
- case Composter::Composter(3): return 15754;
- case Composter::Composter(4): return 15755;
- case Composter::Composter(5): return 15756;
- case Composter::Composter(6): return 15757;
- case Composter::Composter(7): return 15758;
- case Composter::Composter(8): return 15759;
- case Conduit::Conduit(): return 9650;
- case Cornflower::Cornflower(): return 1422;
- case CrackedNetherBricks::CrackedNetherBricks(): return 17102;
- case CrackedPolishedBlackstoneBricks::CrackedPolishedBlackstoneBricks(): return 16252;
- case CrackedStoneBricks::CrackedStoneBricks(): return 4497;
- case CraftingTable::CraftingTable(): return 3356;
- case CreeperHead::CreeperHead(0): return 6570;
- case CreeperHead::CreeperHead(1): return 6571;
- case CreeperHead::CreeperHead(2): return 6572;
- case CreeperHead::CreeperHead(3): return 6573;
- case CreeperHead::CreeperHead(4): return 6574;
- case CreeperHead::CreeperHead(5): return 6575;
- case CreeperHead::CreeperHead(6): return 6576;
- case CreeperHead::CreeperHead(7): return 6577;
- case CreeperHead::CreeperHead(8): return 6578;
- case CreeperHead::CreeperHead(9): return 6579;
- case CreeperHead::CreeperHead(10): return 6580;
- case CreeperHead::CreeperHead(11): return 6581;
- case CreeperHead::CreeperHead(12): return 6582;
- case CreeperHead::CreeperHead(13): return 6583;
- case CreeperHead::CreeperHead(14): return 6584;
- case CreeperHead::CreeperHead(15): return 6585;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZM): return 6586;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZP): return 6587;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XM): return 6588;
- case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XP): return 6589;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 15479;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 15480;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 15481;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 15482;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 15483;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 15484;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 15485;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 15486;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 15487;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 15488;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 15489;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 15490;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 15491;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 15492;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 15493;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 15494;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 15495;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 15496;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 15497;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 15498;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 15499;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 15500;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 15501;
- case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 15502;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, true): return 15527;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, false): return 15528;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, true): return 15529;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, false): return 15530;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, true): return 15531;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, false): return 15532;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, true): return 15533;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, false): return 15534;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, true): return 15535;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, false): return 15536;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, true): return 15537;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, false): return 15538;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, true): return 15539;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, false): return 15540;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, true): return 15541;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, false): return 15542;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, true): return 15543;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, false): return 15544;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, true): return 15545;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, false): return 15546;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, true): return 15547;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, false): return 15548;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, true): return 15549;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, false): return 15550;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, true): return 15551;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, false): return 15552;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, true): return 15553;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, false): return 15554;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, true): return 15555;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, false): return 15556;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, true): return 15557;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, false): return 15558;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, true): return 15559;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, false): return 15560;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, true): return 15561;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, false): return 15562;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, true): return 15563;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, false): return 15564;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, true): return 15565;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, false): return 15566;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, true): return 15567;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, false): return 15568;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, true): return 15569;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, false): return 15570;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, true): return 15571;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, false): return 15572;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, true): return 15573;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, false): return 15574;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, true): return 15575;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, false): return 15576;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, true): return 15577;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, false): return 15578;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, true): return 15579;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, false): return 15580;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, true): return 15581;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, false): return 15582;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, true): return 15583;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, false): return 15584;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, true): return 15585;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, false): return 15586;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, true): return 15587;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, false): return 15588;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, true): return 15589;
- case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, false): return 15590;
- case CrimsonFence::CrimsonFence(true, true, true, true): return 15065;
- case CrimsonFence::CrimsonFence(true, true, true, false): return 15066;
- case CrimsonFence::CrimsonFence(true, true, false, true): return 15069;
- case CrimsonFence::CrimsonFence(true, true, false, false): return 15070;
- case CrimsonFence::CrimsonFence(true, false, true, true): return 15073;
- case CrimsonFence::CrimsonFence(true, false, true, false): return 15074;
- case CrimsonFence::CrimsonFence(true, false, false, true): return 15077;
- case CrimsonFence::CrimsonFence(true, false, false, false): return 15078;
- case CrimsonFence::CrimsonFence(false, true, true, true): return 15081;
- case CrimsonFence::CrimsonFence(false, true, true, false): return 15082;
- case CrimsonFence::CrimsonFence(false, true, false, true): return 15085;
- case CrimsonFence::CrimsonFence(false, true, false, false): return 15086;
- case CrimsonFence::CrimsonFence(false, false, true, true): return 15089;
- case CrimsonFence::CrimsonFence(false, false, true, false): return 15090;
- case CrimsonFence::CrimsonFence(false, false, false, true): return 15093;
- case CrimsonFence::CrimsonFence(false, false, false, false): return 15094;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 15255;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 15256;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 15257;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 15258;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 15259;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 15260;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 15261;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 15262;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 15263;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 15264;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 15265;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 15266;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 15267;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 15268;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 15269;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 15270;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 15271;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 15272;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 15273;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 15274;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 15275;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 15276;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 15277;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 15278;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 15279;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 15280;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 15281;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 15282;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 15283;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 15284;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 15285;
- case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 15286;
- case CrimsonFungus::CrimsonFungus(): return 14988;
- case CrimsonHyphae::CrimsonHyphae(CrimsonHyphae::Axis::X): return 14981;
- case CrimsonHyphae::CrimsonHyphae(CrimsonHyphae::Axis::Y): return 14982;
- case CrimsonHyphae::CrimsonHyphae(CrimsonHyphae::Axis::Z): return 14983;
- case CrimsonNylium::CrimsonNylium(): return 14987;
- case CrimsonPlanks::CrimsonPlanks(): return 15045;
- case CrimsonPressurePlate::CrimsonPressurePlate(true): return 15059;
- case CrimsonPressurePlate::CrimsonPressurePlate(false): return 15060;
- case CrimsonRoots::CrimsonRoots(): return 15044;
- case CrimsonSign::CrimsonSign(0): return 15656;
- case CrimsonSign::CrimsonSign(1): return 15658;
- case CrimsonSign::CrimsonSign(2): return 15660;
- case CrimsonSign::CrimsonSign(3): return 15662;
- case CrimsonSign::CrimsonSign(4): return 15664;
- case CrimsonSign::CrimsonSign(5): return 15666;
- case CrimsonSign::CrimsonSign(6): return 15668;
- case CrimsonSign::CrimsonSign(7): return 15670;
- case CrimsonSign::CrimsonSign(8): return 15672;
- case CrimsonSign::CrimsonSign(9): return 15674;
- case CrimsonSign::CrimsonSign(10): return 15676;
- case CrimsonSign::CrimsonSign(11): return 15678;
- case CrimsonSign::CrimsonSign(12): return 15680;
- case CrimsonSign::CrimsonSign(13): return 15682;
- case CrimsonSign::CrimsonSign(14): return 15684;
- case CrimsonSign::CrimsonSign(15): return 15686;
- case CrimsonSlab::CrimsonSlab(CrimsonSlab::Type::Top): return 15048;
- case CrimsonSlab::CrimsonSlab(CrimsonSlab::Type::Bottom): return 15050;
- case CrimsonSlab::CrimsonSlab(CrimsonSlab::Type::Double): return 15052;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::Straight): return 15320;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerLeft): return 15322;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerRight): return 15324;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterLeft): return 15326;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterRight): return 15328;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::Straight): return 15330;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerLeft): return 15332;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerRight): return 15334;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterLeft): return 15336;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterRight): return 15338;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::Straight): return 15340;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerLeft): return 15342;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerRight): return 15344;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterLeft): return 15346;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterRight): return 15348;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::Straight): return 15350;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerLeft): return 15352;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerRight): return 15354;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterLeft): return 15356;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterRight): return 15358;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::Straight): return 15360;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerLeft): return 15362;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerRight): return 15364;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterLeft): return 15366;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterRight): return 15368;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::Straight): return 15370;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerLeft): return 15372;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerRight): return 15374;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterLeft): return 15376;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterRight): return 15378;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::Straight): return 15380;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerLeft): return 15382;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerRight): return 15384;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterLeft): return 15386;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterRight): return 15388;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::Straight): return 15390;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerLeft): return 15392;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerRight): return 15394;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterLeft): return 15396;
- case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterRight): return 15398;
- case CrimsonStem::CrimsonStem(CrimsonStem::Axis::X): return 14975;
- case CrimsonStem::CrimsonStem(CrimsonStem::Axis::Y): return 14976;
- case CrimsonStem::CrimsonStem(CrimsonStem::Axis::Z): return 14977;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Top, true, true): return 15128;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Top, true, false): return 15130;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Top, false, true): return 15132;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Top, false, false): return 15134;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Bottom, true, true): return 15136;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Bottom, true, false): return 15138;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Bottom, false, true): return 15140;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Bottom, false, false): return 15142;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Top, true, true): return 15144;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Top, true, false): return 15146;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Top, false, true): return 15148;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Top, false, false): return 15150;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Bottom, true, true): return 15152;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Bottom, true, false): return 15154;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Bottom, false, true): return 15156;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Bottom, false, false): return 15158;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Top, true, true): return 15160;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Top, true, false): return 15162;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Top, false, true): return 15164;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Top, false, false): return 15166;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Bottom, true, true): return 15168;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Bottom, true, false): return 15170;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Bottom, false, true): return 15172;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Bottom, false, false): return 15174;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Top, true, true): return 15176;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Top, true, false): return 15178;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Top, false, true): return 15180;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Top, false, false): return 15182;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Bottom, true, true): return 15184;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Bottom, true, false): return 15186;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Bottom, false, true): return 15188;
- case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Bottom, false, false): return 15190;
- case CrimsonWallSign::CrimsonWallSign(eBlockFace::BLOCK_FACE_ZM): return 15720;
- case CrimsonWallSign::CrimsonWallSign(eBlockFace::BLOCK_FACE_ZP): return 15722;
- case CrimsonWallSign::CrimsonWallSign(eBlockFace::BLOCK_FACE_XM): return 15724;
- case CrimsonWallSign::CrimsonWallSign(eBlockFace::BLOCK_FACE_XP): return 15726;
- case CryingObsidian::CryingObsidian(): return 15828;
- case CutRedSandstone::CutRedSandstone(): return 8219;
- case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Top): return 8403;
- case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Bottom): return 8405;
- case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Double): return 8407;
- case CutSandstone::CutSandstone(): return 248;
- case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Top): return 8355;
- case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Bottom): return 8357;
- case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Double): return 8359;
- case CyanBanner::CyanBanner(0): return 8041;
- case CyanBanner::CyanBanner(1): return 8042;
- case CyanBanner::CyanBanner(2): return 8043;
- case CyanBanner::CyanBanner(3): return 8044;
- case CyanBanner::CyanBanner(4): return 8045;
- case CyanBanner::CyanBanner(5): return 8046;
- case CyanBanner::CyanBanner(6): return 8047;
- case CyanBanner::CyanBanner(7): return 8048;
- case CyanBanner::CyanBanner(8): return 8049;
- case CyanBanner::CyanBanner(9): return 8050;
- case CyanBanner::CyanBanner(10): return 8051;
- case CyanBanner::CyanBanner(11): return 8052;
- case CyanBanner::CyanBanner(12): return 8053;
- case CyanBanner::CyanBanner(13): return 8054;
- case CyanBanner::CyanBanner(14): return 8055;
- case CyanBanner::CyanBanner(15): return 8056;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Head): return 1193;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Foot): return 1194;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Head): return 1195;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Foot): return 1196;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Head): return 1197;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Foot): return 1198;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Head): return 1199;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Foot): return 1200;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Head): return 1201;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Foot): return 1202;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Head): return 1203;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Foot): return 1204;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Head): return 1205;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Foot): return 1206;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Head): return 1207;
- case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Foot): return 1208;
- case CyanCarpet::CyanCarpet(): return 7875;
- case CyanConcrete::CyanConcrete(): return 9447;
- case CyanConcretePowder::CyanConcretePowder(): return 9463;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9410;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9411;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9412;
- case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9413;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9332;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9333;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9334;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9335;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9336;
- case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9337;
- case CyanStainedGlass::CyanStainedGlass(): return 4104;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, true): return 7153;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, false): return 7154;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, true): return 7157;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, false): return 7158;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, true): return 7161;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, false): return 7162;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, true): return 7165;
- case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, false): return 7166;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, true): return 7169;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, false): return 7170;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, true): return 7173;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, false): return 7174;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, true): return 7177;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, false): return 7178;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, true): return 7181;
- case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, false): return 7182;
- case CyanTerracotta::CyanTerracotta(): return 6856;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8189;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8190;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XM): return 8191;
- case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XP): return 8192;
- case CyanWool::CyanWool(): return 1393;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZM): return 6618;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZP): return 6619;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XM): return 6620;
- case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XP): return 6621;
- case Dandelion::Dandelion(): return 1412;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 6466;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 6467;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 6468;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 6469;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 6470;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 6471;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 6472;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 6473;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 6474;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 6475;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 6476;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 6477;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 6478;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 6479;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 6480;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 6481;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 6482;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 6483;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 6484;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 6485;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 6486;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 6487;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 6488;
- case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 6489;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 8994;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 8995;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 8996;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 8997;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 8998;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 8999;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 9000;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 9001;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 9002;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 9003;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 9004;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 9005;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 9006;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 9007;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 9008;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 9009;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 9010;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 9011;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 9012;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 9013;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 9014;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 9015;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 9016;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 9017;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 9018;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 9019;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 9020;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 9021;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 9022;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 9023;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 9024;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 9025;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 9026;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 9027;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 9028;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 9029;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 9030;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 9031;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 9032;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 9033;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 9034;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 9035;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 9036;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 9037;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 9038;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 9039;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 9040;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 9041;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true): return 9042;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false): return 9043;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true): return 9044;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false): return 9045;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true): return 9046;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false): return 9047;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true): return 9048;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false): return 9049;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true): return 9050;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false): return 9051;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true): return 9052;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false): return 9053;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true): return 9054;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false): return 9055;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true): return 9056;
- case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false): return 9057;
- case DarkOakFence::DarkOakFence(true, true, true, true): return 8708;
- case DarkOakFence::DarkOakFence(true, true, true, false): return 8709;
- case DarkOakFence::DarkOakFence(true, true, false, true): return 8712;
- case DarkOakFence::DarkOakFence(true, true, false, false): return 8713;
- case DarkOakFence::DarkOakFence(true, false, true, true): return 8716;
- case DarkOakFence::DarkOakFence(true, false, true, false): return 8717;
- case DarkOakFence::DarkOakFence(true, false, false, true): return 8720;
- case DarkOakFence::DarkOakFence(true, false, false, false): return 8721;
- case DarkOakFence::DarkOakFence(false, true, true, true): return 8724;
- case DarkOakFence::DarkOakFence(false, true, true, false): return 8725;
- case DarkOakFence::DarkOakFence(false, true, false, true): return 8728;
- case DarkOakFence::DarkOakFence(false, true, false, false): return 8729;
- case DarkOakFence::DarkOakFence(false, false, true, true): return 8732;
- case DarkOakFence::DarkOakFence(false, false, true, false): return 8733;
- case DarkOakFence::DarkOakFence(false, false, false, true): return 8736;
- case DarkOakFence::DarkOakFence(false, false, false, false): return 8737;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 8546;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 8547;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 8548;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 8549;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 8550;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 8551;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 8552;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 8553;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 8554;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 8555;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 8556;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 8557;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 8558;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 8559;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 8560;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 8561;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 8562;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 8563;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 8564;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 8565;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 8566;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 8567;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8568;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8569;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8570;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8571;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8572;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8573;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8574;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8575;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8576;
- case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8577;
- case DarkOakLeaves::DarkOakLeaves(1, true): return 215;
- case DarkOakLeaves::DarkOakLeaves(1, false): return 216;
- case DarkOakLeaves::DarkOakLeaves(2, true): return 217;
- case DarkOakLeaves::DarkOakLeaves(2, false): return 218;
- case DarkOakLeaves::DarkOakLeaves(3, true): return 219;
- case DarkOakLeaves::DarkOakLeaves(3, false): return 220;
- case DarkOakLeaves::DarkOakLeaves(4, true): return 221;
- case DarkOakLeaves::DarkOakLeaves(4, false): return 222;
- case DarkOakLeaves::DarkOakLeaves(5, true): return 223;
- case DarkOakLeaves::DarkOakLeaves(5, false): return 224;
- case DarkOakLeaves::DarkOakLeaves(6, true): return 225;
- case DarkOakLeaves::DarkOakLeaves(6, false): return 226;
- case DarkOakLeaves::DarkOakLeaves(7, true): return 227;
- case DarkOakLeaves::DarkOakLeaves(7, false): return 228;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::X): return 88;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Y): return 89;
- case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Z): return 90;
- case DarkOakPlanks::DarkOakPlanks(): return 20;
- case DarkOakPressurePlate::DarkOakPressurePlate(true): return 3883;
- case DarkOakPressurePlate::DarkOakPressurePlate(false): return 3884;
- case DarkOakSapling::DarkOakSapling(0): return 31;
- case DarkOakSapling::DarkOakSapling(1): return 32;
- case DarkOakSign::DarkOakSign(0): return 3542;
- case DarkOakSign::DarkOakSign(1): return 3544;
- case DarkOakSign::DarkOakSign(2): return 3546;
- case DarkOakSign::DarkOakSign(3): return 3548;
- case DarkOakSign::DarkOakSign(4): return 3550;
- case DarkOakSign::DarkOakSign(5): return 3552;
- case DarkOakSign::DarkOakSign(6): return 3554;
- case DarkOakSign::DarkOakSign(7): return 3556;
- case DarkOakSign::DarkOakSign(8): return 3558;
- case DarkOakSign::DarkOakSign(9): return 3560;
- case DarkOakSign::DarkOakSign(10): return 3562;
- case DarkOakSign::DarkOakSign(11): return 3564;
- case DarkOakSign::DarkOakSign(12): return 3566;
- case DarkOakSign::DarkOakSign(13): return 3568;
- case DarkOakSign::DarkOakSign(14): return 3570;
- case DarkOakSign::DarkOakSign(15): return 3572;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Top): return 8331;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Bottom): return 8333;
- case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Double): return 8335;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 7456;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 7458;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 7460;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 7462;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 7464;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 7466;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 7468;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 7470;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 7472;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 7474;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 7476;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 7478;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 7480;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 7482;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 7484;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 7486;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 7488;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 7490;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 7492;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 7494;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 7496;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 7498;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 7500;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 7502;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 7504;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 7506;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 7508;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 7510;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 7512;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 7514;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight): return 7516;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft): return 7518;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight): return 7520;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft): return 7522;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight): return 7524;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight): return 7526;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft): return 7528;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight): return 7530;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft): return 7532;
- case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight): return 7534;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, true): return 4432;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, false): return 4434;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, true): return 4436;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, false): return 4438;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, true): return 4440;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, false): return 4442;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, true): return 4444;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, false): return 4446;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, true): return 4448;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, false): return 4450;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, true): return 4452;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, false): return 4454;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, true): return 4456;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, false): return 4458;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, true): return 4460;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, false): return 4462;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, true): return 4464;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, false): return 4466;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, true): return 4468;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, false): return 4470;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, true): return 4472;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, false): return 4474;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, true): return 4476;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, false): return 4478;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, true): return 4480;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, false): return 4482;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, true): return 4484;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, false): return 4486;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, true): return 4488;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, false): return 4490;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, true): return 4492;
- case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, false): return 4494;
- case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZM): return 3776;
- case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZP): return 3778;
- case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XM): return 3780;
- case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XP): return 3782;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::X): return 124;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Y): return 125;
- case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Z): return 126;
- case DarkPrismarine::DarkPrismarine(): return 7603;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Top): return 7857;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Bottom): return 7859;
- case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Double): return 7861;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7765;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7767;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7769;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7771;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7773;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7775;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7777;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7779;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7781;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7783;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7785;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7787;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7789;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7791;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7793;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7795;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7797;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7799;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7801;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7803;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7805;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7807;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7809;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7811;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7813;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7815;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7817;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7819;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7821;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7823;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight): return 7825;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft): return 7827;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight): return 7829;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft): return 7831;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight): return 7833;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight): return 7835;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft): return 7837;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight): return 7839;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft): return 7841;
- case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight): return 7843;
- case DaylightDetector::DaylightDetector(true, 0): return 6694;
- case DaylightDetector::DaylightDetector(true, 1): return 6695;
- case DaylightDetector::DaylightDetector(true, 2): return 6696;
- case DaylightDetector::DaylightDetector(true, 3): return 6697;
- case DaylightDetector::DaylightDetector(true, 4): return 6698;
- case DaylightDetector::DaylightDetector(true, 5): return 6699;
- case DaylightDetector::DaylightDetector(true, 6): return 6700;
- case DaylightDetector::DaylightDetector(true, 7): return 6701;
- case DaylightDetector::DaylightDetector(true, 8): return 6702;
- case DaylightDetector::DaylightDetector(true, 9): return 6703;
- case DaylightDetector::DaylightDetector(true, 10): return 6704;
- case DaylightDetector::DaylightDetector(true, 11): return 6705;
- case DaylightDetector::DaylightDetector(true, 12): return 6706;
- case DaylightDetector::DaylightDetector(true, 13): return 6707;
- case DaylightDetector::DaylightDetector(true, 14): return 6708;
- case DaylightDetector::DaylightDetector(true, 15): return 6709;
- case DaylightDetector::DaylightDetector(false, 0): return 6710;
- case DaylightDetector::DaylightDetector(false, 1): return 6711;
- case DaylightDetector::DaylightDetector(false, 2): return 6712;
- case DaylightDetector::DaylightDetector(false, 3): return 6713;
- case DaylightDetector::DaylightDetector(false, 4): return 6714;
- case DaylightDetector::DaylightDetector(false, 5): return 6715;
- case DaylightDetector::DaylightDetector(false, 6): return 6716;
- case DaylightDetector::DaylightDetector(false, 7): return 6717;
- case DaylightDetector::DaylightDetector(false, 8): return 6718;
- case DaylightDetector::DaylightDetector(false, 9): return 6719;
- case DaylightDetector::DaylightDetector(false, 10): return 6720;
- case DaylightDetector::DaylightDetector(false, 11): return 6721;
- case DaylightDetector::DaylightDetector(false, 12): return 6722;
- case DaylightDetector::DaylightDetector(false, 13): return 6723;
- case DaylightDetector::DaylightDetector(false, 14): return 6724;
- case DaylightDetector::DaylightDetector(false, 15): return 6725;
- case DeadBrainCoral::DeadBrainCoral(): return 9523;
- case DeadBrainCoralBlock::DeadBrainCoralBlock(): return 9511;
- case DeadBrainCoralFan::DeadBrainCoralFan(): return 9543;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9569;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9571;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9573;
- case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9575;
- case DeadBubbleCoral::DeadBubbleCoral(): return 9525;
- case DeadBubbleCoralBlock::DeadBubbleCoralBlock(): return 9512;
- case DeadBubbleCoralFan::DeadBubbleCoralFan(): return 9545;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9577;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9579;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9581;
- case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9583;
- case DeadBush::DeadBush(): return 1344;
- case DeadFireCoral::DeadFireCoral(): return 9527;
- case DeadFireCoralBlock::DeadFireCoralBlock(): return 9513;
- case DeadFireCoralFan::DeadFireCoralFan(): return 9547;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9585;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9587;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9589;
- case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9591;
- case DeadHornCoral::DeadHornCoral(): return 9529;
- case DeadHornCoralBlock::DeadHornCoralBlock(): return 9514;
- case DeadHornCoralFan::DeadHornCoralFan(): return 9549;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9593;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9595;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9597;
- case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9599;
- case DeadTubeCoral::DeadTubeCoral(): return 9521;
- case DeadTubeCoralBlock::DeadTubeCoralBlock(): return 9510;
- case DeadTubeCoralFan::DeadTubeCoralFan(): return 9541;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9561;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9563;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9565;
- case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9567;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::NorthSouth): return 1317;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::EastWest): return 1318;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingEast): return 1319;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingWest): return 1320;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingNorth): return 1321;
- case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingSouth): return 1322;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::NorthSouth): return 1323;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::EastWest): return 1324;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingEast): return 1325;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingWest): return 1326;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingNorth): return 1327;
- case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingSouth): return 1328;
- case DiamondBlock::DiamondBlock(): return 3355;
- case DiamondOre::DiamondOre(): return 3354;
- case Diorite::Diorite(): return 4;
- case DioriteSlab::DioriteSlab(DioriteSlab::Type::Top): return 10862;
- case DioriteSlab::DioriteSlab(DioriteSlab::Type::Bottom): return 10864;
- case DioriteSlab::DioriteSlab(DioriteSlab::Type::Double): return 10866;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10710;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10712;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10714;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10716;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10718;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10720;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10722;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10724;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10726;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10728;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10730;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10732;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10734;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10736;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10738;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10740;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10742;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10744;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10746;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10748;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10750;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10752;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10754;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10756;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10758;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10760;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10762;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10764;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10766;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10768;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight): return 10770;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft): return 10772;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight): return 10774;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft): return 10776;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight): return 10778;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight): return 10780;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft): return 10782;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight): return 10784;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft): return 10786;
- case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight): return 10788;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None): return 14434;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low): return 14435;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14436;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None): return 14440;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low): return 14441;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14442;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None): return 14446;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14447;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14448;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None): return 14452;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14453;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14454;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14458;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14459;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14460;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14464;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14465;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14466;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None): return 14470;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low): return 14471;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14472;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None): return 14476;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low): return 14477;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14478;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None): return 14482;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14483;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14484;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None): return 14488;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14489;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14490;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14494;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14495;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14496;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14500;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14501;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14502;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::None): return 14506;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Low): return 14507;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14508;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::None): return 14512;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Low): return 14513;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14514;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::None): return 14518;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14519;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14520;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::None): return 14524;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14525;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14526;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14530;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14531;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14532;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14536;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14537;
- case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14538;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None): return 14542;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low): return 14543;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14544;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None): return 14548;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low): return 14549;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14550;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None): return 14554;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14555;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14556;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None): return 14560;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14561;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14562;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14566;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14567;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14568;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14572;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14573;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14574;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None): return 14578;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low): return 14579;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14580;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None): return 14584;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low): return 14585;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14586;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None): return 14590;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14591;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14592;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None): return 14596;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14597;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14598;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14602;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14603;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14604;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14608;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14609;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14610;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::None): return 14614;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Low): return 14615;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14616;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::None): return 14620;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Low): return 14621;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14622;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::None): return 14626;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14627;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14628;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::None): return 14632;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14633;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14634;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14638;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14639;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14640;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14644;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14645;
- case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14646;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None): return 14650;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low): return 14651;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14652;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None): return 14656;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low): return 14657;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14658;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None): return 14662;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14663;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14664;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None): return 14668;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14669;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14670;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14674;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14675;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14676;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14680;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14681;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14682;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None): return 14686;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low): return 14687;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14688;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None): return 14692;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low): return 14693;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14694;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None): return 14698;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14699;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14700;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None): return 14704;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14705;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14706;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14710;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14711;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14712;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14716;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14717;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14718;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::None): return 14722;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Low): return 14723;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Tall): return 14724;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::None): return 14728;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Low): return 14729;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Tall): return 14730;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::None): return 14734;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Low): return 14735;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Tall): return 14736;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::None): return 14740;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Low): return 14741;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Tall): return 14742;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::None): return 14746;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Low): return 14747;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Tall): return 14748;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::None): return 14752;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Low): return 14753;
- case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Tall): return 14754;
- case Dirt::Dirt(): return 10;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, true): return 234;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, false): return 235;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, true): return 236;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, false): return 237;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, true): return 238;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, false): return 239;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, true): return 240;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, false): return 241;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, true): return 242;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, false): return 243;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, true): return 244;
- case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, false): return 245;
- case DragonEgg::DragonEgg(): return 5155;
- case DragonHead::DragonHead(0): return 6590;
- case DragonHead::DragonHead(1): return 6591;
- case DragonHead::DragonHead(2): return 6592;
- case DragonHead::DragonHead(3): return 6593;
- case DragonHead::DragonHead(4): return 6594;
- case DragonHead::DragonHead(5): return 6595;
- case DragonHead::DragonHead(6): return 6596;
- case DragonHead::DragonHead(7): return 6597;
- case DragonHead::DragonHead(8): return 6598;
- case DragonHead::DragonHead(9): return 6599;
- case DragonHead::DragonHead(10): return 6600;
- case DragonHead::DragonHead(11): return 6601;
- case DragonHead::DragonHead(12): return 6602;
- case DragonHead::DragonHead(13): return 6603;
- case DragonHead::DragonHead(14): return 6604;
- case DragonHead::DragonHead(15): return 6605;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZM): return 6606;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZP): return 6607;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XM): return 6608;
- case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XP): return 6609;
- case DriedKelpBlock::DriedKelpBlock(): return 9497;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, true): return 6835;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, false): return 6836;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, true): return 6837;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, false): return 6838;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, true): return 6839;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, false): return 6840;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, true): return 6841;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, false): return 6842;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, true): return 6843;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, false): return 6844;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, true): return 6845;
- case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, false): return 6846;
- case EmeraldBlock::EmeraldBlock(): return 5403;
- case EmeraldOre::EmeraldOre(): return 5250;
- case EnchantingTable::EnchantingTable(): return 5132;
- case EndGateway::EndGateway(): return 9224;
- case EndPortal::EndPortal(): return 5145;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZM): return 5146;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZP): return 5147;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XM): return 5148;
- case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XP): return 5149;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZM): return 5150;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZP): return 5151;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XM): return 5152;
- case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XP): return 5153;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZM): return 9058;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_XP): return 9059;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZP): return 9060;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_XM): return 9061;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_YP): return 9062;
- case EndRod::EndRod(eBlockFace::BLOCK_FACE_YM): return 9063;
- case EndStone::EndStone(): return 5154;
- case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Top): return 10820;
- case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Bottom): return 10822;
- case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Double): return 10824;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 10070;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 10072;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 10074;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 10076;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 10078;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 10080;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 10082;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 10084;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 10086;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 10088;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 10090;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 10092;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 10094;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 10096;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 10098;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 10100;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 10102;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 10104;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 10106;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 10108;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 10110;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 10112;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 10114;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 10116;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 10118;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 10120;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 10122;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 10124;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 10126;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 10128;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight): return 10130;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft): return 10132;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight): return 10134;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft): return 10136;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight): return 10138;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight): return 10140;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft): return 10142;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight): return 10144;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft): return 10146;
- case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight): return 10148;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14110;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14111;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14112;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14116;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14117;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14118;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14122;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14123;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14124;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14128;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14129;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14130;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14134;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14135;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14136;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14140;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14141;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14142;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14146;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14147;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14148;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14152;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14153;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14154;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14158;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14159;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14160;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14164;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14165;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14166;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14170;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14171;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14172;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14176;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14177;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14178;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14182;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14183;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14184;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14188;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14189;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14190;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14194;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14195;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14196;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14200;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14201;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14202;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14206;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14207;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14208;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14212;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14213;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14214;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14218;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14219;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14220;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14224;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14225;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14226;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14230;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14231;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14232;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14236;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14237;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14238;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14242;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14243;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14244;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14248;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14249;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14250;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14254;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14255;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14256;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14260;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14261;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14262;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14266;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14267;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14268;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14272;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14273;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14274;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14278;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14279;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14280;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14284;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14285;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14286;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14290;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14291;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14292;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14296;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14297;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14298;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14302;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14303;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14304;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14308;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14309;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14310;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14314;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14315;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14316;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14320;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14321;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14322;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14326;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14327;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14328;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14332;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14333;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14334;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14338;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14339;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14340;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14344;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14345;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14346;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14350;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14351;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14352;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14356;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14357;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14358;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14362;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14363;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14364;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14368;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14369;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14370;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14374;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14375;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14376;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14380;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14381;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14382;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14386;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14387;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14388;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14392;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14393;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14394;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None): return 14398;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low): return 14399;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall): return 14400;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None): return 14404;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low): return 14405;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall): return 14406;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None): return 14410;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low): return 14411;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall): return 14412;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None): return 14416;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low): return 14417;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall): return 14418;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None): return 14422;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low): return 14423;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall): return 14424;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None): return 14428;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low): return 14429;
- case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall): return 14430;
- case EndStoneBricks::EndStoneBricks(): return 9218;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZM): return 5252;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZP): return 5254;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XM): return 5256;
- case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XP): return 5258;
- case Farmland::Farmland(0): return 3365;
- case Farmland::Farmland(1): return 3366;
- case Farmland::Farmland(2): return 3367;
- case Farmland::Farmland(3): return 3368;
- case Farmland::Farmland(4): return 3369;
- case Farmland::Farmland(5): return 3370;
- case Farmland::Farmland(6): return 3371;
- case Farmland::Farmland(7): return 3372;
- case Fern::Fern(): return 1343;
- case Fire::Fire(0, true, true, true, true, true): return 1440;
- case Fire::Fire(0, true, true, true, true, false): return 1441;
- case Fire::Fire(0, true, true, true, false, true): return 1442;
- case Fire::Fire(0, true, true, true, false, false): return 1443;
- case Fire::Fire(0, true, true, false, true, true): return 1444;
- case Fire::Fire(0, true, true, false, true, false): return 1445;
- case Fire::Fire(0, true, true, false, false, true): return 1446;
- case Fire::Fire(0, true, true, false, false, false): return 1447;
- case Fire::Fire(0, true, false, true, true, true): return 1448;
- case Fire::Fire(0, true, false, true, true, false): return 1449;
- case Fire::Fire(0, true, false, true, false, true): return 1450;
- case Fire::Fire(0, true, false, true, false, false): return 1451;
- case Fire::Fire(0, true, false, false, true, true): return 1452;
- case Fire::Fire(0, true, false, false, true, false): return 1453;
- case Fire::Fire(0, true, false, false, false, true): return 1454;
- case Fire::Fire(0, true, false, false, false, false): return 1455;
- case Fire::Fire(0, false, true, true, true, true): return 1456;
- case Fire::Fire(0, false, true, true, true, false): return 1457;
- case Fire::Fire(0, false, true, true, false, true): return 1458;
- case Fire::Fire(0, false, true, true, false, false): return 1459;
- case Fire::Fire(0, false, true, false, true, true): return 1460;
- case Fire::Fire(0, false, true, false, true, false): return 1461;
- case Fire::Fire(0, false, true, false, false, true): return 1462;
- case Fire::Fire(0, false, true, false, false, false): return 1463;
- case Fire::Fire(0, false, false, true, true, true): return 1464;
- case Fire::Fire(0, false, false, true, true, false): return 1465;
- case Fire::Fire(0, false, false, true, false, true): return 1466;
- case Fire::Fire(0, false, false, true, false, false): return 1467;
- case Fire::Fire(0, false, false, false, true, true): return 1468;
- case Fire::Fire(0, false, false, false, true, false): return 1469;
- case Fire::Fire(0, false, false, false, false, true): return 1470;
- case Fire::Fire(0, false, false, false, false, false): return 1471;
- case Fire::Fire(1, true, true, true, true, true): return 1472;
- case Fire::Fire(1, true, true, true, true, false): return 1473;
- case Fire::Fire(1, true, true, true, false, true): return 1474;
- case Fire::Fire(1, true, true, true, false, false): return 1475;
- case Fire::Fire(1, true, true, false, true, true): return 1476;
- case Fire::Fire(1, true, true, false, true, false): return 1477;
- case Fire::Fire(1, true, true, false, false, true): return 1478;
- case Fire::Fire(1, true, true, false, false, false): return 1479;
- case Fire::Fire(1, true, false, true, true, true): return 1480;
- case Fire::Fire(1, true, false, true, true, false): return 1481;
- case Fire::Fire(1, true, false, true, false, true): return 1482;
- case Fire::Fire(1, true, false, true, false, false): return 1483;
- case Fire::Fire(1, true, false, false, true, true): return 1484;
- case Fire::Fire(1, true, false, false, true, false): return 1485;
- case Fire::Fire(1, true, false, false, false, true): return 1486;
- case Fire::Fire(1, true, false, false, false, false): return 1487;
- case Fire::Fire(1, false, true, true, true, true): return 1488;
- case Fire::Fire(1, false, true, true, true, false): return 1489;
- case Fire::Fire(1, false, true, true, false, true): return 1490;
- case Fire::Fire(1, false, true, true, false, false): return 1491;
- case Fire::Fire(1, false, true, false, true, true): return 1492;
- case Fire::Fire(1, false, true, false, true, false): return 1493;
- case Fire::Fire(1, false, true, false, false, true): return 1494;
- case Fire::Fire(1, false, true, false, false, false): return 1495;
- case Fire::Fire(1, false, false, true, true, true): return 1496;
- case Fire::Fire(1, false, false, true, true, false): return 1497;
- case Fire::Fire(1, false, false, true, false, true): return 1498;
- case Fire::Fire(1, false, false, true, false, false): return 1499;
- case Fire::Fire(1, false, false, false, true, true): return 1500;
- case Fire::Fire(1, false, false, false, true, false): return 1501;
- case Fire::Fire(1, false, false, false, false, true): return 1502;
- case Fire::Fire(1, false, false, false, false, false): return 1503;
- case Fire::Fire(2, true, true, true, true, true): return 1504;
- case Fire::Fire(2, true, true, true, true, false): return 1505;
- case Fire::Fire(2, true, true, true, false, true): return 1506;
- case Fire::Fire(2, true, true, true, false, false): return 1507;
- case Fire::Fire(2, true, true, false, true, true): return 1508;
- case Fire::Fire(2, true, true, false, true, false): return 1509;
- case Fire::Fire(2, true, true, false, false, true): return 1510;
- case Fire::Fire(2, true, true, false, false, false): return 1511;
- case Fire::Fire(2, true, false, true, true, true): return 1512;
- case Fire::Fire(2, true, false, true, true, false): return 1513;
- case Fire::Fire(2, true, false, true, false, true): return 1514;
- case Fire::Fire(2, true, false, true, false, false): return 1515;
- case Fire::Fire(2, true, false, false, true, true): return 1516;
- case Fire::Fire(2, true, false, false, true, false): return 1517;
- case Fire::Fire(2, true, false, false, false, true): return 1518;
- case Fire::Fire(2, true, false, false, false, false): return 1519;
- case Fire::Fire(2, false, true, true, true, true): return 1520;
- case Fire::Fire(2, false, true, true, true, false): return 1521;
- case Fire::Fire(2, false, true, true, false, true): return 1522;
- case Fire::Fire(2, false, true, true, false, false): return 1523;
- case Fire::Fire(2, false, true, false, true, true): return 1524;
- case Fire::Fire(2, false, true, false, true, false): return 1525;
- case Fire::Fire(2, false, true, false, false, true): return 1526;
- case Fire::Fire(2, false, true, false, false, false): return 1527;
- case Fire::Fire(2, false, false, true, true, true): return 1528;
- case Fire::Fire(2, false, false, true, true, false): return 1529;
- case Fire::Fire(2, false, false, true, false, true): return 1530;
- case Fire::Fire(2, false, false, true, false, false): return 1531;
- case Fire::Fire(2, false, false, false, true, true): return 1532;
- case Fire::Fire(2, false, false, false, true, false): return 1533;
- case Fire::Fire(2, false, false, false, false, true): return 1534;
- case Fire::Fire(2, false, false, false, false, false): return 1535;
- case Fire::Fire(3, true, true, true, true, true): return 1536;
- case Fire::Fire(3, true, true, true, true, false): return 1537;
- case Fire::Fire(3, true, true, true, false, true): return 1538;
- case Fire::Fire(3, true, true, true, false, false): return 1539;
- case Fire::Fire(3, true, true, false, true, true): return 1540;
- case Fire::Fire(3, true, true, false, true, false): return 1541;
- case Fire::Fire(3, true, true, false, false, true): return 1542;
- case Fire::Fire(3, true, true, false, false, false): return 1543;
- case Fire::Fire(3, true, false, true, true, true): return 1544;
- case Fire::Fire(3, true, false, true, true, false): return 1545;
- case Fire::Fire(3, true, false, true, false, true): return 1546;
- case Fire::Fire(3, true, false, true, false, false): return 1547;
- case Fire::Fire(3, true, false, false, true, true): return 1548;
- case Fire::Fire(3, true, false, false, true, false): return 1549;
- case Fire::Fire(3, true, false, false, false, true): return 1550;
- case Fire::Fire(3, true, false, false, false, false): return 1551;
- case Fire::Fire(3, false, true, true, true, true): return 1552;
- case Fire::Fire(3, false, true, true, true, false): return 1553;
- case Fire::Fire(3, false, true, true, false, true): return 1554;
- case Fire::Fire(3, false, true, true, false, false): return 1555;
- case Fire::Fire(3, false, true, false, true, true): return 1556;
- case Fire::Fire(3, false, true, false, true, false): return 1557;
- case Fire::Fire(3, false, true, false, false, true): return 1558;
- case Fire::Fire(3, false, true, false, false, false): return 1559;
- case Fire::Fire(3, false, false, true, true, true): return 1560;
- case Fire::Fire(3, false, false, true, true, false): return 1561;
- case Fire::Fire(3, false, false, true, false, true): return 1562;
- case Fire::Fire(3, false, false, true, false, false): return 1563;
- case Fire::Fire(3, false, false, false, true, true): return 1564;
- case Fire::Fire(3, false, false, false, true, false): return 1565;
- case Fire::Fire(3, false, false, false, false, true): return 1566;
- case Fire::Fire(3, false, false, false, false, false): return 1567;
- case Fire::Fire(4, true, true, true, true, true): return 1568;
- case Fire::Fire(4, true, true, true, true, false): return 1569;
- case Fire::Fire(4, true, true, true, false, true): return 1570;
- case Fire::Fire(4, true, true, true, false, false): return 1571;
- case Fire::Fire(4, true, true, false, true, true): return 1572;
- case Fire::Fire(4, true, true, false, true, false): return 1573;
- case Fire::Fire(4, true, true, false, false, true): return 1574;
- case Fire::Fire(4, true, true, false, false, false): return 1575;
- case Fire::Fire(4, true, false, true, true, true): return 1576;
- case Fire::Fire(4, true, false, true, true, false): return 1577;
- case Fire::Fire(4, true, false, true, false, true): return 1578;
- case Fire::Fire(4, true, false, true, false, false): return 1579;
- case Fire::Fire(4, true, false, false, true, true): return 1580;
- case Fire::Fire(4, true, false, false, true, false): return 1581;
- case Fire::Fire(4, true, false, false, false, true): return 1582;
- case Fire::Fire(4, true, false, false, false, false): return 1583;
- case Fire::Fire(4, false, true, true, true, true): return 1584;
- case Fire::Fire(4, false, true, true, true, false): return 1585;
- case Fire::Fire(4, false, true, true, false, true): return 1586;
- case Fire::Fire(4, false, true, true, false, false): return 1587;
- case Fire::Fire(4, false, true, false, true, true): return 1588;
- case Fire::Fire(4, false, true, false, true, false): return 1589;
- case Fire::Fire(4, false, true, false, false, true): return 1590;
- case Fire::Fire(4, false, true, false, false, false): return 1591;
- case Fire::Fire(4, false, false, true, true, true): return 1592;
- case Fire::Fire(4, false, false, true, true, false): return 1593;
- case Fire::Fire(4, false, false, true, false, true): return 1594;
- case Fire::Fire(4, false, false, true, false, false): return 1595;
- case Fire::Fire(4, false, false, false, true, true): return 1596;
- case Fire::Fire(4, false, false, false, true, false): return 1597;
- case Fire::Fire(4, false, false, false, false, true): return 1598;
- case Fire::Fire(4, false, false, false, false, false): return 1599;
- case Fire::Fire(5, true, true, true, true, true): return 1600;
- case Fire::Fire(5, true, true, true, true, false): return 1601;
- case Fire::Fire(5, true, true, true, false, true): return 1602;
- case Fire::Fire(5, true, true, true, false, false): return 1603;
- case Fire::Fire(5, true, true, false, true, true): return 1604;
- case Fire::Fire(5, true, true, false, true, false): return 1605;
- case Fire::Fire(5, true, true, false, false, true): return 1606;
- case Fire::Fire(5, true, true, false, false, false): return 1607;
- case Fire::Fire(5, true, false, true, true, true): return 1608;
- case Fire::Fire(5, true, false, true, true, false): return 1609;
- case Fire::Fire(5, true, false, true, false, true): return 1610;
- case Fire::Fire(5, true, false, true, false, false): return 1611;
- case Fire::Fire(5, true, false, false, true, true): return 1612;
- case Fire::Fire(5, true, false, false, true, false): return 1613;
- case Fire::Fire(5, true, false, false, false, true): return 1614;
- case Fire::Fire(5, true, false, false, false, false): return 1615;
- case Fire::Fire(5, false, true, true, true, true): return 1616;
- case Fire::Fire(5, false, true, true, true, false): return 1617;
- case Fire::Fire(5, false, true, true, false, true): return 1618;
- case Fire::Fire(5, false, true, true, false, false): return 1619;
- case Fire::Fire(5, false, true, false, true, true): return 1620;
- case Fire::Fire(5, false, true, false, true, false): return 1621;
- case Fire::Fire(5, false, true, false, false, true): return 1622;
- case Fire::Fire(5, false, true, false, false, false): return 1623;
- case Fire::Fire(5, false, false, true, true, true): return 1624;
- case Fire::Fire(5, false, false, true, true, false): return 1625;
- case Fire::Fire(5, false, false, true, false, true): return 1626;
- case Fire::Fire(5, false, false, true, false, false): return 1627;
- case Fire::Fire(5, false, false, false, true, true): return 1628;
- case Fire::Fire(5, false, false, false, true, false): return 1629;
- case Fire::Fire(5, false, false, false, false, true): return 1630;
- case Fire::Fire(5, false, false, false, false, false): return 1631;
- case Fire::Fire(6, true, true, true, true, true): return 1632;
- case Fire::Fire(6, true, true, true, true, false): return 1633;
- case Fire::Fire(6, true, true, true, false, true): return 1634;
- case Fire::Fire(6, true, true, true, false, false): return 1635;
- case Fire::Fire(6, true, true, false, true, true): return 1636;
- case Fire::Fire(6, true, true, false, true, false): return 1637;
- case Fire::Fire(6, true, true, false, false, true): return 1638;
- case Fire::Fire(6, true, true, false, false, false): return 1639;
- case Fire::Fire(6, true, false, true, true, true): return 1640;
- case Fire::Fire(6, true, false, true, true, false): return 1641;
- case Fire::Fire(6, true, false, true, false, true): return 1642;
- case Fire::Fire(6, true, false, true, false, false): return 1643;
- case Fire::Fire(6, true, false, false, true, true): return 1644;
- case Fire::Fire(6, true, false, false, true, false): return 1645;
- case Fire::Fire(6, true, false, false, false, true): return 1646;
- case Fire::Fire(6, true, false, false, false, false): return 1647;
- case Fire::Fire(6, false, true, true, true, true): return 1648;
- case Fire::Fire(6, false, true, true, true, false): return 1649;
- case Fire::Fire(6, false, true, true, false, true): return 1650;
- case Fire::Fire(6, false, true, true, false, false): return 1651;
- case Fire::Fire(6, false, true, false, true, true): return 1652;
- case Fire::Fire(6, false, true, false, true, false): return 1653;
- case Fire::Fire(6, false, true, false, false, true): return 1654;
- case Fire::Fire(6, false, true, false, false, false): return 1655;
- case Fire::Fire(6, false, false, true, true, true): return 1656;
- case Fire::Fire(6, false, false, true, true, false): return 1657;
- case Fire::Fire(6, false, false, true, false, true): return 1658;
- case Fire::Fire(6, false, false, true, false, false): return 1659;
- case Fire::Fire(6, false, false, false, true, true): return 1660;
- case Fire::Fire(6, false, false, false, true, false): return 1661;
- case Fire::Fire(6, false, false, false, false, true): return 1662;
- case Fire::Fire(6, false, false, false, false, false): return 1663;
- case Fire::Fire(7, true, true, true, true, true): return 1664;
- case Fire::Fire(7, true, true, true, true, false): return 1665;
- case Fire::Fire(7, true, true, true, false, true): return 1666;
- case Fire::Fire(7, true, true, true, false, false): return 1667;
- case Fire::Fire(7, true, true, false, true, true): return 1668;
- case Fire::Fire(7, true, true, false, true, false): return 1669;
- case Fire::Fire(7, true, true, false, false, true): return 1670;
- case Fire::Fire(7, true, true, false, false, false): return 1671;
- case Fire::Fire(7, true, false, true, true, true): return 1672;
- case Fire::Fire(7, true, false, true, true, false): return 1673;
- case Fire::Fire(7, true, false, true, false, true): return 1674;
- case Fire::Fire(7, true, false, true, false, false): return 1675;
- case Fire::Fire(7, true, false, false, true, true): return 1676;
- case Fire::Fire(7, true, false, false, true, false): return 1677;
- case Fire::Fire(7, true, false, false, false, true): return 1678;
- case Fire::Fire(7, true, false, false, false, false): return 1679;
- case Fire::Fire(7, false, true, true, true, true): return 1680;
- case Fire::Fire(7, false, true, true, true, false): return 1681;
- case Fire::Fire(7, false, true, true, false, true): return 1682;
- case Fire::Fire(7, false, true, true, false, false): return 1683;
- case Fire::Fire(7, false, true, false, true, true): return 1684;
- case Fire::Fire(7, false, true, false, true, false): return 1685;
- case Fire::Fire(7, false, true, false, false, true): return 1686;
- case Fire::Fire(7, false, true, false, false, false): return 1687;
- case Fire::Fire(7, false, false, true, true, true): return 1688;
- case Fire::Fire(7, false, false, true, true, false): return 1689;
- case Fire::Fire(7, false, false, true, false, true): return 1690;
- case Fire::Fire(7, false, false, true, false, false): return 1691;
- case Fire::Fire(7, false, false, false, true, true): return 1692;
- case Fire::Fire(7, false, false, false, true, false): return 1693;
- case Fire::Fire(7, false, false, false, false, true): return 1694;
- case Fire::Fire(7, false, false, false, false, false): return 1695;
- case Fire::Fire(8, true, true, true, true, true): return 1696;
- case Fire::Fire(8, true, true, true, true, false): return 1697;
- case Fire::Fire(8, true, true, true, false, true): return 1698;
- case Fire::Fire(8, true, true, true, false, false): return 1699;
- case Fire::Fire(8, true, true, false, true, true): return 1700;
- case Fire::Fire(8, true, true, false, true, false): return 1701;
- case Fire::Fire(8, true, true, false, false, true): return 1702;
- case Fire::Fire(8, true, true, false, false, false): return 1703;
- case Fire::Fire(8, true, false, true, true, true): return 1704;
- case Fire::Fire(8, true, false, true, true, false): return 1705;
- case Fire::Fire(8, true, false, true, false, true): return 1706;
- case Fire::Fire(8, true, false, true, false, false): return 1707;
- case Fire::Fire(8, true, false, false, true, true): return 1708;
- case Fire::Fire(8, true, false, false, true, false): return 1709;
- case Fire::Fire(8, true, false, false, false, true): return 1710;
- case Fire::Fire(8, true, false, false, false, false): return 1711;
- case Fire::Fire(8, false, true, true, true, true): return 1712;
- case Fire::Fire(8, false, true, true, true, false): return 1713;
- case Fire::Fire(8, false, true, true, false, true): return 1714;
- case Fire::Fire(8, false, true, true, false, false): return 1715;
- case Fire::Fire(8, false, true, false, true, true): return 1716;
- case Fire::Fire(8, false, true, false, true, false): return 1717;
- case Fire::Fire(8, false, true, false, false, true): return 1718;
- case Fire::Fire(8, false, true, false, false, false): return 1719;
- case Fire::Fire(8, false, false, true, true, true): return 1720;
- case Fire::Fire(8, false, false, true, true, false): return 1721;
- case Fire::Fire(8, false, false, true, false, true): return 1722;
- case Fire::Fire(8, false, false, true, false, false): return 1723;
- case Fire::Fire(8, false, false, false, true, true): return 1724;
- case Fire::Fire(8, false, false, false, true, false): return 1725;
- case Fire::Fire(8, false, false, false, false, true): return 1726;
- case Fire::Fire(8, false, false, false, false, false): return 1727;
- case Fire::Fire(9, true, true, true, true, true): return 1728;
- case Fire::Fire(9, true, true, true, true, false): return 1729;
- case Fire::Fire(9, true, true, true, false, true): return 1730;
- case Fire::Fire(9, true, true, true, false, false): return 1731;
- case Fire::Fire(9, true, true, false, true, true): return 1732;
- case Fire::Fire(9, true, true, false, true, false): return 1733;
- case Fire::Fire(9, true, true, false, false, true): return 1734;
- case Fire::Fire(9, true, true, false, false, false): return 1735;
- case Fire::Fire(9, true, false, true, true, true): return 1736;
- case Fire::Fire(9, true, false, true, true, false): return 1737;
- case Fire::Fire(9, true, false, true, false, true): return 1738;
- case Fire::Fire(9, true, false, true, false, false): return 1739;
- case Fire::Fire(9, true, false, false, true, true): return 1740;
- case Fire::Fire(9, true, false, false, true, false): return 1741;
- case Fire::Fire(9, true, false, false, false, true): return 1742;
- case Fire::Fire(9, true, false, false, false, false): return 1743;
- case Fire::Fire(9, false, true, true, true, true): return 1744;
- case Fire::Fire(9, false, true, true, true, false): return 1745;
- case Fire::Fire(9, false, true, true, false, true): return 1746;
- case Fire::Fire(9, false, true, true, false, false): return 1747;
- case Fire::Fire(9, false, true, false, true, true): return 1748;
- case Fire::Fire(9, false, true, false, true, false): return 1749;
- case Fire::Fire(9, false, true, false, false, true): return 1750;
- case Fire::Fire(9, false, true, false, false, false): return 1751;
- case Fire::Fire(9, false, false, true, true, true): return 1752;
- case Fire::Fire(9, false, false, true, true, false): return 1753;
- case Fire::Fire(9, false, false, true, false, true): return 1754;
- case Fire::Fire(9, false, false, true, false, false): return 1755;
- case Fire::Fire(9, false, false, false, true, true): return 1756;
- case Fire::Fire(9, false, false, false, true, false): return 1757;
- case Fire::Fire(9, false, false, false, false, true): return 1758;
- case Fire::Fire(9, false, false, false, false, false): return 1759;
- case Fire::Fire(10, true, true, true, true, true): return 1760;
- case Fire::Fire(10, true, true, true, true, false): return 1761;
- case Fire::Fire(10, true, true, true, false, true): return 1762;
- case Fire::Fire(10, true, true, true, false, false): return 1763;
- case Fire::Fire(10, true, true, false, true, true): return 1764;
- case Fire::Fire(10, true, true, false, true, false): return 1765;
- case Fire::Fire(10, true, true, false, false, true): return 1766;
- case Fire::Fire(10, true, true, false, false, false): return 1767;
- case Fire::Fire(10, true, false, true, true, true): return 1768;
- case Fire::Fire(10, true, false, true, true, false): return 1769;
- case Fire::Fire(10, true, false, true, false, true): return 1770;
- case Fire::Fire(10, true, false, true, false, false): return 1771;
- case Fire::Fire(10, true, false, false, true, true): return 1772;
- case Fire::Fire(10, true, false, false, true, false): return 1773;
- case Fire::Fire(10, true, false, false, false, true): return 1774;
- case Fire::Fire(10, true, false, false, false, false): return 1775;
- case Fire::Fire(10, false, true, true, true, true): return 1776;
- case Fire::Fire(10, false, true, true, true, false): return 1777;
- case Fire::Fire(10, false, true, true, false, true): return 1778;
- case Fire::Fire(10, false, true, true, false, false): return 1779;
- case Fire::Fire(10, false, true, false, true, true): return 1780;
- case Fire::Fire(10, false, true, false, true, false): return 1781;
- case Fire::Fire(10, false, true, false, false, true): return 1782;
- case Fire::Fire(10, false, true, false, false, false): return 1783;
- case Fire::Fire(10, false, false, true, true, true): return 1784;
- case Fire::Fire(10, false, false, true, true, false): return 1785;
- case Fire::Fire(10, false, false, true, false, true): return 1786;
- case Fire::Fire(10, false, false, true, false, false): return 1787;
- case Fire::Fire(10, false, false, false, true, true): return 1788;
- case Fire::Fire(10, false, false, false, true, false): return 1789;
- case Fire::Fire(10, false, false, false, false, true): return 1790;
- case Fire::Fire(10, false, false, false, false, false): return 1791;
- case Fire::Fire(11, true, true, true, true, true): return 1792;
- case Fire::Fire(11, true, true, true, true, false): return 1793;
- case Fire::Fire(11, true, true, true, false, true): return 1794;
- case Fire::Fire(11, true, true, true, false, false): return 1795;
- case Fire::Fire(11, true, true, false, true, true): return 1796;
- case Fire::Fire(11, true, true, false, true, false): return 1797;
- case Fire::Fire(11, true, true, false, false, true): return 1798;
- case Fire::Fire(11, true, true, false, false, false): return 1799;
- case Fire::Fire(11, true, false, true, true, true): return 1800;
- case Fire::Fire(11, true, false, true, true, false): return 1801;
- case Fire::Fire(11, true, false, true, false, true): return 1802;
- case Fire::Fire(11, true, false, true, false, false): return 1803;
- case Fire::Fire(11, true, false, false, true, true): return 1804;
- case Fire::Fire(11, true, false, false, true, false): return 1805;
- case Fire::Fire(11, true, false, false, false, true): return 1806;
- case Fire::Fire(11, true, false, false, false, false): return 1807;
- case Fire::Fire(11, false, true, true, true, true): return 1808;
- case Fire::Fire(11, false, true, true, true, false): return 1809;
- case Fire::Fire(11, false, true, true, false, true): return 1810;
- case Fire::Fire(11, false, true, true, false, false): return 1811;
- case Fire::Fire(11, false, true, false, true, true): return 1812;
- case Fire::Fire(11, false, true, false, true, false): return 1813;
- case Fire::Fire(11, false, true, false, false, true): return 1814;
- case Fire::Fire(11, false, true, false, false, false): return 1815;
- case Fire::Fire(11, false, false, true, true, true): return 1816;
- case Fire::Fire(11, false, false, true, true, false): return 1817;
- case Fire::Fire(11, false, false, true, false, true): return 1818;
- case Fire::Fire(11, false, false, true, false, false): return 1819;
- case Fire::Fire(11, false, false, false, true, true): return 1820;
- case Fire::Fire(11, false, false, false, true, false): return 1821;
- case Fire::Fire(11, false, false, false, false, true): return 1822;
- case Fire::Fire(11, false, false, false, false, false): return 1823;
- case Fire::Fire(12, true, true, true, true, true): return 1824;
- case Fire::Fire(12, true, true, true, true, false): return 1825;
- case Fire::Fire(12, true, true, true, false, true): return 1826;
- case Fire::Fire(12, true, true, true, false, false): return 1827;
- case Fire::Fire(12, true, true, false, true, true): return 1828;
- case Fire::Fire(12, true, true, false, true, false): return 1829;
- case Fire::Fire(12, true, true, false, false, true): return 1830;
- case Fire::Fire(12, true, true, false, false, false): return 1831;
- case Fire::Fire(12, true, false, true, true, true): return 1832;
- case Fire::Fire(12, true, false, true, true, false): return 1833;
- case Fire::Fire(12, true, false, true, false, true): return 1834;
- case Fire::Fire(12, true, false, true, false, false): return 1835;
- case Fire::Fire(12, true, false, false, true, true): return 1836;
- case Fire::Fire(12, true, false, false, true, false): return 1837;
- case Fire::Fire(12, true, false, false, false, true): return 1838;
- case Fire::Fire(12, true, false, false, false, false): return 1839;
- case Fire::Fire(12, false, true, true, true, true): return 1840;
- case Fire::Fire(12, false, true, true, true, false): return 1841;
- case Fire::Fire(12, false, true, true, false, true): return 1842;
- case Fire::Fire(12, false, true, true, false, false): return 1843;
- case Fire::Fire(12, false, true, false, true, true): return 1844;
- case Fire::Fire(12, false, true, false, true, false): return 1845;
- case Fire::Fire(12, false, true, false, false, true): return 1846;
- case Fire::Fire(12, false, true, false, false, false): return 1847;
- case Fire::Fire(12, false, false, true, true, true): return 1848;
- case Fire::Fire(12, false, false, true, true, false): return 1849;
- case Fire::Fire(12, false, false, true, false, true): return 1850;
- case Fire::Fire(12, false, false, true, false, false): return 1851;
- case Fire::Fire(12, false, false, false, true, true): return 1852;
- case Fire::Fire(12, false, false, false, true, false): return 1853;
- case Fire::Fire(12, false, false, false, false, true): return 1854;
- case Fire::Fire(12, false, false, false, false, false): return 1855;
- case Fire::Fire(13, true, true, true, true, true): return 1856;
- case Fire::Fire(13, true, true, true, true, false): return 1857;
- case Fire::Fire(13, true, true, true, false, true): return 1858;
- case Fire::Fire(13, true, true, true, false, false): return 1859;
- case Fire::Fire(13, true, true, false, true, true): return 1860;
- case Fire::Fire(13, true, true, false, true, false): return 1861;
- case Fire::Fire(13, true, true, false, false, true): return 1862;
- case Fire::Fire(13, true, true, false, false, false): return 1863;
- case Fire::Fire(13, true, false, true, true, true): return 1864;
- case Fire::Fire(13, true, false, true, true, false): return 1865;
- case Fire::Fire(13, true, false, true, false, true): return 1866;
- case Fire::Fire(13, true, false, true, false, false): return 1867;
- case Fire::Fire(13, true, false, false, true, true): return 1868;
- case Fire::Fire(13, true, false, false, true, false): return 1869;
- case Fire::Fire(13, true, false, false, false, true): return 1870;
- case Fire::Fire(13, true, false, false, false, false): return 1871;
- case Fire::Fire(13, false, true, true, true, true): return 1872;
- case Fire::Fire(13, false, true, true, true, false): return 1873;
- case Fire::Fire(13, false, true, true, false, true): return 1874;
- case Fire::Fire(13, false, true, true, false, false): return 1875;
- case Fire::Fire(13, false, true, false, true, true): return 1876;
- case Fire::Fire(13, false, true, false, true, false): return 1877;
- case Fire::Fire(13, false, true, false, false, true): return 1878;
- case Fire::Fire(13, false, true, false, false, false): return 1879;
- case Fire::Fire(13, false, false, true, true, true): return 1880;
- case Fire::Fire(13, false, false, true, true, false): return 1881;
- case Fire::Fire(13, false, false, true, false, true): return 1882;
- case Fire::Fire(13, false, false, true, false, false): return 1883;
- case Fire::Fire(13, false, false, false, true, true): return 1884;
- case Fire::Fire(13, false, false, false, true, false): return 1885;
- case Fire::Fire(13, false, false, false, false, true): return 1886;
- case Fire::Fire(13, false, false, false, false, false): return 1887;
- case Fire::Fire(14, true, true, true, true, true): return 1888;
- case Fire::Fire(14, true, true, true, true, false): return 1889;
- case Fire::Fire(14, true, true, true, false, true): return 1890;
- case Fire::Fire(14, true, true, true, false, false): return 1891;
- case Fire::Fire(14, true, true, false, true, true): return 1892;
- case Fire::Fire(14, true, true, false, true, false): return 1893;
- case Fire::Fire(14, true, true, false, false, true): return 1894;
- case Fire::Fire(14, true, true, false, false, false): return 1895;
- case Fire::Fire(14, true, false, true, true, true): return 1896;
- case Fire::Fire(14, true, false, true, true, false): return 1897;
- case Fire::Fire(14, true, false, true, false, true): return 1898;
- case Fire::Fire(14, true, false, true, false, false): return 1899;
- case Fire::Fire(14, true, false, false, true, true): return 1900;
- case Fire::Fire(14, true, false, false, true, false): return 1901;
- case Fire::Fire(14, true, false, false, false, true): return 1902;
- case Fire::Fire(14, true, false, false, false, false): return 1903;
- case Fire::Fire(14, false, true, true, true, true): return 1904;
- case Fire::Fire(14, false, true, true, true, false): return 1905;
- case Fire::Fire(14, false, true, true, false, true): return 1906;
- case Fire::Fire(14, false, true, true, false, false): return 1907;
- case Fire::Fire(14, false, true, false, true, true): return 1908;
- case Fire::Fire(14, false, true, false, true, false): return 1909;
- case Fire::Fire(14, false, true, false, false, true): return 1910;
- case Fire::Fire(14, false, true, false, false, false): return 1911;
- case Fire::Fire(14, false, false, true, true, true): return 1912;
- case Fire::Fire(14, false, false, true, true, false): return 1913;
- case Fire::Fire(14, false, false, true, false, true): return 1914;
- case Fire::Fire(14, false, false, true, false, false): return 1915;
- case Fire::Fire(14, false, false, false, true, true): return 1916;
- case Fire::Fire(14, false, false, false, true, false): return 1917;
- case Fire::Fire(14, false, false, false, false, true): return 1918;
- case Fire::Fire(14, false, false, false, false, false): return 1919;
- case Fire::Fire(15, true, true, true, true, true): return 1920;
- case Fire::Fire(15, true, true, true, true, false): return 1921;
- case Fire::Fire(15, true, true, true, false, true): return 1922;
- case Fire::Fire(15, true, true, true, false, false): return 1923;
- case Fire::Fire(15, true, true, false, true, true): return 1924;
- case Fire::Fire(15, true, true, false, true, false): return 1925;
- case Fire::Fire(15, true, true, false, false, true): return 1926;
- case Fire::Fire(15, true, true, false, false, false): return 1927;
- case Fire::Fire(15, true, false, true, true, true): return 1928;
- case Fire::Fire(15, true, false, true, true, false): return 1929;
- case Fire::Fire(15, true, false, true, false, true): return 1930;
- case Fire::Fire(15, true, false, true, false, false): return 1931;
- case Fire::Fire(15, true, false, false, true, true): return 1932;
- case Fire::Fire(15, true, false, false, true, false): return 1933;
- case Fire::Fire(15, true, false, false, false, true): return 1934;
- case Fire::Fire(15, true, false, false, false, false): return 1935;
- case Fire::Fire(15, false, true, true, true, true): return 1936;
- case Fire::Fire(15, false, true, true, true, false): return 1937;
- case Fire::Fire(15, false, true, true, false, true): return 1938;
- case Fire::Fire(15, false, true, true, false, false): return 1939;
- case Fire::Fire(15, false, true, false, true, true): return 1940;
- case Fire::Fire(15, false, true, false, true, false): return 1941;
- case Fire::Fire(15, false, true, false, false, true): return 1942;
- case Fire::Fire(15, false, true, false, false, false): return 1943;
- case Fire::Fire(15, false, false, true, true, true): return 1944;
- case Fire::Fire(15, false, false, true, true, false): return 1945;
- case Fire::Fire(15, false, false, true, false, true): return 1946;
- case Fire::Fire(15, false, false, true, false, false): return 1947;
- case Fire::Fire(15, false, false, false, true, true): return 1948;
- case Fire::Fire(15, false, false, false, true, false): return 1949;
- case Fire::Fire(15, false, false, false, false, true): return 1950;
- case Fire::Fire(15, false, false, false, false, false): return 1951;
- case FireCoral::FireCoral(): return 9537;
- case FireCoralBlock::FireCoralBlock(): return 9518;
- case FireCoralFan::FireCoralFan(): return 9557;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9625;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9627;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9629;
- case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9631;
- case FletchingTable::FletchingTable(): return 14820;
- case FlowerPot::FlowerPot(): return 6305;
- case FrostedIce::FrostedIce(0): return 9249;
- case FrostedIce::FrostedIce(1): return 9250;
- case FrostedIce::FrostedIce(2): return 9251;
- case FrostedIce::FrostedIce(3): return 9252;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, true): return 3373;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, false): return 3374;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, true): return 3375;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, false): return 3376;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, true): return 3377;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, false): return 3378;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, true): return 3379;
- case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, false): return 3380;
- case GildedBlackstone::GildedBlackstone(): return 16664;
- case Glass::Glass(): return 231;
- case GlassPane::GlassPane(true, true, true, true): return 4733;
- case GlassPane::GlassPane(true, true, true, false): return 4734;
- case GlassPane::GlassPane(true, true, false, true): return 4737;
- case GlassPane::GlassPane(true, true, false, false): return 4738;
- case GlassPane::GlassPane(true, false, true, true): return 4741;
- case GlassPane::GlassPane(true, false, true, false): return 4742;
- case GlassPane::GlassPane(true, false, false, true): return 4745;
- case GlassPane::GlassPane(true, false, false, false): return 4746;
- case GlassPane::GlassPane(false, true, true, true): return 4749;
- case GlassPane::GlassPane(false, true, true, false): return 4750;
- case GlassPane::GlassPane(false, true, false, true): return 4753;
- case GlassPane::GlassPane(false, true, false, false): return 4754;
- case GlassPane::GlassPane(false, false, true, true): return 4757;
- case GlassPane::GlassPane(false, false, true, false): return 4758;
- case GlassPane::GlassPane(false, false, false, true): return 4761;
- case GlassPane::GlassPane(false, false, false, false): return 4762;
- case Glowstone::Glowstone(): return 4013;
- case GoldBlock::GoldBlock(): return 1427;
- case GoldOre::GoldOre(): return 69;
- case Granite::Granite(): return 2;
- case GraniteSlab::GraniteSlab(GraniteSlab::Type::Top): return 10838;
- case GraniteSlab::GraniteSlab(GraniteSlab::Type::Bottom): return 10840;
- case GraniteSlab::GraniteSlab(GraniteSlab::Type::Double): return 10842;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 10390;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 10392;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 10394;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 10396;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 10398;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 10400;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 10402;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 10404;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 10406;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 10408;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 10410;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 10412;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 10414;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 10416;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 10418;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 10420;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 10422;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 10424;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 10426;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 10428;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 10430;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 10432;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 10434;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 10436;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 10438;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 10440;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 10442;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 10444;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 10446;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 10448;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight): return 10450;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft): return 10452;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight): return 10454;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft): return 10456;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight): return 10458;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight): return 10460;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft): return 10462;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight): return 10464;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft): return 10466;
- case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight): return 10468;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None): return 12166;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low): return 12167;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12168;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None): return 12172;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low): return 12173;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12174;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None): return 12178;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12179;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12180;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None): return 12184;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12185;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12186;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12190;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12191;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12192;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12196;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12197;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12198;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None): return 12202;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low): return 12203;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12204;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None): return 12208;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low): return 12209;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12210;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None): return 12214;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12215;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12216;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None): return 12220;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12221;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12222;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12226;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12227;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12228;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12232;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12233;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12234;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::None): return 12238;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Low): return 12239;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12240;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::None): return 12244;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Low): return 12245;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12246;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::None): return 12250;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12251;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12252;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::None): return 12256;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12257;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12258;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12262;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12263;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12264;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12268;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12269;
- case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12270;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None): return 12274;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low): return 12275;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12276;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None): return 12280;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low): return 12281;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12282;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None): return 12286;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12287;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12288;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None): return 12292;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12293;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12294;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12298;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12299;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12300;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12304;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12305;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12306;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None): return 12310;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low): return 12311;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12312;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None): return 12316;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low): return 12317;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12318;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None): return 12322;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12323;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12324;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None): return 12328;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12329;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12330;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12334;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12335;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12336;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12340;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12341;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12342;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::None): return 12346;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Low): return 12347;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12348;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::None): return 12352;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Low): return 12353;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12354;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::None): return 12358;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12359;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12360;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::None): return 12364;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12365;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12366;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12370;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12371;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12372;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12376;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12377;
- case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12378;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None): return 12382;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low): return 12383;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12384;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None): return 12388;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low): return 12389;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12390;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None): return 12394;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12395;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12396;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None): return 12400;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12401;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12402;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12406;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12407;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12408;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12412;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12413;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12414;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None): return 12418;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low): return 12419;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12420;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None): return 12424;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low): return 12425;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12426;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None): return 12430;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12431;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12432;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None): return 12436;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12437;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12438;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12442;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12443;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12444;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12448;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12449;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12450;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::None): return 12454;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Low): return 12455;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Tall): return 12456;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::None): return 12460;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Low): return 12461;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Tall): return 12462;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::None): return 12466;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Low): return 12467;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Tall): return 12468;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::None): return 12472;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Low): return 12473;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Tall): return 12474;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::None): return 12478;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Low): return 12479;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Tall): return 12480;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::None): return 12484;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Low): return 12485;
- case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Tall): return 12486;
- case Grass::Grass(): return 1342;
- case GrassBlock::GrassBlock(true): return 8;
- case GrassBlock::GrassBlock(false): return 9;
- case GrassPath::GrassPath(): return 9223;
- case Gravel::Gravel(): return 68;
- case GrayBanner::GrayBanner(0): return 8009;
- case GrayBanner::GrayBanner(1): return 8010;
- case GrayBanner::GrayBanner(2): return 8011;
- case GrayBanner::GrayBanner(3): return 8012;
- case GrayBanner::GrayBanner(4): return 8013;
- case GrayBanner::GrayBanner(5): return 8014;
- case GrayBanner::GrayBanner(6): return 8015;
- case GrayBanner::GrayBanner(7): return 8016;
- case GrayBanner::GrayBanner(8): return 8017;
- case GrayBanner::GrayBanner(9): return 8018;
- case GrayBanner::GrayBanner(10): return 8019;
- case GrayBanner::GrayBanner(11): return 8020;
- case GrayBanner::GrayBanner(12): return 8021;
- case GrayBanner::GrayBanner(13): return 8022;
- case GrayBanner::GrayBanner(14): return 8023;
- case GrayBanner::GrayBanner(15): return 8024;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Head): return 1161;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Foot): return 1162;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Head): return 1163;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Foot): return 1164;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Head): return 1165;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Foot): return 1166;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Head): return 1167;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Foot): return 1168;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Head): return 1169;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Foot): return 1170;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Head): return 1171;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Foot): return 1172;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Head): return 1173;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Foot): return 1174;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Head): return 1175;
- case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Foot): return 1176;
- case GrayCarpet::GrayCarpet(): return 7873;
- case GrayConcrete::GrayConcrete(): return 9445;
- case GrayConcretePowder::GrayConcretePowder(): return 9461;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9402;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9403;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9404;
- case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9405;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9320;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9321;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9322;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9323;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9324;
- case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9325;
- case GrayStainedGlass::GrayStainedGlass(): return 4102;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, true): return 7089;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, false): return 7090;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, true): return 7093;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, false): return 7094;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, true): return 7097;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, false): return 7098;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, true): return 7101;
- case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, false): return 7102;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, true): return 7105;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, false): return 7106;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, true): return 7109;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, false): return 7110;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, true): return 7113;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, false): return 7114;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, true): return 7117;
- case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, false): return 7118;
- case GrayTerracotta::GrayTerracotta(): return 6854;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8181;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8182;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 8183;
- case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 8184;
- case GrayWool::GrayWool(): return 1391;
- case GreenBanner::GreenBanner(0): return 8105;
- case GreenBanner::GreenBanner(1): return 8106;
- case GreenBanner::GreenBanner(2): return 8107;
- case GreenBanner::GreenBanner(3): return 8108;
- case GreenBanner::GreenBanner(4): return 8109;
- case GreenBanner::GreenBanner(5): return 8110;
- case GreenBanner::GreenBanner(6): return 8111;
- case GreenBanner::GreenBanner(7): return 8112;
- case GreenBanner::GreenBanner(8): return 8113;
- case GreenBanner::GreenBanner(9): return 8114;
- case GreenBanner::GreenBanner(10): return 8115;
- case GreenBanner::GreenBanner(11): return 8116;
- case GreenBanner::GreenBanner(12): return 8117;
- case GreenBanner::GreenBanner(13): return 8118;
- case GreenBanner::GreenBanner(14): return 8119;
- case GreenBanner::GreenBanner(15): return 8120;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Head): return 1257;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Foot): return 1258;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Head): return 1259;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Foot): return 1260;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Head): return 1261;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Foot): return 1262;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Head): return 1263;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Foot): return 1264;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Head): return 1265;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Foot): return 1266;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Head): return 1267;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Foot): return 1268;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Head): return 1269;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Foot): return 1270;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Head): return 1271;
- case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Foot): return 1272;
- case GreenCarpet::GreenCarpet(): return 7879;
- case GreenConcrete::GreenConcrete(): return 9451;
- case GreenConcretePowder::GreenConcretePowder(): return 9467;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9426;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9427;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9428;
- case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9429;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9356;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9357;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9358;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9359;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9360;
- case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9361;
- case GreenStainedGlass::GreenStainedGlass(): return 4108;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, true): return 7281;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, false): return 7282;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, true): return 7285;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, false): return 7286;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, true): return 7289;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, false): return 7290;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, true): return 7293;
- case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, false): return 7294;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, true): return 7297;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, false): return 7298;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, true): return 7301;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, false): return 7302;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, true): return 7305;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, false): return 7306;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, true): return 7309;
- case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, false): return 7310;
- case GreenTerracotta::GreenTerracotta(): return 6860;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8205;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8206;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XM): return 8207;
- case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XP): return 8208;
- case GreenWool::GreenWool(): return 1397;
- case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZM): return 14821;
- case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZP): return 14822;
- case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XM): return 14823;
- case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XP): return 14824;
- case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZM): return 14825;
- case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZP): return 14826;
- case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XM): return 14827;
- case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XP): return 14828;
- case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM): return 14829;
- case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP): return 14830;
- case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XM): return 14831;
- case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XP): return 14832;
- case HayBale::HayBale(HayBale::Axis::X): return 7863;
- case HayBale::HayBale(HayBale::Axis::Y): return 7864;
- case HayBale::HayBale(HayBale::Axis::Z): return 7865;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(0): return 6662;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(1): return 6663;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(2): return 6664;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(3): return 6665;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(4): return 6666;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(5): return 6667;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(6): return 6668;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(7): return 6669;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(8): return 6670;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(9): return 6671;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(10): return 6672;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(11): return 6673;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(12): return 6674;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(13): return 6675;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(14): return 6676;
- case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(15): return 6677;
- case HoneyBlock::HoneyBlock(): return 15824;
- case HoneycombBlock::HoneycombBlock(): return 15825;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_YM): return 6728;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZM): return 6729;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZP): return 6730;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XM): return 6731;
- case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XP): return 6732;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_YM): return 6733;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZM): return 6734;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZP): return 6735;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XM): return 6736;
- case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XP): return 6737;
- case HornCoral::HornCoral(): return 9539;
- case HornCoralBlock::HornCoralBlock(): return 9519;
- case HornCoralFan::HornCoralFan(): return 9559;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9633;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9635;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9637;
- case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9639;
- case Ice::Ice(): return 3929;
- case InfestedChiseledStoneBricks::InfestedChiseledStoneBricks(): return 4504;
- case InfestedCobblestone::InfestedCobblestone(): return 4500;
- case InfestedCrackedStoneBricks::InfestedCrackedStoneBricks(): return 4503;
- case InfestedMossyStoneBricks::InfestedMossyStoneBricks(): return 4502;
- case InfestedStone::InfestedStone(): return 4499;
- case InfestedStoneBricks::InfestedStoneBricks(): return 4501;
- case IronBars::IronBars(true, true, true, true): return 4699;
- case IronBars::IronBars(true, true, true, false): return 4700;
- case IronBars::IronBars(true, true, false, true): return 4703;
- case IronBars::IronBars(true, true, false, false): return 4704;
- case IronBars::IronBars(true, false, true, true): return 4707;
- case IronBars::IronBars(true, false, true, false): return 4708;
- case IronBars::IronBars(true, false, false, true): return 4711;
- case IronBars::IronBars(true, false, false, false): return 4712;
- case IronBars::IronBars(false, true, true, true): return 4715;
- case IronBars::IronBars(false, true, true, false): return 4716;
- case IronBars::IronBars(false, true, false, true): return 4719;
- case IronBars::IronBars(false, true, false, false): return 4720;
- case IronBars::IronBars(false, false, true, true): return 4723;
- case IronBars::IronBars(false, false, true, false): return 4724;
- case IronBars::IronBars(false, false, false, true): return 4727;
- case IronBars::IronBars(false, false, false, false): return 4728;
- case IronBlock::IronBlock(): return 1428;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3809;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3810;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3811;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3812;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3813;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3814;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3815;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3816;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3817;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3818;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3819;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3820;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3821;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3822;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3823;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3824;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3825;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3826;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3827;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3828;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3829;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3830;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3831;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3832;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3833;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3834;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3835;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3836;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3837;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3838;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3839;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3840;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3841;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3842;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3843;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3844;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3845;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3846;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3847;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3848;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3849;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3850;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3851;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3852;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3853;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3854;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3855;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3856;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true): return 3857;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false): return 3858;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true): return 3859;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false): return 3860;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true): return 3861;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false): return 3862;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true): return 3863;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false): return 3864;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true): return 3865;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false): return 3866;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true): return 3867;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false): return 3868;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true): return 3869;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false): return 3870;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true): return 3871;
- case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false): return 3872;
- case IronOre::IronOre(): return 70;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, true): return 7538;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, false): return 7540;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, true): return 7542;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, false): return 7544;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, true): return 7546;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, false): return 7548;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, true): return 7550;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, false): return 7552;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, true): return 7554;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, false): return 7556;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, true): return 7558;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, false): return 7560;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, true): return 7562;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, false): return 7564;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, true): return 7566;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, false): return 7568;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, true): return 7570;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, false): return 7572;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, true): return 7574;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, false): return 7576;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, true): return 7578;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, false): return 7580;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, true): return 7582;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, false): return 7584;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, true): return 7586;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, false): return 7588;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, true): return 7590;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, false): return 7592;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, true): return 7594;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, false): return 7596;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, true): return 7598;
- case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, false): return 7600;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZM): return 4020;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZP): return 4021;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XM): return 4022;
- case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XP): return 4023;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::DownEast): return 15739;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::DownNorth): return 15740;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::DownSouth): return 15741;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::DownWest): return 15742;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::UpEast): return 15743;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::UpNorth): return 15744;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::UpSouth): return 15745;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::UpWest): return 15746;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::WestUp): return 15747;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::EastUp): return 15748;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::NorthUp): return 15749;
- case Jigsaw::Jigsaw(Jigsaw::Orientation::SouthUp): return 15750;
- case Jukebox::Jukebox(true): return 3964;
- case Jukebox::Jukebox(false): return 3965;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 6418;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 6419;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 6420;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 6421;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 6422;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 6423;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 6424;
- case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 6425;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 6426;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 6427;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 6428;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 6429;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 6430;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 6431;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 6432;
- case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 6433;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 6434;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 6435;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 6436;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 6437;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 6438;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 6439;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 6440;
- case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 6441;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8866;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8867;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8868;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8869;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8870;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8871;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8872;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8873;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8874;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8875;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8876;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8877;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8878;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8879;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8880;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8881;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8882;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8883;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8884;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8885;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8886;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8887;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8888;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8889;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8890;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8891;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8892;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8893;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8894;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8895;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8896;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8897;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8898;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8899;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8900;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8901;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8902;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8903;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8904;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8905;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8906;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8907;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8908;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8909;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8910;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8911;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8912;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8913;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true): return 8914;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false): return 8915;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true): return 8916;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false): return 8917;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true): return 8918;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false): return 8919;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true): return 8920;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false): return 8921;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true): return 8922;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false): return 8923;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true): return 8924;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false): return 8925;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true): return 8926;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false): return 8927;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true): return 8928;
- case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false): return 8929;
- case JungleFence::JungleFence(true, true, true, true): return 8644;
- case JungleFence::JungleFence(true, true, true, false): return 8645;
- case JungleFence::JungleFence(true, true, false, true): return 8648;
- case JungleFence::JungleFence(true, true, false, false): return 8649;
- case JungleFence::JungleFence(true, false, true, true): return 8652;
- case JungleFence::JungleFence(true, false, true, false): return 8653;
- case JungleFence::JungleFence(true, false, false, true): return 8656;
- case JungleFence::JungleFence(true, false, false, false): return 8657;
- case JungleFence::JungleFence(false, true, true, true): return 8660;
- case JungleFence::JungleFence(false, true, true, false): return 8661;
- case JungleFence::JungleFence(false, true, false, true): return 8664;
- case JungleFence::JungleFence(false, true, false, false): return 8665;
- case JungleFence::JungleFence(false, false, true, true): return 8668;
- case JungleFence::JungleFence(false, false, true, false): return 8669;
- case JungleFence::JungleFence(false, false, false, true): return 8672;
- case JungleFence::JungleFence(false, false, false, false): return 8673;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 8482;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 8483;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 8484;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 8485;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 8486;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 8487;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 8488;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 8489;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 8490;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 8491;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 8492;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 8493;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 8494;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 8495;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 8496;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 8497;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 8498;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 8499;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 8500;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 8501;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 8502;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 8503;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8504;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8505;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8506;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8507;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8508;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8509;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8510;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8511;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8512;
- case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8513;
- case JungleLeaves::JungleLeaves(1, true): return 187;
- case JungleLeaves::JungleLeaves(1, false): return 188;
- case JungleLeaves::JungleLeaves(2, true): return 189;
- case JungleLeaves::JungleLeaves(2, false): return 190;
- case JungleLeaves::JungleLeaves(3, true): return 191;
- case JungleLeaves::JungleLeaves(3, false): return 192;
- case JungleLeaves::JungleLeaves(4, true): return 193;
- case JungleLeaves::JungleLeaves(4, false): return 194;
- case JungleLeaves::JungleLeaves(5, true): return 195;
- case JungleLeaves::JungleLeaves(5, false): return 196;
- case JungleLeaves::JungleLeaves(6, true): return 197;
- case JungleLeaves::JungleLeaves(6, false): return 198;
- case JungleLeaves::JungleLeaves(7, true): return 199;
- case JungleLeaves::JungleLeaves(7, false): return 200;
- case JungleLog::JungleLog(JungleLog::Axis::X): return 82;
- case JungleLog::JungleLog(JungleLog::Axis::Y): return 83;
- case JungleLog::JungleLog(JungleLog::Axis::Z): return 84;
- case JunglePlanks::JunglePlanks(): return 18;
- case JunglePressurePlate::JunglePressurePlate(true): return 3879;
- case JunglePressurePlate::JunglePressurePlate(false): return 3880;
- case JungleSapling::JungleSapling(0): return 27;
- case JungleSapling::JungleSapling(1): return 28;
- case JungleSign::JungleSign(0): return 3510;
- case JungleSign::JungleSign(1): return 3512;
- case JungleSign::JungleSign(2): return 3514;
- case JungleSign::JungleSign(3): return 3516;
- case JungleSign::JungleSign(4): return 3518;
- case JungleSign::JungleSign(5): return 3520;
- case JungleSign::JungleSign(6): return 3522;
- case JungleSign::JungleSign(7): return 3524;
- case JungleSign::JungleSign(8): return 3526;
- case JungleSign::JungleSign(9): return 3528;
- case JungleSign::JungleSign(10): return 3530;
- case JungleSign::JungleSign(11): return 3532;
- case JungleSign::JungleSign(12): return 3534;
- case JungleSign::JungleSign(13): return 3536;
- case JungleSign::JungleSign(14): return 3538;
- case JungleSign::JungleSign(15): return 3540;
- case JungleSlab::JungleSlab(JungleSlab::Type::Top): return 8319;
- case JungleSlab::JungleSlab(JungleSlab::Type::Bottom): return 8321;
- case JungleSlab::JungleSlab(JungleSlab::Type::Double): return 8323;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5565;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5567;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5569;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5571;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5573;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5575;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5577;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5579;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5581;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5583;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5585;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5587;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5589;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5591;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5593;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5595;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5597;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5599;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5601;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5603;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5605;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5607;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5609;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5611;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5613;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5615;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5617;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5619;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5621;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5623;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::Straight): return 5625;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft): return 5627;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight): return 5629;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft): return 5631;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight): return 5633;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight): return 5635;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft): return 5637;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight): return 5639;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft): return 5641;
- case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight): return 5643;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, true): return 4304;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, false): return 4306;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, true): return 4308;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, false): return 4310;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, true): return 4312;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, false): return 4314;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, true): return 4316;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, false): return 4318;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, true): return 4320;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, false): return 4322;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, true): return 4324;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, false): return 4326;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, true): return 4328;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, false): return 4330;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, true): return 4332;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, false): return 4334;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, true): return 4336;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, false): return 4338;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, true): return 4340;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, false): return 4342;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, true): return 4344;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, false): return 4346;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, true): return 4348;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, false): return 4350;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, true): return 4352;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, false): return 4354;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, true): return 4356;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, false): return 4358;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, true): return 4360;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, false): return 4362;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, true): return 4364;
- case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, false): return 4366;
- case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZM): return 3768;
- case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZP): return 3770;
- case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XM): return 3772;
- case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XP): return 3774;
- case JungleWood::JungleWood(JungleWood::Axis::X): return 118;
- case JungleWood::JungleWood(JungleWood::Axis::Y): return 119;
- case JungleWood::JungleWood(JungleWood::Axis::Z): return 120;
- case Kelp::Kelp(0): return 9470;
- case Kelp::Kelp(1): return 9471;
- case Kelp::Kelp(2): return 9472;
- case Kelp::Kelp(3): return 9473;
- case Kelp::Kelp(4): return 9474;
- case Kelp::Kelp(5): return 9475;
- case Kelp::Kelp(6): return 9476;
- case Kelp::Kelp(7): return 9477;
- case Kelp::Kelp(8): return 9478;
- case Kelp::Kelp(9): return 9479;
- case Kelp::Kelp(10): return 9480;
- case Kelp::Kelp(11): return 9481;
- case Kelp::Kelp(12): return 9482;
- case Kelp::Kelp(13): return 9483;
- case Kelp::Kelp(14): return 9484;
- case Kelp::Kelp(15): return 9485;
- case Kelp::Kelp(16): return 9486;
- case Kelp::Kelp(17): return 9487;
- case Kelp::Kelp(18): return 9488;
- case Kelp::Kelp(19): return 9489;
- case Kelp::Kelp(20): return 9490;
- case Kelp::Kelp(21): return 9491;
- case Kelp::Kelp(22): return 9492;
- case Kelp::Kelp(23): return 9493;
- case Kelp::Kelp(24): return 9494;
- case Kelp::Kelp(25): return 9495;
- case KelpPlant::KelpPlant(): return 9496;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZM): return 3638;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZP): return 3640;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_XM): return 3642;
- case Ladder::Ladder(eBlockFace::BLOCK_FACE_XP): return 3644;
- case Lantern::Lantern(true): return 14886;
- case Lantern::Lantern(false): return 14887;
- case LapisBlock::LapisBlock(): return 233;
- case LapisOre::LapisOre(): return 232;
- case LargeFern::LargeFern(LargeFern::Half::Upper): return 7895;
- case LargeFern::LargeFern(LargeFern::Half::Lower): return 7896;
- case Lava::Lava(0): return 50;
- case Lava::Lava(1): return 51;
- case Lava::Lava(2): return 52;
- case Lava::Lava(3): return 53;
- case Lava::Lava(4): return 54;
- case Lava::Lava(5): return 55;
- case Lava::Lava(6): return 56;
- case Lava::Lava(7): return 57;
- case Lava::Lava(8): return 58;
- case Lava::Lava(9): return 59;
- case Lava::Lava(10): return 60;
- case Lava::Lava(11): return 61;
- case Lava::Lava(12): return 62;
- case Lava::Lava(13): return 63;
- case Lava::Lava(14): return 64;
- case Lava::Lava(15): return 65;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, true): return 14833;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, false): return 14834;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, true): return 14835;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, false): return 14836;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, true): return 14837;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, false): return 14838;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, true): return 14839;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, false): return 14840;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, true): return 14841;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, false): return 14842;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, true): return 14843;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, false): return 14844;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, true): return 14845;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, false): return 14846;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, true): return 14847;
- case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, false): return 14848;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3783;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3784;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3785;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3786;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3787;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3788;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3789;
- case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3790;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3791;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3792;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3793;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3794;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3795;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3796;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3797;
- case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3798;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3799;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3800;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3801;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3802;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3803;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3804;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3805;
- case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3806;
- case LightBlueBanner::LightBlueBanner(0): return 7945;
- case LightBlueBanner::LightBlueBanner(1): return 7946;
- case LightBlueBanner::LightBlueBanner(2): return 7947;
- case LightBlueBanner::LightBlueBanner(3): return 7948;
- case LightBlueBanner::LightBlueBanner(4): return 7949;
- case LightBlueBanner::LightBlueBanner(5): return 7950;
- case LightBlueBanner::LightBlueBanner(6): return 7951;
- case LightBlueBanner::LightBlueBanner(7): return 7952;
- case LightBlueBanner::LightBlueBanner(8): return 7953;
- case LightBlueBanner::LightBlueBanner(9): return 7954;
- case LightBlueBanner::LightBlueBanner(10): return 7955;
- case LightBlueBanner::LightBlueBanner(11): return 7956;
- case LightBlueBanner::LightBlueBanner(12): return 7957;
- case LightBlueBanner::LightBlueBanner(13): return 7958;
- case LightBlueBanner::LightBlueBanner(14): return 7959;
- case LightBlueBanner::LightBlueBanner(15): return 7960;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Head): return 1097;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Foot): return 1098;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Head): return 1099;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Foot): return 1100;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Head): return 1101;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Foot): return 1102;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Head): return 1103;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Foot): return 1104;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Head): return 1105;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Foot): return 1106;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Head): return 1107;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Foot): return 1108;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Head): return 1109;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Foot): return 1110;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Head): return 1111;
- case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Foot): return 1112;
- case LightBlueCarpet::LightBlueCarpet(): return 7869;
- case LightBlueConcrete::LightBlueConcrete(): return 9441;
- case LightBlueConcretePowder::LightBlueConcretePowder(): return 9457;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9386;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9387;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9388;
- case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9389;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9296;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9297;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9298;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9299;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9300;
- case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9301;
- case LightBlueStainedGlass::LightBlueStainedGlass(): return 4098;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, true): return 6961;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, false): return 6962;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, true): return 6965;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, false): return 6966;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, true): return 6969;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, false): return 6970;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, true): return 6973;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, false): return 6974;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, true): return 6977;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, false): return 6978;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, true): return 6981;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, false): return 6982;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, true): return 6985;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, false): return 6986;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, true): return 6989;
- case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, false): return 6990;
- case LightBlueTerracotta::LightBlueTerracotta(): return 6850;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8165;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8166;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XM): return 8167;
- case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XP): return 8168;
- case LightBlueWool::LightBlueWool(): return 1387;
- case LightGrayBanner::LightGrayBanner(0): return 8025;
- case LightGrayBanner::LightGrayBanner(1): return 8026;
- case LightGrayBanner::LightGrayBanner(2): return 8027;
- case LightGrayBanner::LightGrayBanner(3): return 8028;
- case LightGrayBanner::LightGrayBanner(4): return 8029;
- case LightGrayBanner::LightGrayBanner(5): return 8030;
- case LightGrayBanner::LightGrayBanner(6): return 8031;
- case LightGrayBanner::LightGrayBanner(7): return 8032;
- case LightGrayBanner::LightGrayBanner(8): return 8033;
- case LightGrayBanner::LightGrayBanner(9): return 8034;
- case LightGrayBanner::LightGrayBanner(10): return 8035;
- case LightGrayBanner::LightGrayBanner(11): return 8036;
- case LightGrayBanner::LightGrayBanner(12): return 8037;
- case LightGrayBanner::LightGrayBanner(13): return 8038;
- case LightGrayBanner::LightGrayBanner(14): return 8039;
- case LightGrayBanner::LightGrayBanner(15): return 8040;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Head): return 1177;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Foot): return 1178;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Head): return 1179;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Foot): return 1180;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Head): return 1181;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Foot): return 1182;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Head): return 1183;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Foot): return 1184;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Head): return 1185;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Foot): return 1186;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Head): return 1187;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Foot): return 1188;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Head): return 1189;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Foot): return 1190;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Head): return 1191;
- case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Foot): return 1192;
- case LightGrayCarpet::LightGrayCarpet(): return 7874;
- case LightGrayConcrete::LightGrayConcrete(): return 9446;
- case LightGrayConcretePowder::LightGrayConcretePowder(): return 9462;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9406;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9407;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9408;
- case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9409;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9326;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9327;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9328;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9329;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9330;
- case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9331;
- case LightGrayStainedGlass::LightGrayStainedGlass(): return 4103;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, true): return 7121;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, false): return 7122;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, true): return 7125;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, false): return 7126;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, true): return 7129;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, false): return 7130;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, true): return 7133;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, false): return 7134;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, true): return 7137;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, false): return 7138;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, true): return 7141;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, false): return 7142;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, true): return 7145;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, false): return 7146;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, true): return 7149;
- case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, false): return 7150;
- case LightGrayTerracotta::LightGrayTerracotta(): return 6855;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8185;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8186;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XM): return 8187;
- case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XP): return 8188;
- case LightGrayWool::LightGrayWool(): return 1392;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(0): return 6646;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(1): return 6647;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(2): return 6648;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(3): return 6649;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(4): return 6650;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(5): return 6651;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(6): return 6652;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(7): return 6653;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(8): return 6654;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(9): return 6655;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(10): return 6656;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(11): return 6657;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(12): return 6658;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(13): return 6659;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(14): return 6660;
- case LightWeightedPressurePlate::LightWeightedPressurePlate(15): return 6661;
- case Lilac::Lilac(Lilac::Half::Upper): return 7887;
- case Lilac::Lilac(Lilac::Half::Lower): return 7888;
- case LilyOfTheValley::LilyOfTheValley(): return 1424;
- case LilyPad::LilyPad(): return 5014;
- case LimeBanner::LimeBanner(0): return 7977;
- case LimeBanner::LimeBanner(1): return 7978;
- case LimeBanner::LimeBanner(2): return 7979;
- case LimeBanner::LimeBanner(3): return 7980;
- case LimeBanner::LimeBanner(4): return 7981;
- case LimeBanner::LimeBanner(5): return 7982;
- case LimeBanner::LimeBanner(6): return 7983;
- case LimeBanner::LimeBanner(7): return 7984;
- case LimeBanner::LimeBanner(8): return 7985;
- case LimeBanner::LimeBanner(9): return 7986;
- case LimeBanner::LimeBanner(10): return 7987;
- case LimeBanner::LimeBanner(11): return 7988;
- case LimeBanner::LimeBanner(12): return 7989;
- case LimeBanner::LimeBanner(13): return 7990;
- case LimeBanner::LimeBanner(14): return 7991;
- case LimeBanner::LimeBanner(15): return 7992;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Head): return 1129;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Foot): return 1130;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Head): return 1131;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Foot): return 1132;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Head): return 1133;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Foot): return 1134;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Head): return 1135;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Foot): return 1136;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Head): return 1137;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Foot): return 1138;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Head): return 1139;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Foot): return 1140;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Head): return 1141;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Foot): return 1142;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Head): return 1143;
- case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Foot): return 1144;
- case LimeCarpet::LimeCarpet(): return 7871;
- case LimeConcrete::LimeConcrete(): return 9443;
- case LimeConcretePowder::LimeConcretePowder(): return 9459;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9394;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9395;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9396;
- case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9397;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9308;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9309;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9310;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9311;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9312;
- case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9313;
- case LimeStainedGlass::LimeStainedGlass(): return 4100;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, true): return 7025;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, false): return 7026;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, true): return 7029;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, false): return 7030;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, true): return 7033;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, false): return 7034;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, true): return 7037;
- case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, false): return 7038;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, true): return 7041;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, false): return 7042;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, true): return 7045;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, false): return 7046;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, true): return 7049;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, false): return 7050;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, true): return 7053;
- case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, false): return 7054;
- case LimeTerracotta::LimeTerracotta(): return 6852;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8173;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8174;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XM): return 8175;
- case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XP): return 8176;
- case LimeWool::LimeWool(): return 1389;
- case Lodestone::Lodestone(): return 15838;
- case Loom::Loom(eBlockFace::BLOCK_FACE_ZM): return 14787;
- case Loom::Loom(eBlockFace::BLOCK_FACE_ZP): return 14788;
- case Loom::Loom(eBlockFace::BLOCK_FACE_XM): return 14789;
- case Loom::Loom(eBlockFace::BLOCK_FACE_XP): return 14790;
- case MagentaBanner::MagentaBanner(0): return 7929;
- case MagentaBanner::MagentaBanner(1): return 7930;
- case MagentaBanner::MagentaBanner(2): return 7931;
- case MagentaBanner::MagentaBanner(3): return 7932;
- case MagentaBanner::MagentaBanner(4): return 7933;
- case MagentaBanner::MagentaBanner(5): return 7934;
- case MagentaBanner::MagentaBanner(6): return 7935;
- case MagentaBanner::MagentaBanner(7): return 7936;
- case MagentaBanner::MagentaBanner(8): return 7937;
- case MagentaBanner::MagentaBanner(9): return 7938;
- case MagentaBanner::MagentaBanner(10): return 7939;
- case MagentaBanner::MagentaBanner(11): return 7940;
- case MagentaBanner::MagentaBanner(12): return 7941;
- case MagentaBanner::MagentaBanner(13): return 7942;
- case MagentaBanner::MagentaBanner(14): return 7943;
- case MagentaBanner::MagentaBanner(15): return 7944;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Head): return 1081;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Foot): return 1082;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Head): return 1083;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Foot): return 1084;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Head): return 1085;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Foot): return 1086;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Head): return 1087;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Foot): return 1088;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Head): return 1089;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Foot): return 1090;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Head): return 1091;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Foot): return 1092;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Head): return 1093;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Foot): return 1094;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Head): return 1095;
- case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Foot): return 1096;
- case MagentaCarpet::MagentaCarpet(): return 7868;
- case MagentaConcrete::MagentaConcrete(): return 9440;
- case MagentaConcretePowder::MagentaConcretePowder(): return 9456;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9382;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9383;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9384;
- case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9385;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9290;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9291;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9292;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9293;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9294;
- case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9295;
- case MagentaStainedGlass::MagentaStainedGlass(): return 4097;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, true): return 6929;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, false): return 6930;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, true): return 6933;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, false): return 6934;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, true): return 6937;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, false): return 6938;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, true): return 6941;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, false): return 6942;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, true): return 6945;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, false): return 6946;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, true): return 6949;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, false): return 6950;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, true): return 6953;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, false): return 6954;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, true): return 6957;
- case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, false): return 6958;
- case MagentaTerracotta::MagentaTerracotta(): return 6849;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8161;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8162;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XM): return 8163;
- case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XP): return 8164;
- case MagentaWool::MagentaWool(): return 1386;
- case MagmaBlock::MagmaBlock(): return 9253;
- case Melon::Melon(): return 4763;
- case MelonStem::MelonStem(0): return 4780;
- case MelonStem::MelonStem(1): return 4781;
- case MelonStem::MelonStem(2): return 4782;
- case MelonStem::MelonStem(3): return 4783;
- case MelonStem::MelonStem(4): return 4784;
- case MelonStem::MelonStem(5): return 4785;
- case MelonStem::MelonStem(6): return 4786;
- case MelonStem::MelonStem(7): return 4787;
- case MossyCobblestone::MossyCobblestone(): return 1433;
- case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Top): return 10814;
- case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Bottom): return 10816;
- case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Double): return 10818;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 9990;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 9992;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 9994;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 9996;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 9998;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 10000;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 10002;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 10004;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 10006;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 10008;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 10010;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 10012;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 10014;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 10016;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 10018;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 10020;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 10022;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 10024;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 10026;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 10028;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 10030;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 10032;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 10034;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 10036;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 10038;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 10040;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 10042;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 10044;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 10046;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 10048;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight): return 10050;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft): return 10052;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight): return 10054;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft): return 10056;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight): return 10058;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight): return 10060;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft): return 10062;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight): return 10064;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft): return 10066;
- case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight): return 10068;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 5984;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 5985;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 5986;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 5990;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 5991;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 5992;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 5996;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 5997;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 5998;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6002;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6003;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6004;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6008;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6009;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6010;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6014;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6015;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6016;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6020;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6021;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6022;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6026;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6027;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6028;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6032;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6033;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6034;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6038;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6039;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6040;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6044;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6045;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6046;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6050;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6051;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6052;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6056;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6057;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6058;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6062;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6063;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6064;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6068;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6069;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6070;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6074;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6075;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6076;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6080;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6081;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6082;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6086;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6087;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6088;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6092;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6093;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6094;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6098;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6099;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6100;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6104;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6105;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6106;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6110;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6111;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6112;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6116;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6117;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6118;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6122;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6123;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6124;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6128;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6129;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6130;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6134;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6135;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6136;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6140;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6141;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6142;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6146;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6147;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6148;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6152;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6153;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6154;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6158;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6159;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6160;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6164;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6165;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6166;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6170;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6171;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6172;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6176;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6177;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6178;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6182;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6183;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6184;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6188;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6189;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6190;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6194;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6195;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6196;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6200;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6201;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6202;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6206;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6207;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6208;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6212;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6213;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6214;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6218;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6219;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6220;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6224;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6225;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6226;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6230;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6231;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6232;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6236;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6237;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6238;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6242;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6243;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6244;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6248;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6249;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6250;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6254;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6255;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6256;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6260;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6261;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6262;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6266;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6267;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6268;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None): return 6272;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low): return 6273;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall): return 6274;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None): return 6278;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low): return 6279;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall): return 6280;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None): return 6284;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low): return 6285;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall): return 6286;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None): return 6290;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low): return 6291;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall): return 6292;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None): return 6296;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low): return 6297;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall): return 6298;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None): return 6302;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low): return 6303;
- case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall): return 6304;
- case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Top): return 10802;
- case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Bottom): return 10804;
- case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Double): return 10806;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9830;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9832;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9834;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9836;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9838;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9840;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9842;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9844;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9846;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9848;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9850;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9852;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9854;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9856;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9858;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9860;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9862;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9864;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9866;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9868;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9870;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9872;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9874;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9876;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9878;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9880;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9882;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9884;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9886;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9888;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight): return 9890;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft): return 9892;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight): return 9894;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft): return 9896;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight): return 9898;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight): return 9900;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft): return 9902;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight): return 9904;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft): return 9906;
- case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight): return 9908;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 11842;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 11843;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 11844;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 11848;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 11849;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 11850;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 11854;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 11855;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 11856;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 11860;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 11861;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 11862;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 11866;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 11867;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 11868;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 11872;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 11873;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 11874;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 11878;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 11879;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 11880;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 11884;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 11885;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 11886;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 11890;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 11891;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 11892;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 11896;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 11897;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 11898;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 11902;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 11903;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 11904;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 11908;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 11909;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 11910;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 11914;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 11915;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 11916;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 11920;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 11921;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 11922;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 11926;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 11927;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 11928;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 11932;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 11933;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 11934;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 11938;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 11939;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 11940;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 11944;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 11945;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 11946;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 11950;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 11951;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 11952;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 11956;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 11957;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 11958;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 11962;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 11963;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 11964;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 11968;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 11969;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 11970;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 11974;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 11975;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 11976;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 11980;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 11981;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 11982;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 11986;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 11987;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 11988;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 11992;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 11993;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 11994;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 11998;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 11999;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 12000;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 12004;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 12005;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 12006;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 12010;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 12011;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 12012;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 12016;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 12017;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 12018;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 12022;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 12023;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 12024;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 12028;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 12029;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 12030;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 12034;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 12035;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 12036;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 12040;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 12041;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 12042;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 12046;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 12047;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 12048;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 12052;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 12053;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 12054;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 12058;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 12059;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 12060;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 12064;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 12065;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 12066;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 12070;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 12071;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 12072;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 12076;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 12077;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 12078;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 12082;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 12083;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 12084;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 12088;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 12089;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 12090;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 12094;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 12095;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 12096;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 12100;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 12101;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 12102;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 12106;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 12107;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 12108;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 12112;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 12113;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 12114;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 12118;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 12119;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 12120;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 12124;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 12125;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 12126;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None): return 12130;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low): return 12131;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall): return 12132;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None): return 12136;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low): return 12137;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall): return 12138;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None): return 12142;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low): return 12143;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall): return 12144;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None): return 12148;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low): return 12149;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall): return 12150;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None): return 12154;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low): return 12155;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall): return 12156;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None): return 12160;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low): return 12161;
- case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall): return 12162;
- case MossyStoneBricks::MossyStoneBricks(): return 4496;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Normal): return 1400;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Sticky): return 1401;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Normal): return 1402;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Sticky): return 1403;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Normal): return 1404;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Sticky): return 1405;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Normal): return 1406;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Sticky): return 1407;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Normal): return 1408;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Sticky): return 1409;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Normal): return 1410;
- case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Sticky): return 1411;
- case MushroomStem::MushroomStem(true, true, true, true, true, true): return 4633;
- case MushroomStem::MushroomStem(true, true, true, true, true, false): return 4634;
- case MushroomStem::MushroomStem(true, true, true, true, false, true): return 4635;
- case MushroomStem::MushroomStem(true, true, true, true, false, false): return 4636;
- case MushroomStem::MushroomStem(true, true, true, false, true, true): return 4637;
- case MushroomStem::MushroomStem(true, true, true, false, true, false): return 4638;
- case MushroomStem::MushroomStem(true, true, true, false, false, true): return 4639;
- case MushroomStem::MushroomStem(true, true, true, false, false, false): return 4640;
- case MushroomStem::MushroomStem(true, true, false, true, true, true): return 4641;
- case MushroomStem::MushroomStem(true, true, false, true, true, false): return 4642;
- case MushroomStem::MushroomStem(true, true, false, true, false, true): return 4643;
- case MushroomStem::MushroomStem(true, true, false, true, false, false): return 4644;
- case MushroomStem::MushroomStem(true, true, false, false, true, true): return 4645;
- case MushroomStem::MushroomStem(true, true, false, false, true, false): return 4646;
- case MushroomStem::MushroomStem(true, true, false, false, false, true): return 4647;
- case MushroomStem::MushroomStem(true, true, false, false, false, false): return 4648;
- case MushroomStem::MushroomStem(true, false, true, true, true, true): return 4649;
- case MushroomStem::MushroomStem(true, false, true, true, true, false): return 4650;
- case MushroomStem::MushroomStem(true, false, true, true, false, true): return 4651;
- case MushroomStem::MushroomStem(true, false, true, true, false, false): return 4652;
- case MushroomStem::MushroomStem(true, false, true, false, true, true): return 4653;
- case MushroomStem::MushroomStem(true, false, true, false, true, false): return 4654;
- case MushroomStem::MushroomStem(true, false, true, false, false, true): return 4655;
- case MushroomStem::MushroomStem(true, false, true, false, false, false): return 4656;
- case MushroomStem::MushroomStem(true, false, false, true, true, true): return 4657;
- case MushroomStem::MushroomStem(true, false, false, true, true, false): return 4658;
- case MushroomStem::MushroomStem(true, false, false, true, false, true): return 4659;
- case MushroomStem::MushroomStem(true, false, false, true, false, false): return 4660;
- case MushroomStem::MushroomStem(true, false, false, false, true, true): return 4661;
- case MushroomStem::MushroomStem(true, false, false, false, true, false): return 4662;
- case MushroomStem::MushroomStem(true, false, false, false, false, true): return 4663;
- case MushroomStem::MushroomStem(true, false, false, false, false, false): return 4664;
- case MushroomStem::MushroomStem(false, true, true, true, true, true): return 4665;
- case MushroomStem::MushroomStem(false, true, true, true, true, false): return 4666;
- case MushroomStem::MushroomStem(false, true, true, true, false, true): return 4667;
- case MushroomStem::MushroomStem(false, true, true, true, false, false): return 4668;
- case MushroomStem::MushroomStem(false, true, true, false, true, true): return 4669;
- case MushroomStem::MushroomStem(false, true, true, false, true, false): return 4670;
- case MushroomStem::MushroomStem(false, true, true, false, false, true): return 4671;
- case MushroomStem::MushroomStem(false, true, true, false, false, false): return 4672;
- case MushroomStem::MushroomStem(false, true, false, true, true, true): return 4673;
- case MushroomStem::MushroomStem(false, true, false, true, true, false): return 4674;
- case MushroomStem::MushroomStem(false, true, false, true, false, true): return 4675;
- case MushroomStem::MushroomStem(false, true, false, true, false, false): return 4676;
- case MushroomStem::MushroomStem(false, true, false, false, true, true): return 4677;
- case MushroomStem::MushroomStem(false, true, false, false, true, false): return 4678;
- case MushroomStem::MushroomStem(false, true, false, false, false, true): return 4679;
- case MushroomStem::MushroomStem(false, true, false, false, false, false): return 4680;
- case MushroomStem::MushroomStem(false, false, true, true, true, true): return 4681;
- case MushroomStem::MushroomStem(false, false, true, true, true, false): return 4682;
- case MushroomStem::MushroomStem(false, false, true, true, false, true): return 4683;
- case MushroomStem::MushroomStem(false, false, true, true, false, false): return 4684;
- case MushroomStem::MushroomStem(false, false, true, false, true, true): return 4685;
- case MushroomStem::MushroomStem(false, false, true, false, true, false): return 4686;
- case MushroomStem::MushroomStem(false, false, true, false, false, true): return 4687;
- case MushroomStem::MushroomStem(false, false, true, false, false, false): return 4688;
- case MushroomStem::MushroomStem(false, false, false, true, true, true): return 4689;
- case MushroomStem::MushroomStem(false, false, false, true, true, false): return 4690;
- case MushroomStem::MushroomStem(false, false, false, true, false, true): return 4691;
- case MushroomStem::MushroomStem(false, false, false, true, false, false): return 4692;
- case MushroomStem::MushroomStem(false, false, false, false, true, true): return 4693;
- case MushroomStem::MushroomStem(false, false, false, false, true, false): return 4694;
- case MushroomStem::MushroomStem(false, false, false, false, false, true): return 4695;
- case MushroomStem::MushroomStem(false, false, false, false, false, false): return 4696;
- case Mycelium::Mycelium(true): return 5012;
- case Mycelium::Mycelium(false): return 5013;
- case NetherBrickFence::NetherBrickFence(true, true, true, true): return 5018;
- case NetherBrickFence::NetherBrickFence(true, true, true, false): return 5019;
- case NetherBrickFence::NetherBrickFence(true, true, false, true): return 5022;
- case NetherBrickFence::NetherBrickFence(true, true, false, false): return 5023;
- case NetherBrickFence::NetherBrickFence(true, false, true, true): return 5026;
- case NetherBrickFence::NetherBrickFence(true, false, true, false): return 5027;
- case NetherBrickFence::NetherBrickFence(true, false, false, true): return 5030;
- case NetherBrickFence::NetherBrickFence(true, false, false, false): return 5031;
- case NetherBrickFence::NetherBrickFence(false, true, true, true): return 5034;
- case NetherBrickFence::NetherBrickFence(false, true, true, false): return 5035;
- case NetherBrickFence::NetherBrickFence(false, true, false, true): return 5038;
- case NetherBrickFence::NetherBrickFence(false, true, false, false): return 5039;
- case NetherBrickFence::NetherBrickFence(false, false, true, true): return 5042;
- case NetherBrickFence::NetherBrickFence(false, false, true, false): return 5043;
- case NetherBrickFence::NetherBrickFence(false, false, false, true): return 5046;
- case NetherBrickFence::NetherBrickFence(false, false, false, false): return 5047;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Top): return 8385;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Bottom): return 8387;
- case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double): return 8389;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5049;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5051;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5053;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5055;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5057;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5059;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5061;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5063;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5065;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5067;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5069;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5071;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5073;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5075;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5077;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5079;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5081;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5083;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5085;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5087;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5089;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5091;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5093;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5095;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5097;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5099;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5101;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5103;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5105;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5107;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight): return 5109;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft): return 5111;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight): return 5113;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft): return 5115;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight): return 5117;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight): return 5119;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft): return 5121;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight): return 5123;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft): return 5125;
- case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight): return 5127;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 12814;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 12815;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 12816;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 12820;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 12821;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 12822;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 12826;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 12827;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 12828;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 12832;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 12833;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 12834;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 12838;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 12839;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 12840;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 12844;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 12845;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 12846;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 12850;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 12851;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 12852;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 12856;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 12857;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 12858;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 12862;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 12863;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 12864;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 12868;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 12869;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 12870;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 12874;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 12875;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 12876;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 12880;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 12881;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 12882;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 12886;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 12887;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 12888;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 12892;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 12893;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 12894;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 12898;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 12899;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 12900;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 12904;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 12905;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 12906;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 12910;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 12911;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 12912;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 12916;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 12917;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 12918;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 12922;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 12923;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 12924;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 12928;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 12929;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 12930;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 12934;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 12935;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 12936;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 12940;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 12941;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 12942;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 12946;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 12947;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 12948;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 12952;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 12953;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 12954;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 12958;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 12959;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 12960;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 12964;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 12965;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 12966;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 12970;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 12971;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 12972;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 12976;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 12977;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 12978;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 12982;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 12983;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 12984;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 12988;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 12989;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 12990;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 12994;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 12995;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 12996;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 13000;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 13001;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 13002;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 13006;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 13007;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 13008;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 13012;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 13013;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 13014;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 13018;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 13019;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 13020;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 13024;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 13025;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 13026;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 13030;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 13031;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 13032;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 13036;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 13037;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 13038;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 13042;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 13043;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 13044;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 13048;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 13049;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 13050;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 13054;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 13055;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 13056;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 13060;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 13061;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 13062;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 13066;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 13067;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 13068;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 13072;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 13073;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 13074;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 13078;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 13079;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 13080;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 13084;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 13085;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 13086;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 13090;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 13091;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 13092;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 13096;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 13097;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 13098;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::None): return 13102;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Low): return 13103;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall): return 13104;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::None): return 13108;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Low): return 13109;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall): return 13110;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::None): return 13114;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low): return 13115;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall): return 13116;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::None): return 13120;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low): return 13121;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall): return 13122;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None): return 13126;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low): return 13127;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall): return 13128;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None): return 13132;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low): return 13133;
- case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall): return 13134;
- case NetherBricks::NetherBricks(): return 5015;
- case NetherGoldOre::NetherGoldOre(): return 72;
- case NetherPortal::NetherPortal(NetherPortal::Axis::X): return 4014;
- case NetherPortal::NetherPortal(NetherPortal::Axis::Z): return 4015;
- case NetherQuartzOre::NetherQuartzOre(): return 6727;
- case NetherSprouts::NetherSprouts(): return 14974;
- case NetherWart::NetherWart(0): return 5128;
- case NetherWart::NetherWart(1): return 5129;
- case NetherWart::NetherWart(2): return 5130;
- case NetherWart::NetherWart(3): return 5131;
- case NetherWartBlock::NetherWartBlock(): return 9254;
- case NetheriteBlock::NetheriteBlock(): return 15826;
- case Netherrack::Netherrack(): return 3999;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, true): return 249;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, false): return 250;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, true): return 251;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, false): return 252;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, true): return 253;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, false): return 254;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, true): return 255;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, false): return 256;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, true): return 257;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, false): return 258;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, true): return 259;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, false): return 260;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, true): return 261;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, false): return 262;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, true): return 263;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, false): return 264;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, true): return 265;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, false): return 266;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, true): return 267;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, false): return 268;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, true): return 269;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, false): return 270;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, true): return 271;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, false): return 272;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, true): return 273;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, false): return 274;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, true): return 275;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, false): return 276;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, true): return 277;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, false): return 278;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, true): return 279;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, false): return 280;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, true): return 281;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, false): return 282;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, true): return 283;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, false): return 284;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, true): return 285;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, false): return 286;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, true): return 287;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, false): return 288;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, true): return 289;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, false): return 290;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, true): return 291;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, false): return 292;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, true): return 293;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, false): return 294;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, true): return 295;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, false): return 296;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, true): return 297;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, false): return 298;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, true): return 299;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, false): return 300;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, true): return 301;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, false): return 302;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, true): return 303;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, false): return 304;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, true): return 305;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, false): return 306;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, true): return 307;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, false): return 308;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, true): return 309;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, false): return 310;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, true): return 311;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, false): return 312;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, true): return 313;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, false): return 314;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, true): return 315;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, false): return 316;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, true): return 317;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, false): return 318;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, true): return 319;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, false): return 320;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, true): return 321;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, false): return 322;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, true): return 323;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, false): return 324;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, true): return 325;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, false): return 326;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, true): return 327;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, false): return 328;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, true): return 329;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, false): return 330;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, true): return 331;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, false): return 332;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, true): return 333;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, false): return 334;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, true): return 335;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, false): return 336;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, true): return 337;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, false): return 338;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, true): return 339;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, false): return 340;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, true): return 341;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, false): return 342;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, true): return 343;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, false): return 344;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, true): return 345;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, false): return 346;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, true): return 347;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, false): return 348;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, true): return 349;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, false): return 350;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, true): return 351;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, false): return 352;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, true): return 353;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, false): return 354;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, true): return 355;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, false): return 356;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, true): return 357;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, false): return 358;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, true): return 359;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, false): return 360;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, true): return 361;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, false): return 362;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, true): return 363;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, false): return 364;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, true): return 365;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, false): return 366;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, true): return 367;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, false): return 368;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, true): return 369;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, false): return 370;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, true): return 371;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, false): return 372;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, true): return 373;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, false): return 374;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, true): return 375;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, false): return 376;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, true): return 377;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, false): return 378;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, true): return 379;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, false): return 380;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, true): return 381;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, false): return 382;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, true): return 383;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, false): return 384;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, true): return 385;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, false): return 386;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, true): return 387;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, false): return 388;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, true): return 389;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, false): return 390;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, true): return 391;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, false): return 392;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, true): return 393;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, false): return 394;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, true): return 395;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, false): return 396;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, true): return 397;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, false): return 398;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, true): return 399;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, false): return 400;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, true): return 401;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, false): return 402;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, true): return 403;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, false): return 404;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, true): return 405;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, false): return 406;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, true): return 407;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, false): return 408;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, true): return 409;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, false): return 410;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, true): return 411;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, false): return 412;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, true): return 413;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, false): return 414;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, true): return 415;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, false): return 416;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, true): return 417;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, false): return 418;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, true): return 419;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, false): return 420;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, true): return 421;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, false): return 422;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, true): return 423;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, false): return 424;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, true): return 425;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, false): return 426;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, true): return 427;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, false): return 428;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, true): return 429;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, false): return 430;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, true): return 431;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, false): return 432;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, true): return 433;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, false): return 434;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, true): return 435;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, false): return 436;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, true): return 437;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, false): return 438;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, true): return 439;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, false): return 440;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, true): return 441;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, false): return 442;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, true): return 443;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, false): return 444;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, true): return 445;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, false): return 446;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, true): return 447;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, false): return 448;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, true): return 449;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, false): return 450;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, true): return 451;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, false): return 452;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, true): return 453;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, false): return 454;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, true): return 455;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, false): return 456;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, true): return 457;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, false): return 458;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, true): return 459;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, false): return 460;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, true): return 461;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, false): return 462;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, true): return 463;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, false): return 464;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, true): return 465;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, false): return 466;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, true): return 467;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, false): return 468;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, true): return 469;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, false): return 470;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, true): return 471;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, false): return 472;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, true): return 473;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, false): return 474;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, true): return 475;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, false): return 476;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, true): return 477;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, false): return 478;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, true): return 479;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, false): return 480;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, true): return 481;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, false): return 482;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, true): return 483;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, false): return 484;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, true): return 485;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, false): return 486;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, true): return 487;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, false): return 488;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, true): return 489;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, false): return 490;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, true): return 491;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, false): return 492;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, true): return 493;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, false): return 494;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, true): return 495;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, false): return 496;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, true): return 497;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, false): return 498;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, true): return 499;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, false): return 500;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, true): return 501;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, false): return 502;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, true): return 503;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, false): return 504;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, true): return 505;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, false): return 506;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, true): return 507;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, false): return 508;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, true): return 509;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, false): return 510;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, true): return 511;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, false): return 512;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, true): return 513;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, false): return 514;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, true): return 515;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, false): return 516;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, true): return 517;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, false): return 518;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, true): return 519;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, false): return 520;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, true): return 521;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, false): return 522;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, true): return 523;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, false): return 524;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, true): return 525;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, false): return 526;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, true): return 527;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, false): return 528;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, true): return 529;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, false): return 530;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, true): return 531;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, false): return 532;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, true): return 533;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, false): return 534;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, true): return 535;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, false): return 536;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, true): return 537;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, false): return 538;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, true): return 539;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, false): return 540;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, true): return 541;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, false): return 542;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, true): return 543;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, false): return 544;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, true): return 545;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, false): return 546;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, true): return 547;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, false): return 548;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, true): return 549;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, false): return 550;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, true): return 551;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, false): return 552;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, true): return 553;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, false): return 554;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, true): return 555;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, false): return 556;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, true): return 557;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, false): return 558;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, true): return 559;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, false): return 560;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, true): return 561;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, false): return 562;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, true): return 563;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, false): return 564;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, true): return 565;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, false): return 566;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, true): return 567;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, false): return 568;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, true): return 569;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, false): return 570;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, true): return 571;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, false): return 572;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, true): return 573;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, false): return 574;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, true): return 575;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, false): return 576;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, true): return 577;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, false): return 578;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, true): return 579;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, false): return 580;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, true): return 581;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, false): return 582;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, true): return 583;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, false): return 584;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, true): return 585;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, false): return 586;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, true): return 587;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, false): return 588;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, true): return 589;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, false): return 590;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, true): return 591;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, false): return 592;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, true): return 593;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, false): return 594;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, true): return 595;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, false): return 596;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, true): return 597;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, false): return 598;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, true): return 599;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, false): return 600;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, true): return 601;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, false): return 602;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, true): return 603;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, false): return 604;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, true): return 605;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, false): return 606;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, true): return 607;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, false): return 608;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, true): return 609;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, false): return 610;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, true): return 611;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, false): return 612;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, true): return 613;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, false): return 614;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, true): return 615;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, false): return 616;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, true): return 617;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, false): return 618;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, true): return 619;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, false): return 620;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, true): return 621;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, false): return 622;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, true): return 623;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, false): return 624;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, true): return 625;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, false): return 626;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, true): return 627;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, false): return 628;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, true): return 629;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, false): return 630;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, true): return 631;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, false): return 632;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, true): return 633;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, false): return 634;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, true): return 635;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, false): return 636;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, true): return 637;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, false): return 638;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, true): return 639;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, false): return 640;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, true): return 641;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, false): return 642;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, true): return 643;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, false): return 644;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, true): return 645;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, false): return 646;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, true): return 647;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, false): return 648;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, true): return 649;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, false): return 650;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, true): return 651;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, false): return 652;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, true): return 653;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, false): return 654;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, true): return 655;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, false): return 656;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, true): return 657;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, false): return 658;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, true): return 659;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, false): return 660;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, true): return 661;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, false): return 662;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, true): return 663;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, false): return 664;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, true): return 665;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, false): return 666;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, true): return 667;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, false): return 668;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, true): return 669;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, false): return 670;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, true): return 671;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, false): return 672;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, true): return 673;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, false): return 674;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, true): return 675;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, false): return 676;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, true): return 677;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, false): return 678;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, true): return 679;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, false): return 680;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, true): return 681;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, false): return 682;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, true): return 683;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, false): return 684;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, true): return 685;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, false): return 686;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, true): return 687;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, false): return 688;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, true): return 689;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, false): return 690;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, true): return 691;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, false): return 692;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, true): return 693;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, false): return 694;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, true): return 695;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, false): return 696;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, true): return 697;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, false): return 698;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, true): return 699;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, false): return 700;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, true): return 701;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, false): return 702;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, true): return 703;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, false): return 704;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, true): return 705;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, false): return 706;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, true): return 707;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, false): return 708;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, true): return 709;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, false): return 710;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, true): return 711;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, false): return 712;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, true): return 713;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, false): return 714;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, true): return 715;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, false): return 716;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, true): return 717;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, false): return 718;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, true): return 719;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, false): return 720;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, true): return 721;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, false): return 722;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, true): return 723;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, false): return 724;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, true): return 725;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, false): return 726;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, true): return 727;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, false): return 728;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, true): return 729;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, false): return 730;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, true): return 731;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, false): return 732;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, true): return 733;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, false): return 734;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, true): return 735;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, false): return 736;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, true): return 737;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, false): return 738;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, true): return 739;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, false): return 740;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, true): return 741;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, false): return 742;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, true): return 743;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, false): return 744;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, true): return 745;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, false): return 746;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, true): return 747;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, false): return 748;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, true): return 749;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, false): return 750;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, true): return 751;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, false): return 752;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, true): return 753;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, false): return 754;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, true): return 755;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, false): return 756;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, true): return 757;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, false): return 758;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, true): return 759;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, false): return 760;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, true): return 761;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, false): return 762;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, true): return 763;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, false): return 764;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, true): return 765;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, false): return 766;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, true): return 767;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, false): return 768;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, true): return 769;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, false): return 770;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, true): return 771;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, false): return 772;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, true): return 773;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, false): return 774;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, true): return 775;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, false): return 776;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, true): return 777;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, false): return 778;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, true): return 779;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, false): return 780;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, true): return 781;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, false): return 782;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, true): return 783;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, false): return 784;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, true): return 785;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, false): return 786;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, true): return 787;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, false): return 788;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, true): return 789;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, false): return 790;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, true): return 791;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, false): return 792;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, true): return 793;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, false): return 794;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, true): return 795;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, false): return 796;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, true): return 797;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, false): return 798;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, true): return 799;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, false): return 800;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, true): return 801;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, false): return 802;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, true): return 803;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, false): return 804;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, true): return 805;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, false): return 806;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, true): return 807;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, false): return 808;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, true): return 809;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, false): return 810;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, true): return 811;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, false): return 812;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, true): return 813;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, false): return 814;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, true): return 815;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, false): return 816;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, true): return 817;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, false): return 818;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, true): return 819;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, false): return 820;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, true): return 821;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, false): return 822;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, true): return 823;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, false): return 824;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, true): return 825;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, false): return 826;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, true): return 827;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, false): return 828;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, true): return 829;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, false): return 830;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, true): return 831;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, false): return 832;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, true): return 833;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, false): return 834;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, true): return 835;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, false): return 836;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, true): return 837;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, false): return 838;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, true): return 839;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, false): return 840;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, true): return 841;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, false): return 842;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, true): return 843;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, false): return 844;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, true): return 845;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, false): return 846;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, true): return 847;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, false): return 848;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, true): return 849;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, false): return 850;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, true): return 851;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, false): return 852;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, true): return 853;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, false): return 854;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, true): return 855;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, false): return 856;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, true): return 857;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, false): return 858;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, true): return 859;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, false): return 860;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, true): return 861;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, false): return 862;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, true): return 863;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, false): return 864;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, true): return 865;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, false): return 866;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, true): return 867;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, false): return 868;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, true): return 869;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, false): return 870;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, true): return 871;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, false): return 872;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, true): return 873;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, false): return 874;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, true): return 875;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, false): return 876;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, true): return 877;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, false): return 878;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, true): return 879;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, false): return 880;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, true): return 881;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, false): return 882;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, true): return 883;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, false): return 884;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, true): return 885;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, false): return 886;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, true): return 887;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, false): return 888;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, true): return 889;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, false): return 890;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, true): return 891;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, false): return 892;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, true): return 893;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, false): return 894;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, true): return 895;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, false): return 896;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, true): return 897;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, false): return 898;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, true): return 899;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, false): return 900;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, true): return 901;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, false): return 902;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, true): return 903;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, false): return 904;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, true): return 905;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, false): return 906;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, true): return 907;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, false): return 908;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, true): return 909;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, false): return 910;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, true): return 911;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, false): return 912;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, true): return 913;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, false): return 914;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, true): return 915;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, false): return 916;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, true): return 917;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, false): return 918;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, true): return 919;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, false): return 920;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, true): return 921;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, false): return 922;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, true): return 923;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, false): return 924;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, true): return 925;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, false): return 926;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, true): return 927;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, false): return 928;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, true): return 929;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, false): return 930;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, true): return 931;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, false): return 932;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, true): return 933;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, false): return 934;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, true): return 935;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, false): return 936;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, true): return 937;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, false): return 938;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, true): return 939;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, false): return 940;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, true): return 941;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, false): return 942;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, true): return 943;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, false): return 944;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, true): return 945;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, false): return 946;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, true): return 947;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, false): return 948;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, true): return 949;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, false): return 950;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, true): return 951;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, false): return 952;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, true): return 953;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, false): return 954;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, true): return 955;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, false): return 956;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, true): return 957;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, false): return 958;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, true): return 959;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, false): return 960;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, true): return 961;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, false): return 962;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, true): return 963;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, false): return 964;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, true): return 965;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, false): return 966;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, true): return 967;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, false): return 968;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, true): return 969;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, false): return 970;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, true): return 971;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, false): return 972;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, true): return 973;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, false): return 974;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, true): return 975;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, false): return 976;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, true): return 977;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, false): return 978;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, true): return 979;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, false): return 980;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, true): return 981;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, false): return 982;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, true): return 983;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, false): return 984;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, true): return 985;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, false): return 986;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, true): return 987;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, false): return 988;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, true): return 989;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, false): return 990;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, true): return 991;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, false): return 992;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, true): return 993;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, false): return 994;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, true): return 995;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, false): return 996;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, true): return 997;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, false): return 998;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, true): return 999;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, false): return 1000;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, true): return 1001;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, false): return 1002;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, true): return 1003;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, false): return 1004;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, true): return 1005;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, false): return 1006;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, true): return 1007;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, false): return 1008;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, true): return 1009;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, false): return 1010;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, true): return 1011;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, false): return 1012;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, true): return 1013;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, false): return 1014;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, true): return 1015;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, false): return 1016;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, true): return 1017;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, false): return 1018;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, true): return 1019;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, false): return 1020;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, true): return 1021;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, false): return 1022;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, true): return 1023;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, false): return 1024;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, true): return 1025;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, false): return 1026;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, true): return 1027;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, false): return 1028;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, true): return 1029;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, false): return 1030;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, true): return 1031;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, false): return 1032;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, true): return 1033;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, false): return 1034;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, true): return 1035;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, false): return 1036;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, true): return 1037;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, false): return 1038;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, true): return 1039;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, false): return 1040;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, true): return 1041;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, false): return 1042;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, true): return 1043;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, false): return 1044;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, true): return 1045;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, false): return 1046;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, true): return 1047;
- case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, false): return 1048;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 6346;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 6347;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 6348;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 6349;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 6350;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 6351;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 6352;
- case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 6353;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 6354;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 6355;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 6356;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 6357;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 6358;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 6359;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 6360;
- case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 6361;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 6362;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 6363;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 6364;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 6365;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 6366;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 6367;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 6368;
- case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 6369;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3573;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3574;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3575;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3576;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3577;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3578;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3579;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3580;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3581;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3582;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3583;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3584;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3585;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3586;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3587;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3588;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3589;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3590;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3591;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3592;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3593;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3594;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3595;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3596;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3597;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3598;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3599;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3600;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3601;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3602;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3603;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3604;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3605;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3606;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3607;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3608;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3609;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3610;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3611;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3612;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3613;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3614;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3615;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3616;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3617;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3618;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3619;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3620;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true): return 3621;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false): return 3622;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true): return 3623;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false): return 3624;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true): return 3625;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false): return 3626;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true): return 3627;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false): return 3628;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true): return 3629;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false): return 3630;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true): return 3631;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false): return 3632;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true): return 3633;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false): return 3634;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true): return 3635;
- case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false): return 3636;
- case OakFence::OakFence(true, true, true, true): return 3968;
- case OakFence::OakFence(true, true, true, false): return 3969;
- case OakFence::OakFence(true, true, false, true): return 3972;
- case OakFence::OakFence(true, true, false, false): return 3973;
- case OakFence::OakFence(true, false, true, true): return 3976;
- case OakFence::OakFence(true, false, true, false): return 3977;
- case OakFence::OakFence(true, false, false, true): return 3980;
- case OakFence::OakFence(true, false, false, false): return 3981;
- case OakFence::OakFence(false, true, true, true): return 3984;
- case OakFence::OakFence(false, true, true, false): return 3985;
- case OakFence::OakFence(false, true, false, true): return 3988;
- case OakFence::OakFence(false, true, false, false): return 3989;
- case OakFence::OakFence(false, false, true, true): return 3992;
- case OakFence::OakFence(false, false, true, false): return 3993;
- case OakFence::OakFence(false, false, false, true): return 3996;
- case OakFence::OakFence(false, false, false, false): return 3997;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 4820;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 4821;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 4822;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 4823;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 4824;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 4825;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 4826;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 4827;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 4828;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 4829;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 4830;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 4831;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 4832;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 4833;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 4834;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 4835;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 4836;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 4837;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 4838;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 4839;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 4840;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 4841;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 4842;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 4843;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 4844;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 4845;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 4846;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 4847;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 4848;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 4849;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 4850;
- case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 4851;
- case OakLeaves::OakLeaves(1, true): return 145;
- case OakLeaves::OakLeaves(1, false): return 146;
- case OakLeaves::OakLeaves(2, true): return 147;
- case OakLeaves::OakLeaves(2, false): return 148;
- case OakLeaves::OakLeaves(3, true): return 149;
- case OakLeaves::OakLeaves(3, false): return 150;
- case OakLeaves::OakLeaves(4, true): return 151;
- case OakLeaves::OakLeaves(4, false): return 152;
- case OakLeaves::OakLeaves(5, true): return 153;
- case OakLeaves::OakLeaves(5, false): return 154;
- case OakLeaves::OakLeaves(6, true): return 155;
- case OakLeaves::OakLeaves(6, false): return 156;
- case OakLeaves::OakLeaves(7, true): return 157;
- case OakLeaves::OakLeaves(7, false): return 158;
- case OakLog::OakLog(OakLog::Axis::X): return 73;
- case OakLog::OakLog(OakLog::Axis::Y): return 74;
- case OakLog::OakLog(OakLog::Axis::Z): return 75;
- case OakPlanks::OakPlanks(): return 15;
- case OakPressurePlate::OakPressurePlate(true): return 3873;
- case OakPressurePlate::OakPressurePlate(false): return 3874;
- case OakSapling::OakSapling(0): return 21;
- case OakSapling::OakSapling(1): return 22;
- case OakSign::OakSign(0): return 3382;
- case OakSign::OakSign(1): return 3384;
- case OakSign::OakSign(2): return 3386;
- case OakSign::OakSign(3): return 3388;
- case OakSign::OakSign(4): return 3390;
- case OakSign::OakSign(5): return 3392;
- case OakSign::OakSign(6): return 3394;
- case OakSign::OakSign(7): return 3396;
- case OakSign::OakSign(8): return 3398;
- case OakSign::OakSign(9): return 3400;
- case OakSign::OakSign(10): return 3402;
- case OakSign::OakSign(11): return 3404;
- case OakSign::OakSign(12): return 3406;
- case OakSign::OakSign(13): return 3408;
- case OakSign::OakSign(14): return 3410;
- case OakSign::OakSign(15): return 3412;
- case OakSlab::OakSlab(OakSlab::Type::Top): return 8301;
- case OakSlab::OakSlab(OakSlab::Type::Bottom): return 8303;
- case OakSlab::OakSlab(OakSlab::Type::Double): return 8305;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1955;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1957;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1959;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1961;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1963;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1965;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1967;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1969;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1971;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1973;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1975;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1977;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1979;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 1981;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 1983;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 1985;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 1987;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 1989;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 1991;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 1993;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::Straight): return 1995;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 1997;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 1999;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 2001;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 2003;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 2005;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 2007;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 2009;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 2011;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 2013;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::Straight): return 2015;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft): return 2017;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerRight): return 2019;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft): return 2021;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterRight): return 2023;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::Straight): return 2025;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft): return 2027;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight): return 2029;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft): return 2031;
- case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight): return 2033;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, true): return 4112;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, false): return 4114;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, true): return 4116;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, false): return 4118;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, true): return 4120;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, false): return 4122;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, true): return 4124;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, false): return 4126;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, true): return 4128;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, false): return 4130;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, true): return 4132;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, false): return 4134;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, true): return 4136;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, false): return 4138;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, true): return 4140;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, false): return 4142;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, true): return 4144;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, false): return 4146;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, true): return 4148;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, false): return 4150;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, true): return 4152;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, false): return 4154;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, true): return 4156;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, false): return 4158;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, true): return 4160;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, false): return 4162;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, true): return 4164;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, false): return 4166;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, true): return 4168;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, false): return 4170;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, true): return 4172;
- case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, false): return 4174;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZM): return 3736;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZP): return 3738;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XM): return 3740;
- case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XP): return 3742;
- case OakWood::OakWood(OakWood::Axis::X): return 109;
- case OakWood::OakWood(OakWood::Axis::Y): return 110;
- case OakWood::OakWood(OakWood::Axis::Z): return 111;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, true): return 9260;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, false): return 9261;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XP, true): return 9262;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XP, false): return 9263;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, true): return 9264;
- case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, false): return 9265;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XM, true): return 9266;
- case Observer::Observer(eBlockFace::BLOCK_FACE_XM, false): return 9267;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YP, true): return 9268;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YP, false): return 9269;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YM, true): return 9270;
- case Observer::Observer(eBlockFace::BLOCK_FACE_YM, false): return 9271;
- case Obsidian::Obsidian(): return 1434;
- case OrangeBanner::OrangeBanner(0): return 7913;
- case OrangeBanner::OrangeBanner(1): return 7914;
- case OrangeBanner::OrangeBanner(2): return 7915;
- case OrangeBanner::OrangeBanner(3): return 7916;
- case OrangeBanner::OrangeBanner(4): return 7917;
- case OrangeBanner::OrangeBanner(5): return 7918;
- case OrangeBanner::OrangeBanner(6): return 7919;
- case OrangeBanner::OrangeBanner(7): return 7920;
- case OrangeBanner::OrangeBanner(8): return 7921;
- case OrangeBanner::OrangeBanner(9): return 7922;
- case OrangeBanner::OrangeBanner(10): return 7923;
- case OrangeBanner::OrangeBanner(11): return 7924;
- case OrangeBanner::OrangeBanner(12): return 7925;
- case OrangeBanner::OrangeBanner(13): return 7926;
- case OrangeBanner::OrangeBanner(14): return 7927;
- case OrangeBanner::OrangeBanner(15): return 7928;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Head): return 1065;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Foot): return 1066;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Head): return 1067;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Foot): return 1068;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Head): return 1069;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Foot): return 1070;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Head): return 1071;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Foot): return 1072;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Head): return 1073;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Foot): return 1074;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Head): return 1075;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Foot): return 1076;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Head): return 1077;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Foot): return 1078;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Head): return 1079;
- case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Foot): return 1080;
- case OrangeCarpet::OrangeCarpet(): return 7867;
- case OrangeConcrete::OrangeConcrete(): return 9439;
- case OrangeConcretePowder::OrangeConcretePowder(): return 9455;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9378;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9379;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9380;
- case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9381;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9284;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9285;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9286;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9287;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9288;
- case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9289;
- case OrangeStainedGlass::OrangeStainedGlass(): return 4096;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, true): return 6897;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, false): return 6898;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, true): return 6901;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, false): return 6902;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, true): return 6905;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, false): return 6906;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, true): return 6909;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, false): return 6910;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, true): return 6913;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, false): return 6914;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, true): return 6917;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, false): return 6918;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, true): return 6921;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, false): return 6922;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, true): return 6925;
- case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, false): return 6926;
- case OrangeTerracotta::OrangeTerracotta(): return 6848;
- case OrangeTulip::OrangeTulip(): return 1418;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8157;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8158;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XM): return 8159;
- case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XP): return 8160;
- case OrangeWool::OrangeWool(): return 1385;
- case OxeyeDaisy::OxeyeDaisy(): return 1421;
- case PackedIce::PackedIce(): return 7884;
- case Peony::Peony(Peony::Half::Upper): return 7891;
- case Peony::Peony(Peony::Half::Lower): return 7892;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Top): return 8361;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Bottom): return 8363;
- case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double): return 8365;
- case PinkBanner::PinkBanner(0): return 7993;
- case PinkBanner::PinkBanner(1): return 7994;
- case PinkBanner::PinkBanner(2): return 7995;
- case PinkBanner::PinkBanner(3): return 7996;
- case PinkBanner::PinkBanner(4): return 7997;
- case PinkBanner::PinkBanner(5): return 7998;
- case PinkBanner::PinkBanner(6): return 7999;
- case PinkBanner::PinkBanner(7): return 8000;
- case PinkBanner::PinkBanner(8): return 8001;
- case PinkBanner::PinkBanner(9): return 8002;
- case PinkBanner::PinkBanner(10): return 8003;
- case PinkBanner::PinkBanner(11): return 8004;
- case PinkBanner::PinkBanner(12): return 8005;
- case PinkBanner::PinkBanner(13): return 8006;
- case PinkBanner::PinkBanner(14): return 8007;
- case PinkBanner::PinkBanner(15): return 8008;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Head): return 1145;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Foot): return 1146;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Head): return 1147;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Foot): return 1148;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Head): return 1149;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Foot): return 1150;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Head): return 1151;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Foot): return 1152;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Head): return 1153;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Foot): return 1154;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Head): return 1155;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Foot): return 1156;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Head): return 1157;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Foot): return 1158;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Head): return 1159;
- case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Foot): return 1160;
- case PinkCarpet::PinkCarpet(): return 7872;
- case PinkConcrete::PinkConcrete(): return 9444;
- case PinkConcretePowder::PinkConcretePowder(): return 9460;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9398;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9399;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9400;
- case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9401;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9314;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9315;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9316;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9317;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9318;
- case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9319;
- case PinkStainedGlass::PinkStainedGlass(): return 4101;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, true): return 7057;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, false): return 7058;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, true): return 7061;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, false): return 7062;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, true): return 7065;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, false): return 7066;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, true): return 7069;
- case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, false): return 7070;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, true): return 7073;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, false): return 7074;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, true): return 7077;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, false): return 7078;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, true): return 7081;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, false): return 7082;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, true): return 7085;
- case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, false): return 7086;
- case PinkTerracotta::PinkTerracotta(): return 6853;
- case PinkTulip::PinkTulip(): return 1420;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8177;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8178;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XM): return 8179;
- case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XP): return 8180;
- case PinkWool::PinkWool(): return 1390;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZM): return 1348;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_XP): return 1349;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZP): return 1350;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_XM): return 1351;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_YP): return 1352;
- case Piston::Piston(true, eBlockFace::BLOCK_FACE_YM): return 1353;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZM): return 1354;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_XP): return 1355;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZP): return 1356;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_XM): return 1357;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_YP): return 1358;
- case Piston::Piston(false, eBlockFace::BLOCK_FACE_YM): return 1359;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Normal): return 1360;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Sticky): return 1361;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Normal): return 1362;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Sticky): return 1363;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Normal): return 1364;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Sticky): return 1365;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Normal): return 1366;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Sticky): return 1367;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Normal): return 1368;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Sticky): return 1369;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Normal): return 1370;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Sticky): return 1371;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Normal): return 1372;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Sticky): return 1373;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Normal): return 1374;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Sticky): return 1375;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Normal): return 1376;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Sticky): return 1377;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Normal): return 1378;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Sticky): return 1379;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Normal): return 1380;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Sticky): return 1381;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Normal): return 1382;
- case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Sticky): return 1383;
- case PlayerHead::PlayerHead(0): return 6550;
- case PlayerHead::PlayerHead(1): return 6551;
- case PlayerHead::PlayerHead(2): return 6552;
- case PlayerHead::PlayerHead(3): return 6553;
- case PlayerHead::PlayerHead(4): return 6554;
- case PlayerHead::PlayerHead(5): return 6555;
- case PlayerHead::PlayerHead(6): return 6556;
- case PlayerHead::PlayerHead(7): return 6557;
- case PlayerHead::PlayerHead(8): return 6558;
- case PlayerHead::PlayerHead(9): return 6559;
- case PlayerHead::PlayerHead(10): return 6560;
- case PlayerHead::PlayerHead(11): return 6561;
- case PlayerHead::PlayerHead(12): return 6562;
- case PlayerHead::PlayerHead(13): return 6563;
- case PlayerHead::PlayerHead(14): return 6564;
- case PlayerHead::PlayerHead(15): return 6565;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZM): return 6566;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZP): return 6567;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XM): return 6568;
- case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XP): return 6569;
- case Podzol::Podzol(true): return 12;
- case Podzol::Podzol(false): return 13;
- case PolishedAndesite::PolishedAndesite(): return 7;
- case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Top): return 10856;
- case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Bottom): return 10858;
- case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Double): return 10860;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10630;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10632;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10634;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10636;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10638;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10640;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10642;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10644;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10646;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10648;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10650;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10652;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10654;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10656;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10658;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10660;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10662;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10664;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10666;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10668;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10670;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10672;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10674;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10676;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10678;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10680;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10682;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10684;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10686;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10688;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight): return 10690;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft): return 10692;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight): return 10694;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft): return 10696;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight): return 10698;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight): return 10700;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft): return 10702;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight): return 10704;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft): return 10706;
- case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight): return 10708;
- case PolishedBasalt::PolishedBasalt(PolishedBasalt::Axis::X): return 4005;
- case PolishedBasalt::PolishedBasalt(PolishedBasalt::Axis::Y): return 4006;
- case PolishedBasalt::PolishedBasalt(PolishedBasalt::Axis::Z): return 4007;
- case PolishedBlackstone::PolishedBlackstone(): return 16250;
- case PolishedBlackstoneBrickSlab::PolishedBlackstoneBrickSlab(PolishedBlackstoneBrickSlab::Type::Top): return 16255;
- case PolishedBlackstoneBrickSlab::PolishedBlackstoneBrickSlab(PolishedBlackstoneBrickSlab::Type::Bottom): return 16257;
- case PolishedBlackstoneBrickSlab::PolishedBlackstoneBrickSlab(PolishedBlackstoneBrickSlab::Type::Double): return 16259;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::Straight): return 16261;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16263;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16265;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16267;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16269;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::Straight): return 16271;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16273;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16275;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16277;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16279;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::Straight): return 16281;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16283;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16285;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16287;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16289;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::Straight): return 16291;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16293;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16295;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16297;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16299;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::Straight): return 16301;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16303;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16305;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16307;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16309;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::Straight): return 16311;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16313;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16315;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16317;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16319;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::Straight): return 16321;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16323;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16325;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16327;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16329;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::Straight): return 16331;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerLeft): return 16333;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerRight): return 16335;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterLeft): return 16337;
- case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterRight): return 16339;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16343;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16344;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16345;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16349;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16350;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16351;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16355;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16356;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16357;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16361;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16362;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16363;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16367;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16368;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16369;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16373;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16374;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16375;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16379;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16380;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16381;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16385;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16386;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16387;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16391;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16392;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16393;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16397;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16398;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16399;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16403;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16404;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16405;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16409;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16410;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16411;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16415;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16416;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16417;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16421;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16422;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16423;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16427;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16428;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16429;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16433;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16434;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16435;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16439;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16440;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16441;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16445;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16446;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16447;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16451;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16452;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16453;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16457;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16458;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16459;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16463;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16464;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16465;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16469;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16470;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16471;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16475;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16476;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16477;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16481;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16482;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16483;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16487;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16488;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16489;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16493;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16494;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16495;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16499;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16500;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16501;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16505;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16506;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16507;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16511;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16512;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16513;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16517;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16518;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16519;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16523;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16524;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16525;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16529;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16530;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16531;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16535;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16536;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16537;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16541;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16542;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16543;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16547;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16548;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16549;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16553;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16554;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16555;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16559;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16560;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16561;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16565;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16566;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16567;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16571;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16572;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16573;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16577;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16578;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16579;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16583;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16584;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16585;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16589;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16590;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16591;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16595;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16596;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16597;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16601;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16602;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16603;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16607;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16608;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16609;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16613;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16614;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16615;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16619;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16620;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16621;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16625;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16626;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16627;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None): return 16631;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low): return 16632;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall): return 16633;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None): return 16637;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low): return 16638;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall): return 16639;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None): return 16643;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low): return 16644;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall): return 16645;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None): return 16649;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low): return 16650;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall): return 16651;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None): return 16655;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low): return 16656;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall): return 16657;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None): return 16661;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low): return 16662;
- case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall): return 16663;
- case PolishedBlackstoneBricks::PolishedBlackstoneBricks(): return 16251;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 16753;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 16754;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 16755;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 16756;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 16757;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 16758;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 16759;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 16760;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 16761;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 16762;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 16763;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 16764;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 16765;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 16766;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 16767;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 16768;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 16769;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 16770;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 16771;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 16772;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 16773;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 16774;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 16775;
- case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 16776;
- case PolishedBlackstonePressurePlate::PolishedBlackstonePressurePlate(true): return 16751;
- case PolishedBlackstonePressurePlate::PolishedBlackstonePressurePlate(false): return 16752;
- case PolishedBlackstoneSlab::PolishedBlackstoneSlab(PolishedBlackstoneSlab::Type::Top): return 16746;
- case PolishedBlackstoneSlab::PolishedBlackstoneSlab(PolishedBlackstoneSlab::Type::Bottom): return 16748;
- case PolishedBlackstoneSlab::PolishedBlackstoneSlab(PolishedBlackstoneSlab::Type::Double): return 16750;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::Straight): return 16666;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerLeft): return 16668;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerRight): return 16670;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterLeft): return 16672;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterRight): return 16674;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::Straight): return 16676;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerLeft): return 16678;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerRight): return 16680;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterLeft): return 16682;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterRight): return 16684;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::Straight): return 16686;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerLeft): return 16688;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerRight): return 16690;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterLeft): return 16692;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterRight): return 16694;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::Straight): return 16696;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerLeft): return 16698;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerRight): return 16700;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterLeft): return 16702;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterRight): return 16704;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::Straight): return 16706;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerLeft): return 16708;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerRight): return 16710;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterLeft): return 16712;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterRight): return 16714;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::Straight): return 16716;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerLeft): return 16718;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerRight): return 16720;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterLeft): return 16722;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterRight): return 16724;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::Straight): return 16726;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerLeft): return 16728;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerRight): return 16730;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterLeft): return 16732;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterRight): return 16734;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::Straight): return 16736;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerLeft): return 16738;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerRight): return 16740;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterLeft): return 16742;
- case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterRight): return 16744;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16780;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16781;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16782;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 16786;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 16787;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 16788;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 16792;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 16793;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 16794;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 16798;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 16799;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 16800;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 16804;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 16805;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 16806;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 16810;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 16811;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 16812;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16816;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16817;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16818;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 16822;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 16823;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 16824;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 16828;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 16829;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 16830;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 16834;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 16835;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 16836;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 16840;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 16841;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 16842;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 16846;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 16847;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 16848;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16852;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16853;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16854;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 16858;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 16859;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 16860;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 16864;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 16865;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 16866;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 16870;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 16871;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 16872;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 16876;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 16877;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 16878;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 16882;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 16883;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 16884;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16888;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16889;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16890;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 16894;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 16895;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 16896;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 16900;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 16901;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 16902;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 16906;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 16907;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 16908;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 16912;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 16913;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 16914;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 16918;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 16919;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 16920;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16924;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16925;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16926;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 16930;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 16931;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 16932;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 16936;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 16937;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 16938;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 16942;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 16943;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 16944;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 16948;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 16949;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 16950;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 16954;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 16955;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 16956;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16960;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16961;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16962;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 16966;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 16967;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 16968;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 16972;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 16973;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 16974;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 16978;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 16979;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 16980;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 16984;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 16985;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 16986;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 16990;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 16991;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 16992;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 16996;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 16997;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 16998;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 17002;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 17003;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 17004;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 17008;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 17009;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 17010;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 17014;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 17015;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 17016;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 17020;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 17021;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 17022;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 17026;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 17027;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 17028;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 17032;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 17033;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 17034;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 17038;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 17039;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 17040;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 17044;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 17045;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 17046;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 17050;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 17051;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 17052;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 17056;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 17057;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 17058;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 17062;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 17063;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 17064;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None): return 17068;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low): return 17069;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall): return 17070;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None): return 17074;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low): return 17075;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall): return 17076;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None): return 17080;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low): return 17081;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall): return 17082;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None): return 17086;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low): return 17087;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall): return 17088;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None): return 17092;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low): return 17093;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall): return 17094;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None): return 17098;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low): return 17099;
- case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall): return 17100;
- case PolishedDiorite::PolishedDiorite(): return 5;
- case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Top): return 10808;
- case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Bottom): return 10810;
- case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Double): return 10812;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9910;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9912;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9914;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9916;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9918;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9920;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9922;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9924;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9926;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9928;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9930;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9932;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9934;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9936;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9938;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9940;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9942;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9944;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9946;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9948;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9950;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9952;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9954;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9956;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9958;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9960;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9962;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9964;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9966;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9968;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight): return 9970;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft): return 9972;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight): return 9974;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft): return 9976;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight): return 9978;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight): return 9980;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft): return 9982;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight): return 9984;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft): return 9986;
- case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight): return 9988;
- case PolishedGranite::PolishedGranite(): return 3;
- case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Top): return 10790;
- case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Bottom): return 10792;
- case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Double): return 10794;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9670;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9672;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9674;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9676;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9678;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9680;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9682;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9684;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9686;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9688;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9690;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9692;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9694;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9696;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9698;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9700;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9702;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9704;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9706;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9708;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9710;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9712;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9714;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9716;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9718;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9720;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9722;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9724;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9726;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9728;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight): return 9730;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft): return 9732;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight): return 9734;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft): return 9736;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight): return 9738;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight): return 9740;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft): return 9742;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight): return 9744;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft): return 9746;
- case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight): return 9748;
- case Poppy::Poppy(): return 1413;
- case Potatoes::Potatoes(0): return 6338;
- case Potatoes::Potatoes(1): return 6339;
- case Potatoes::Potatoes(2): return 6340;
- case Potatoes::Potatoes(3): return 6341;
- case Potatoes::Potatoes(4): return 6342;
- case Potatoes::Potatoes(5): return 6343;
- case Potatoes::Potatoes(6): return 6344;
- case Potatoes::Potatoes(7): return 6345;
- case PottedAcaciaSapling::PottedAcaciaSapling(): return 6310;
- case PottedAllium::PottedAllium(): return 6316;
- case PottedAzureBluet::PottedAzureBluet(): return 6317;
- case PottedBamboo::PottedBamboo(): return 9664;
- case PottedBirchSapling::PottedBirchSapling(): return 6308;
- case PottedBlueOrchid::PottedBlueOrchid(): return 6315;
- case PottedBrownMushroom::PottedBrownMushroom(): return 6327;
- case PottedCactus::PottedCactus(): return 6329;
- case PottedCornflower::PottedCornflower(): return 6323;
- case PottedCrimsonFungus::PottedCrimsonFungus(): return 15834;
- case PottedCrimsonRoots::PottedCrimsonRoots(): return 15836;
- case PottedDandelion::PottedDandelion(): return 6313;
- case PottedDarkOakSapling::PottedDarkOakSapling(): return 6311;
- case PottedDeadBush::PottedDeadBush(): return 6328;
- case PottedFern::PottedFern(): return 6312;
- case PottedJungleSapling::PottedJungleSapling(): return 6309;
- case PottedLilyOfTheValley::PottedLilyOfTheValley(): return 6324;
- case PottedOakSapling::PottedOakSapling(): return 6306;
- case PottedOrangeTulip::PottedOrangeTulip(): return 6319;
- case PottedOxeyeDaisy::PottedOxeyeDaisy(): return 6322;
- case PottedPinkTulip::PottedPinkTulip(): return 6321;
- case PottedPoppy::PottedPoppy(): return 6314;
- case PottedRedMushroom::PottedRedMushroom(): return 6326;
- case PottedRedTulip::PottedRedTulip(): return 6318;
- case PottedSpruceSapling::PottedSpruceSapling(): return 6307;
- case PottedWarpedFungus::PottedWarpedFungus(): return 15835;
- case PottedWarpedRoots::PottedWarpedRoots(): return 15837;
- case PottedWhiteTulip::PottedWhiteTulip(): return 6320;
- case PottedWitherRose::PottedWitherRose(): return 6325;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::NorthSouth): return 1305;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::EastWest): return 1306;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingEast): return 1307;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingWest): return 1308;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingNorth): return 1309;
- case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingSouth): return 1310;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::NorthSouth): return 1311;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::EastWest): return 1312;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingEast): return 1313;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingWest): return 1314;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingNorth): return 1315;
- case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingSouth): return 1316;
- case Prismarine::Prismarine(): return 7601;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Top): return 7851;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Bottom): return 7853;
- case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Double): return 7855;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7685;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7687;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7689;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7691;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7693;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7695;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7697;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7699;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7701;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7703;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7705;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7707;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7709;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7711;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7713;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7715;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7717;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7719;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7721;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7723;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7725;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7727;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7729;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7731;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7733;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7735;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7737;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7739;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7741;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7743;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight): return 7745;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft): return 7747;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight): return 7749;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft): return 7751;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight): return 7753;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight): return 7755;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft): return 7757;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight): return 7759;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft): return 7761;
- case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight): return 7763;
- case PrismarineBricks::PrismarineBricks(): return 7602;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Top): return 7845;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Bottom): return 7847;
- case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Double): return 7849;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7605;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7607;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7609;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7611;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7613;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7615;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7617;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7619;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7621;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7623;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7625;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7627;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7629;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7631;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7633;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7635;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7637;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7639;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7641;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7643;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7645;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7647;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7649;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7651;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7653;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7655;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7657;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7659;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7661;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7663;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight): return 7665;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft): return 7667;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight): return 7669;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft): return 7671;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight): return 7673;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight): return 7675;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft): return 7677;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight): return 7679;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft): return 7681;
- case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight): return 7683;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11194;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11195;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11196;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11200;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11201;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11202;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11206;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11207;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11208;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11212;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11213;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11214;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11218;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11219;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11220;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11224;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11225;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11226;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11230;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11231;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11232;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11236;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11237;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11238;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11242;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11243;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11244;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11248;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11249;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11250;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11254;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11255;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11256;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11260;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11261;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11262;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11266;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11267;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11268;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11272;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11273;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11274;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11278;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11279;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11280;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11284;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11285;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11286;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11290;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11291;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11292;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11296;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11297;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11298;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11302;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11303;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11304;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11308;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11309;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11310;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11314;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11315;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11316;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11320;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11321;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11322;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11326;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11327;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11328;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11332;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11333;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11334;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11338;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11339;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11340;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11344;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11345;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11346;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11350;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11351;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11352;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11356;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11357;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11358;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11362;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11363;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11364;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11368;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11369;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11370;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11374;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11375;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11376;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11380;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11381;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11382;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11386;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11387;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11388;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11392;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11393;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11394;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11398;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11399;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11400;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11404;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11405;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11406;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11410;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11411;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11412;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11416;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11417;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11418;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11422;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11423;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11424;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11428;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11429;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11430;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11434;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11435;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11436;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11440;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11441;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11442;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11446;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11447;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11448;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11452;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11453;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11454;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11458;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11459;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11460;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11464;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11465;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11466;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11470;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11471;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11472;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11476;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11477;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11478;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::None): return 11482;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Low): return 11483;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Tall): return 11484;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::None): return 11488;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Low): return 11489;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Tall): return 11490;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::None): return 11494;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Low): return 11495;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Tall): return 11496;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::None): return 11500;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Low): return 11501;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Tall): return 11502;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::None): return 11506;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Low): return 11507;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall): return 11508;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::None): return 11512;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Low): return 11513;
- case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall): return 11514;
- case Pumpkin::Pumpkin(): return 3998;
- case PumpkinStem::PumpkinStem(0): return 4772;
- case PumpkinStem::PumpkinStem(1): return 4773;
- case PumpkinStem::PumpkinStem(2): return 4774;
- case PumpkinStem::PumpkinStem(3): return 4775;
- case PumpkinStem::PumpkinStem(4): return 4776;
- case PumpkinStem::PumpkinStem(5): return 4777;
- case PumpkinStem::PumpkinStem(6): return 4778;
- case PumpkinStem::PumpkinStem(7): return 4779;
- case PurpleBanner::PurpleBanner(0): return 8057;
- case PurpleBanner::PurpleBanner(1): return 8058;
- case PurpleBanner::PurpleBanner(2): return 8059;
- case PurpleBanner::PurpleBanner(3): return 8060;
- case PurpleBanner::PurpleBanner(4): return 8061;
- case PurpleBanner::PurpleBanner(5): return 8062;
- case PurpleBanner::PurpleBanner(6): return 8063;
- case PurpleBanner::PurpleBanner(7): return 8064;
- case PurpleBanner::PurpleBanner(8): return 8065;
- case PurpleBanner::PurpleBanner(9): return 8066;
- case PurpleBanner::PurpleBanner(10): return 8067;
- case PurpleBanner::PurpleBanner(11): return 8068;
- case PurpleBanner::PurpleBanner(12): return 8069;
- case PurpleBanner::PurpleBanner(13): return 8070;
- case PurpleBanner::PurpleBanner(14): return 8071;
- case PurpleBanner::PurpleBanner(15): return 8072;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Head): return 1209;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Foot): return 1210;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Head): return 1211;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Foot): return 1212;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Head): return 1213;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Foot): return 1214;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Head): return 1215;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Foot): return 1216;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Head): return 1217;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Foot): return 1218;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Head): return 1219;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Foot): return 1220;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Head): return 1221;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Foot): return 1222;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Head): return 1223;
- case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Foot): return 1224;
- case PurpleCarpet::PurpleCarpet(): return 7876;
- case PurpleConcrete::PurpleConcrete(): return 9448;
- case PurpleConcretePowder::PurpleConcretePowder(): return 9464;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9414;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9415;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9416;
- case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9417;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9338;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9339;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9340;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9341;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9342;
- case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9343;
- case PurpleStainedGlass::PurpleStainedGlass(): return 4105;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, true): return 7185;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, false): return 7186;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, true): return 7189;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, false): return 7190;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, true): return 7193;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, false): return 7194;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, true): return 7197;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, false): return 7198;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, true): return 7201;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, false): return 7202;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, true): return 7205;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, false): return 7206;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, true): return 7209;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, false): return 7210;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, true): return 7213;
- case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, false): return 7214;
- case PurpleTerracotta::PurpleTerracotta(): return 6857;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8193;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8194;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XM): return 8195;
- case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XP): return 8196;
- case PurpleWool::PurpleWool(): return 1394;
- case PurpurBlock::PurpurBlock(): return 9134;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::X): return 9135;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Y): return 9136;
- case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Z): return 9137;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Top): return 8409;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Bottom): return 8411;
- case PurpurSlab::PurpurSlab(PurpurSlab::Type::Double): return 8413;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 9139;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 9141;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 9143;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 9145;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 9147;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 9149;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 9151;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 9153;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 9155;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 9157;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 9159;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 9161;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 9163;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 9165;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 9167;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 9169;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 9171;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 9173;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 9175;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 9177;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 9179;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 9181;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 9183;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 9185;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 9187;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 9189;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 9191;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 9193;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 9195;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 9197;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight): return 9199;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft): return 9201;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight): return 9203;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft): return 9205;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight): return 9207;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight): return 9209;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft): return 9211;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight): return 9213;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft): return 9215;
- case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight): return 9217;
- case QuartzBlock::QuartzBlock(): return 6738;
- case QuartzBricks::QuartzBricks(): return 17103;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::X): return 6740;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Y): return 6741;
- case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Z): return 6742;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Top): return 8391;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Bottom): return 8393;
- case QuartzSlab::QuartzSlab(QuartzSlab::Type::Double): return 8395;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6744;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6746;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6748;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6750;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6752;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6754;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6756;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6758;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6760;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6762;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6764;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6766;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6768;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6770;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6772;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6774;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6776;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6778;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6780;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6782;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6784;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6786;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6788;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6790;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6792;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6794;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6796;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6798;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6800;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6802;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight): return 6804;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft): return 6806;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight): return 6808;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft): return 6810;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight): return 6812;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight): return 6814;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft): return 6816;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight): return 6818;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft): return 6820;
- case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight): return 6822;
- case Rail::Rail(Rail::Shape::NorthSouth): return 3645;
- case Rail::Rail(Rail::Shape::EastWest): return 3646;
- case Rail::Rail(Rail::Shape::AscendingEast): return 3647;
- case Rail::Rail(Rail::Shape::AscendingWest): return 3648;
- case Rail::Rail(Rail::Shape::AscendingNorth): return 3649;
- case Rail::Rail(Rail::Shape::AscendingSouth): return 3650;
- case Rail::Rail(Rail::Shape::SouthEast): return 3651;
- case Rail::Rail(Rail::Shape::SouthWest): return 3652;
- case Rail::Rail(Rail::Shape::NorthWest): return 3653;
- case Rail::Rail(Rail::Shape::NorthEast): return 3654;
- case RedBanner::RedBanner(0): return 8121;
- case RedBanner::RedBanner(1): return 8122;
- case RedBanner::RedBanner(2): return 8123;
- case RedBanner::RedBanner(3): return 8124;
- case RedBanner::RedBanner(4): return 8125;
- case RedBanner::RedBanner(5): return 8126;
- case RedBanner::RedBanner(6): return 8127;
- case RedBanner::RedBanner(7): return 8128;
- case RedBanner::RedBanner(8): return 8129;
- case RedBanner::RedBanner(9): return 8130;
- case RedBanner::RedBanner(10): return 8131;
- case RedBanner::RedBanner(11): return 8132;
- case RedBanner::RedBanner(12): return 8133;
- case RedBanner::RedBanner(13): return 8134;
- case RedBanner::RedBanner(14): return 8135;
- case RedBanner::RedBanner(15): return 8136;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Head): return 1273;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Foot): return 1274;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Head): return 1275;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Foot): return 1276;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Head): return 1277;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Foot): return 1278;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Head): return 1279;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Foot): return 1280;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Head): return 1281;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Foot): return 1282;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Head): return 1283;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Foot): return 1284;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Head): return 1285;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Foot): return 1286;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Head): return 1287;
- case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Foot): return 1288;
- case RedCarpet::RedCarpet(): return 7880;
- case RedConcrete::RedConcrete(): return 9452;
- case RedConcretePowder::RedConcretePowder(): return 9468;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9430;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9431;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9432;
- case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9433;
- case RedMushroom::RedMushroom(): return 1426;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, true): return 4569;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, false): return 4570;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, true): return 4571;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, false): return 4572;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, true): return 4573;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, false): return 4574;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, true): return 4575;
- case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, false): return 4576;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, true): return 4577;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, false): return 4578;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, true): return 4579;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, false): return 4580;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, true): return 4581;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, false): return 4582;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, true): return 4583;
- case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, false): return 4584;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, true): return 4585;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, false): return 4586;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, true): return 4587;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, false): return 4588;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, true): return 4589;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, false): return 4590;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, true): return 4591;
- case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, false): return 4592;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, true): return 4593;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, false): return 4594;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, true): return 4595;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, false): return 4596;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, true): return 4597;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, false): return 4598;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, true): return 4599;
- case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, false): return 4600;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, true): return 4601;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, false): return 4602;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, true): return 4603;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, false): return 4604;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, true): return 4605;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, false): return 4606;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, true): return 4607;
- case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, false): return 4608;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, true): return 4609;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, false): return 4610;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, true): return 4611;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, false): return 4612;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, true): return 4613;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, false): return 4614;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, true): return 4615;
- case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, false): return 4616;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, true): return 4617;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, false): return 4618;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, true): return 4619;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, false): return 4620;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, true): return 4621;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, false): return 4622;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, true): return 4623;
- case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, false): return 4624;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, true): return 4625;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, false): return 4626;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, true): return 4627;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, false): return 4628;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, true): return 4629;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, false): return 4630;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, true): return 4631;
- case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false): return 4632;
- case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Top): return 10850;
- case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Bottom): return 10852;
- case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Double): return 10854;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10550;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10552;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10554;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10556;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10558;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10560;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10562;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10564;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10566;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10568;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10570;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10572;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10574;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10576;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10578;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10580;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10582;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10584;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10586;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10588;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10590;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10592;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10594;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10596;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10598;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10600;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10602;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10604;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10606;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10608;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight): return 10610;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft): return 10612;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight): return 10614;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft): return 10616;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight): return 10618;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight): return 10620;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft): return 10622;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight): return 10624;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft): return 10626;
- case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight): return 10628;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13462;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13463;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13464;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13468;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13469;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13470;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13474;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13475;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13476;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13480;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13481;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13482;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13486;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13487;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13488;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13492;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13493;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13494;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13498;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13499;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13500;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13504;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13505;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13506;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13510;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13511;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13512;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13516;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13517;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13518;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13522;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13523;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13524;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13528;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13529;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13530;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13534;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13535;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13536;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13540;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13541;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13542;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13546;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13547;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13548;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13552;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13553;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13554;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13558;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13559;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13560;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13564;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13565;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13566;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13570;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13571;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13572;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13576;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13577;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13578;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13582;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13583;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13584;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13588;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13589;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13590;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13594;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13595;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13596;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13600;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13601;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13602;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13606;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13607;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13608;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13612;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13613;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13614;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13618;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13619;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13620;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13624;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13625;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13626;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13630;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13631;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13632;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13636;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13637;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13638;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13642;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13643;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13644;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13648;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13649;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13650;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13654;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13655;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13656;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13660;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13661;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13662;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13666;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13667;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13668;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13672;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13673;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13674;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13678;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13679;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13680;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13684;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13685;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13686;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13690;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13691;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13692;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13696;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13697;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13698;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13702;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13703;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13704;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13708;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13709;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13710;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13714;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13715;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13716;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13720;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13721;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13722;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13726;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13727;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13728;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13732;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13733;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13734;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13738;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13739;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13740;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13744;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13745;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13746;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None): return 13750;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low): return 13751;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall): return 13752;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None): return 13756;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low): return 13757;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall): return 13758;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None): return 13762;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low): return 13763;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall): return 13764;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None): return 13768;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low): return 13769;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall): return 13770;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None): return 13774;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low): return 13775;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall): return 13776;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None): return 13780;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low): return 13781;
- case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall): return 13782;
- case RedNetherBricks::RedNetherBricks(): return 9255;
- case RedSand::RedSand(): return 67;
- case RedSandstone::RedSandstone(): return 8217;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Top): return 8397;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Bottom): return 8399;
- case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Double): return 8401;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 8221;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 8223;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 8225;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 8227;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 8229;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 8231;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 8233;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 8235;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 8237;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 8239;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 8241;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 8243;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 8245;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 8247;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 8249;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 8251;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 8253;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 8255;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 8257;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 8259;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 8261;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 8263;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 8265;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 8267;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 8269;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 8271;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 8273;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 8275;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 8277;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 8279;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight): return 8281;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft): return 8283;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight): return 8285;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft): return 8287;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight): return 8289;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight): return 8291;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft): return 8293;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight): return 8295;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft): return 8297;
- case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight): return 8299;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11518;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11519;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11520;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11524;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11525;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11526;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11530;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11531;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11532;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11536;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11537;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11538;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11542;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11543;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11544;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11548;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11549;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11550;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11554;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11555;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11556;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11560;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11561;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11562;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11566;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11567;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11568;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11572;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11573;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11574;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11578;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11579;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11580;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11584;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11585;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11586;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11590;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11591;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11592;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11596;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11597;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11598;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11602;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11603;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11604;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11608;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11609;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11610;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11614;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11615;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11616;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11620;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11621;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11622;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11626;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11627;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11628;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11632;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11633;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11634;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11638;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11639;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11640;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11644;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11645;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11646;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11650;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11651;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11652;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11656;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11657;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11658;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11662;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11663;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11664;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11668;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11669;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11670;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11674;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11675;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11676;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11680;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11681;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11682;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11686;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11687;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11688;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11692;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11693;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11694;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11698;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11699;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11700;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11704;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11705;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11706;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11710;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11711;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11712;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11716;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11717;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11718;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11722;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11723;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11724;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11728;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11729;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11730;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11734;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11735;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11736;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11740;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11741;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11742;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11746;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11747;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11748;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11752;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11753;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11754;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11758;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11759;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11760;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11764;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11765;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11766;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11770;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11771;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11772;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11776;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11777;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11778;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11782;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11783;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11784;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11788;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11789;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11790;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11794;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11795;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11796;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11800;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11801;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11802;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None): return 11806;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low): return 11807;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall): return 11808;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None): return 11812;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low): return 11813;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall): return 11814;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None): return 11818;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low): return 11819;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall): return 11820;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None): return 11824;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low): return 11825;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall): return 11826;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None): return 11830;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low): return 11831;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall): return 11832;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None): return 11836;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low): return 11837;
- case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall): return 11838;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9362;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9363;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9364;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9365;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9366;
- case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9367;
- case RedStainedGlass::RedStainedGlass(): return 4109;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, true, true): return 7313;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, true, false): return 7314;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, false, true): return 7317;
- case RedStainedGlassPane::RedStainedGlassPane(true, true, false, false): return 7318;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, true, true): return 7321;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, true, false): return 7322;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, false, true): return 7325;
- case RedStainedGlassPane::RedStainedGlassPane(true, false, false, false): return 7326;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, true, true): return 7329;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, true, false): return 7330;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, false, true): return 7333;
- case RedStainedGlassPane::RedStainedGlassPane(false, true, false, false): return 7334;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, true, true): return 7337;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, true, false): return 7338;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, false, true): return 7341;
- case RedStainedGlassPane::RedStainedGlassPane(false, false, false, false): return 7342;
- case RedTerracotta::RedTerracotta(): return 6861;
- case RedTulip::RedTulip(): return 1417;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8209;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8210;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XM): return 8211;
- case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XP): return 8212;
- case RedWool::RedWool(): return 1398;
- case RedstoneBlock::RedstoneBlock(): return 6726;
- case RedstoneLamp::RedstoneLamp(true): return 5156;
- case RedstoneLamp::RedstoneLamp(false): return 5157;
- case RedstoneOre::RedstoneOre(true): return 3885;
- case RedstoneOre::RedstoneOre(false): return 3886;
- case RedstoneTorch::RedstoneTorch(true): return 3887;
- case RedstoneTorch::RedstoneTorch(false): return 3888;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, true): return 3889;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, false): return 3890;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, true): return 3891;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, false): return 3892;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, true): return 3893;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, false): return 3894;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, true): return 3895;
- case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, false): return 3896;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2058;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2059;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2060;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2061;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2062;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2063;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2064;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2065;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2066;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2067;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2068;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2069;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2070;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2071;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2072;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2073;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2074;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2075;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2076;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2077;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2078;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2079;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2080;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2081;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2082;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2083;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2084;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2085;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2086;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2087;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2088;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2089;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2090;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2091;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2092;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2093;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2094;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2095;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2096;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2097;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2098;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2099;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2100;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2101;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2102;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2103;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2104;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2105;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2106;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2107;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2108;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2109;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2110;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2111;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2112;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2113;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2114;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2115;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2116;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2117;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2118;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2119;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2120;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2121;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2122;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2123;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2124;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2125;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2126;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2127;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2128;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2129;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2130;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2131;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2132;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2133;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2134;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2135;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2136;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2137;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2138;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2139;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2140;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2141;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2142;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2143;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2144;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2145;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2146;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2147;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2148;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2149;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2150;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2151;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2152;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2153;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2154;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2155;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2156;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2157;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2158;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2159;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2160;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2161;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2162;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2163;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2164;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2165;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2166;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2167;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2168;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2169;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2170;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2171;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2172;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2173;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2174;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2175;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2176;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2177;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2178;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2179;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2180;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2181;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2182;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2183;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2184;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2185;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2186;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2187;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2188;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2189;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2190;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2191;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2192;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2193;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2194;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2195;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2196;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2197;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2198;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2199;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2200;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2201;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2202;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2203;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2204;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2205;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2206;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2207;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2208;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2209;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2210;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2211;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2212;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2213;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2214;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2215;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2216;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2217;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2218;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2219;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2220;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2221;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2222;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2223;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2224;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2225;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2226;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2227;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2228;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2229;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2230;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2231;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2232;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2233;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2234;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2235;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2236;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2237;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2238;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2239;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2240;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2241;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2242;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2243;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2244;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2245;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2246;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2247;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2248;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2249;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2250;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2251;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2252;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2253;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2254;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2255;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2256;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2257;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2258;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2259;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2260;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2261;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2262;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2263;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2264;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2265;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2266;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2267;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2268;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2269;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2270;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2271;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2272;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2273;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2274;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2275;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2276;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2277;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2278;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2279;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2280;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2281;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2282;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2283;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2284;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2285;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2286;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2287;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2288;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2289;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2290;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2291;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2292;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2293;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2294;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2295;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2296;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2297;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2298;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2299;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2300;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2301;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2302;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2303;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2304;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2305;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2306;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2307;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2308;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2309;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2310;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2311;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2312;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2313;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2314;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2315;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2316;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2317;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2318;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2319;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2320;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2321;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2322;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2323;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2324;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2325;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2326;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2327;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2328;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2329;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2330;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2331;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2332;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2333;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2334;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2335;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2336;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2337;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2338;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2339;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2340;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2341;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2342;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2343;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2344;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2345;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2346;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2347;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2348;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2349;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2350;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2351;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2352;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2353;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2354;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2355;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2356;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2357;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2358;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2359;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2360;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2361;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2362;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2363;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2364;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2365;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2366;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2367;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2368;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2369;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2370;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2371;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2372;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2373;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2374;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2375;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2376;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2377;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2378;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2379;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2380;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2381;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2382;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2383;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2384;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2385;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2386;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2387;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2388;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2389;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2390;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2391;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2392;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2393;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2394;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2395;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2396;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2397;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2398;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2399;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2400;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2401;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2402;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2403;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2404;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2405;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2406;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2407;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2408;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2409;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2410;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2411;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2412;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2413;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2414;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2415;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2416;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2417;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2418;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2419;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2420;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2421;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2422;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2423;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2424;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2425;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2426;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2427;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2428;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2429;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2430;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2431;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2432;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2433;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2434;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2435;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2436;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2437;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2438;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2439;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2440;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2441;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2442;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2443;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2444;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2445;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2446;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2447;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2448;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2449;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2450;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2451;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2452;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2453;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2454;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2455;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2456;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2457;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2458;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2459;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2460;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2461;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2462;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2463;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2464;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2465;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2466;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2467;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2468;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2469;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2470;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2471;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2472;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2473;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2474;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2475;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2476;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2477;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2478;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2479;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2480;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2481;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2482;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2483;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2484;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2485;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2486;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2487;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2488;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2489;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2490;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2491;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2492;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2493;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2494;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2495;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2496;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2497;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2498;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2499;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2500;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2501;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2502;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2503;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2504;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2505;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2506;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2507;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2508;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2509;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2510;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2511;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2512;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2513;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2514;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2515;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2516;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2517;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2518;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2519;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2520;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2521;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2522;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2523;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2524;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2525;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2526;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2527;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2528;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2529;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2530;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2531;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2532;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2533;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2534;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2535;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2536;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2537;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2538;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2539;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2540;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2541;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2542;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2543;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2544;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2545;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2546;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2547;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2548;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2549;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2550;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2551;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2552;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2553;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2554;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2555;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2556;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2557;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2558;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2559;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2560;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2561;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2562;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2563;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2564;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2565;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2566;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2567;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2568;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2569;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2570;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2571;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2572;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2573;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2574;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2575;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2576;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2577;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2578;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2579;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2580;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2581;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2582;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2583;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2584;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2585;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2586;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2587;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2588;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2589;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2590;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2591;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2592;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2593;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2594;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2595;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2596;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2597;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2598;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2599;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2600;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2601;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2602;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2603;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2604;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2605;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2606;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2607;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2608;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2609;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2610;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2611;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2612;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2613;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2614;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2615;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2616;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2617;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2618;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2619;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2620;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2621;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2622;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2623;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2624;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2625;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2626;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2627;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2628;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2629;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2630;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2631;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2632;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2633;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2634;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2635;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2636;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2637;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2638;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2639;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2640;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2641;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2642;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2643;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2644;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2645;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2646;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2647;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2648;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2649;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2650;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2651;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2652;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2653;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2654;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2655;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2656;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2657;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2658;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2659;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2660;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2661;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2662;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2663;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2664;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2665;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2666;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2667;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2668;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2669;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2670;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2671;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2672;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2673;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2674;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2675;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2676;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2677;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2678;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2679;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2680;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2681;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2682;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2683;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2684;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2685;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2686;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2687;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2688;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2689;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2690;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2691;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2692;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2693;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2694;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2695;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2696;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2697;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2698;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2699;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2700;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2701;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2702;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2703;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2704;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2705;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2706;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2707;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2708;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2709;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2710;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2711;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2712;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2713;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2714;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2715;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2716;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2717;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2718;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2719;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2720;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2721;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2722;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2723;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2724;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2725;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2726;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2727;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2728;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2729;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2730;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2731;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2732;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2733;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2734;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2735;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2736;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2737;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2738;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2739;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2740;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2741;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2742;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2743;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2744;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2745;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2746;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2747;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2748;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2749;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2750;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2751;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2752;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2753;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2754;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2755;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2756;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2757;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2758;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2759;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2760;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2761;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2762;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2763;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2764;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2765;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2766;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2767;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2768;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2769;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2770;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2771;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2772;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2773;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2774;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2775;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2776;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2777;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2778;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2779;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2780;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2781;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2782;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2783;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2784;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2785;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2786;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2787;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2788;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2789;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2790;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2791;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2792;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2793;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2794;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2795;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2796;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2797;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2798;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2799;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2800;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2801;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2802;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2803;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2804;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2805;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2806;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2807;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2808;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2809;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2810;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2811;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2812;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2813;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2814;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2815;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2816;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2817;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2818;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2819;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2820;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2821;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2822;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2823;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2824;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2825;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2826;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2827;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2828;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2829;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2830;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2831;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2832;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2833;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2834;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2835;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2836;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2837;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2838;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2839;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2840;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2841;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2842;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2843;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2844;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2845;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2846;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2847;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2848;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2849;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2850;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2851;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2852;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2853;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2854;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2855;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 2856;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 2857;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 2858;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2859;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2860;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 2861;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2862;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2863;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 2864;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 2865;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 2866;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 2867;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2868;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2869;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 2870;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2871;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2872;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 2873;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 2874;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 2875;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 2876;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2877;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2878;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 2879;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2880;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2881;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 2882;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 2883;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 2884;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 2885;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2886;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2887;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 2888;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2889;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2890;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 2891;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 2892;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 2893;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 2894;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2895;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2896;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 2897;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2898;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2899;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 2900;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 2901;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 2902;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 2903;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2904;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2905;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 2906;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2907;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2908;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 2909;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 2910;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 2911;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 2912;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2913;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2914;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 2915;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2916;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2917;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 2918;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 2919;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 2920;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 2921;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2922;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2923;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 2924;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2925;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2926;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 2927;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 2928;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 2929;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 2930;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2931;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2932;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 2933;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2934;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2935;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 2936;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 2937;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 2938;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 2939;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2940;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2941;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 2942;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2943;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2944;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 2945;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 2946;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 2947;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 2948;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2949;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2950;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 2951;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2952;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2953;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 2954;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 2955;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 2956;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 2957;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2958;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2959;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 2960;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2961;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2962;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 2963;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 2964;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 2965;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 2966;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2967;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2968;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 2969;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2970;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2971;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 2972;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 2973;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 2974;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 2975;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2976;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2977;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 2978;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2979;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2980;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 2981;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 2982;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 2983;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 2984;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2985;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2986;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 2987;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2988;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2989;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 2990;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 2991;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 2992;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 2993;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 2994;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 2995;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 2996;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 2997;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 2998;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 2999;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 3000;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 3001;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 3002;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3003;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3004;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 3005;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3006;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3007;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 3008;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 3009;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 3010;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 3011;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3012;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3013;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 3014;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3015;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3016;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 3017;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3018;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3019;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3020;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3021;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3022;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3023;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3024;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3025;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3026;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3027;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3028;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3029;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3030;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3031;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3032;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3033;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3034;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3035;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3036;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3037;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3038;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3039;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3040;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3041;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3042;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3043;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3044;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3045;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3046;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3047;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3048;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3049;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3050;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3051;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3052;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3053;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3054;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3055;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3056;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3057;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3058;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3059;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3060;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3061;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3062;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3063;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3064;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3065;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3066;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3067;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 3068;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3069;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3070;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 3071;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 3072;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 3073;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 3074;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3075;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3076;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 3077;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3078;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3079;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 3080;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 3081;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 3082;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 3083;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3084;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3085;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 3086;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3087;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3088;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 3089;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 3090;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 3091;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 3092;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3093;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3094;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 3095;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3096;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3097;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 3098;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 3099;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 3100;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 3101;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3102;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3103;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 3104;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3105;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3106;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 3107;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 3108;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 3109;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 3110;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3111;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3112;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 3113;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3114;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3115;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 3116;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 3117;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 3118;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 3119;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3120;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3121;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 3122;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3123;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3124;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 3125;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 3126;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 3127;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 3128;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3129;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3130;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 3131;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3132;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3133;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 3134;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 3135;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 3136;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 3137;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3138;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3139;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 3140;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3141;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3142;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 3143;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 3144;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 3145;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 3146;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3147;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3148;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 3149;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3150;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3151;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 3152;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 3153;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 3154;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 3155;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3156;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3157;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 3158;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3159;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3160;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 3161;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3162;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3163;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3164;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3165;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3166;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3167;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3168;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3169;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3170;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3171;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3172;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3173;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3174;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3175;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3176;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3177;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3178;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3179;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3180;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3181;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3182;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3183;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3184;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3185;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3186;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3187;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3188;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3189;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3190;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3191;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3192;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3193;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3194;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3195;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3196;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3197;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3198;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3199;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3200;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3201;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3202;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3203;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3204;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3205;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3206;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3207;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3208;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3209;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3210;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3211;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None): return 3212;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3213;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3214;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None): return 3215;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up): return 3216;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side): return 3217;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None): return 3218;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3219;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3220;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None): return 3221;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3222;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3223;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None): return 3224;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up): return 3225;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side): return 3226;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None): return 3227;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3228;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3229;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None): return 3230;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3231;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3232;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None): return 3233;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up): return 3234;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side): return 3235;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None): return 3236;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3237;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3238;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None): return 3239;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3240;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3241;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None): return 3242;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up): return 3243;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side): return 3244;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None): return 3245;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3246;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3247;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None): return 3248;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3249;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3250;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None): return 3251;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up): return 3252;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side): return 3253;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None): return 3254;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3255;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3256;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None): return 3257;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3258;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3259;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None): return 3260;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up): return 3261;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side): return 3262;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None): return 3263;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3264;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3265;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None): return 3266;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3267;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3268;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None): return 3269;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up): return 3270;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side): return 3271;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None): return 3272;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3273;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3274;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None): return 3275;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3276;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3277;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None): return 3278;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up): return 3279;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side): return 3280;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None): return 3281;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3282;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3283;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None): return 3284;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3285;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3286;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None): return 3287;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up): return 3288;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side): return 3289;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None): return 3290;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3291;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3292;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None): return 3293;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3294;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3295;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None): return 3296;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up): return 3297;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side): return 3298;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None): return 3299;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3300;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3301;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None): return 3302;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3303;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3304;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None): return 3305;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up): return 3306;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side): return 3307;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None): return 3308;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3309;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3310;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None): return 3311;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3312;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3313;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None): return 3314;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up): return 3315;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side): return 3316;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None): return 3317;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3318;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3319;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None): return 3320;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3321;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3322;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None): return 3323;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up): return 3324;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side): return 3325;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None): return 3326;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3327;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3328;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None): return 3329;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3330;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3331;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None): return 3332;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up): return 3333;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side): return 3334;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None): return 3335;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3336;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3337;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None): return 3338;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3339;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3340;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None): return 3341;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up): return 3342;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side): return 3343;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None): return 3344;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up): return 3345;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side): return 3346;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None): return 3347;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up): return 3348;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side): return 3349;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None): return 3350;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up): return 3351;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side): return 3352;
- case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None): return 3353;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, true): return 4031;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, false): return 4032;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, true): return 4033;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, false): return 4034;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, true): return 4035;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, false): return 4036;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, true): return 4037;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, false): return 4038;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, true): return 4039;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, false): return 4040;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, true): return 4041;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, false): return 4042;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, true): return 4043;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, false): return 4044;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, true): return 4045;
- case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, false): return 4046;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, true): return 4047;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, false): return 4048;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, true): return 4049;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, false): return 4050;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, true): return 4051;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, false): return 4052;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, true): return 4053;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, false): return 4054;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, true): return 4055;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, false): return 4056;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, true): return 4057;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, false): return 4058;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, true): return 4059;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, false): return 4060;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, true): return 4061;
- case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, false): return 4062;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, true): return 4063;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, false): return 4064;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, true): return 4065;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, false): return 4066;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, true): return 4067;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, false): return 4068;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, true): return 4069;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, false): return 4070;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, true): return 4071;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, false): return 4072;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, true): return 4073;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, false): return 4074;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, true): return 4075;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, false): return 4076;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, true): return 4077;
- case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, false): return 4078;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, true): return 4079;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, false): return 4080;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, true): return 4081;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, false): return 4082;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, true): return 4083;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, false): return 4084;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, true): return 4085;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, false): return 4086;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, true): return 4087;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, false): return 4088;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, true): return 4089;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, false): return 4090;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, true): return 4091;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, false): return 4092;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, true): return 4093;
- case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, false): return 4094;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZM): return 9225;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XP): return 9226;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZP): return 9227;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XM): return 9228;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YP): return 9229;
- case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YM): return 9230;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZM): return 9231;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XP): return 9232;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZP): return 9233;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XM): return 9234;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YP): return 9235;
- case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YM): return 9236;
- case RespawnAnchor::RespawnAnchor(0): return 15829;
- case RespawnAnchor::RespawnAnchor(1): return 15830;
- case RespawnAnchor::RespawnAnchor(2): return 15831;
- case RespawnAnchor::RespawnAnchor(3): return 15832;
- case RespawnAnchor::RespawnAnchor(4): return 15833;
- case RoseBush::RoseBush(RoseBush::Half::Upper): return 7889;
- case RoseBush::RoseBush(RoseBush::Half::Lower): return 7890;
- case Sand::Sand(): return 66;
- case Sandstone::Sandstone(): return 246;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Top): return 8349;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Bottom): return 8351;
- case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Double): return 8353;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5171;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5173;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5175;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5177;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5179;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5181;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5183;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5185;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5187;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5189;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5191;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5193;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5195;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5197;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5199;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5201;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5203;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5205;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5207;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5209;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5211;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5213;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5215;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5217;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5219;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5221;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5223;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5225;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5227;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5229;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight): return 5231;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft): return 5233;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight): return 5235;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft): return 5237;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight): return 5239;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight): return 5241;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft): return 5243;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight): return 5245;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft): return 5247;
- case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight): return 5249;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None): return 13786;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 13787;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 13788;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None): return 13792;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 13793;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 13794;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 13798;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 13799;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 13800;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 13804;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 13805;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 13806;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 13810;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 13811;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 13812;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 13816;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 13817;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 13818;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None): return 13822;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 13823;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 13824;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None): return 13828;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 13829;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 13830;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 13834;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 13835;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 13836;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 13840;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 13841;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 13842;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 13846;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 13847;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 13848;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 13852;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 13853;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 13854;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::None): return 13858;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 13859;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 13860;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::None): return 13864;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 13865;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 13866;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 13870;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 13871;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 13872;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 13876;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 13877;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 13878;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 13882;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 13883;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 13884;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 13888;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 13889;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 13890;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None): return 13894;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 13895;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 13896;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None): return 13900;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 13901;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 13902;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 13906;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 13907;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 13908;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 13912;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 13913;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 13914;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 13918;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 13919;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 13920;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 13924;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 13925;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 13926;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None): return 13930;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 13931;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 13932;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None): return 13936;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 13937;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 13938;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 13942;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 13943;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 13944;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 13948;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 13949;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 13950;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 13954;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 13955;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 13956;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 13960;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 13961;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 13962;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::None): return 13966;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 13967;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 13968;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::None): return 13972;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 13973;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 13974;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 13978;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 13979;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 13980;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 13984;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 13985;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 13986;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 13990;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 13991;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 13992;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 13996;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 13997;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 13998;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None): return 14002;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 14003;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 14004;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None): return 14008;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 14009;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 14010;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 14014;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 14015;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 14016;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 14020;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 14021;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 14022;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 14026;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 14027;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 14028;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 14032;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 14033;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 14034;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None): return 14038;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 14039;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 14040;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None): return 14044;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 14045;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 14046;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 14050;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 14051;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 14052;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 14056;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 14057;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 14058;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 14062;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 14063;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 14064;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 14068;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 14069;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 14070;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::None): return 14074;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Low): return 14075;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Tall): return 14076;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::None): return 14080;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Low): return 14081;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Tall): return 14082;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::None): return 14086;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Low): return 14087;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Tall): return 14088;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::None): return 14092;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Low): return 14093;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Tall): return 14094;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::None): return 14098;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Low): return 14099;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall): return 14100;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::None): return 14104;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Low): return 14105;
- case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall): return 14106;
- case Scaffolding::Scaffolding(true, 0): return 14756;
- case Scaffolding::Scaffolding(true, 1): return 14758;
- case Scaffolding::Scaffolding(true, 2): return 14760;
- case Scaffolding::Scaffolding(true, 3): return 14762;
- case Scaffolding::Scaffolding(true, 4): return 14764;
- case Scaffolding::Scaffolding(true, 5): return 14766;
- case Scaffolding::Scaffolding(true, 6): return 14768;
- case Scaffolding::Scaffolding(true, 7): return 14770;
- case Scaffolding::Scaffolding(false, 0): return 14772;
- case Scaffolding::Scaffolding(false, 1): return 14774;
- case Scaffolding::Scaffolding(false, 2): return 14776;
- case Scaffolding::Scaffolding(false, 3): return 14778;
- case Scaffolding::Scaffolding(false, 4): return 14780;
- case Scaffolding::Scaffolding(false, 5): return 14782;
- case Scaffolding::Scaffolding(false, 6): return 14784;
- case Scaffolding::Scaffolding(false, 7): return 14786;
- case SeaLantern::SeaLantern(): return 7862;
- case SeaPickle::SeaPickle(1): return 9641;
- case SeaPickle::SeaPickle(2): return 9643;
- case SeaPickle::SeaPickle(3): return 9645;
- case SeaPickle::SeaPickle(4): return 9647;
- case Seagrass::Seagrass(): return 1345;
- case Shroomlight::Shroomlight(): return 14989;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9272;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9273;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9274;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9275;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9276;
- case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9277;
- case SkeletonSkull::SkeletonSkull(0): return 6490;
- case SkeletonSkull::SkeletonSkull(1): return 6491;
- case SkeletonSkull::SkeletonSkull(2): return 6492;
- case SkeletonSkull::SkeletonSkull(3): return 6493;
- case SkeletonSkull::SkeletonSkull(4): return 6494;
- case SkeletonSkull::SkeletonSkull(5): return 6495;
- case SkeletonSkull::SkeletonSkull(6): return 6496;
- case SkeletonSkull::SkeletonSkull(7): return 6497;
- case SkeletonSkull::SkeletonSkull(8): return 6498;
- case SkeletonSkull::SkeletonSkull(9): return 6499;
- case SkeletonSkull::SkeletonSkull(10): return 6500;
- case SkeletonSkull::SkeletonSkull(11): return 6501;
- case SkeletonSkull::SkeletonSkull(12): return 6502;
- case SkeletonSkull::SkeletonSkull(13): return 6503;
- case SkeletonSkull::SkeletonSkull(14): return 6504;
- case SkeletonSkull::SkeletonSkull(15): return 6505;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 6506;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 6507;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 6508;
- case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 6509;
- case SlimeBlock::SlimeBlock(): return 7535;
- case SmithingTable::SmithingTable(): return 14849;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, true): return 14803;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, false): return 14804;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, true): return 14805;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, false): return 14806;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, true): return 14807;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, false): return 14808;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, true): return 14809;
- case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, false): return 14810;
- case SmoothQuartz::SmoothQuartz(): return 8416;
- case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Top): return 10832;
- case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Bottom): return 10834;
- case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Double): return 10836;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 10310;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 10312;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 10314;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 10316;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 10318;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 10320;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 10322;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 10324;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 10326;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 10328;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 10330;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 10332;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 10334;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 10336;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 10338;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 10340;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 10342;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 10344;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 10346;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 10348;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 10350;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 10352;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 10354;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 10356;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 10358;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 10360;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 10362;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 10364;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 10366;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 10368;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight): return 10370;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft): return 10372;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight): return 10374;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft): return 10376;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight): return 10378;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight): return 10380;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft): return 10382;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight): return 10384;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft): return 10386;
- case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight): return 10388;
- case SmoothRedSandstone::SmoothRedSandstone(): return 8417;
- case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Top): return 10796;
- case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Bottom): return 10798;
- case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Double): return 10800;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9750;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9752;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9754;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9756;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9758;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9760;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9762;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9764;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9766;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9768;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9770;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9772;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9774;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9776;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9778;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9780;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9782;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9784;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9786;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9788;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9790;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9792;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9794;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9796;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9798;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9800;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9802;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9804;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9806;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9808;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight): return 9810;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9812;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight): return 9814;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9816;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight): return 9818;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight): return 9820;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft): return 9822;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight): return 9824;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft): return 9826;
- case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight): return 9828;
- case SmoothSandstone::SmoothSandstone(): return 8415;
- case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Top): return 10826;
- case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Bottom): return 10828;
- case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Double): return 10830;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 10230;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 10232;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 10234;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 10236;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 10238;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 10240;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 10242;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 10244;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 10246;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 10248;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 10250;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 10252;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 10254;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 10256;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 10258;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 10260;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 10262;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 10264;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 10266;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 10268;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 10270;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 10272;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 10274;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 10276;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 10278;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 10280;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 10282;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 10284;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 10286;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 10288;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight): return 10290;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft): return 10292;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight): return 10294;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft): return 10296;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight): return 10298;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight): return 10300;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft): return 10302;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight): return 10304;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft): return 10306;
- case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight): return 10308;
- case SmoothStone::SmoothStone(): return 8414;
- case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Top): return 8343;
- case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Bottom): return 8345;
- case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Double): return 8347;
- case Snow::Snow(1): return 3921;
- case Snow::Snow(2): return 3922;
- case Snow::Snow(3): return 3923;
- case Snow::Snow(4): return 3924;
- case Snow::Snow(5): return 3925;
- case Snow::Snow(6): return 3926;
- case Snow::Snow(7): return 3927;
- case Snow::Snow(8): return 3928;
- case SnowBlock::SnowBlock(): return 3930;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZM, true, true): return 14923;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZM, true, false): return 14925;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZM, false, true): return 14927;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZM, false, false): return 14929;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZP, true, true): return 14931;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZP, true, false): return 14933;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZP, false, true): return 14935;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZP, false, false): return 14937;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XM, true, true): return 14939;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XM, true, false): return 14941;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XM, false, true): return 14943;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XM, false, false): return 14945;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XP, true, true): return 14947;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XP, true, false): return 14949;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XP, false, true): return 14951;
- case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XP, false, false): return 14953;
- case SoulFire::SoulFire(): return 1952;
- case SoulLantern::SoulLantern(true): return 14888;
- case SoulLantern::SoulLantern(false): return 14889;
- case SoulSand::SoulSand(): return 4000;
- case SoulSoil::SoulSoil(): return 4001;
- case SoulTorch::SoulTorch(): return 4008;
- case SoulWallTorch::SoulWallTorch(eBlockFace::BLOCK_FACE_ZM): return 4009;
- case SoulWallTorch::SoulWallTorch(eBlockFace::BLOCK_FACE_ZP): return 4010;
- case SoulWallTorch::SoulWallTorch(eBlockFace::BLOCK_FACE_XM): return 4011;
- case SoulWallTorch::SoulWallTorch(eBlockFace::BLOCK_FACE_XP): return 4012;
- case Spawner::Spawner(): return 1953;
- case Sponge::Sponge(): return 229;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 6370;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 6371;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 6372;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 6373;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 6374;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 6375;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 6376;
- case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 6377;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 6378;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 6379;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 6380;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 6381;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 6382;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 6383;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 6384;
- case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 6385;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 6386;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 6387;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 6388;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 6389;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 6390;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 6391;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 6392;
- case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 6393;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8738;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8739;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8740;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8741;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8742;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8743;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8744;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8745;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8746;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8747;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8748;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8749;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8750;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8751;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8752;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8753;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8754;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8755;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8756;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8757;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8758;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8759;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8760;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8761;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8762;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8763;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8764;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8765;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8766;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8767;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8768;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8769;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8770;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8771;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8772;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8773;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8774;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8775;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8776;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8777;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8778;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8779;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8780;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8781;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8782;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8783;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8784;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8785;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true): return 8786;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false): return 8787;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true): return 8788;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false): return 8789;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true): return 8790;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false): return 8791;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true): return 8792;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false): return 8793;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true): return 8794;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false): return 8795;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true): return 8796;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false): return 8797;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true): return 8798;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false): return 8799;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true): return 8800;
- case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false): return 8801;
- case SpruceFence::SpruceFence(true, true, true, true): return 8580;
- case SpruceFence::SpruceFence(true, true, true, false): return 8581;
- case SpruceFence::SpruceFence(true, true, false, true): return 8584;
- case SpruceFence::SpruceFence(true, true, false, false): return 8585;
- case SpruceFence::SpruceFence(true, false, true, true): return 8588;
- case SpruceFence::SpruceFence(true, false, true, false): return 8589;
- case SpruceFence::SpruceFence(true, false, false, true): return 8592;
- case SpruceFence::SpruceFence(true, false, false, false): return 8593;
- case SpruceFence::SpruceFence(false, true, true, true): return 8596;
- case SpruceFence::SpruceFence(false, true, true, false): return 8597;
- case SpruceFence::SpruceFence(false, true, false, true): return 8600;
- case SpruceFence::SpruceFence(false, true, false, false): return 8601;
- case SpruceFence::SpruceFence(false, false, true, true): return 8604;
- case SpruceFence::SpruceFence(false, false, true, false): return 8605;
- case SpruceFence::SpruceFence(false, false, false, true): return 8608;
- case SpruceFence::SpruceFence(false, false, false, false): return 8609;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 8418;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 8419;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 8420;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 8421;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 8422;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 8423;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 8424;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 8425;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 8426;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 8427;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 8428;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 8429;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 8430;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 8431;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 8432;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 8433;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 8434;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 8435;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 8436;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 8437;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 8438;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 8439;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 8440;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 8441;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 8442;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 8443;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 8444;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 8445;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 8446;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 8447;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 8448;
- case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 8449;
- case SpruceLeaves::SpruceLeaves(1, true): return 159;
- case SpruceLeaves::SpruceLeaves(1, false): return 160;
- case SpruceLeaves::SpruceLeaves(2, true): return 161;
- case SpruceLeaves::SpruceLeaves(2, false): return 162;
- case SpruceLeaves::SpruceLeaves(3, true): return 163;
- case SpruceLeaves::SpruceLeaves(3, false): return 164;
- case SpruceLeaves::SpruceLeaves(4, true): return 165;
- case SpruceLeaves::SpruceLeaves(4, false): return 166;
- case SpruceLeaves::SpruceLeaves(5, true): return 167;
- case SpruceLeaves::SpruceLeaves(5, false): return 168;
- case SpruceLeaves::SpruceLeaves(6, true): return 169;
- case SpruceLeaves::SpruceLeaves(6, false): return 170;
- case SpruceLeaves::SpruceLeaves(7, true): return 171;
- case SpruceLeaves::SpruceLeaves(7, false): return 172;
- case SpruceLog::SpruceLog(SpruceLog::Axis::X): return 76;
- case SpruceLog::SpruceLog(SpruceLog::Axis::Y): return 77;
- case SpruceLog::SpruceLog(SpruceLog::Axis::Z): return 78;
- case SprucePlanks::SprucePlanks(): return 16;
- case SprucePressurePlate::SprucePressurePlate(true): return 3875;
- case SprucePressurePlate::SprucePressurePlate(false): return 3876;
- case SpruceSapling::SpruceSapling(0): return 23;
- case SpruceSapling::SpruceSapling(1): return 24;
- case SpruceSign::SpruceSign(0): return 3414;
- case SpruceSign::SpruceSign(1): return 3416;
- case SpruceSign::SpruceSign(2): return 3418;
- case SpruceSign::SpruceSign(3): return 3420;
- case SpruceSign::SpruceSign(4): return 3422;
- case SpruceSign::SpruceSign(5): return 3424;
- case SpruceSign::SpruceSign(6): return 3426;
- case SpruceSign::SpruceSign(7): return 3428;
- case SpruceSign::SpruceSign(8): return 3430;
- case SpruceSign::SpruceSign(9): return 3432;
- case SpruceSign::SpruceSign(10): return 3434;
- case SpruceSign::SpruceSign(11): return 3436;
- case SpruceSign::SpruceSign(12): return 3438;
- case SpruceSign::SpruceSign(13): return 3440;
- case SpruceSign::SpruceSign(14): return 3442;
- case SpruceSign::SpruceSign(15): return 3444;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Top): return 8307;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Bottom): return 8309;
- case SpruceSlab::SpruceSlab(SpruceSlab::Type::Double): return 8311;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5405;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5407;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5409;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5411;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5413;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5415;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5417;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5419;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5421;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5423;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5425;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5427;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5429;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5431;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5433;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5435;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5437;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5439;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5441;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5443;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5445;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5447;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5449;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5451;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5453;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5455;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5457;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5459;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5461;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5463;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight): return 5465;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft): return 5467;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight): return 5469;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft): return 5471;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight): return 5473;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight): return 5475;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft): return 5477;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight): return 5479;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft): return 5481;
- case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight): return 5483;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, true): return 4176;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, false): return 4178;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, true): return 4180;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, false): return 4182;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, true): return 4184;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, false): return 4186;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, true): return 4188;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, false): return 4190;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, true): return 4192;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, false): return 4194;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, true): return 4196;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, false): return 4198;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, true): return 4200;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, false): return 4202;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, true): return 4204;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, false): return 4206;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, true): return 4208;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, false): return 4210;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, true): return 4212;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, false): return 4214;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, true): return 4216;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, false): return 4218;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, true): return 4220;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, false): return 4222;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, true): return 4224;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, false): return 4226;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, true): return 4228;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, false): return 4230;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, true): return 4232;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, false): return 4234;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, true): return 4236;
- case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, false): return 4238;
- case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZM): return 3744;
- case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZP): return 3746;
- case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XM): return 3748;
- case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XP): return 3750;
- case SpruceWood::SpruceWood(SpruceWood::Axis::X): return 112;
- case SpruceWood::SpruceWood(SpruceWood::Axis::Y): return 113;
- case SpruceWood::SpruceWood(SpruceWood::Axis::Z): return 114;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZM): return 1329;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XP): return 1330;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZP): return 1331;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XM): return 1332;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YP): return 1333;
- case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YM): return 1334;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZM): return 1335;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XP): return 1336;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZP): return 1337;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XM): return 1338;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YP): return 1339;
- case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YM): return 1340;
- case Stone::Stone(): return 1;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Top): return 8379;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Bottom): return 8381;
- case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double): return 8383;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4933;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4935;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4937;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4939;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4941;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4943;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4945;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4947;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4949;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4951;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4953;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4955;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4957;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4959;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4961;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4963;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4965;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4967;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4969;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4971;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4973;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4975;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4977;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4979;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 4981;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 4983;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 4985;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 4987;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 4989;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 4991;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight): return 4993;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft): return 4995;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight): return 4997;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft): return 4999;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight): return 5001;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight): return 5003;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft): return 5005;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight): return 5007;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft): return 5009;
- case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight): return 5011;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12490;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12491;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12492;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12496;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12497;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12498;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12502;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12503;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12504;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12508;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12509;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12510;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12514;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12515;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12516;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12520;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12521;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12522;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12526;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12527;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12528;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12532;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12533;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12534;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12538;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12539;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12540;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12544;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12545;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12546;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12550;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12551;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12552;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12556;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12557;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12558;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12562;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12563;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12564;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12568;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12569;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12570;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12574;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12575;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12576;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12580;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12581;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12582;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12586;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12587;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12588;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12592;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12593;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12594;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12598;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12599;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12600;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12604;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12605;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12606;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12610;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12611;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12612;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12616;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12617;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12618;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12622;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12623;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12624;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12628;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12629;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12630;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12634;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12635;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12636;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12640;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12641;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12642;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12646;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12647;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12648;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12652;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12653;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12654;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12658;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12659;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12660;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12664;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12665;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12666;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12670;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12671;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12672;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12676;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12677;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12678;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12682;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12683;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12684;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12688;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12689;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12690;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12694;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12695;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12696;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12700;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12701;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12702;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12706;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12707;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12708;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12712;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12713;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12714;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12718;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12719;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12720;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12724;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12725;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12726;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12730;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12731;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12732;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12736;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12737;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12738;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12742;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12743;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12744;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12748;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12749;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12750;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12754;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12755;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12756;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12760;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12761;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12762;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12766;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12767;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12768;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12772;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12773;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12774;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::None): return 12778;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Low): return 12779;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall): return 12780;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::None): return 12784;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Low): return 12785;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall): return 12786;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::None): return 12790;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low): return 12791;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall): return 12792;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::None): return 12796;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low): return 12797;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall): return 12798;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None): return 12802;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low): return 12803;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall): return 12804;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None): return 12808;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low): return 12809;
- case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall): return 12810;
- case StoneBricks::StoneBricks(): return 4495;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 3897;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 3898;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 3899;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 3900;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 3901;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 3902;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 3903;
- case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 3904;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 3905;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 3906;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 3907;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 3908;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 3909;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 3910;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 3911;
- case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 3912;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 3913;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 3914;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 3915;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 3916;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 3917;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 3918;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 3919;
- case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 3920;
- case StonePressurePlate::StonePressurePlate(true): return 3807;
- case StonePressurePlate::StonePressurePlate(false): return 3808;
- case StoneSlab::StoneSlab(StoneSlab::Type::Top): return 8337;
- case StoneSlab::StoneSlab(StoneSlab::Type::Bottom): return 8339;
- case StoneSlab::StoneSlab(StoneSlab::Type::Double): return 8341;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 10150;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 10152;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 10154;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 10156;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 10158;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 10160;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 10162;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 10164;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 10166;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 10168;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 10170;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 10172;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 10174;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 10176;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 10178;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 10180;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 10182;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 10184;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 10186;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 10188;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 10190;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 10192;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 10194;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 10196;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 10198;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 10200;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 10202;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 10204;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 10206;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 10208;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::Straight): return 10210;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft): return 10212;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight): return 10214;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft): return 10216;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight): return 10218;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight): return 10220;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft): return 10222;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight): return 10224;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft): return 10226;
- case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight): return 10228;
- case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZM): return 14850;
- case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZP): return 14851;
- case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XM): return 14852;
- case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XP): return 14853;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::X): return 100;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Y): return 101;
- case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Z): return 102;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::X): return 139;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Y): return 140;
- case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Z): return 141;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::X): return 94;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Y): return 95;
- case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Z): return 96;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::X): return 133;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Y): return 134;
- case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Z): return 135;
- case StrippedCrimsonHyphae::StrippedCrimsonHyphae(StrippedCrimsonHyphae::Axis::X): return 14984;
- case StrippedCrimsonHyphae::StrippedCrimsonHyphae(StrippedCrimsonHyphae::Axis::Y): return 14985;
- case StrippedCrimsonHyphae::StrippedCrimsonHyphae(StrippedCrimsonHyphae::Axis::Z): return 14986;
- case StrippedCrimsonStem::StrippedCrimsonStem(StrippedCrimsonStem::Axis::X): return 14978;
- case StrippedCrimsonStem::StrippedCrimsonStem(StrippedCrimsonStem::Axis::Y): return 14979;
- case StrippedCrimsonStem::StrippedCrimsonStem(StrippedCrimsonStem::Axis::Z): return 14980;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::X): return 103;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Y): return 104;
- case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Z): return 105;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::X): return 142;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Y): return 143;
- case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Z): return 144;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::X): return 97;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Y): return 98;
- case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Z): return 99;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::X): return 136;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Y): return 137;
- case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Z): return 138;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::X): return 106;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Y): return 107;
- case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Z): return 108;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::X): return 127;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Y): return 128;
- case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Z): return 129;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::X): return 91;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Y): return 92;
- case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Z): return 93;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::X): return 130;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Y): return 131;
- case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Z): return 132;
- case StrippedWarpedHyphae::StrippedWarpedHyphae(StrippedWarpedHyphae::Axis::X): return 14967;
- case StrippedWarpedHyphae::StrippedWarpedHyphae(StrippedWarpedHyphae::Axis::Y): return 14968;
- case StrippedWarpedHyphae::StrippedWarpedHyphae(StrippedWarpedHyphae::Axis::Z): return 14969;
- case StrippedWarpedStem::StrippedWarpedStem(StrippedWarpedStem::Axis::X): return 14961;
- case StrippedWarpedStem::StrippedWarpedStem(StrippedWarpedStem::Axis::Y): return 14962;
- case StrippedWarpedStem::StrippedWarpedStem(StrippedWarpedStem::Axis::Z): return 14963;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Save): return 15735;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Load): return 15736;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Corner): return 15737;
- case StructureBlock::StructureBlock(StructureBlock::Mode::Data): return 15738;
- case StructureVoid::StructureVoid(): return 9259;
- case SugarCane::SugarCane(0): return 3948;
- case SugarCane::SugarCane(1): return 3949;
- case SugarCane::SugarCane(2): return 3950;
- case SugarCane::SugarCane(3): return 3951;
- case SugarCane::SugarCane(4): return 3952;
- case SugarCane::SugarCane(5): return 3953;
- case SugarCane::SugarCane(6): return 3954;
- case SugarCane::SugarCane(7): return 3955;
- case SugarCane::SugarCane(8): return 3956;
- case SugarCane::SugarCane(9): return 3957;
- case SugarCane::SugarCane(10): return 3958;
- case SugarCane::SugarCane(11): return 3959;
- case SugarCane::SugarCane(12): return 3960;
- case SugarCane::SugarCane(13): return 3961;
- case SugarCane::SugarCane(14): return 3962;
- case SugarCane::SugarCane(15): return 3963;
- case Sunflower::Sunflower(Sunflower::Half::Upper): return 7885;
- case Sunflower::Sunflower(Sunflower::Half::Lower): return 7886;
- case SweetBerryBush::SweetBerryBush(0): return 14954;
- case SweetBerryBush::SweetBerryBush(1): return 14955;
- case SweetBerryBush::SweetBerryBush(2): return 14956;
- case SweetBerryBush::SweetBerryBush(3): return 14957;
- case TNT::TNT(true): return 1430;
- case TNT::TNT(false): return 1431;
- case TallGrass::TallGrass(TallGrass::Half::Upper): return 7893;
- case TallGrass::TallGrass(TallGrass::Half::Lower): return 7894;
- case TallSeagrass::TallSeagrass(TallSeagrass::Half::Upper): return 1346;
- case TallSeagrass::TallSeagrass(TallSeagrass::Half::Lower): return 1347;
- case Target::Target(0): return 15760;
- case Target::Target(1): return 15761;
- case Target::Target(2): return 15762;
- case Target::Target(3): return 15763;
- case Target::Target(4): return 15764;
- case Target::Target(5): return 15765;
- case Target::Target(6): return 15766;
- case Target::Target(7): return 15767;
- case Target::Target(8): return 15768;
- case Target::Target(9): return 15769;
- case Target::Target(10): return 15770;
- case Target::Target(11): return 15771;
- case Target::Target(12): return 15772;
- case Target::Target(13): return 15773;
- case Target::Target(14): return 15774;
- case Target::Target(15): return 15775;
- case Terracotta::Terracotta(): return 7882;
- case Torch::Torch(): return 1435;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Single): return 6623;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Left): return 6625;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Right): return 6627;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Single): return 6629;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Left): return 6631;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Right): return 6633;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Single): return 6635;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Left): return 6637;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Right): return 6639;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Single): return 6641;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Left): return 6643;
- case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Right): return 6645;
- case Tripwire::Tripwire(true, true, true, true, true, true, true): return 5275;
- case Tripwire::Tripwire(true, true, true, true, true, true, false): return 5276;
- case Tripwire::Tripwire(true, true, true, true, true, false, true): return 5277;
- case Tripwire::Tripwire(true, true, true, true, true, false, false): return 5278;
- case Tripwire::Tripwire(true, true, true, true, false, true, true): return 5279;
- case Tripwire::Tripwire(true, true, true, true, false, true, false): return 5280;
- case Tripwire::Tripwire(true, true, true, true, false, false, true): return 5281;
- case Tripwire::Tripwire(true, true, true, true, false, false, false): return 5282;
- case Tripwire::Tripwire(true, true, true, false, true, true, true): return 5283;
- case Tripwire::Tripwire(true, true, true, false, true, true, false): return 5284;
- case Tripwire::Tripwire(true, true, true, false, true, false, true): return 5285;
- case Tripwire::Tripwire(true, true, true, false, true, false, false): return 5286;
- case Tripwire::Tripwire(true, true, true, false, false, true, true): return 5287;
- case Tripwire::Tripwire(true, true, true, false, false, true, false): return 5288;
- case Tripwire::Tripwire(true, true, true, false, false, false, true): return 5289;
- case Tripwire::Tripwire(true, true, true, false, false, false, false): return 5290;
- case Tripwire::Tripwire(true, true, false, true, true, true, true): return 5291;
- case Tripwire::Tripwire(true, true, false, true, true, true, false): return 5292;
- case Tripwire::Tripwire(true, true, false, true, true, false, true): return 5293;
- case Tripwire::Tripwire(true, true, false, true, true, false, false): return 5294;
- case Tripwire::Tripwire(true, true, false, true, false, true, true): return 5295;
- case Tripwire::Tripwire(true, true, false, true, false, true, false): return 5296;
- case Tripwire::Tripwire(true, true, false, true, false, false, true): return 5297;
- case Tripwire::Tripwire(true, true, false, true, false, false, false): return 5298;
- case Tripwire::Tripwire(true, true, false, false, true, true, true): return 5299;
- case Tripwire::Tripwire(true, true, false, false, true, true, false): return 5300;
- case Tripwire::Tripwire(true, true, false, false, true, false, true): return 5301;
- case Tripwire::Tripwire(true, true, false, false, true, false, false): return 5302;
- case Tripwire::Tripwire(true, true, false, false, false, true, true): return 5303;
- case Tripwire::Tripwire(true, true, false, false, false, true, false): return 5304;
- case Tripwire::Tripwire(true, true, false, false, false, false, true): return 5305;
- case Tripwire::Tripwire(true, true, false, false, false, false, false): return 5306;
- case Tripwire::Tripwire(true, false, true, true, true, true, true): return 5307;
- case Tripwire::Tripwire(true, false, true, true, true, true, false): return 5308;
- case Tripwire::Tripwire(true, false, true, true, true, false, true): return 5309;
- case Tripwire::Tripwire(true, false, true, true, true, false, false): return 5310;
- case Tripwire::Tripwire(true, false, true, true, false, true, true): return 5311;
- case Tripwire::Tripwire(true, false, true, true, false, true, false): return 5312;
- case Tripwire::Tripwire(true, false, true, true, false, false, true): return 5313;
- case Tripwire::Tripwire(true, false, true, true, false, false, false): return 5314;
- case Tripwire::Tripwire(true, false, true, false, true, true, true): return 5315;
- case Tripwire::Tripwire(true, false, true, false, true, true, false): return 5316;
- case Tripwire::Tripwire(true, false, true, false, true, false, true): return 5317;
- case Tripwire::Tripwire(true, false, true, false, true, false, false): return 5318;
- case Tripwire::Tripwire(true, false, true, false, false, true, true): return 5319;
- case Tripwire::Tripwire(true, false, true, false, false, true, false): return 5320;
- case Tripwire::Tripwire(true, false, true, false, false, false, true): return 5321;
- case Tripwire::Tripwire(true, false, true, false, false, false, false): return 5322;
- case Tripwire::Tripwire(true, false, false, true, true, true, true): return 5323;
- case Tripwire::Tripwire(true, false, false, true, true, true, false): return 5324;
- case Tripwire::Tripwire(true, false, false, true, true, false, true): return 5325;
- case Tripwire::Tripwire(true, false, false, true, true, false, false): return 5326;
- case Tripwire::Tripwire(true, false, false, true, false, true, true): return 5327;
- case Tripwire::Tripwire(true, false, false, true, false, true, false): return 5328;
- case Tripwire::Tripwire(true, false, false, true, false, false, true): return 5329;
- case Tripwire::Tripwire(true, false, false, true, false, false, false): return 5330;
- case Tripwire::Tripwire(true, false, false, false, true, true, true): return 5331;
- case Tripwire::Tripwire(true, false, false, false, true, true, false): return 5332;
- case Tripwire::Tripwire(true, false, false, false, true, false, true): return 5333;
- case Tripwire::Tripwire(true, false, false, false, true, false, false): return 5334;
- case Tripwire::Tripwire(true, false, false, false, false, true, true): return 5335;
- case Tripwire::Tripwire(true, false, false, false, false, true, false): return 5336;
- case Tripwire::Tripwire(true, false, false, false, false, false, true): return 5337;
- case Tripwire::Tripwire(true, false, false, false, false, false, false): return 5338;
- case Tripwire::Tripwire(false, true, true, true, true, true, true): return 5339;
- case Tripwire::Tripwire(false, true, true, true, true, true, false): return 5340;
- case Tripwire::Tripwire(false, true, true, true, true, false, true): return 5341;
- case Tripwire::Tripwire(false, true, true, true, true, false, false): return 5342;
- case Tripwire::Tripwire(false, true, true, true, false, true, true): return 5343;
- case Tripwire::Tripwire(false, true, true, true, false, true, false): return 5344;
- case Tripwire::Tripwire(false, true, true, true, false, false, true): return 5345;
- case Tripwire::Tripwire(false, true, true, true, false, false, false): return 5346;
- case Tripwire::Tripwire(false, true, true, false, true, true, true): return 5347;
- case Tripwire::Tripwire(false, true, true, false, true, true, false): return 5348;
- case Tripwire::Tripwire(false, true, true, false, true, false, true): return 5349;
- case Tripwire::Tripwire(false, true, true, false, true, false, false): return 5350;
- case Tripwire::Tripwire(false, true, true, false, false, true, true): return 5351;
- case Tripwire::Tripwire(false, true, true, false, false, true, false): return 5352;
- case Tripwire::Tripwire(false, true, true, false, false, false, true): return 5353;
- case Tripwire::Tripwire(false, true, true, false, false, false, false): return 5354;
- case Tripwire::Tripwire(false, true, false, true, true, true, true): return 5355;
- case Tripwire::Tripwire(false, true, false, true, true, true, false): return 5356;
- case Tripwire::Tripwire(false, true, false, true, true, false, true): return 5357;
- case Tripwire::Tripwire(false, true, false, true, true, false, false): return 5358;
- case Tripwire::Tripwire(false, true, false, true, false, true, true): return 5359;
- case Tripwire::Tripwire(false, true, false, true, false, true, false): return 5360;
- case Tripwire::Tripwire(false, true, false, true, false, false, true): return 5361;
- case Tripwire::Tripwire(false, true, false, true, false, false, false): return 5362;
- case Tripwire::Tripwire(false, true, false, false, true, true, true): return 5363;
- case Tripwire::Tripwire(false, true, false, false, true, true, false): return 5364;
- case Tripwire::Tripwire(false, true, false, false, true, false, true): return 5365;
- case Tripwire::Tripwire(false, true, false, false, true, false, false): return 5366;
- case Tripwire::Tripwire(false, true, false, false, false, true, true): return 5367;
- case Tripwire::Tripwire(false, true, false, false, false, true, false): return 5368;
- case Tripwire::Tripwire(false, true, false, false, false, false, true): return 5369;
- case Tripwire::Tripwire(false, true, false, false, false, false, false): return 5370;
- case Tripwire::Tripwire(false, false, true, true, true, true, true): return 5371;
- case Tripwire::Tripwire(false, false, true, true, true, true, false): return 5372;
- case Tripwire::Tripwire(false, false, true, true, true, false, true): return 5373;
- case Tripwire::Tripwire(false, false, true, true, true, false, false): return 5374;
- case Tripwire::Tripwire(false, false, true, true, false, true, true): return 5375;
- case Tripwire::Tripwire(false, false, true, true, false, true, false): return 5376;
- case Tripwire::Tripwire(false, false, true, true, false, false, true): return 5377;
- case Tripwire::Tripwire(false, false, true, true, false, false, false): return 5378;
- case Tripwire::Tripwire(false, false, true, false, true, true, true): return 5379;
- case Tripwire::Tripwire(false, false, true, false, true, true, false): return 5380;
- case Tripwire::Tripwire(false, false, true, false, true, false, true): return 5381;
- case Tripwire::Tripwire(false, false, true, false, true, false, false): return 5382;
- case Tripwire::Tripwire(false, false, true, false, false, true, true): return 5383;
- case Tripwire::Tripwire(false, false, true, false, false, true, false): return 5384;
- case Tripwire::Tripwire(false, false, true, false, false, false, true): return 5385;
- case Tripwire::Tripwire(false, false, true, false, false, false, false): return 5386;
- case Tripwire::Tripwire(false, false, false, true, true, true, true): return 5387;
- case Tripwire::Tripwire(false, false, false, true, true, true, false): return 5388;
- case Tripwire::Tripwire(false, false, false, true, true, false, true): return 5389;
- case Tripwire::Tripwire(false, false, false, true, true, false, false): return 5390;
- case Tripwire::Tripwire(false, false, false, true, false, true, true): return 5391;
- case Tripwire::Tripwire(false, false, false, true, false, true, false): return 5392;
- case Tripwire::Tripwire(false, false, false, true, false, false, true): return 5393;
- case Tripwire::Tripwire(false, false, false, true, false, false, false): return 5394;
- case Tripwire::Tripwire(false, false, false, false, true, true, true): return 5395;
- case Tripwire::Tripwire(false, false, false, false, true, true, false): return 5396;
- case Tripwire::Tripwire(false, false, false, false, true, false, true): return 5397;
- case Tripwire::Tripwire(false, false, false, false, true, false, false): return 5398;
- case Tripwire::Tripwire(false, false, false, false, false, true, true): return 5399;
- case Tripwire::Tripwire(false, false, false, false, false, true, false): return 5400;
- case Tripwire::Tripwire(false, false, false, false, false, false, true): return 5401;
- case Tripwire::Tripwire(false, false, false, false, false, false, false): return 5402;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, true): return 5259;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, false): return 5260;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, true): return 5261;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, false): return 5262;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, true): return 5263;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, false): return 5264;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, true): return 5265;
- case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, false): return 5266;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, true): return 5267;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, false): return 5268;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, true): return 5269;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, false): return 5270;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, true): return 5271;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, false): return 5272;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, true): return 5273;
- case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, false): return 5274;
- case TubeCoral::TubeCoral(): return 9531;
- case TubeCoralBlock::TubeCoralBlock(): return 9515;
- case TubeCoralFan::TubeCoralFan(): return 9551;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM): return 9601;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP): return 9603;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XM): return 9605;
- case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XP): return 9607;
- case TurtleEgg::TurtleEgg(1, 0): return 9498;
- case TurtleEgg::TurtleEgg(1, 1): return 9499;
- case TurtleEgg::TurtleEgg(1, 2): return 9500;
- case TurtleEgg::TurtleEgg(2, 0): return 9501;
- case TurtleEgg::TurtleEgg(2, 1): return 9502;
- case TurtleEgg::TurtleEgg(2, 2): return 9503;
- case TurtleEgg::TurtleEgg(3, 0): return 9504;
- case TurtleEgg::TurtleEgg(3, 1): return 9505;
- case TurtleEgg::TurtleEgg(3, 2): return 9506;
- case TurtleEgg::TurtleEgg(4, 0): return 9507;
- case TurtleEgg::TurtleEgg(4, 1): return 9508;
- case TurtleEgg::TurtleEgg(4, 2): return 9509;
- case TwistingVines::TwistingVines(0): return 15017;
- case TwistingVines::TwistingVines(1): return 15018;
- case TwistingVines::TwistingVines(2): return 15019;
- case TwistingVines::TwistingVines(3): return 15020;
- case TwistingVines::TwistingVines(4): return 15021;
- case TwistingVines::TwistingVines(5): return 15022;
- case TwistingVines::TwistingVines(6): return 15023;
- case TwistingVines::TwistingVines(7): return 15024;
- case TwistingVines::TwistingVines(8): return 15025;
- case TwistingVines::TwistingVines(9): return 15026;
- case TwistingVines::TwistingVines(10): return 15027;
- case TwistingVines::TwistingVines(11): return 15028;
- case TwistingVines::TwistingVines(12): return 15029;
- case TwistingVines::TwistingVines(13): return 15030;
- case TwistingVines::TwistingVines(14): return 15031;
- case TwistingVines::TwistingVines(15): return 15032;
- case TwistingVines::TwistingVines(16): return 15033;
- case TwistingVines::TwistingVines(17): return 15034;
- case TwistingVines::TwistingVines(18): return 15035;
- case TwistingVines::TwistingVines(19): return 15036;
- case TwistingVines::TwistingVines(20): return 15037;
- case TwistingVines::TwistingVines(21): return 15038;
- case TwistingVines::TwistingVines(22): return 15039;
- case TwistingVines::TwistingVines(23): return 15040;
- case TwistingVines::TwistingVines(24): return 15041;
- case TwistingVines::TwistingVines(25): return 15042;
- case TwistingVinesPlant::TwistingVinesPlant(): return 15043;
- case Vine::Vine(true, true, true, true, true): return 4788;
- case Vine::Vine(true, true, true, true, false): return 4789;
- case Vine::Vine(true, true, true, false, true): return 4790;
- case Vine::Vine(true, true, true, false, false): return 4791;
- case Vine::Vine(true, true, false, true, true): return 4792;
- case Vine::Vine(true, true, false, true, false): return 4793;
- case Vine::Vine(true, true, false, false, true): return 4794;
- case Vine::Vine(true, true, false, false, false): return 4795;
- case Vine::Vine(true, false, true, true, true): return 4796;
- case Vine::Vine(true, false, true, true, false): return 4797;
- case Vine::Vine(true, false, true, false, true): return 4798;
- case Vine::Vine(true, false, true, false, false): return 4799;
- case Vine::Vine(true, false, false, true, true): return 4800;
- case Vine::Vine(true, false, false, true, false): return 4801;
- case Vine::Vine(true, false, false, false, true): return 4802;
- case Vine::Vine(true, false, false, false, false): return 4803;
- case Vine::Vine(false, true, true, true, true): return 4804;
- case Vine::Vine(false, true, true, true, false): return 4805;
- case Vine::Vine(false, true, true, false, true): return 4806;
- case Vine::Vine(false, true, true, false, false): return 4807;
- case Vine::Vine(false, true, false, true, true): return 4808;
- case Vine::Vine(false, true, false, true, false): return 4809;
- case Vine::Vine(false, true, false, false, true): return 4810;
- case Vine::Vine(false, true, false, false, false): return 4811;
- case Vine::Vine(false, false, true, true, true): return 4812;
- case Vine::Vine(false, false, true, true, false): return 4813;
- case Vine::Vine(false, false, true, false, true): return 4814;
- case Vine::Vine(false, false, true, false, false): return 4815;
- case Vine::Vine(false, false, false, true, true): return 4816;
- case Vine::Vine(false, false, false, true, false): return 4817;
- case Vine::Vine(false, false, false, false, true): return 4818;
- case Vine::Vine(false, false, false, false, false): return 4819;
- case VoidAir::VoidAir(): return 9665;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZM): return 1436;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZP): return 1437;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XM): return 1438;
- case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XP): return 1439;
- case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true): return 15503;
- case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false): return 15504;
- case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true): return 15505;
- case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false): return 15506;
- case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true): return 15507;
- case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false): return 15508;
- case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true): return 15509;
- case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false): return 15510;
- case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true): return 15511;
- case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false): return 15512;
- case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true): return 15513;
- case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false): return 15514;
- case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true): return 15515;
- case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false): return 15516;
- case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true): return 15517;
- case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false): return 15518;
- case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true): return 15519;
- case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false): return 15520;
- case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true): return 15521;
- case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false): return 15522;
- case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true): return 15523;
- case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false): return 15524;
- case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true): return 15525;
- case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false): return 15526;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, true): return 15591;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, false): return 15592;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, true): return 15593;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, false): return 15594;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, true): return 15595;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, false): return 15596;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, true): return 15597;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, false): return 15598;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, true): return 15599;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, false): return 15600;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, true): return 15601;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, false): return 15602;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, true): return 15603;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, false): return 15604;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, true): return 15605;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, false): return 15606;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, true): return 15607;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, false): return 15608;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, true): return 15609;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, false): return 15610;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, true): return 15611;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, false): return 15612;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, true): return 15613;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, false): return 15614;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, true): return 15615;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, false): return 15616;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, true): return 15617;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, false): return 15618;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, true): return 15619;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, false): return 15620;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, true): return 15621;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, false): return 15622;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, true): return 15623;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, false): return 15624;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, true): return 15625;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, false): return 15626;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, true): return 15627;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, false): return 15628;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, true): return 15629;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, false): return 15630;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, true): return 15631;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, false): return 15632;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, true): return 15633;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, false): return 15634;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, true): return 15635;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, false): return 15636;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, true): return 15637;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, false): return 15638;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, true): return 15639;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, false): return 15640;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, true): return 15641;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, false): return 15642;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, true): return 15643;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, false): return 15644;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, true): return 15645;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, false): return 15646;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, true): return 15647;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, false): return 15648;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, true): return 15649;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, false): return 15650;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, true): return 15651;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, false): return 15652;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, true): return 15653;
- case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, false): return 15654;
- case WarpedFence::WarpedFence(true, true, true, true): return 15097;
- case WarpedFence::WarpedFence(true, true, true, false): return 15098;
- case WarpedFence::WarpedFence(true, true, false, true): return 15101;
- case WarpedFence::WarpedFence(true, true, false, false): return 15102;
- case WarpedFence::WarpedFence(true, false, true, true): return 15105;
- case WarpedFence::WarpedFence(true, false, true, false): return 15106;
- case WarpedFence::WarpedFence(true, false, false, true): return 15109;
- case WarpedFence::WarpedFence(true, false, false, false): return 15110;
- case WarpedFence::WarpedFence(false, true, true, true): return 15113;
- case WarpedFence::WarpedFence(false, true, true, false): return 15114;
- case WarpedFence::WarpedFence(false, true, false, true): return 15117;
- case WarpedFence::WarpedFence(false, true, false, false): return 15118;
- case WarpedFence::WarpedFence(false, false, true, true): return 15121;
- case WarpedFence::WarpedFence(false, false, true, false): return 15122;
- case WarpedFence::WarpedFence(false, false, false, true): return 15125;
- case WarpedFence::WarpedFence(false, false, false, false): return 15126;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true): return 15287;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false): return 15288;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true): return 15289;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false): return 15290;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true): return 15291;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false): return 15292;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true): return 15293;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false): return 15294;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true): return 15295;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false): return 15296;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true): return 15297;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false): return 15298;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true): return 15299;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false): return 15300;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true): return 15301;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false): return 15302;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true): return 15303;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false): return 15304;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true): return 15305;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false): return 15306;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true): return 15307;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false): return 15308;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true): return 15309;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false): return 15310;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true): return 15311;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false): return 15312;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true): return 15313;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false): return 15314;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true): return 15315;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false): return 15316;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true): return 15317;
- case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false): return 15318;
- case WarpedFungus::WarpedFungus(): return 14971;
- case WarpedHyphae::WarpedHyphae(WarpedHyphae::Axis::X): return 14964;
- case WarpedHyphae::WarpedHyphae(WarpedHyphae::Axis::Y): return 14965;
- case WarpedHyphae::WarpedHyphae(WarpedHyphae::Axis::Z): return 14966;
- case WarpedNylium::WarpedNylium(): return 14970;
- case WarpedPlanks::WarpedPlanks(): return 15046;
- case WarpedPressurePlate::WarpedPressurePlate(true): return 15061;
- case WarpedPressurePlate::WarpedPressurePlate(false): return 15062;
- case WarpedRoots::WarpedRoots(): return 14973;
- case WarpedSign::WarpedSign(0): return 15688;
- case WarpedSign::WarpedSign(1): return 15690;
- case WarpedSign::WarpedSign(2): return 15692;
- case WarpedSign::WarpedSign(3): return 15694;
- case WarpedSign::WarpedSign(4): return 15696;
- case WarpedSign::WarpedSign(5): return 15698;
- case WarpedSign::WarpedSign(6): return 15700;
- case WarpedSign::WarpedSign(7): return 15702;
- case WarpedSign::WarpedSign(8): return 15704;
- case WarpedSign::WarpedSign(9): return 15706;
- case WarpedSign::WarpedSign(10): return 15708;
- case WarpedSign::WarpedSign(11): return 15710;
- case WarpedSign::WarpedSign(12): return 15712;
- case WarpedSign::WarpedSign(13): return 15714;
- case WarpedSign::WarpedSign(14): return 15716;
- case WarpedSign::WarpedSign(15): return 15718;
- case WarpedSlab::WarpedSlab(WarpedSlab::Type::Top): return 15054;
- case WarpedSlab::WarpedSlab(WarpedSlab::Type::Bottom): return 15056;
- case WarpedSlab::WarpedSlab(WarpedSlab::Type::Double): return 15058;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::Straight): return 15400;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerLeft): return 15402;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerRight): return 15404;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterLeft): return 15406;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterRight): return 15408;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::Straight): return 15410;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerLeft): return 15412;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerRight): return 15414;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterLeft): return 15416;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterRight): return 15418;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::Straight): return 15420;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerLeft): return 15422;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerRight): return 15424;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterLeft): return 15426;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterRight): return 15428;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::Straight): return 15430;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerLeft): return 15432;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerRight): return 15434;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterLeft): return 15436;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterRight): return 15438;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::Straight): return 15440;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerLeft): return 15442;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerRight): return 15444;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterLeft): return 15446;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterRight): return 15448;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::Straight): return 15450;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerLeft): return 15452;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerRight): return 15454;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterLeft): return 15456;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterRight): return 15458;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::Straight): return 15460;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerLeft): return 15462;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerRight): return 15464;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterLeft): return 15466;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterRight): return 15468;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::Straight): return 15470;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerLeft): return 15472;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerRight): return 15474;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterLeft): return 15476;
- case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterRight): return 15478;
- case WarpedStem::WarpedStem(WarpedStem::Axis::X): return 14958;
- case WarpedStem::WarpedStem(WarpedStem::Axis::Y): return 14959;
- case WarpedStem::WarpedStem(WarpedStem::Axis::Z): return 14960;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Top, true, true): return 15192;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Top, true, false): return 15194;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Top, false, true): return 15196;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Top, false, false): return 15198;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Bottom, true, true): return 15200;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Bottom, true, false): return 15202;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Bottom, false, true): return 15204;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Bottom, false, false): return 15206;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Top, true, true): return 15208;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Top, true, false): return 15210;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Top, false, true): return 15212;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Top, false, false): return 15214;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Bottom, true, true): return 15216;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Bottom, true, false): return 15218;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Bottom, false, true): return 15220;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Bottom, false, false): return 15222;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Top, true, true): return 15224;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Top, true, false): return 15226;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Top, false, true): return 15228;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Top, false, false): return 15230;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Bottom, true, true): return 15232;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Bottom, true, false): return 15234;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Bottom, false, true): return 15236;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Bottom, false, false): return 15238;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Top, true, true): return 15240;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Top, true, false): return 15242;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Top, false, true): return 15244;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Top, false, false): return 15246;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Bottom, true, true): return 15248;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Bottom, true, false): return 15250;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Bottom, false, true): return 15252;
- case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Bottom, false, false): return 15254;
- case WarpedWallSign::WarpedWallSign(eBlockFace::BLOCK_FACE_ZM): return 15728;
- case WarpedWallSign::WarpedWallSign(eBlockFace::BLOCK_FACE_ZP): return 15730;
- case WarpedWallSign::WarpedWallSign(eBlockFace::BLOCK_FACE_XM): return 15732;
- case WarpedWallSign::WarpedWallSign(eBlockFace::BLOCK_FACE_XP): return 15734;
- case WarpedWartBlock::WarpedWartBlock(): return 14972;
- case Water::Water(0): return 34;
- case Water::Water(1): return 35;
- case Water::Water(2): return 36;
- case Water::Water(3): return 37;
- case Water::Water(4): return 38;
- case Water::Water(5): return 39;
- case Water::Water(6): return 40;
- case Water::Water(7): return 41;
- case Water::Water(8): return 42;
- case Water::Water(9): return 43;
- case Water::Water(10): return 44;
- case Water::Water(11): return 45;
- case Water::Water(12): return 46;
- case Water::Water(13): return 47;
- case Water::Water(14): return 48;
- case Water::Water(15): return 49;
- case WeepingVines::WeepingVines(0): return 14990;
- case WeepingVines::WeepingVines(1): return 14991;
- case WeepingVines::WeepingVines(2): return 14992;
- case WeepingVines::WeepingVines(3): return 14993;
- case WeepingVines::WeepingVines(4): return 14994;
- case WeepingVines::WeepingVines(5): return 14995;
- case WeepingVines::WeepingVines(6): return 14996;
- case WeepingVines::WeepingVines(7): return 14997;
- case WeepingVines::WeepingVines(8): return 14998;
- case WeepingVines::WeepingVines(9): return 14999;
- case WeepingVines::WeepingVines(10): return 15000;
- case WeepingVines::WeepingVines(11): return 15001;
- case WeepingVines::WeepingVines(12): return 15002;
- case WeepingVines::WeepingVines(13): return 15003;
- case WeepingVines::WeepingVines(14): return 15004;
- case WeepingVines::WeepingVines(15): return 15005;
- case WeepingVines::WeepingVines(16): return 15006;
- case WeepingVines::WeepingVines(17): return 15007;
- case WeepingVines::WeepingVines(18): return 15008;
- case WeepingVines::WeepingVines(19): return 15009;
- case WeepingVines::WeepingVines(20): return 15010;
- case WeepingVines::WeepingVines(21): return 15011;
- case WeepingVines::WeepingVines(22): return 15012;
- case WeepingVines::WeepingVines(23): return 15013;
- case WeepingVines::WeepingVines(24): return 15014;
- case WeepingVines::WeepingVines(25): return 15015;
- case WeepingVinesPlant::WeepingVinesPlant(): return 15016;
- case WetSponge::WetSponge(): return 230;
- case Wheat::Wheat(0): return 3357;
- case Wheat::Wheat(1): return 3358;
- case Wheat::Wheat(2): return 3359;
- case Wheat::Wheat(3): return 3360;
- case Wheat::Wheat(4): return 3361;
- case Wheat::Wheat(5): return 3362;
- case Wheat::Wheat(6): return 3363;
- case Wheat::Wheat(7): return 3364;
- case WhiteBanner::WhiteBanner(0): return 7897;
- case WhiteBanner::WhiteBanner(1): return 7898;
- case WhiteBanner::WhiteBanner(2): return 7899;
- case WhiteBanner::WhiteBanner(3): return 7900;
- case WhiteBanner::WhiteBanner(4): return 7901;
- case WhiteBanner::WhiteBanner(5): return 7902;
- case WhiteBanner::WhiteBanner(6): return 7903;
- case WhiteBanner::WhiteBanner(7): return 7904;
- case WhiteBanner::WhiteBanner(8): return 7905;
- case WhiteBanner::WhiteBanner(9): return 7906;
- case WhiteBanner::WhiteBanner(10): return 7907;
- case WhiteBanner::WhiteBanner(11): return 7908;
- case WhiteBanner::WhiteBanner(12): return 7909;
- case WhiteBanner::WhiteBanner(13): return 7910;
- case WhiteBanner::WhiteBanner(14): return 7911;
- case WhiteBanner::WhiteBanner(15): return 7912;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Head): return 1049;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Foot): return 1050;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Head): return 1051;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Foot): return 1052;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Head): return 1053;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Foot): return 1054;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Head): return 1055;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Foot): return 1056;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Head): return 1057;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Foot): return 1058;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Head): return 1059;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Foot): return 1060;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Head): return 1061;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Foot): return 1062;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Head): return 1063;
- case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Foot): return 1064;
- case WhiteCarpet::WhiteCarpet(): return 7866;
- case WhiteConcrete::WhiteConcrete(): return 9438;
- case WhiteConcretePowder::WhiteConcretePowder(): return 9454;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9374;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9375;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9376;
- case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9377;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9278;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9279;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9280;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9281;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9282;
- case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9283;
- case WhiteStainedGlass::WhiteStainedGlass(): return 4095;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, true): return 6865;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, false): return 6866;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, true): return 6869;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, false): return 6870;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, true): return 6873;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, false): return 6874;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, true): return 6877;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, false): return 6878;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, true): return 6881;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, false): return 6882;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, true): return 6885;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, false): return 6886;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, true): return 6889;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, false): return 6890;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, true): return 6893;
- case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, false): return 6894;
- case WhiteTerracotta::WhiteTerracotta(): return 6847;
- case WhiteTulip::WhiteTulip(): return 1419;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8153;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8154;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XM): return 8155;
- case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XP): return 8156;
- case WhiteWool::WhiteWool(): return 1384;
- case WitherRose::WitherRose(): return 1423;
- case WitherSkeletonSkull::WitherSkeletonSkull(0): return 6510;
- case WitherSkeletonSkull::WitherSkeletonSkull(1): return 6511;
- case WitherSkeletonSkull::WitherSkeletonSkull(2): return 6512;
- case WitherSkeletonSkull::WitherSkeletonSkull(3): return 6513;
- case WitherSkeletonSkull::WitherSkeletonSkull(4): return 6514;
- case WitherSkeletonSkull::WitherSkeletonSkull(5): return 6515;
- case WitherSkeletonSkull::WitherSkeletonSkull(6): return 6516;
- case WitherSkeletonSkull::WitherSkeletonSkull(7): return 6517;
- case WitherSkeletonSkull::WitherSkeletonSkull(8): return 6518;
- case WitherSkeletonSkull::WitherSkeletonSkull(9): return 6519;
- case WitherSkeletonSkull::WitherSkeletonSkull(10): return 6520;
- case WitherSkeletonSkull::WitherSkeletonSkull(11): return 6521;
- case WitherSkeletonSkull::WitherSkeletonSkull(12): return 6522;
- case WitherSkeletonSkull::WitherSkeletonSkull(13): return 6523;
- case WitherSkeletonSkull::WitherSkeletonSkull(14): return 6524;
- case WitherSkeletonSkull::WitherSkeletonSkull(15): return 6525;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM): return 6526;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP): return 6527;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XM): return 6528;
- case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XP): return 6529;
- case YellowBanner::YellowBanner(0): return 7961;
- case YellowBanner::YellowBanner(1): return 7962;
- case YellowBanner::YellowBanner(2): return 7963;
- case YellowBanner::YellowBanner(3): return 7964;
- case YellowBanner::YellowBanner(4): return 7965;
- case YellowBanner::YellowBanner(5): return 7966;
- case YellowBanner::YellowBanner(6): return 7967;
- case YellowBanner::YellowBanner(7): return 7968;
- case YellowBanner::YellowBanner(8): return 7969;
- case YellowBanner::YellowBanner(9): return 7970;
- case YellowBanner::YellowBanner(10): return 7971;
- case YellowBanner::YellowBanner(11): return 7972;
- case YellowBanner::YellowBanner(12): return 7973;
- case YellowBanner::YellowBanner(13): return 7974;
- case YellowBanner::YellowBanner(14): return 7975;
- case YellowBanner::YellowBanner(15): return 7976;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Head): return 1113;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Foot): return 1114;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Head): return 1115;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Foot): return 1116;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Head): return 1117;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Foot): return 1118;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Head): return 1119;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Foot): return 1120;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Head): return 1121;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Foot): return 1122;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Head): return 1123;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Foot): return 1124;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Head): return 1125;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Foot): return 1126;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Head): return 1127;
- case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Foot): return 1128;
- case YellowCarpet::YellowCarpet(): return 7870;
- case YellowConcrete::YellowConcrete(): return 9442;
- case YellowConcretePowder::YellowConcretePowder(): return 9458;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM): return 9390;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP): return 9391;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XM): return 9392;
- case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XP): return 9393;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZM): return 9302;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XP): return 9303;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZP): return 9304;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XM): return 9305;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YP): return 9306;
- case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YM): return 9307;
- case YellowStainedGlass::YellowStainedGlass(): return 4099;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, true): return 6993;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, false): return 6994;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, true): return 6997;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, false): return 6998;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, true): return 7001;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, false): return 7002;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, true): return 7005;
- case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, false): return 7006;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, true): return 7009;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, false): return 7010;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, true): return 7013;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, false): return 7014;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, true): return 7017;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, false): return 7018;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, true): return 7021;
- case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, false): return 7022;
- case YellowTerracotta::YellowTerracotta(): return 6851;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZM): return 8169;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZP): return 8170;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XM): return 8171;
- case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XP): return 8172;
- case YellowWool::YellowWool(): return 1388;
- case ZombieHead::ZombieHead(0): return 6530;
- case ZombieHead::ZombieHead(1): return 6531;
- case ZombieHead::ZombieHead(2): return 6532;
- case ZombieHead::ZombieHead(3): return 6533;
- case ZombieHead::ZombieHead(4): return 6534;
- case ZombieHead::ZombieHead(5): return 6535;
- case ZombieHead::ZombieHead(6): return 6536;
- case ZombieHead::ZombieHead(7): return 6537;
- case ZombieHead::ZombieHead(8): return 6538;
- case ZombieHead::ZombieHead(9): return 6539;
- case ZombieHead::ZombieHead(10): return 6540;
- case ZombieHead::ZombieHead(11): return 6541;
- case ZombieHead::ZombieHead(12): return 6542;
- case ZombieHead::ZombieHead(13): return 6543;
- case ZombieHead::ZombieHead(14): return 6544;
- case ZombieHead::ZombieHead(15): return 6545;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZM): return 6546;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZP): return 6547;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XM): return 6548;
- case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XP): return 6549;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6442;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6443;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6444;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6445;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 6446;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 6447;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 6448;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 6449;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6450;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6451;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6452;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6453;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 6454;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 6455;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 6456;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 6457;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6458;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6459;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6460;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6461;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 6462;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 6463;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 6464;
+ case AcaciaButton::AcaciaButton(AcaciaButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 6465;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 8930;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 8931;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 8932;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 8933;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 8934;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 8935;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 8936;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 8937;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 8938;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 8939;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 8940;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 8941;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 8942;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 8943;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 8944;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 8945;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 8946;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 8947;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 8948;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 8949;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 8950;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 8951;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 8952;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 8953;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 8954;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 8955;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 8956;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 8957;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 8958;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 8959;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 8960;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_ZP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 8961;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 8962;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 8963;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 8964;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 8965;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 8966;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 8967;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 8968;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 8969;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 8970;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 8971;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 8972;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 8973;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 8974;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 8975;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 8976;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XM, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 8977;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, true).ID: return 8978;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, true, false).ID: return 8979;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, true).ID: return 8980;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Left, false, false).ID: return 8981;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, true).ID: return 8982;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, true, false).ID: return 8983;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, true).ID: return 8984;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Upper, AcaciaDoor::Hinge::Right, false, false).ID: return 8985;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, true).ID: return 8986;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, true, false).ID: return 8987;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, true).ID: return 8988;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Left, false, false).ID: return 8989;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, true).ID: return 8990;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, true, false).ID: return 8991;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, true).ID: return 8992;
+ case AcaciaDoor::AcaciaDoor(eBlockFace::BLOCK_FACE_XP, AcaciaDoor::Half::Lower, AcaciaDoor::Hinge::Right, false, false).ID: return 8993;
+ case AcaciaFence::AcaciaFence(true, true, true, true).ID: return 8676;
+ case AcaciaFence::AcaciaFence(true, true, true, false).ID: return 8677;
+ case AcaciaFence::AcaciaFence(true, true, false, true).ID: return 8680;
+ case AcaciaFence::AcaciaFence(true, true, false, false).ID: return 8681;
+ case AcaciaFence::AcaciaFence(true, false, true, true).ID: return 8684;
+ case AcaciaFence::AcaciaFence(true, false, true, false).ID: return 8685;
+ case AcaciaFence::AcaciaFence(true, false, false, true).ID: return 8688;
+ case AcaciaFence::AcaciaFence(true, false, false, false).ID: return 8689;
+ case AcaciaFence::AcaciaFence(false, true, true, true).ID: return 8692;
+ case AcaciaFence::AcaciaFence(false, true, true, false).ID: return 8693;
+ case AcaciaFence::AcaciaFence(false, true, false, true).ID: return 8696;
+ case AcaciaFence::AcaciaFence(false, true, false, false).ID: return 8697;
+ case AcaciaFence::AcaciaFence(false, false, true, true).ID: return 8700;
+ case AcaciaFence::AcaciaFence(false, false, true, false).ID: return 8701;
+ case AcaciaFence::AcaciaFence(false, false, false, true).ID: return 8704;
+ case AcaciaFence::AcaciaFence(false, false, false, false).ID: return 8705;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 8514;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 8515;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 8516;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 8517;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 8518;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 8519;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 8520;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 8521;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 8522;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 8523;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 8524;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 8525;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 8526;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 8527;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 8528;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 8529;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 8530;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 8531;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 8532;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 8533;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 8534;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 8535;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 8536;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 8537;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 8538;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 8539;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 8540;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 8541;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 8542;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 8543;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 8544;
+ case AcaciaFenceGate::AcaciaFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 8545;
+ case AcaciaLeaves::AcaciaLeaves(1, true).ID: return 201;
+ case AcaciaLeaves::AcaciaLeaves(1, false).ID: return 202;
+ case AcaciaLeaves::AcaciaLeaves(2, true).ID: return 203;
+ case AcaciaLeaves::AcaciaLeaves(2, false).ID: return 204;
+ case AcaciaLeaves::AcaciaLeaves(3, true).ID: return 205;
+ case AcaciaLeaves::AcaciaLeaves(3, false).ID: return 206;
+ case AcaciaLeaves::AcaciaLeaves(4, true).ID: return 207;
+ case AcaciaLeaves::AcaciaLeaves(4, false).ID: return 208;
+ case AcaciaLeaves::AcaciaLeaves(5, true).ID: return 209;
+ case AcaciaLeaves::AcaciaLeaves(5, false).ID: return 210;
+ case AcaciaLeaves::AcaciaLeaves(6, true).ID: return 211;
+ case AcaciaLeaves::AcaciaLeaves(6, false).ID: return 212;
+ case AcaciaLeaves::AcaciaLeaves(7, true).ID: return 213;
+ case AcaciaLeaves::AcaciaLeaves(7, false).ID: return 214;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::X).ID: return 85;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Y).ID: return 86;
+ case AcaciaLog::AcaciaLog(AcaciaLog::Axis::Z).ID: return 87;
+ case AcaciaPlanks::AcaciaPlanks().ID: return 19;
+ case AcaciaPressurePlate::AcaciaPressurePlate(true).ID: return 3881;
+ case AcaciaPressurePlate::AcaciaPressurePlate(false).ID: return 3882;
+ case AcaciaSapling::AcaciaSapling(0).ID: return 29;
+ case AcaciaSapling::AcaciaSapling(1).ID: return 30;
+ case AcaciaSign::AcaciaSign(0).ID: return 3478;
+ case AcaciaSign::AcaciaSign(1).ID: return 3480;
+ case AcaciaSign::AcaciaSign(2).ID: return 3482;
+ case AcaciaSign::AcaciaSign(3).ID: return 3484;
+ case AcaciaSign::AcaciaSign(4).ID: return 3486;
+ case AcaciaSign::AcaciaSign(5).ID: return 3488;
+ case AcaciaSign::AcaciaSign(6).ID: return 3490;
+ case AcaciaSign::AcaciaSign(7).ID: return 3492;
+ case AcaciaSign::AcaciaSign(8).ID: return 3494;
+ case AcaciaSign::AcaciaSign(9).ID: return 3496;
+ case AcaciaSign::AcaciaSign(10).ID: return 3498;
+ case AcaciaSign::AcaciaSign(11).ID: return 3500;
+ case AcaciaSign::AcaciaSign(12).ID: return 3502;
+ case AcaciaSign::AcaciaSign(13).ID: return 3504;
+ case AcaciaSign::AcaciaSign(14).ID: return 3506;
+ case AcaciaSign::AcaciaSign(15).ID: return 3508;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Top).ID: return 8325;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Bottom).ID: return 8327;
+ case AcaciaSlab::AcaciaSlab(AcaciaSlab::Type::Double).ID: return 8329;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 7376;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 7378;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 7380;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 7382;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 7384;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 7386;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 7388;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 7390;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 7392;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 7394;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 7396;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 7398;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 7400;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 7402;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 7404;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 7406;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 7408;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 7410;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 7412;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_ZP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 7414;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 7416;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 7418;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 7420;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 7422;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 7424;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 7426;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 7428;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 7430;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 7432;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XM, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 7434;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::Straight).ID: return 7436;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerLeft).ID: return 7438;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::InnerRight).ID: return 7440;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterLeft).ID: return 7442;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Top, AcaciaStairs::Shape::OuterRight).ID: return 7444;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::Straight).ID: return 7446;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerLeft).ID: return 7448;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::InnerRight).ID: return 7450;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterLeft).ID: return 7452;
+ case AcaciaStairs::AcaciaStairs(eBlockFace::BLOCK_FACE_XP, AcaciaStairs::Half::Bottom, AcaciaStairs::Shape::OuterRight).ID: return 7454;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, true).ID: return 4368;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, true, false).ID: return 4370;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, true).ID: return 4372;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Top, false, false).ID: return 4374;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 4376;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 4378;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 4380;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZM, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 4382;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, true).ID: return 4384;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, true, false).ID: return 4386;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, true).ID: return 4388;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Top, false, false).ID: return 4390;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 4392;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 4394;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 4396;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_ZP, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 4398;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, true).ID: return 4400;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, true, false).ID: return 4402;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, true).ID: return 4404;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Top, false, false).ID: return 4406;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 4408;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 4410;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 4412;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XM, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 4414;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, true).ID: return 4416;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, true, false).ID: return 4418;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, true).ID: return 4420;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Top, false, false).ID: return 4422;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, true).ID: return 4424;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, true, false).ID: return 4426;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, true).ID: return 4428;
+ case AcaciaTrapdoor::AcaciaTrapdoor(eBlockFace::BLOCK_FACE_XP, AcaciaTrapdoor::Half::Bottom, false, false).ID: return 4430;
+ case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3760;
+ case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3762;
+ case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3764;
+ case AcaciaWallSign::AcaciaWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3766;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::X).ID: return 121;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Y).ID: return 122;
+ case AcaciaWood::AcaciaWood(AcaciaWood::Axis::Z).ID: return 123;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::NorthSouth).ID: return 6823;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::EastWest).ID: return 6824;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingEast).ID: return 6825;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingWest).ID: return 6826;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingNorth).ID: return 6827;
+ case ActivatorRail::ActivatorRail(true, ActivatorRail::Shape::AscendingSouth).ID: return 6828;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::NorthSouth).ID: return 6829;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::EastWest).ID: return 6830;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingEast).ID: return 6831;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingWest).ID: return 6832;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingNorth).ID: return 6833;
+ case ActivatorRail::ActivatorRail(false, ActivatorRail::Shape::AscendingSouth).ID: return 6834;
+ case Air::Air().ID: return -0;
+ case Allium::Allium().ID: return 1415;
+ case AncientDebris::AncientDebris().ID: return 15827;
+ case Andesite::Andesite().ID: return 6;
+ case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Top).ID: return 10844;
+ case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Bottom).ID: return 10846;
+ case AndesiteSlab::AndesiteSlab(AndesiteSlab::Type::Double).ID: return 10848;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight).ID: return 10470;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft).ID: return 10472;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight).ID: return 10474;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft).ID: return 10476;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight).ID: return 10478;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight).ID: return 10480;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft).ID: return 10482;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight).ID: return 10484;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft).ID: return 10486;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight).ID: return 10488;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight).ID: return 10490;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft).ID: return 10492;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight).ID: return 10494;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft).ID: return 10496;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight).ID: return 10498;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight).ID: return 10500;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft).ID: return 10502;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight).ID: return 10504;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft).ID: return 10506;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_ZP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight).ID: return 10508;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight).ID: return 10510;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft).ID: return 10512;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight).ID: return 10514;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft).ID: return 10516;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight).ID: return 10518;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight).ID: return 10520;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft).ID: return 10522;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight).ID: return 10524;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft).ID: return 10526;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XM, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight).ID: return 10528;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::Straight).ID: return 10530;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerLeft).ID: return 10532;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::InnerRight).ID: return 10534;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterLeft).ID: return 10536;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Top, AndesiteStairs::Shape::OuterRight).ID: return 10538;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::Straight).ID: return 10540;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerLeft).ID: return 10542;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::InnerRight).ID: return 10544;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterLeft).ID: return 10546;
+ case AndesiteStairs::AndesiteStairs(eBlockFace::BLOCK_FACE_XP, AndesiteStairs::Half::Bottom, AndesiteStairs::Shape::OuterRight).ID: return 10548;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 13138;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 13139;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Tall).ID: return 13140;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 13144;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 13145;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Tall).ID: return 13146;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 13150;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 13151;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Tall).ID: return 13152;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 13156;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 13157;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Tall).ID: return 13158;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::None).ID: return 13162;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Low).ID: return 13163;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall).ID: return 13164;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::None).ID: return 13168;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Low).ID: return 13169;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall).ID: return 13170;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 13174;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 13175;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Tall).ID: return 13176;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 13180;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 13181;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Tall).ID: return 13182;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 13186;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 13187;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Tall).ID: return 13188;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 13192;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 13193;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Tall).ID: return 13194;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::None).ID: return 13198;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Low).ID: return 13199;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall).ID: return 13200;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::None).ID: return 13204;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Low).ID: return 13205;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall).ID: return 13206;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 13210;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 13211;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Tall).ID: return 13212;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 13216;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 13217;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Tall).ID: return 13218;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 13222;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 13223;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Tall).ID: return 13224;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 13228;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 13229;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Tall).ID: return 13230;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::None).ID: return 13234;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Low).ID: return 13235;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall).ID: return 13236;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::None).ID: return 13240;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Low).ID: return 13241;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::None, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall).ID: return 13242;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 13246;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 13247;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Tall).ID: return 13248;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 13252;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 13253;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Tall).ID: return 13254;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 13258;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 13259;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Tall).ID: return 13260;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 13264;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 13265;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Tall).ID: return 13266;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::None).ID: return 13270;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Low).ID: return 13271;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall).ID: return 13272;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::None).ID: return 13276;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Low).ID: return 13277;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall).ID: return 13278;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 13282;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 13283;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Tall).ID: return 13284;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 13288;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 13289;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Tall).ID: return 13290;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 13294;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 13295;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Tall).ID: return 13296;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 13300;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 13301;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Tall).ID: return 13302;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::None).ID: return 13306;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Low).ID: return 13307;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall).ID: return 13308;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::None).ID: return 13312;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Low).ID: return 13313;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall).ID: return 13314;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 13318;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 13319;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Tall).ID: return 13320;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 13324;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 13325;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Tall).ID: return 13326;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 13330;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 13331;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Tall).ID: return 13332;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 13336;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 13337;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Tall).ID: return 13338;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::None).ID: return 13342;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Low).ID: return 13343;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall).ID: return 13344;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::None).ID: return 13348;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Low).ID: return 13349;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Low, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall).ID: return 13350;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 13354;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 13355;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, true, AndesiteWall::West::Tall).ID: return 13356;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 13360;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 13361;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::None, false, AndesiteWall::West::Tall).ID: return 13362;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 13366;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 13367;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, true, AndesiteWall::West::Tall).ID: return 13368;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 13372;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 13373;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Low, false, AndesiteWall::West::Tall).ID: return 13374;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::None).ID: return 13378;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Low).ID: return 13379;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall).ID: return 13380;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::None).ID: return 13384;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Low).ID: return 13385;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::None, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall).ID: return 13386;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 13390;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 13391;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, true, AndesiteWall::West::Tall).ID: return 13392;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 13396;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 13397;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::None, false, AndesiteWall::West::Tall).ID: return 13398;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 13402;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 13403;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, true, AndesiteWall::West::Tall).ID: return 13404;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 13408;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 13409;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Low, false, AndesiteWall::West::Tall).ID: return 13410;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::None).ID: return 13414;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Low).ID: return 13415;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall).ID: return 13416;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::None).ID: return 13420;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Low).ID: return 13421;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Low, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall).ID: return 13422;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::None).ID: return 13426;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Low).ID: return 13427;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, true, AndesiteWall::West::Tall).ID: return 13428;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::None).ID: return 13432;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Low).ID: return 13433;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::None, false, AndesiteWall::West::Tall).ID: return 13434;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::None).ID: return 13438;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Low).ID: return 13439;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, true, AndesiteWall::West::Tall).ID: return 13440;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::None).ID: return 13444;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Low).ID: return 13445;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Low, false, AndesiteWall::West::Tall).ID: return 13446;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::None).ID: return 13450;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Low).ID: return 13451;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, true, AndesiteWall::West::Tall).ID: return 13452;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::None).ID: return 13456;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Low).ID: return 13457;
+ case AndesiteWall::AndesiteWall(AndesiteWall::East::Tall, AndesiteWall::North::Tall, AndesiteWall::South::Tall, false, AndesiteWall::West::Tall).ID: return 13458;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZM).ID: return 6610;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_ZP).ID: return 6611;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_XM).ID: return 6612;
+ case Anvil::Anvil(eBlockFace::BLOCK_FACE_XP).ID: return 6613;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZM).ID: return 4768;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_ZP).ID: return 4769;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XM).ID: return 4770;
+ case AttachedMelonStem::AttachedMelonStem(eBlockFace::BLOCK_FACE_XP).ID: return 4771;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZM).ID: return 4764;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_ZP).ID: return 4765;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XM).ID: return 4766;
+ case AttachedPumpkinStem::AttachedPumpkinStem(eBlockFace::BLOCK_FACE_XP).ID: return 4767;
+ case AzureBluet::AzureBluet().ID: return 1416;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::None, 0).ID: return 9652;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::None, 1).ID: return 9653;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 0).ID: return 9654;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::Small, 1).ID: return 9655;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 0).ID: return 9656;
+ case Bamboo::Bamboo(0, Bamboo::Leaves::Large, 1).ID: return 9657;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::None, 0).ID: return 9658;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::None, 1).ID: return 9659;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 0).ID: return 9660;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::Small, 1).ID: return 9661;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 0).ID: return 9662;
+ case Bamboo::Bamboo(1, Bamboo::Leaves::Large, 1).ID: return 9663;
+ case BambooSapling::BambooSapling().ID: return 9651;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, true).ID: return 14791;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZM, false).ID: return 14792;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, true).ID: return 14793;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_XP, false).ID: return 14794;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, true).ID: return 14795;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_ZP, false).ID: return 14796;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, true).ID: return 14797;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_XM, false).ID: return 14798;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, true).ID: return 14799;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_YP, false).ID: return 14800;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, true).ID: return 14801;
+ case Barrel::Barrel(eBlockFace::BLOCK_FACE_YM, false).ID: return 14802;
+ case Barrier::Barrier().ID: return 7536;
+ case Basalt::Basalt(Basalt::Axis::X).ID: return 4002;
+ case Basalt::Basalt(Basalt::Axis::Y).ID: return 4003;
+ case Basalt::Basalt(Basalt::Axis::Z).ID: return 4004;
+ case Beacon::Beacon().ID: return 5656;
+ case Bedrock::Bedrock().ID: return 33;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 0).ID: return 15776;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 1).ID: return 15777;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 2).ID: return 15778;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 3).ID: return 15779;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 4).ID: return 15780;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZM, 5).ID: return 15781;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 0).ID: return 15782;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 1).ID: return 15783;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 2).ID: return 15784;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 3).ID: return 15785;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 4).ID: return 15786;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_ZP, 5).ID: return 15787;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 0).ID: return 15788;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 1).ID: return 15789;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 2).ID: return 15790;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 3).ID: return 15791;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 4).ID: return 15792;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XM, 5).ID: return 15793;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 0).ID: return 15794;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 1).ID: return 15795;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 2).ID: return 15796;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 3).ID: return 15797;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 4).ID: return 15798;
+ case BeeNest::BeeNest(eBlockFace::BLOCK_FACE_XP, 5).ID: return 15799;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 0).ID: return 15800;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 1).ID: return 15801;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 2).ID: return 15802;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 3).ID: return 15803;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 4).ID: return 15804;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZM, 5).ID: return 15805;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 0).ID: return 15806;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 1).ID: return 15807;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 2).ID: return 15808;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 3).ID: return 15809;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 4).ID: return 15810;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_ZP, 5).ID: return 15811;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 0).ID: return 15812;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 1).ID: return 15813;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 2).ID: return 15814;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 3).ID: return 15815;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 4).ID: return 15816;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XM, 5).ID: return 15817;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 0).ID: return 15818;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 1).ID: return 15819;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 2).ID: return 15820;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 3).ID: return 15821;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 4).ID: return 15822;
+ case Beehive::Beehive(eBlockFace::BLOCK_FACE_XP, 5).ID: return 15823;
+ case Beetroots::Beetroots(0).ID: return 9219;
+ case Beetroots::Beetroots(1).ID: return 9220;
+ case Beetroots::Beetroots(2).ID: return 9221;
+ case Beetroots::Beetroots(3).ID: return 9222;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 14854;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 14855;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 14856;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 14857;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 14858;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 14859;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 14860;
+ case Bell::Bell(Bell::Attachment::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 14861;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 14862;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 14863;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 14864;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 14865;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 14866;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 14867;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 14868;
+ case Bell::Bell(Bell::Attachment::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 14869;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 14870;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 14871;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 14872;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 14873;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XM, true).ID: return 14874;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XM, false).ID: return 14875;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XP, true).ID: return 14876;
+ case Bell::Bell(Bell::Attachment::SingleWall, eBlockFace::BLOCK_FACE_XP, false).ID: return 14877;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 14878;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 14879;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 14880;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 14881;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XM, true).ID: return 14882;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XM, false).ID: return 14883;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XP, true).ID: return 14884;
+ case Bell::Bell(Bell::Attachment::DoubleWall, eBlockFace::BLOCK_FACE_XP, false).ID: return 14885;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6394;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6395;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6396;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6397;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 6398;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 6399;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 6400;
+ case BirchButton::BirchButton(BirchButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 6401;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6402;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6403;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6404;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6405;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 6406;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 6407;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 6408;
+ case BirchButton::BirchButton(BirchButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 6409;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6410;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6411;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6412;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6413;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 6414;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 6415;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 6416;
+ case BirchButton::BirchButton(BirchButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 6417;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 8802;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 8803;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 8804;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 8805;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 8806;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 8807;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 8808;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 8809;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 8810;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 8811;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 8812;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 8813;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 8814;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 8815;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 8816;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 8817;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 8818;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 8819;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 8820;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 8821;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 8822;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 8823;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 8824;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 8825;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 8826;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 8827;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 8828;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 8829;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 8830;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 8831;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 8832;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_ZP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 8833;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 8834;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 8835;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 8836;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 8837;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 8838;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 8839;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 8840;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 8841;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 8842;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 8843;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 8844;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 8845;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 8846;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 8847;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 8848;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XM, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 8849;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, true).ID: return 8850;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, true, false).ID: return 8851;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, true).ID: return 8852;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Left, false, false).ID: return 8853;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, true).ID: return 8854;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, true, false).ID: return 8855;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, true).ID: return 8856;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Upper, BirchDoor::Hinge::Right, false, false).ID: return 8857;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, true).ID: return 8858;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, true, false).ID: return 8859;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, true).ID: return 8860;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Left, false, false).ID: return 8861;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, true).ID: return 8862;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, true, false).ID: return 8863;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, true).ID: return 8864;
+ case BirchDoor::BirchDoor(eBlockFace::BLOCK_FACE_XP, BirchDoor::Half::Lower, BirchDoor::Hinge::Right, false, false).ID: return 8865;
+ case BirchFence::BirchFence(true, true, true, true).ID: return 8612;
+ case BirchFence::BirchFence(true, true, true, false).ID: return 8613;
+ case BirchFence::BirchFence(true, true, false, true).ID: return 8616;
+ case BirchFence::BirchFence(true, true, false, false).ID: return 8617;
+ case BirchFence::BirchFence(true, false, true, true).ID: return 8620;
+ case BirchFence::BirchFence(true, false, true, false).ID: return 8621;
+ case BirchFence::BirchFence(true, false, false, true).ID: return 8624;
+ case BirchFence::BirchFence(true, false, false, false).ID: return 8625;
+ case BirchFence::BirchFence(false, true, true, true).ID: return 8628;
+ case BirchFence::BirchFence(false, true, true, false).ID: return 8629;
+ case BirchFence::BirchFence(false, true, false, true).ID: return 8632;
+ case BirchFence::BirchFence(false, true, false, false).ID: return 8633;
+ case BirchFence::BirchFence(false, false, true, true).ID: return 8636;
+ case BirchFence::BirchFence(false, false, true, false).ID: return 8637;
+ case BirchFence::BirchFence(false, false, false, true).ID: return 8640;
+ case BirchFence::BirchFence(false, false, false, false).ID: return 8641;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 8450;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 8451;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 8452;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 8453;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 8454;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 8455;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 8456;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 8457;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 8458;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 8459;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 8460;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 8461;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 8462;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 8463;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 8464;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 8465;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 8466;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 8467;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 8468;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 8469;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 8470;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 8471;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 8472;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 8473;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 8474;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 8475;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 8476;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 8477;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 8478;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 8479;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 8480;
+ case BirchFenceGate::BirchFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 8481;
+ case BirchLeaves::BirchLeaves(1, true).ID: return 173;
+ case BirchLeaves::BirchLeaves(1, false).ID: return 174;
+ case BirchLeaves::BirchLeaves(2, true).ID: return 175;
+ case BirchLeaves::BirchLeaves(2, false).ID: return 176;
+ case BirchLeaves::BirchLeaves(3, true).ID: return 177;
+ case BirchLeaves::BirchLeaves(3, false).ID: return 178;
+ case BirchLeaves::BirchLeaves(4, true).ID: return 179;
+ case BirchLeaves::BirchLeaves(4, false).ID: return 180;
+ case BirchLeaves::BirchLeaves(5, true).ID: return 181;
+ case BirchLeaves::BirchLeaves(5, false).ID: return 182;
+ case BirchLeaves::BirchLeaves(6, true).ID: return 183;
+ case BirchLeaves::BirchLeaves(6, false).ID: return 184;
+ case BirchLeaves::BirchLeaves(7, true).ID: return 185;
+ case BirchLeaves::BirchLeaves(7, false).ID: return 186;
+ case BirchLog::BirchLog(BirchLog::Axis::X).ID: return 79;
+ case BirchLog::BirchLog(BirchLog::Axis::Y).ID: return 80;
+ case BirchLog::BirchLog(BirchLog::Axis::Z).ID: return 81;
+ case BirchPlanks::BirchPlanks().ID: return 17;
+ case BirchPressurePlate::BirchPressurePlate(true).ID: return 3877;
+ case BirchPressurePlate::BirchPressurePlate(false).ID: return 3878;
+ case BirchSapling::BirchSapling(0).ID: return 25;
+ case BirchSapling::BirchSapling(1).ID: return 26;
+ case BirchSign::BirchSign(0).ID: return 3446;
+ case BirchSign::BirchSign(1).ID: return 3448;
+ case BirchSign::BirchSign(2).ID: return 3450;
+ case BirchSign::BirchSign(3).ID: return 3452;
+ case BirchSign::BirchSign(4).ID: return 3454;
+ case BirchSign::BirchSign(5).ID: return 3456;
+ case BirchSign::BirchSign(6).ID: return 3458;
+ case BirchSign::BirchSign(7).ID: return 3460;
+ case BirchSign::BirchSign(8).ID: return 3462;
+ case BirchSign::BirchSign(9).ID: return 3464;
+ case BirchSign::BirchSign(10).ID: return 3466;
+ case BirchSign::BirchSign(11).ID: return 3468;
+ case BirchSign::BirchSign(12).ID: return 3470;
+ case BirchSign::BirchSign(13).ID: return 3472;
+ case BirchSign::BirchSign(14).ID: return 3474;
+ case BirchSign::BirchSign(15).ID: return 3476;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Top).ID: return 8313;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Bottom).ID: return 8315;
+ case BirchSlab::BirchSlab(BirchSlab::Type::Double).ID: return 8317;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5485;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5487;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5489;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5491;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5493;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5495;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5497;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5499;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5501;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5503;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5505;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5507;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5509;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5511;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5513;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5515;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5517;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5519;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5521;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_ZP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5523;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5525;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5527;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5529;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5531;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5533;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5535;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5537;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5539;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5541;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XM, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5543;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::Straight).ID: return 5545;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerLeft).ID: return 5547;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::InnerRight).ID: return 5549;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterLeft).ID: return 5551;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Top, BirchStairs::Shape::OuterRight).ID: return 5553;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::Straight).ID: return 5555;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerLeft).ID: return 5557;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::InnerRight).ID: return 5559;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterLeft).ID: return 5561;
+ case BirchStairs::BirchStairs(eBlockFace::BLOCK_FACE_XP, BirchStairs::Half::Bottom, BirchStairs::Shape::OuterRight).ID: return 5563;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, true).ID: return 4240;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, true, false).ID: return 4242;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, true).ID: return 4244;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Top, false, false).ID: return 4246;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, true).ID: return 4248;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, true, false).ID: return 4250;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, true).ID: return 4252;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZM, BirchTrapdoor::Half::Bottom, false, false).ID: return 4254;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, true).ID: return 4256;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, true, false).ID: return 4258;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, true).ID: return 4260;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Top, false, false).ID: return 4262;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, true).ID: return 4264;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, true, false).ID: return 4266;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, true).ID: return 4268;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_ZP, BirchTrapdoor::Half::Bottom, false, false).ID: return 4270;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, true).ID: return 4272;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, true, false).ID: return 4274;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, true).ID: return 4276;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Top, false, false).ID: return 4278;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, true).ID: return 4280;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, true, false).ID: return 4282;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, true).ID: return 4284;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XM, BirchTrapdoor::Half::Bottom, false, false).ID: return 4286;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, true).ID: return 4288;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, true, false).ID: return 4290;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, true).ID: return 4292;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Top, false, false).ID: return 4294;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, true).ID: return 4296;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, true, false).ID: return 4298;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, true).ID: return 4300;
+ case BirchTrapdoor::BirchTrapdoor(eBlockFace::BLOCK_FACE_XP, BirchTrapdoor::Half::Bottom, false, false).ID: return 4302;
+ case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3752;
+ case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3754;
+ case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3756;
+ case BirchWallSign::BirchWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3758;
+ case BirchWood::BirchWood(BirchWood::Axis::X).ID: return 115;
+ case BirchWood::BirchWood(BirchWood::Axis::Y).ID: return 116;
+ case BirchWood::BirchWood(BirchWood::Axis::Z).ID: return 117;
+ case BlackBanner::BlackBanner(0).ID: return 8137;
+ case BlackBanner::BlackBanner(1).ID: return 8138;
+ case BlackBanner::BlackBanner(2).ID: return 8139;
+ case BlackBanner::BlackBanner(3).ID: return 8140;
+ case BlackBanner::BlackBanner(4).ID: return 8141;
+ case BlackBanner::BlackBanner(5).ID: return 8142;
+ case BlackBanner::BlackBanner(6).ID: return 8143;
+ case BlackBanner::BlackBanner(7).ID: return 8144;
+ case BlackBanner::BlackBanner(8).ID: return 8145;
+ case BlackBanner::BlackBanner(9).ID: return 8146;
+ case BlackBanner::BlackBanner(10).ID: return 8147;
+ case BlackBanner::BlackBanner(11).ID: return 8148;
+ case BlackBanner::BlackBanner(12).ID: return 8149;
+ case BlackBanner::BlackBanner(13).ID: return 8150;
+ case BlackBanner::BlackBanner(14).ID: return 8151;
+ case BlackBanner::BlackBanner(15).ID: return 8152;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Head).ID: return 1289;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, true, BlackBed::Part::Foot).ID: return 1290;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Head).ID: return 1291;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZM, false, BlackBed::Part::Foot).ID: return 1292;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Head).ID: return 1293;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, true, BlackBed::Part::Foot).ID: return 1294;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Head).ID: return 1295;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_ZP, false, BlackBed::Part::Foot).ID: return 1296;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Head).ID: return 1297;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, true, BlackBed::Part::Foot).ID: return 1298;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Head).ID: return 1299;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XM, false, BlackBed::Part::Foot).ID: return 1300;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Head).ID: return 1301;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, true, BlackBed::Part::Foot).ID: return 1302;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Head).ID: return 1303;
+ case BlackBed::BlackBed(eBlockFace::BLOCK_FACE_XP, false, BlackBed::Part::Foot).ID: return 1304;
+ case BlackCarpet::BlackCarpet().ID: return 7881;
+ case BlackConcrete::BlackConcrete().ID: return 9453;
+ case BlackConcretePowder::BlackConcretePowder().ID: return 9469;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9434;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9435;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9436;
+ case BlackGlazedTerracotta::BlackGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9437;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9368;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9369;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9370;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9371;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9372;
+ case BlackShulkerBox::BlackShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9373;
+ case BlackStainedGlass::BlackStainedGlass().ID: return 4110;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, true).ID: return 7345;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, true, false).ID: return 7346;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, true).ID: return 7349;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, true, false, false).ID: return 7350;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, true).ID: return 7353;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, true, false).ID: return 7354;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, true).ID: return 7357;
+ case BlackStainedGlassPane::BlackStainedGlassPane(true, false, false, false).ID: return 7358;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, true).ID: return 7361;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, true, false).ID: return 7362;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, true).ID: return 7365;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, true, false, false).ID: return 7366;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, true).ID: return 7369;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, true, false).ID: return 7370;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, true).ID: return 7373;
+ case BlackStainedGlassPane::BlackStainedGlassPane(false, false, false, false).ID: return 7374;
+ case BlackTerracotta::BlackTerracotta().ID: return 6862;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8213;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8214;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8215;
+ case BlackWallBanner::BlackWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8216;
+ case BlackWool::BlackWool().ID: return 1399;
+ case Blackstone::Blackstone().ID: return 15839;
+ case BlackstoneSlab::BlackstoneSlab(BlackstoneSlab::Type::Top).ID: return 16245;
+ case BlackstoneSlab::BlackstoneSlab(BlackstoneSlab::Type::Bottom).ID: return 16247;
+ case BlackstoneSlab::BlackstoneSlab(BlackstoneSlab::Type::Double).ID: return 16249;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::Straight).ID: return 15841;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerLeft).ID: return 15843;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerRight).ID: return 15845;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterLeft).ID: return 15847;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterRight).ID: return 15849;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::Straight).ID: return 15851;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerLeft).ID: return 15853;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerRight).ID: return 15855;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterLeft).ID: return 15857;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterRight).ID: return 15859;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::Straight).ID: return 15861;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerLeft).ID: return 15863;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerRight).ID: return 15865;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterLeft).ID: return 15867;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterRight).ID: return 15869;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::Straight).ID: return 15871;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerLeft).ID: return 15873;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerRight).ID: return 15875;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterLeft).ID: return 15877;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterRight).ID: return 15879;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::Straight).ID: return 15881;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerLeft).ID: return 15883;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerRight).ID: return 15885;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterLeft).ID: return 15887;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterRight).ID: return 15889;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::Straight).ID: return 15891;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerLeft).ID: return 15893;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerRight).ID: return 15895;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterLeft).ID: return 15897;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XM, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterRight).ID: return 15899;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::Straight).ID: return 15901;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerLeft).ID: return 15903;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::InnerRight).ID: return 15905;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterLeft).ID: return 15907;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Top, BlackstoneStairs::Shape::OuterRight).ID: return 15909;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::Straight).ID: return 15911;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerLeft).ID: return 15913;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::InnerRight).ID: return 15915;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterLeft).ID: return 15917;
+ case BlackstoneStairs::BlackstoneStairs(eBlockFace::BLOCK_FACE_XP, BlackstoneStairs::Half::Bottom, BlackstoneStairs::Shape::OuterRight).ID: return 15919;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::None).ID: return 15923;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Low).ID: return 15924;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall).ID: return 15925;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::None).ID: return 15929;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Low).ID: return 15930;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall).ID: return 15931;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::None).ID: return 15935;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low).ID: return 15936;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall).ID: return 15937;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::None).ID: return 15941;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low).ID: return 15942;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall).ID: return 15943;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None).ID: return 15947;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low).ID: return 15948;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall).ID: return 15949;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None).ID: return 15953;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low).ID: return 15954;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall).ID: return 15955;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::None).ID: return 15959;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Low).ID: return 15960;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall).ID: return 15961;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::None).ID: return 15965;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Low).ID: return 15966;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall).ID: return 15967;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::None).ID: return 15971;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low).ID: return 15972;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall).ID: return 15973;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::None).ID: return 15977;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low).ID: return 15978;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall).ID: return 15979;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None).ID: return 15983;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low).ID: return 15984;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall).ID: return 15985;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None).ID: return 15989;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low).ID: return 15990;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall).ID: return 15991;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::None).ID: return 15995;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Low).ID: return 15996;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall).ID: return 15997;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::None).ID: return 16001;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Low).ID: return 16002;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall).ID: return 16003;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::None).ID: return 16007;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low).ID: return 16008;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall).ID: return 16009;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::None).ID: return 16013;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low).ID: return 16014;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall).ID: return 16015;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None).ID: return 16019;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low).ID: return 16020;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall).ID: return 16021;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None).ID: return 16025;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low).ID: return 16026;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::None, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall).ID: return 16027;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::None).ID: return 16031;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Low).ID: return 16032;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall).ID: return 16033;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::None).ID: return 16037;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Low).ID: return 16038;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall).ID: return 16039;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::None).ID: return 16043;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low).ID: return 16044;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall).ID: return 16045;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::None).ID: return 16049;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low).ID: return 16050;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall).ID: return 16051;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None).ID: return 16055;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low).ID: return 16056;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall).ID: return 16057;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None).ID: return 16061;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low).ID: return 16062;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall).ID: return 16063;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::None).ID: return 16067;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Low).ID: return 16068;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall).ID: return 16069;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::None).ID: return 16073;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Low).ID: return 16074;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall).ID: return 16075;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::None).ID: return 16079;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low).ID: return 16080;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall).ID: return 16081;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::None).ID: return 16085;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low).ID: return 16086;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall).ID: return 16087;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None).ID: return 16091;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low).ID: return 16092;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall).ID: return 16093;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None).ID: return 16097;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low).ID: return 16098;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall).ID: return 16099;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::None).ID: return 16103;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Low).ID: return 16104;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall).ID: return 16105;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::None).ID: return 16109;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Low).ID: return 16110;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall).ID: return 16111;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::None).ID: return 16115;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low).ID: return 16116;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall).ID: return 16117;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::None).ID: return 16121;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low).ID: return 16122;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall).ID: return 16123;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None).ID: return 16127;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low).ID: return 16128;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall).ID: return 16129;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None).ID: return 16133;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low).ID: return 16134;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Low, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall).ID: return 16135;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::None).ID: return 16139;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Low).ID: return 16140;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall).ID: return 16141;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::None).ID: return 16145;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Low).ID: return 16146;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall).ID: return 16147;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::None).ID: return 16151;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low).ID: return 16152;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall).ID: return 16153;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::None).ID: return 16157;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low).ID: return 16158;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall).ID: return 16159;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None).ID: return 16163;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low).ID: return 16164;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall).ID: return 16165;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None).ID: return 16169;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low).ID: return 16170;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::None, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall).ID: return 16171;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::None).ID: return 16175;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Low).ID: return 16176;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall).ID: return 16177;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::None).ID: return 16181;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Low).ID: return 16182;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall).ID: return 16183;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::None).ID: return 16187;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low).ID: return 16188;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall).ID: return 16189;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::None).ID: return 16193;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low).ID: return 16194;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall).ID: return 16195;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None).ID: return 16199;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low).ID: return 16200;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall).ID: return 16201;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None).ID: return 16205;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low).ID: return 16206;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Low, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall).ID: return 16207;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::None).ID: return 16211;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Low).ID: return 16212;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, true, BlackstoneWall::West::Tall).ID: return 16213;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::None).ID: return 16217;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Low).ID: return 16218;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::None, false, BlackstoneWall::West::Tall).ID: return 16219;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::None).ID: return 16223;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Low).ID: return 16224;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, true, BlackstoneWall::West::Tall).ID: return 16225;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::None).ID: return 16229;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Low).ID: return 16230;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Low, false, BlackstoneWall::West::Tall).ID: return 16231;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::None).ID: return 16235;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Low).ID: return 16236;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, true, BlackstoneWall::West::Tall).ID: return 16237;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::None).ID: return 16241;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Low).ID: return 16242;
+ case BlackstoneWall::BlackstoneWall(BlackstoneWall::East::Tall, BlackstoneWall::North::Tall, BlackstoneWall::South::Tall, false, BlackstoneWall::West::Tall).ID: return 16243;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, true).ID: return 14811;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZM, false).ID: return 14812;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, true).ID: return 14813;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_ZP, false).ID: return 14814;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, true).ID: return 14815;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XM, false).ID: return 14816;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, true).ID: return 14817;
+ case BlastFurnace::BlastFurnace(eBlockFace::BLOCK_FACE_XP, false).ID: return 14818;
+ case BlueBanner::BlueBanner(0).ID: return 8073;
+ case BlueBanner::BlueBanner(1).ID: return 8074;
+ case BlueBanner::BlueBanner(2).ID: return 8075;
+ case BlueBanner::BlueBanner(3).ID: return 8076;
+ case BlueBanner::BlueBanner(4).ID: return 8077;
+ case BlueBanner::BlueBanner(5).ID: return 8078;
+ case BlueBanner::BlueBanner(6).ID: return 8079;
+ case BlueBanner::BlueBanner(7).ID: return 8080;
+ case BlueBanner::BlueBanner(8).ID: return 8081;
+ case BlueBanner::BlueBanner(9).ID: return 8082;
+ case BlueBanner::BlueBanner(10).ID: return 8083;
+ case BlueBanner::BlueBanner(11).ID: return 8084;
+ case BlueBanner::BlueBanner(12).ID: return 8085;
+ case BlueBanner::BlueBanner(13).ID: return 8086;
+ case BlueBanner::BlueBanner(14).ID: return 8087;
+ case BlueBanner::BlueBanner(15).ID: return 8088;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Head).ID: return 1225;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, true, BlueBed::Part::Foot).ID: return 1226;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Head).ID: return 1227;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZM, false, BlueBed::Part::Foot).ID: return 1228;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Head).ID: return 1229;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, true, BlueBed::Part::Foot).ID: return 1230;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Head).ID: return 1231;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_ZP, false, BlueBed::Part::Foot).ID: return 1232;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Head).ID: return 1233;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, true, BlueBed::Part::Foot).ID: return 1234;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Head).ID: return 1235;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XM, false, BlueBed::Part::Foot).ID: return 1236;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Head).ID: return 1237;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, true, BlueBed::Part::Foot).ID: return 1238;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Head).ID: return 1239;
+ case BlueBed::BlueBed(eBlockFace::BLOCK_FACE_XP, false, BlueBed::Part::Foot).ID: return 1240;
+ case BlueCarpet::BlueCarpet().ID: return 7877;
+ case BlueConcrete::BlueConcrete().ID: return 9449;
+ case BlueConcretePowder::BlueConcretePowder().ID: return 9465;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9418;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9419;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9420;
+ case BlueGlazedTerracotta::BlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9421;
+ case BlueIce::BlueIce().ID: return 9648;
+ case BlueOrchid::BlueOrchid().ID: return 1414;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9344;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9345;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9346;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9347;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9348;
+ case BlueShulkerBox::BlueShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9349;
+ case BlueStainedGlass::BlueStainedGlass().ID: return 4106;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, true).ID: return 7217;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, true, false).ID: return 7218;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, true).ID: return 7221;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, true, false, false).ID: return 7222;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, true).ID: return 7225;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, true, false).ID: return 7226;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, true).ID: return 7229;
+ case BlueStainedGlassPane::BlueStainedGlassPane(true, false, false, false).ID: return 7230;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, true).ID: return 7233;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, true, false).ID: return 7234;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, true).ID: return 7237;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, true, false, false).ID: return 7238;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, true).ID: return 7241;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, true, false).ID: return 7242;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, true).ID: return 7245;
+ case BlueStainedGlassPane::BlueStainedGlassPane(false, false, false, false).ID: return 7246;
+ case BlueTerracotta::BlueTerracotta().ID: return 6858;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8197;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8198;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8199;
+ case BlueWallBanner::BlueWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8200;
+ case BlueWool::BlueWool().ID: return 1395;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::X).ID: return 9256;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::Y).ID: return 9257;
+ case BoneBlock::BoneBlock(BoneBlock::Axis::Z).ID: return 9258;
+ case Bookshelf::Bookshelf().ID: return 1432;
+ case BrainCoral::BrainCoral().ID: return 9533;
+ case BrainCoralBlock::BrainCoralBlock().ID: return 9516;
+ case BrainCoralFan::BrainCoralFan().ID: return 9553;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9609;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9611;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9613;
+ case BrainCoralWallFan::BrainCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9615;
+ case BrewingStand::BrewingStand(true, true, true).ID: return 5133;
+ case BrewingStand::BrewingStand(true, true, false).ID: return 5134;
+ case BrewingStand::BrewingStand(true, false, true).ID: return 5135;
+ case BrewingStand::BrewingStand(true, false, false).ID: return 5136;
+ case BrewingStand::BrewingStand(false, true, true).ID: return 5137;
+ case BrewingStand::BrewingStand(false, true, false).ID: return 5138;
+ case BrewingStand::BrewingStand(false, false, true).ID: return 5139;
+ case BrewingStand::BrewingStand(false, false, false).ID: return 5140;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Top).ID: return 8373;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Bottom).ID: return 8375;
+ case BrickSlab::BrickSlab(BrickSlab::Type::Double).ID: return 8377;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4853;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4855;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4857;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4859;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4861;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4863;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4865;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4867;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4869;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4871;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4873;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4875;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4877;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4879;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4881;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4883;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4885;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4887;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4889;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_ZP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4891;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4893;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4895;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4897;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4899;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4901;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4903;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4905;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4907;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4909;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XM, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4911;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::Straight).ID: return 4913;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerLeft).ID: return 4915;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::InnerRight).ID: return 4917;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterLeft).ID: return 4919;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Top, BrickStairs::Shape::OuterRight).ID: return 4921;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::Straight).ID: return 4923;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerLeft).ID: return 4925;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::InnerRight).ID: return 4927;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterLeft).ID: return 4929;
+ case BrickStairs::BrickStairs(eBlockFace::BLOCK_FACE_XP, BrickStairs::Half::Bottom, BrickStairs::Shape::OuterRight).ID: return 4931;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None).ID: return 10870;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low).ID: return 10871;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Tall).ID: return 10872;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None).ID: return 10876;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low).ID: return 10877;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Tall).ID: return 10878;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None).ID: return 10882;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 10883;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Tall).ID: return 10884;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None).ID: return 10888;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 10889;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Tall).ID: return 10890;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::None).ID: return 10894;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Low).ID: return 10895;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Tall).ID: return 10896;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::None).ID: return 10900;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Low).ID: return 10901;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Tall).ID: return 10902;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None).ID: return 10906;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low).ID: return 10907;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Tall).ID: return 10908;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None).ID: return 10912;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low).ID: return 10913;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Tall).ID: return 10914;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None).ID: return 10918;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 10919;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Tall).ID: return 10920;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None).ID: return 10924;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 10925;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Tall).ID: return 10926;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::None).ID: return 10930;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Low).ID: return 10931;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Tall).ID: return 10932;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::None).ID: return 10936;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Low).ID: return 10937;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Tall).ID: return 10938;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::None).ID: return 10942;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Low).ID: return 10943;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Tall).ID: return 10944;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::None).ID: return 10948;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Low).ID: return 10949;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Tall).ID: return 10950;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::None).ID: return 10954;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 10955;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Tall).ID: return 10956;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::None).ID: return 10960;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 10961;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Tall).ID: return 10962;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::None).ID: return 10966;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Low).ID: return 10967;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Tall).ID: return 10968;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::None).ID: return 10972;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Low).ID: return 10973;
+ case BrickWall::BrickWall(BrickWall::East::None, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Tall).ID: return 10974;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None).ID: return 10978;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low).ID: return 10979;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Tall).ID: return 10980;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None).ID: return 10984;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low).ID: return 10985;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Tall).ID: return 10986;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None).ID: return 10990;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 10991;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Tall).ID: return 10992;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None).ID: return 10996;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 10997;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Tall).ID: return 10998;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::None).ID: return 11002;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Low).ID: return 11003;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Tall).ID: return 11004;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::None).ID: return 11008;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Low).ID: return 11009;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Tall).ID: return 11010;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None).ID: return 11014;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low).ID: return 11015;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Tall).ID: return 11016;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None).ID: return 11020;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low).ID: return 11021;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Tall).ID: return 11022;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None).ID: return 11026;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 11027;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Tall).ID: return 11028;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None).ID: return 11032;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 11033;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Tall).ID: return 11034;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::None).ID: return 11038;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Low).ID: return 11039;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Tall).ID: return 11040;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::None).ID: return 11044;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Low).ID: return 11045;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Tall).ID: return 11046;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::None).ID: return 11050;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Low).ID: return 11051;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Tall).ID: return 11052;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::None).ID: return 11056;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Low).ID: return 11057;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Tall).ID: return 11058;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::None).ID: return 11062;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 11063;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Tall).ID: return 11064;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::None).ID: return 11068;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 11069;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Tall).ID: return 11070;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::None).ID: return 11074;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Low).ID: return 11075;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Tall).ID: return 11076;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::None).ID: return 11080;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Low).ID: return 11081;
+ case BrickWall::BrickWall(BrickWall::East::Low, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Tall).ID: return 11082;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::None).ID: return 11086;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Low).ID: return 11087;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, true, BrickWall::West::Tall).ID: return 11088;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::None).ID: return 11092;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Low).ID: return 11093;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::None, false, BrickWall::West::Tall).ID: return 11094;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::None).ID: return 11098;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 11099;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, true, BrickWall::West::Tall).ID: return 11100;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::None).ID: return 11104;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 11105;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Low, false, BrickWall::West::Tall).ID: return 11106;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::None).ID: return 11110;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Low).ID: return 11111;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, true, BrickWall::West::Tall).ID: return 11112;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::None).ID: return 11116;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Low).ID: return 11117;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::None, BrickWall::South::Tall, false, BrickWall::West::Tall).ID: return 11118;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::None).ID: return 11122;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Low).ID: return 11123;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, true, BrickWall::West::Tall).ID: return 11124;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::None).ID: return 11128;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Low).ID: return 11129;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::None, false, BrickWall::West::Tall).ID: return 11130;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::None).ID: return 11134;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 11135;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, true, BrickWall::West::Tall).ID: return 11136;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::None).ID: return 11140;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 11141;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Low, false, BrickWall::West::Tall).ID: return 11142;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::None).ID: return 11146;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Low).ID: return 11147;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, true, BrickWall::West::Tall).ID: return 11148;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::None).ID: return 11152;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Low).ID: return 11153;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Low, BrickWall::South::Tall, false, BrickWall::West::Tall).ID: return 11154;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::None).ID: return 11158;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Low).ID: return 11159;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, true, BrickWall::West::Tall).ID: return 11160;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::None).ID: return 11164;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Low).ID: return 11165;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::None, false, BrickWall::West::Tall).ID: return 11166;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::None).ID: return 11170;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Low).ID: return 11171;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, true, BrickWall::West::Tall).ID: return 11172;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::None).ID: return 11176;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Low).ID: return 11177;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Low, false, BrickWall::West::Tall).ID: return 11178;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::None).ID: return 11182;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Low).ID: return 11183;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, true, BrickWall::West::Tall).ID: return 11184;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::None).ID: return 11188;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Low).ID: return 11189;
+ case BrickWall::BrickWall(BrickWall::East::Tall, BrickWall::North::Tall, BrickWall::South::Tall, false, BrickWall::West::Tall).ID: return 11190;
+ case Bricks::Bricks().ID: return 1429;
+ case BrownBanner::BrownBanner(0).ID: return 8089;
+ case BrownBanner::BrownBanner(1).ID: return 8090;
+ case BrownBanner::BrownBanner(2).ID: return 8091;
+ case BrownBanner::BrownBanner(3).ID: return 8092;
+ case BrownBanner::BrownBanner(4).ID: return 8093;
+ case BrownBanner::BrownBanner(5).ID: return 8094;
+ case BrownBanner::BrownBanner(6).ID: return 8095;
+ case BrownBanner::BrownBanner(7).ID: return 8096;
+ case BrownBanner::BrownBanner(8).ID: return 8097;
+ case BrownBanner::BrownBanner(9).ID: return 8098;
+ case BrownBanner::BrownBanner(10).ID: return 8099;
+ case BrownBanner::BrownBanner(11).ID: return 8100;
+ case BrownBanner::BrownBanner(12).ID: return 8101;
+ case BrownBanner::BrownBanner(13).ID: return 8102;
+ case BrownBanner::BrownBanner(14).ID: return 8103;
+ case BrownBanner::BrownBanner(15).ID: return 8104;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Head).ID: return 1241;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, true, BrownBed::Part::Foot).ID: return 1242;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Head).ID: return 1243;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZM, false, BrownBed::Part::Foot).ID: return 1244;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Head).ID: return 1245;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, true, BrownBed::Part::Foot).ID: return 1246;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Head).ID: return 1247;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_ZP, false, BrownBed::Part::Foot).ID: return 1248;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Head).ID: return 1249;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, true, BrownBed::Part::Foot).ID: return 1250;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Head).ID: return 1251;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XM, false, BrownBed::Part::Foot).ID: return 1252;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Head).ID: return 1253;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, true, BrownBed::Part::Foot).ID: return 1254;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Head).ID: return 1255;
+ case BrownBed::BrownBed(eBlockFace::BLOCK_FACE_XP, false, BrownBed::Part::Foot).ID: return 1256;
+ case BrownCarpet::BrownCarpet().ID: return 7878;
+ case BrownConcrete::BrownConcrete().ID: return 9450;
+ case BrownConcretePowder::BrownConcretePowder().ID: return 9466;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9422;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9423;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9424;
+ case BrownGlazedTerracotta::BrownGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9425;
+ case BrownMushroom::BrownMushroom().ID: return 1425;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, true).ID: return 4505;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, true, false).ID: return 4506;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, true).ID: return 4507;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, true, false, false).ID: return 4508;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, true).ID: return 4509;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, true, false).ID: return 4510;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, true).ID: return 4511;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, true, false, false, false).ID: return 4512;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, true).ID: return 4513;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, true, false).ID: return 4514;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, true).ID: return 4515;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, true, false, false).ID: return 4516;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, true).ID: return 4517;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, true, false).ID: return 4518;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, true).ID: return 4519;
+ case BrownMushroomBlock::BrownMushroomBlock(true, true, false, false, false, false).ID: return 4520;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, true).ID: return 4521;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, true, false).ID: return 4522;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, true).ID: return 4523;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, true, false, false).ID: return 4524;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, true).ID: return 4525;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, true, false).ID: return 4526;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, true).ID: return 4527;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, true, false, false, false).ID: return 4528;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, true).ID: return 4529;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, true, false).ID: return 4530;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, true).ID: return 4531;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, true, false, false).ID: return 4532;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, true).ID: return 4533;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, true, false).ID: return 4534;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, true).ID: return 4535;
+ case BrownMushroomBlock::BrownMushroomBlock(true, false, false, false, false, false).ID: return 4536;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, true).ID: return 4537;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, true, false).ID: return 4538;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, true).ID: return 4539;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, true, false, false).ID: return 4540;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, true).ID: return 4541;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, true, false).ID: return 4542;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, true).ID: return 4543;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, true, false, false, false).ID: return 4544;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, true).ID: return 4545;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, true, false).ID: return 4546;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, true).ID: return 4547;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, true, false, false).ID: return 4548;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, true).ID: return 4549;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, true, false).ID: return 4550;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, true).ID: return 4551;
+ case BrownMushroomBlock::BrownMushroomBlock(false, true, false, false, false, false).ID: return 4552;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, true).ID: return 4553;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, true, false).ID: return 4554;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, true).ID: return 4555;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, true, false, false).ID: return 4556;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, true).ID: return 4557;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, true, false).ID: return 4558;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, true).ID: return 4559;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, true, false, false, false).ID: return 4560;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, true).ID: return 4561;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, true, false).ID: return 4562;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, true).ID: return 4563;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, true, false, false).ID: return 4564;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, true).ID: return 4565;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, true, false).ID: return 4566;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, true).ID: return 4567;
+ case BrownMushroomBlock::BrownMushroomBlock(false, false, false, false, false, false).ID: return 4568;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9350;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9351;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9352;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9353;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9354;
+ case BrownShulkerBox::BrownShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9355;
+ case BrownStainedGlass::BrownStainedGlass().ID: return 4107;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, true).ID: return 7249;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, true, false).ID: return 7250;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, true).ID: return 7253;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, true, false, false).ID: return 7254;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, true).ID: return 7257;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, true, false).ID: return 7258;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, true).ID: return 7261;
+ case BrownStainedGlassPane::BrownStainedGlassPane(true, false, false, false).ID: return 7262;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, true).ID: return 7265;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, true, false).ID: return 7266;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, true).ID: return 7269;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, true, false, false).ID: return 7270;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, true).ID: return 7273;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, true, false).ID: return 7274;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, true).ID: return 7277;
+ case BrownStainedGlassPane::BrownStainedGlassPane(false, false, false, false).ID: return 7278;
+ case BrownTerracotta::BrownTerracotta().ID: return 6859;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8201;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8202;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8203;
+ case BrownWallBanner::BrownWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8204;
+ case BrownWool::BrownWool().ID: return 1396;
+ case BubbleColumn::BubbleColumn(true).ID: return 9667;
+ case BubbleColumn::BubbleColumn(false).ID: return 9668;
+ case BubbleCoral::BubbleCoral().ID: return 9535;
+ case BubbleCoralBlock::BubbleCoralBlock().ID: return 9517;
+ case BubbleCoralFan::BubbleCoralFan().ID: return 9555;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9617;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9619;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9621;
+ case BubbleCoralWallFan::BubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9623;
+ case Cactus::Cactus(0).ID: return 3931;
+ case Cactus::Cactus(1).ID: return 3932;
+ case Cactus::Cactus(2).ID: return 3933;
+ case Cactus::Cactus(3).ID: return 3934;
+ case Cactus::Cactus(4).ID: return 3935;
+ case Cactus::Cactus(5).ID: return 3936;
+ case Cactus::Cactus(6).ID: return 3937;
+ case Cactus::Cactus(7).ID: return 3938;
+ case Cactus::Cactus(8).ID: return 3939;
+ case Cactus::Cactus(9).ID: return 3940;
+ case Cactus::Cactus(10).ID: return 3941;
+ case Cactus::Cactus(11).ID: return 3942;
+ case Cactus::Cactus(12).ID: return 3943;
+ case Cactus::Cactus(13).ID: return 3944;
+ case Cactus::Cactus(14).ID: return 3945;
+ case Cactus::Cactus(15).ID: return 3946;
+ case Cake::Cake(0).ID: return 4024;
+ case Cake::Cake(1).ID: return 4025;
+ case Cake::Cake(2).ID: return 4026;
+ case Cake::Cake(3).ID: return 4027;
+ case Cake::Cake(4).ID: return 4028;
+ case Cake::Cake(5).ID: return 4029;
+ case Cake::Cake(6).ID: return 4030;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 14891;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 14893;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 14895;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 14897;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 14899;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 14901;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 14903;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 14905;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, true).ID: return 14907;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, true, false).ID: return 14909;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, true).ID: return 14911;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XM, false, false).ID: return 14913;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, true).ID: return 14915;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, true, false).ID: return 14917;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, true).ID: return 14919;
+ case Campfire::Campfire(eBlockFace::BLOCK_FACE_XP, false, false).ID: return 14921;
+ case Carrots::Carrots(0).ID: return 6330;
+ case Carrots::Carrots(1).ID: return 6331;
+ case Carrots::Carrots(2).ID: return 6332;
+ case Carrots::Carrots(3).ID: return 6333;
+ case Carrots::Carrots(4).ID: return 6334;
+ case Carrots::Carrots(5).ID: return 6335;
+ case Carrots::Carrots(6).ID: return 6336;
+ case Carrots::Carrots(7).ID: return 6337;
+ case CartographyTable::CartographyTable().ID: return 14819;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZM).ID: return 4016;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_ZP).ID: return 4017;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XM).ID: return 4018;
+ case CarvedPumpkin::CarvedPumpkin(eBlockFace::BLOCK_FACE_XP).ID: return 4019;
+ case Cauldron::Cauldron(0).ID: return 5141;
+ case Cauldron::Cauldron(1).ID: return 5142;
+ case Cauldron::Cauldron(2).ID: return 5143;
+ case Cauldron::Cauldron(3).ID: return 5144;
+ case CaveAir::CaveAir().ID: return 9666;
+ case Chain::Chain().ID: return 4730;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 9237;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 9238;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 9239;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 9240;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 9241;
+ case ChainCommandBlock::ChainCommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 9242;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 9243;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 9244;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 9245;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 9246;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 9247;
+ case ChainCommandBlock::ChainCommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 9248;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Single).ID: return 2035;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Left).ID: return 2037;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZM, Chest::Type::Right).ID: return 2039;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Single).ID: return 2041;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Left).ID: return 2043;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_ZP, Chest::Type::Right).ID: return 2045;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Single).ID: return 2047;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Left).ID: return 2049;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XM, Chest::Type::Right).ID: return 2051;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Single).ID: return 2053;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Left).ID: return 2055;
+ case Chest::Chest(eBlockFace::BLOCK_FACE_XP, Chest::Type::Right).ID: return 2057;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZM).ID: return 6614;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_ZP).ID: return 6615;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XM).ID: return 6616;
+ case ChippedAnvil::ChippedAnvil(eBlockFace::BLOCK_FACE_XP).ID: return 6617;
+ case ChiseledNetherBricks::ChiseledNetherBricks().ID: return 17101;
+ case ChiseledPolishedBlackstone::ChiseledPolishedBlackstone().ID: return 16253;
+ case ChiseledQuartzBlock::ChiseledQuartzBlock().ID: return 6739;
+ case ChiseledRedSandstone::ChiseledRedSandstone().ID: return 8218;
+ case ChiseledSandstone::ChiseledSandstone().ID: return 247;
+ case ChiseledStoneBricks::ChiseledStoneBricks().ID: return 4498;
+ case ChorusFlower::ChorusFlower(0).ID: return 9128;
+ case ChorusFlower::ChorusFlower(1).ID: return 9129;
+ case ChorusFlower::ChorusFlower(2).ID: return 9130;
+ case ChorusFlower::ChorusFlower(3).ID: return 9131;
+ case ChorusFlower::ChorusFlower(4).ID: return 9132;
+ case ChorusFlower::ChorusFlower(5).ID: return 9133;
+ case ChorusPlant::ChorusPlant(true, true, true, true, true, true).ID: return 9064;
+ case ChorusPlant::ChorusPlant(true, true, true, true, true, false).ID: return 9065;
+ case ChorusPlant::ChorusPlant(true, true, true, true, false, true).ID: return 9066;
+ case ChorusPlant::ChorusPlant(true, true, true, true, false, false).ID: return 9067;
+ case ChorusPlant::ChorusPlant(true, true, true, false, true, true).ID: return 9068;
+ case ChorusPlant::ChorusPlant(true, true, true, false, true, false).ID: return 9069;
+ case ChorusPlant::ChorusPlant(true, true, true, false, false, true).ID: return 9070;
+ case ChorusPlant::ChorusPlant(true, true, true, false, false, false).ID: return 9071;
+ case ChorusPlant::ChorusPlant(true, true, false, true, true, true).ID: return 9072;
+ case ChorusPlant::ChorusPlant(true, true, false, true, true, false).ID: return 9073;
+ case ChorusPlant::ChorusPlant(true, true, false, true, false, true).ID: return 9074;
+ case ChorusPlant::ChorusPlant(true, true, false, true, false, false).ID: return 9075;
+ case ChorusPlant::ChorusPlant(true, true, false, false, true, true).ID: return 9076;
+ case ChorusPlant::ChorusPlant(true, true, false, false, true, false).ID: return 9077;
+ case ChorusPlant::ChorusPlant(true, true, false, false, false, true).ID: return 9078;
+ case ChorusPlant::ChorusPlant(true, true, false, false, false, false).ID: return 9079;
+ case ChorusPlant::ChorusPlant(true, false, true, true, true, true).ID: return 9080;
+ case ChorusPlant::ChorusPlant(true, false, true, true, true, false).ID: return 9081;
+ case ChorusPlant::ChorusPlant(true, false, true, true, false, true).ID: return 9082;
+ case ChorusPlant::ChorusPlant(true, false, true, true, false, false).ID: return 9083;
+ case ChorusPlant::ChorusPlant(true, false, true, false, true, true).ID: return 9084;
+ case ChorusPlant::ChorusPlant(true, false, true, false, true, false).ID: return 9085;
+ case ChorusPlant::ChorusPlant(true, false, true, false, false, true).ID: return 9086;
+ case ChorusPlant::ChorusPlant(true, false, true, false, false, false).ID: return 9087;
+ case ChorusPlant::ChorusPlant(true, false, false, true, true, true).ID: return 9088;
+ case ChorusPlant::ChorusPlant(true, false, false, true, true, false).ID: return 9089;
+ case ChorusPlant::ChorusPlant(true, false, false, true, false, true).ID: return 9090;
+ case ChorusPlant::ChorusPlant(true, false, false, true, false, false).ID: return 9091;
+ case ChorusPlant::ChorusPlant(true, false, false, false, true, true).ID: return 9092;
+ case ChorusPlant::ChorusPlant(true, false, false, false, true, false).ID: return 9093;
+ case ChorusPlant::ChorusPlant(true, false, false, false, false, true).ID: return 9094;
+ case ChorusPlant::ChorusPlant(true, false, false, false, false, false).ID: return 9095;
+ case ChorusPlant::ChorusPlant(false, true, true, true, true, true).ID: return 9096;
+ case ChorusPlant::ChorusPlant(false, true, true, true, true, false).ID: return 9097;
+ case ChorusPlant::ChorusPlant(false, true, true, true, false, true).ID: return 9098;
+ case ChorusPlant::ChorusPlant(false, true, true, true, false, false).ID: return 9099;
+ case ChorusPlant::ChorusPlant(false, true, true, false, true, true).ID: return 9100;
+ case ChorusPlant::ChorusPlant(false, true, true, false, true, false).ID: return 9101;
+ case ChorusPlant::ChorusPlant(false, true, true, false, false, true).ID: return 9102;
+ case ChorusPlant::ChorusPlant(false, true, true, false, false, false).ID: return 9103;
+ case ChorusPlant::ChorusPlant(false, true, false, true, true, true).ID: return 9104;
+ case ChorusPlant::ChorusPlant(false, true, false, true, true, false).ID: return 9105;
+ case ChorusPlant::ChorusPlant(false, true, false, true, false, true).ID: return 9106;
+ case ChorusPlant::ChorusPlant(false, true, false, true, false, false).ID: return 9107;
+ case ChorusPlant::ChorusPlant(false, true, false, false, true, true).ID: return 9108;
+ case ChorusPlant::ChorusPlant(false, true, false, false, true, false).ID: return 9109;
+ case ChorusPlant::ChorusPlant(false, true, false, false, false, true).ID: return 9110;
+ case ChorusPlant::ChorusPlant(false, true, false, false, false, false).ID: return 9111;
+ case ChorusPlant::ChorusPlant(false, false, true, true, true, true).ID: return 9112;
+ case ChorusPlant::ChorusPlant(false, false, true, true, true, false).ID: return 9113;
+ case ChorusPlant::ChorusPlant(false, false, true, true, false, true).ID: return 9114;
+ case ChorusPlant::ChorusPlant(false, false, true, true, false, false).ID: return 9115;
+ case ChorusPlant::ChorusPlant(false, false, true, false, true, true).ID: return 9116;
+ case ChorusPlant::ChorusPlant(false, false, true, false, true, false).ID: return 9117;
+ case ChorusPlant::ChorusPlant(false, false, true, false, false, true).ID: return 9118;
+ case ChorusPlant::ChorusPlant(false, false, true, false, false, false).ID: return 9119;
+ case ChorusPlant::ChorusPlant(false, false, false, true, true, true).ID: return 9120;
+ case ChorusPlant::ChorusPlant(false, false, false, true, true, false).ID: return 9121;
+ case ChorusPlant::ChorusPlant(false, false, false, true, false, true).ID: return 9122;
+ case ChorusPlant::ChorusPlant(false, false, false, true, false, false).ID: return 9123;
+ case ChorusPlant::ChorusPlant(false, false, false, false, true, true).ID: return 9124;
+ case ChorusPlant::ChorusPlant(false, false, false, false, true, false).ID: return 9125;
+ case ChorusPlant::ChorusPlant(false, false, false, false, false, true).ID: return 9126;
+ case ChorusPlant::ChorusPlant(false, false, false, false, false, false).ID: return 9127;
+ case Clay::Clay().ID: return 3947;
+ case CoalBlock::CoalBlock().ID: return 7883;
+ case CoalOre::CoalOre().ID: return 71;
+ case CoarseDirt::CoarseDirt().ID: return 11;
+ case Cobblestone::Cobblestone().ID: return 14;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Top).ID: return 8367;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Bottom).ID: return 8369;
+ case CobblestoneSlab::CobblestoneSlab(CobblestoneSlab::Type::Double).ID: return 8371;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3656;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3658;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3660;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3662;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3664;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3666;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3668;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3670;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3672;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3674;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3676;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3678;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3680;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3682;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3684;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3686;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3688;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3690;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3692;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3694;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3696;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3698;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3700;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3702;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3704;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3706;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3708;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3710;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3712;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XM, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3714;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::Straight).ID: return 3716;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerLeft).ID: return 3718;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::InnerRight).ID: return 3720;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterLeft).ID: return 3722;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Top, CobblestoneStairs::Shape::OuterRight).ID: return 3724;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::Straight).ID: return 3726;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerLeft).ID: return 3728;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::InnerRight).ID: return 3730;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterLeft).ID: return 3732;
+ case CobblestoneStairs::CobblestoneStairs(eBlockFace::BLOCK_FACE_XP, CobblestoneStairs::Half::Bottom, CobblestoneStairs::Shape::OuterRight).ID: return 3734;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5660;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5661;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall).ID: return 5662;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5666;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5667;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall).ID: return 5668;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5672;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5673;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall).ID: return 5674;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5678;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5679;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall).ID: return 5680;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None).ID: return 5684;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low).ID: return 5685;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall).ID: return 5686;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None).ID: return 5690;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low).ID: return 5691;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall).ID: return 5692;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5696;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5697;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall).ID: return 5698;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5702;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5703;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall).ID: return 5704;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5708;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5709;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall).ID: return 5710;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5714;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5715;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall).ID: return 5716;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None).ID: return 5720;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low).ID: return 5721;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall).ID: return 5722;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None).ID: return 5726;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low).ID: return 5727;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall).ID: return 5728;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5732;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5733;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall).ID: return 5734;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5738;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5739;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall).ID: return 5740;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5744;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5745;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall).ID: return 5746;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5750;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5751;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall).ID: return 5752;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None).ID: return 5756;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low).ID: return 5757;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall).ID: return 5758;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None).ID: return 5762;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low).ID: return 5763;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::None, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall).ID: return 5764;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5768;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5769;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall).ID: return 5770;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5774;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5775;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall).ID: return 5776;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5780;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5781;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall).ID: return 5782;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5786;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5787;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall).ID: return 5788;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None).ID: return 5792;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low).ID: return 5793;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall).ID: return 5794;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None).ID: return 5798;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low).ID: return 5799;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall).ID: return 5800;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5804;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5805;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall).ID: return 5806;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5810;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5811;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall).ID: return 5812;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5816;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5817;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall).ID: return 5818;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5822;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5823;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall).ID: return 5824;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None).ID: return 5828;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low).ID: return 5829;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall).ID: return 5830;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None).ID: return 5834;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low).ID: return 5835;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall).ID: return 5836;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5840;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5841;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall).ID: return 5842;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5846;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5847;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall).ID: return 5848;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5852;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5853;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall).ID: return 5854;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5858;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5859;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall).ID: return 5860;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None).ID: return 5864;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low).ID: return 5865;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall).ID: return 5866;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None).ID: return 5870;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low).ID: return 5871;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Low, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall).ID: return 5872;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5876;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5877;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall).ID: return 5878;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5882;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5883;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall).ID: return 5884;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5888;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5889;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall).ID: return 5890;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5894;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5895;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall).ID: return 5896;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None).ID: return 5900;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low).ID: return 5901;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall).ID: return 5902;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None).ID: return 5906;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low).ID: return 5907;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::None, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall).ID: return 5908;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5912;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5913;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall).ID: return 5914;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5918;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5919;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall).ID: return 5920;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5924;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5925;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall).ID: return 5926;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5930;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5931;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall).ID: return 5932;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None).ID: return 5936;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low).ID: return 5937;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall).ID: return 5938;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None).ID: return 5942;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low).ID: return 5943;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Low, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall).ID: return 5944;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::None).ID: return 5948;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Low).ID: return 5949;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, true, CobblestoneWall::West::Tall).ID: return 5950;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::None).ID: return 5954;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Low).ID: return 5955;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::None, false, CobblestoneWall::West::Tall).ID: return 5956;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::None).ID: return 5960;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Low).ID: return 5961;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, true, CobblestoneWall::West::Tall).ID: return 5962;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::None).ID: return 5966;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Low).ID: return 5967;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Low, false, CobblestoneWall::West::Tall).ID: return 5968;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::None).ID: return 5972;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Low).ID: return 5973;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, true, CobblestoneWall::West::Tall).ID: return 5974;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::None).ID: return 5978;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Low).ID: return 5979;
+ case CobblestoneWall::CobblestoneWall(CobblestoneWall::East::Tall, CobblestoneWall::North::Tall, CobblestoneWall::South::Tall, false, CobblestoneWall::West::Tall).ID: return 5980;
+ case Cobweb::Cobweb().ID: return 1341;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZM).ID: return 5158;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_ZP).ID: return 5159;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XM).ID: return 5160;
+ case Cocoa::Cocoa(0, eBlockFace::BLOCK_FACE_XP).ID: return 5161;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZM).ID: return 5162;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_ZP).ID: return 5163;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XM).ID: return 5164;
+ case Cocoa::Cocoa(1, eBlockFace::BLOCK_FACE_XP).ID: return 5165;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZM).ID: return 5166;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_ZP).ID: return 5167;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XM).ID: return 5168;
+ case Cocoa::Cocoa(2, eBlockFace::BLOCK_FACE_XP).ID: return 5169;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 5644;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 5645;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 5646;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 5647;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 5648;
+ case CommandBlock::CommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 5649;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 5650;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 5651;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 5652;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 5653;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 5654;
+ case CommandBlock::CommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 5655;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, true).ID: return 6678;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Compare, false).ID: return 6679;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, true).ID: return 6680;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZM, Comparator::Mode::Subtract, false).ID: return 6681;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, true).ID: return 6682;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Compare, false).ID: return 6683;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, true).ID: return 6684;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_ZP, Comparator::Mode::Subtract, false).ID: return 6685;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, true).ID: return 6686;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Compare, false).ID: return 6687;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, true).ID: return 6688;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XM, Comparator::Mode::Subtract, false).ID: return 6689;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, true).ID: return 6690;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Compare, false).ID: return 6691;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, true).ID: return 6692;
+ case Comparator::Comparator(eBlockFace::BLOCK_FACE_XP, Comparator::Mode::Subtract, false).ID: return 6693;
+ case Composter::Composter(0).ID: return 15751;
+ case Composter::Composter(1).ID: return 15752;
+ case Composter::Composter(2).ID: return 15753;
+ case Composter::Composter(3).ID: return 15754;
+ case Composter::Composter(4).ID: return 15755;
+ case Composter::Composter(5).ID: return 15756;
+ case Composter::Composter(6).ID: return 15757;
+ case Composter::Composter(7).ID: return 15758;
+ case Composter::Composter(8).ID: return 15759;
+ case Conduit::Conduit().ID: return 9650;
+ case Cornflower::Cornflower().ID: return 1422;
+ case CrackedNetherBricks::CrackedNetherBricks().ID: return 17102;
+ case CrackedPolishedBlackstoneBricks::CrackedPolishedBlackstoneBricks().ID: return 16252;
+ case CrackedStoneBricks::CrackedStoneBricks().ID: return 4497;
+ case CraftingTable::CraftingTable().ID: return 3356;
+ case CreeperHead::CreeperHead(0).ID: return 6570;
+ case CreeperHead::CreeperHead(1).ID: return 6571;
+ case CreeperHead::CreeperHead(2).ID: return 6572;
+ case CreeperHead::CreeperHead(3).ID: return 6573;
+ case CreeperHead::CreeperHead(4).ID: return 6574;
+ case CreeperHead::CreeperHead(5).ID: return 6575;
+ case CreeperHead::CreeperHead(6).ID: return 6576;
+ case CreeperHead::CreeperHead(7).ID: return 6577;
+ case CreeperHead::CreeperHead(8).ID: return 6578;
+ case CreeperHead::CreeperHead(9).ID: return 6579;
+ case CreeperHead::CreeperHead(10).ID: return 6580;
+ case CreeperHead::CreeperHead(11).ID: return 6581;
+ case CreeperHead::CreeperHead(12).ID: return 6582;
+ case CreeperHead::CreeperHead(13).ID: return 6583;
+ case CreeperHead::CreeperHead(14).ID: return 6584;
+ case CreeperHead::CreeperHead(15).ID: return 6585;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 6586;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 6587;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 6588;
+ case CreeperWallHead::CreeperWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 6589;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 15479;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 15480;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 15481;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 15482;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 15483;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 15484;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 15485;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 15486;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 15487;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 15488;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 15489;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 15490;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 15491;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 15492;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 15493;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 15494;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 15495;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 15496;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 15497;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 15498;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 15499;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 15500;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 15501;
+ case CrimsonButton::CrimsonButton(CrimsonButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 15502;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, true).ID: return 15527;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, false).ID: return 15528;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, true).ID: return 15529;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, false).ID: return 15530;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, true).ID: return 15531;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, false).ID: return 15532;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, true).ID: return 15533;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, false).ID: return 15534;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, true).ID: return 15535;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, false).ID: return 15536;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, true).ID: return 15537;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, false).ID: return 15538;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, true).ID: return 15539;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, false).ID: return 15540;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, true).ID: return 15541;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, false).ID: return 15542;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, true).ID: return 15543;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, false).ID: return 15544;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, true).ID: return 15545;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, false).ID: return 15546;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, true).ID: return 15547;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, false).ID: return 15548;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, true).ID: return 15549;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, false).ID: return 15550;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, true).ID: return 15551;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, false).ID: return 15552;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, true).ID: return 15553;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, false).ID: return 15554;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, true).ID: return 15555;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, false).ID: return 15556;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, true).ID: return 15557;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_ZP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, false).ID: return 15558;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, true).ID: return 15559;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, false).ID: return 15560;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, true).ID: return 15561;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, false).ID: return 15562;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, true).ID: return 15563;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, false).ID: return 15564;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, true).ID: return 15565;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, false).ID: return 15566;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, true).ID: return 15567;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, false).ID: return 15568;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, true).ID: return 15569;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, false).ID: return 15570;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, true).ID: return 15571;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, false).ID: return 15572;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, true).ID: return 15573;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XM, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, false).ID: return 15574;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, true).ID: return 15575;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, true, false).ID: return 15576;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, true).ID: return 15577;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Left, false, false).ID: return 15578;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, true).ID: return 15579;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, true, false).ID: return 15580;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, true).ID: return 15581;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Upper, CrimsonDoor::Hinge::Right, false, false).ID: return 15582;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, true).ID: return 15583;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, true, false).ID: return 15584;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, true).ID: return 15585;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Left, false, false).ID: return 15586;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, true).ID: return 15587;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, true, false).ID: return 15588;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, true).ID: return 15589;
+ case CrimsonDoor::CrimsonDoor(eBlockFace::BLOCK_FACE_XP, CrimsonDoor::Half::Lower, CrimsonDoor::Hinge::Right, false, false).ID: return 15590;
+ case CrimsonFence::CrimsonFence(true, true, true, true).ID: return 15065;
+ case CrimsonFence::CrimsonFence(true, true, true, false).ID: return 15066;
+ case CrimsonFence::CrimsonFence(true, true, false, true).ID: return 15069;
+ case CrimsonFence::CrimsonFence(true, true, false, false).ID: return 15070;
+ case CrimsonFence::CrimsonFence(true, false, true, true).ID: return 15073;
+ case CrimsonFence::CrimsonFence(true, false, true, false).ID: return 15074;
+ case CrimsonFence::CrimsonFence(true, false, false, true).ID: return 15077;
+ case CrimsonFence::CrimsonFence(true, false, false, false).ID: return 15078;
+ case CrimsonFence::CrimsonFence(false, true, true, true).ID: return 15081;
+ case CrimsonFence::CrimsonFence(false, true, true, false).ID: return 15082;
+ case CrimsonFence::CrimsonFence(false, true, false, true).ID: return 15085;
+ case CrimsonFence::CrimsonFence(false, true, false, false).ID: return 15086;
+ case CrimsonFence::CrimsonFence(false, false, true, true).ID: return 15089;
+ case CrimsonFence::CrimsonFence(false, false, true, false).ID: return 15090;
+ case CrimsonFence::CrimsonFence(false, false, false, true).ID: return 15093;
+ case CrimsonFence::CrimsonFence(false, false, false, false).ID: return 15094;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 15255;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 15256;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 15257;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 15258;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 15259;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 15260;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 15261;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 15262;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 15263;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 15264;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 15265;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 15266;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 15267;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 15268;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 15269;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 15270;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 15271;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 15272;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 15273;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 15274;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 15275;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 15276;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 15277;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 15278;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 15279;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 15280;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 15281;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 15282;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 15283;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 15284;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 15285;
+ case CrimsonFenceGate::CrimsonFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 15286;
+ case CrimsonFungus::CrimsonFungus().ID: return 14988;
+ case CrimsonHyphae::CrimsonHyphae(CrimsonHyphae::Axis::X).ID: return 14981;
+ case CrimsonHyphae::CrimsonHyphae(CrimsonHyphae::Axis::Y).ID: return 14982;
+ case CrimsonHyphae::CrimsonHyphae(CrimsonHyphae::Axis::Z).ID: return 14983;
+ case CrimsonNylium::CrimsonNylium().ID: return 14987;
+ case CrimsonPlanks::CrimsonPlanks().ID: return 15045;
+ case CrimsonPressurePlate::CrimsonPressurePlate(true).ID: return 15059;
+ case CrimsonPressurePlate::CrimsonPressurePlate(false).ID: return 15060;
+ case CrimsonRoots::CrimsonRoots().ID: return 15044;
+ case CrimsonSign::CrimsonSign(0).ID: return 15656;
+ case CrimsonSign::CrimsonSign(1).ID: return 15658;
+ case CrimsonSign::CrimsonSign(2).ID: return 15660;
+ case CrimsonSign::CrimsonSign(3).ID: return 15662;
+ case CrimsonSign::CrimsonSign(4).ID: return 15664;
+ case CrimsonSign::CrimsonSign(5).ID: return 15666;
+ case CrimsonSign::CrimsonSign(6).ID: return 15668;
+ case CrimsonSign::CrimsonSign(7).ID: return 15670;
+ case CrimsonSign::CrimsonSign(8).ID: return 15672;
+ case CrimsonSign::CrimsonSign(9).ID: return 15674;
+ case CrimsonSign::CrimsonSign(10).ID: return 15676;
+ case CrimsonSign::CrimsonSign(11).ID: return 15678;
+ case CrimsonSign::CrimsonSign(12).ID: return 15680;
+ case CrimsonSign::CrimsonSign(13).ID: return 15682;
+ case CrimsonSign::CrimsonSign(14).ID: return 15684;
+ case CrimsonSign::CrimsonSign(15).ID: return 15686;
+ case CrimsonSlab::CrimsonSlab(CrimsonSlab::Type::Top).ID: return 15048;
+ case CrimsonSlab::CrimsonSlab(CrimsonSlab::Type::Bottom).ID: return 15050;
+ case CrimsonSlab::CrimsonSlab(CrimsonSlab::Type::Double).ID: return 15052;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::Straight).ID: return 15320;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerLeft).ID: return 15322;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerRight).ID: return 15324;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterLeft).ID: return 15326;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterRight).ID: return 15328;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::Straight).ID: return 15330;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerLeft).ID: return 15332;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerRight).ID: return 15334;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterLeft).ID: return 15336;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterRight).ID: return 15338;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::Straight).ID: return 15340;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerLeft).ID: return 15342;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerRight).ID: return 15344;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterLeft).ID: return 15346;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterRight).ID: return 15348;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::Straight).ID: return 15350;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerLeft).ID: return 15352;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerRight).ID: return 15354;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterLeft).ID: return 15356;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_ZP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterRight).ID: return 15358;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::Straight).ID: return 15360;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerLeft).ID: return 15362;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerRight).ID: return 15364;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterLeft).ID: return 15366;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterRight).ID: return 15368;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::Straight).ID: return 15370;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerLeft).ID: return 15372;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerRight).ID: return 15374;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterLeft).ID: return 15376;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XM, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterRight).ID: return 15378;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::Straight).ID: return 15380;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerLeft).ID: return 15382;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::InnerRight).ID: return 15384;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterLeft).ID: return 15386;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Top, CrimsonStairs::Shape::OuterRight).ID: return 15388;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::Straight).ID: return 15390;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerLeft).ID: return 15392;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::InnerRight).ID: return 15394;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterLeft).ID: return 15396;
+ case CrimsonStairs::CrimsonStairs(eBlockFace::BLOCK_FACE_XP, CrimsonStairs::Half::Bottom, CrimsonStairs::Shape::OuterRight).ID: return 15398;
+ case CrimsonStem::CrimsonStem(CrimsonStem::Axis::X).ID: return 14975;
+ case CrimsonStem::CrimsonStem(CrimsonStem::Axis::Y).ID: return 14976;
+ case CrimsonStem::CrimsonStem(CrimsonStem::Axis::Z).ID: return 14977;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Top, true, true).ID: return 15128;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Top, true, false).ID: return 15130;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Top, false, true).ID: return 15132;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Top, false, false).ID: return 15134;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Bottom, true, true).ID: return 15136;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Bottom, true, false).ID: return 15138;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Bottom, false, true).ID: return 15140;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZM, CrimsonTrapdoor::Half::Bottom, false, false).ID: return 15142;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Top, true, true).ID: return 15144;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Top, true, false).ID: return 15146;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Top, false, true).ID: return 15148;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Top, false, false).ID: return 15150;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Bottom, true, true).ID: return 15152;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Bottom, true, false).ID: return 15154;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Bottom, false, true).ID: return 15156;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_ZP, CrimsonTrapdoor::Half::Bottom, false, false).ID: return 15158;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Top, true, true).ID: return 15160;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Top, true, false).ID: return 15162;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Top, false, true).ID: return 15164;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Top, false, false).ID: return 15166;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Bottom, true, true).ID: return 15168;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Bottom, true, false).ID: return 15170;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Bottom, false, true).ID: return 15172;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XM, CrimsonTrapdoor::Half::Bottom, false, false).ID: return 15174;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Top, true, true).ID: return 15176;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Top, true, false).ID: return 15178;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Top, false, true).ID: return 15180;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Top, false, false).ID: return 15182;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Bottom, true, true).ID: return 15184;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Bottom, true, false).ID: return 15186;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Bottom, false, true).ID: return 15188;
+ case CrimsonTrapdoor::CrimsonTrapdoor(eBlockFace::BLOCK_FACE_XP, CrimsonTrapdoor::Half::Bottom, false, false).ID: return 15190;
+ case CrimsonWallSign::CrimsonWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 15720;
+ case CrimsonWallSign::CrimsonWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 15722;
+ case CrimsonWallSign::CrimsonWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 15724;
+ case CrimsonWallSign::CrimsonWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 15726;
+ case CryingObsidian::CryingObsidian().ID: return 15828;
+ case CutRedSandstone::CutRedSandstone().ID: return 8219;
+ case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Top).ID: return 8403;
+ case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Bottom).ID: return 8405;
+ case CutRedSandstoneSlab::CutRedSandstoneSlab(CutRedSandstoneSlab::Type::Double).ID: return 8407;
+ case CutSandstone::CutSandstone().ID: return 248;
+ case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Top).ID: return 8355;
+ case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Bottom).ID: return 8357;
+ case CutSandstoneSlab::CutSandstoneSlab(CutSandstoneSlab::Type::Double).ID: return 8359;
+ case CyanBanner::CyanBanner(0).ID: return 8041;
+ case CyanBanner::CyanBanner(1).ID: return 8042;
+ case CyanBanner::CyanBanner(2).ID: return 8043;
+ case CyanBanner::CyanBanner(3).ID: return 8044;
+ case CyanBanner::CyanBanner(4).ID: return 8045;
+ case CyanBanner::CyanBanner(5).ID: return 8046;
+ case CyanBanner::CyanBanner(6).ID: return 8047;
+ case CyanBanner::CyanBanner(7).ID: return 8048;
+ case CyanBanner::CyanBanner(8).ID: return 8049;
+ case CyanBanner::CyanBanner(9).ID: return 8050;
+ case CyanBanner::CyanBanner(10).ID: return 8051;
+ case CyanBanner::CyanBanner(11).ID: return 8052;
+ case CyanBanner::CyanBanner(12).ID: return 8053;
+ case CyanBanner::CyanBanner(13).ID: return 8054;
+ case CyanBanner::CyanBanner(14).ID: return 8055;
+ case CyanBanner::CyanBanner(15).ID: return 8056;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Head).ID: return 1193;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, true, CyanBed::Part::Foot).ID: return 1194;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Head).ID: return 1195;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZM, false, CyanBed::Part::Foot).ID: return 1196;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Head).ID: return 1197;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, true, CyanBed::Part::Foot).ID: return 1198;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Head).ID: return 1199;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_ZP, false, CyanBed::Part::Foot).ID: return 1200;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Head).ID: return 1201;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, true, CyanBed::Part::Foot).ID: return 1202;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Head).ID: return 1203;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XM, false, CyanBed::Part::Foot).ID: return 1204;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Head).ID: return 1205;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, true, CyanBed::Part::Foot).ID: return 1206;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Head).ID: return 1207;
+ case CyanBed::CyanBed(eBlockFace::BLOCK_FACE_XP, false, CyanBed::Part::Foot).ID: return 1208;
+ case CyanCarpet::CyanCarpet().ID: return 7875;
+ case CyanConcrete::CyanConcrete().ID: return 9447;
+ case CyanConcretePowder::CyanConcretePowder().ID: return 9463;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9410;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9411;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9412;
+ case CyanGlazedTerracotta::CyanGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9413;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9332;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9333;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9334;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9335;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9336;
+ case CyanShulkerBox::CyanShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9337;
+ case CyanStainedGlass::CyanStainedGlass().ID: return 4104;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, true).ID: return 7153;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, true, false).ID: return 7154;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, true).ID: return 7157;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, true, false, false).ID: return 7158;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, true).ID: return 7161;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, true, false).ID: return 7162;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, true).ID: return 7165;
+ case CyanStainedGlassPane::CyanStainedGlassPane(true, false, false, false).ID: return 7166;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, true).ID: return 7169;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, true, false).ID: return 7170;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, true).ID: return 7173;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, true, false, false).ID: return 7174;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, true).ID: return 7177;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, true, false).ID: return 7178;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, true).ID: return 7181;
+ case CyanStainedGlassPane::CyanStainedGlassPane(false, false, false, false).ID: return 7182;
+ case CyanTerracotta::CyanTerracotta().ID: return 6856;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8189;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8190;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8191;
+ case CyanWallBanner::CyanWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8192;
+ case CyanWool::CyanWool().ID: return 1393;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZM).ID: return 6618;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_ZP).ID: return 6619;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XM).ID: return 6620;
+ case DamagedAnvil::DamagedAnvil(eBlockFace::BLOCK_FACE_XP).ID: return 6621;
+ case Dandelion::Dandelion().ID: return 1412;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6466;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6467;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6468;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6469;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 6470;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 6471;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 6472;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 6473;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6474;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6475;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6476;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6477;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 6478;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 6479;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 6480;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 6481;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6482;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6483;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6484;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6485;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 6486;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 6487;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 6488;
+ case DarkOakButton::DarkOakButton(DarkOakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 6489;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 8994;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 8995;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 8996;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 8997;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 8998;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 8999;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 9000;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 9001;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 9002;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 9003;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 9004;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 9005;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 9006;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 9007;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 9008;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 9009;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 9010;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 9011;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 9012;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 9013;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 9014;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 9015;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 9016;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 9017;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 9018;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 9019;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 9020;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 9021;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 9022;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 9023;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 9024;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_ZP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 9025;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 9026;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 9027;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 9028;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 9029;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 9030;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 9031;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 9032;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 9033;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 9034;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 9035;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 9036;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 9037;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 9038;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 9039;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 9040;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XM, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 9041;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, true).ID: return 9042;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, true, false).ID: return 9043;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, true).ID: return 9044;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Left, false, false).ID: return 9045;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, true).ID: return 9046;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, true, false).ID: return 9047;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, true).ID: return 9048;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Upper, DarkOakDoor::Hinge::Right, false, false).ID: return 9049;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, true).ID: return 9050;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, true, false).ID: return 9051;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, true).ID: return 9052;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Left, false, false).ID: return 9053;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, true).ID: return 9054;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, true, false).ID: return 9055;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, true).ID: return 9056;
+ case DarkOakDoor::DarkOakDoor(eBlockFace::BLOCK_FACE_XP, DarkOakDoor::Half::Lower, DarkOakDoor::Hinge::Right, false, false).ID: return 9057;
+ case DarkOakFence::DarkOakFence(true, true, true, true).ID: return 8708;
+ case DarkOakFence::DarkOakFence(true, true, true, false).ID: return 8709;
+ case DarkOakFence::DarkOakFence(true, true, false, true).ID: return 8712;
+ case DarkOakFence::DarkOakFence(true, true, false, false).ID: return 8713;
+ case DarkOakFence::DarkOakFence(true, false, true, true).ID: return 8716;
+ case DarkOakFence::DarkOakFence(true, false, true, false).ID: return 8717;
+ case DarkOakFence::DarkOakFence(true, false, false, true).ID: return 8720;
+ case DarkOakFence::DarkOakFence(true, false, false, false).ID: return 8721;
+ case DarkOakFence::DarkOakFence(false, true, true, true).ID: return 8724;
+ case DarkOakFence::DarkOakFence(false, true, true, false).ID: return 8725;
+ case DarkOakFence::DarkOakFence(false, true, false, true).ID: return 8728;
+ case DarkOakFence::DarkOakFence(false, true, false, false).ID: return 8729;
+ case DarkOakFence::DarkOakFence(false, false, true, true).ID: return 8732;
+ case DarkOakFence::DarkOakFence(false, false, true, false).ID: return 8733;
+ case DarkOakFence::DarkOakFence(false, false, false, true).ID: return 8736;
+ case DarkOakFence::DarkOakFence(false, false, false, false).ID: return 8737;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 8546;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 8547;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 8548;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 8549;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 8550;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 8551;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 8552;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 8553;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 8554;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 8555;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 8556;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 8557;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 8558;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 8559;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 8560;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 8561;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 8562;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 8563;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 8564;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 8565;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 8566;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 8567;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 8568;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 8569;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 8570;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 8571;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 8572;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 8573;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 8574;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 8575;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 8576;
+ case DarkOakFenceGate::DarkOakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 8577;
+ case DarkOakLeaves::DarkOakLeaves(1, true).ID: return 215;
+ case DarkOakLeaves::DarkOakLeaves(1, false).ID: return 216;
+ case DarkOakLeaves::DarkOakLeaves(2, true).ID: return 217;
+ case DarkOakLeaves::DarkOakLeaves(2, false).ID: return 218;
+ case DarkOakLeaves::DarkOakLeaves(3, true).ID: return 219;
+ case DarkOakLeaves::DarkOakLeaves(3, false).ID: return 220;
+ case DarkOakLeaves::DarkOakLeaves(4, true).ID: return 221;
+ case DarkOakLeaves::DarkOakLeaves(4, false).ID: return 222;
+ case DarkOakLeaves::DarkOakLeaves(5, true).ID: return 223;
+ case DarkOakLeaves::DarkOakLeaves(5, false).ID: return 224;
+ case DarkOakLeaves::DarkOakLeaves(6, true).ID: return 225;
+ case DarkOakLeaves::DarkOakLeaves(6, false).ID: return 226;
+ case DarkOakLeaves::DarkOakLeaves(7, true).ID: return 227;
+ case DarkOakLeaves::DarkOakLeaves(7, false).ID: return 228;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::X).ID: return 88;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Y).ID: return 89;
+ case DarkOakLog::DarkOakLog(DarkOakLog::Axis::Z).ID: return 90;
+ case DarkOakPlanks::DarkOakPlanks().ID: return 20;
+ case DarkOakPressurePlate::DarkOakPressurePlate(true).ID: return 3883;
+ case DarkOakPressurePlate::DarkOakPressurePlate(false).ID: return 3884;
+ case DarkOakSapling::DarkOakSapling(0).ID: return 31;
+ case DarkOakSapling::DarkOakSapling(1).ID: return 32;
+ case DarkOakSign::DarkOakSign(0).ID: return 3542;
+ case DarkOakSign::DarkOakSign(1).ID: return 3544;
+ case DarkOakSign::DarkOakSign(2).ID: return 3546;
+ case DarkOakSign::DarkOakSign(3).ID: return 3548;
+ case DarkOakSign::DarkOakSign(4).ID: return 3550;
+ case DarkOakSign::DarkOakSign(5).ID: return 3552;
+ case DarkOakSign::DarkOakSign(6).ID: return 3554;
+ case DarkOakSign::DarkOakSign(7).ID: return 3556;
+ case DarkOakSign::DarkOakSign(8).ID: return 3558;
+ case DarkOakSign::DarkOakSign(9).ID: return 3560;
+ case DarkOakSign::DarkOakSign(10).ID: return 3562;
+ case DarkOakSign::DarkOakSign(11).ID: return 3564;
+ case DarkOakSign::DarkOakSign(12).ID: return 3566;
+ case DarkOakSign::DarkOakSign(13).ID: return 3568;
+ case DarkOakSign::DarkOakSign(14).ID: return 3570;
+ case DarkOakSign::DarkOakSign(15).ID: return 3572;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Top).ID: return 8331;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Bottom).ID: return 8333;
+ case DarkOakSlab::DarkOakSlab(DarkOakSlab::Type::Double).ID: return 8335;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 7456;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 7458;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 7460;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 7462;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 7464;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 7466;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 7468;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 7470;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 7472;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 7474;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 7476;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 7478;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 7480;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 7482;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 7484;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 7486;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 7488;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 7490;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 7492;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_ZP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 7494;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 7496;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 7498;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 7500;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 7502;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 7504;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 7506;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 7508;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 7510;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 7512;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XM, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 7514;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::Straight).ID: return 7516;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerLeft).ID: return 7518;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::InnerRight).ID: return 7520;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterLeft).ID: return 7522;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Top, DarkOakStairs::Shape::OuterRight).ID: return 7524;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::Straight).ID: return 7526;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerLeft).ID: return 7528;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::InnerRight).ID: return 7530;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterLeft).ID: return 7532;
+ case DarkOakStairs::DarkOakStairs(eBlockFace::BLOCK_FACE_XP, DarkOakStairs::Half::Bottom, DarkOakStairs::Shape::OuterRight).ID: return 7534;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, true).ID: return 4432;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, true, false).ID: return 4434;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, true).ID: return 4436;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Top, false, false).ID: return 4438;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 4440;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 4442;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 4444;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZM, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 4446;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, true).ID: return 4448;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, true, false).ID: return 4450;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, true).ID: return 4452;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Top, false, false).ID: return 4454;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 4456;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 4458;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 4460;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_ZP, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 4462;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, true).ID: return 4464;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, true, false).ID: return 4466;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, true).ID: return 4468;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Top, false, false).ID: return 4470;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 4472;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 4474;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 4476;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XM, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 4478;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, true).ID: return 4480;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, true, false).ID: return 4482;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, true).ID: return 4484;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Top, false, false).ID: return 4486;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, true).ID: return 4488;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, true, false).ID: return 4490;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, true).ID: return 4492;
+ case DarkOakTrapdoor::DarkOakTrapdoor(eBlockFace::BLOCK_FACE_XP, DarkOakTrapdoor::Half::Bottom, false, false).ID: return 4494;
+ case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3776;
+ case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3778;
+ case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3780;
+ case DarkOakWallSign::DarkOakWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3782;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::X).ID: return 124;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Y).ID: return 125;
+ case DarkOakWood::DarkOakWood(DarkOakWood::Axis::Z).ID: return 126;
+ case DarkPrismarine::DarkPrismarine().ID: return 7603;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Top).ID: return 7857;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Bottom).ID: return 7859;
+ case DarkPrismarineSlab::DarkPrismarineSlab(DarkPrismarineSlab::Type::Double).ID: return 7861;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 7765;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7767;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 7769;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7771;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 7773;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 7775;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7777;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 7779;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7781;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 7783;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 7785;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7787;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 7789;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7791;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 7793;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 7795;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7797;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 7799;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7801;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_ZP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 7803;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 7805;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7807;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 7809;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7811;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 7813;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 7815;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7817;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 7819;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7821;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XM, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 7823;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::Straight).ID: return 7825;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7827;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::InnerRight).ID: return 7829;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7831;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Top, DarkPrismarineStairs::Shape::OuterRight).ID: return 7833;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::Straight).ID: return 7835;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerLeft).ID: return 7837;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::InnerRight).ID: return 7839;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterLeft).ID: return 7841;
+ case DarkPrismarineStairs::DarkPrismarineStairs(eBlockFace::BLOCK_FACE_XP, DarkPrismarineStairs::Half::Bottom, DarkPrismarineStairs::Shape::OuterRight).ID: return 7843;
+ case DaylightDetector::DaylightDetector(true, 0).ID: return 6694;
+ case DaylightDetector::DaylightDetector(true, 1).ID: return 6695;
+ case DaylightDetector::DaylightDetector(true, 2).ID: return 6696;
+ case DaylightDetector::DaylightDetector(true, 3).ID: return 6697;
+ case DaylightDetector::DaylightDetector(true, 4).ID: return 6698;
+ case DaylightDetector::DaylightDetector(true, 5).ID: return 6699;
+ case DaylightDetector::DaylightDetector(true, 6).ID: return 6700;
+ case DaylightDetector::DaylightDetector(true, 7).ID: return 6701;
+ case DaylightDetector::DaylightDetector(true, 8).ID: return 6702;
+ case DaylightDetector::DaylightDetector(true, 9).ID: return 6703;
+ case DaylightDetector::DaylightDetector(true, 10).ID: return 6704;
+ case DaylightDetector::DaylightDetector(true, 11).ID: return 6705;
+ case DaylightDetector::DaylightDetector(true, 12).ID: return 6706;
+ case DaylightDetector::DaylightDetector(true, 13).ID: return 6707;
+ case DaylightDetector::DaylightDetector(true, 14).ID: return 6708;
+ case DaylightDetector::DaylightDetector(true, 15).ID: return 6709;
+ case DaylightDetector::DaylightDetector(false, 0).ID: return 6710;
+ case DaylightDetector::DaylightDetector(false, 1).ID: return 6711;
+ case DaylightDetector::DaylightDetector(false, 2).ID: return 6712;
+ case DaylightDetector::DaylightDetector(false, 3).ID: return 6713;
+ case DaylightDetector::DaylightDetector(false, 4).ID: return 6714;
+ case DaylightDetector::DaylightDetector(false, 5).ID: return 6715;
+ case DaylightDetector::DaylightDetector(false, 6).ID: return 6716;
+ case DaylightDetector::DaylightDetector(false, 7).ID: return 6717;
+ case DaylightDetector::DaylightDetector(false, 8).ID: return 6718;
+ case DaylightDetector::DaylightDetector(false, 9).ID: return 6719;
+ case DaylightDetector::DaylightDetector(false, 10).ID: return 6720;
+ case DaylightDetector::DaylightDetector(false, 11).ID: return 6721;
+ case DaylightDetector::DaylightDetector(false, 12).ID: return 6722;
+ case DaylightDetector::DaylightDetector(false, 13).ID: return 6723;
+ case DaylightDetector::DaylightDetector(false, 14).ID: return 6724;
+ case DaylightDetector::DaylightDetector(false, 15).ID: return 6725;
+ case DeadBrainCoral::DeadBrainCoral().ID: return 9523;
+ case DeadBrainCoralBlock::DeadBrainCoralBlock().ID: return 9511;
+ case DeadBrainCoralFan::DeadBrainCoralFan().ID: return 9543;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9569;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9571;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9573;
+ case DeadBrainCoralWallFan::DeadBrainCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9575;
+ case DeadBubbleCoral::DeadBubbleCoral().ID: return 9525;
+ case DeadBubbleCoralBlock::DeadBubbleCoralBlock().ID: return 9512;
+ case DeadBubbleCoralFan::DeadBubbleCoralFan().ID: return 9545;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9577;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9579;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9581;
+ case DeadBubbleCoralWallFan::DeadBubbleCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9583;
+ case DeadBush::DeadBush().ID: return 1344;
+ case DeadFireCoral::DeadFireCoral().ID: return 9527;
+ case DeadFireCoralBlock::DeadFireCoralBlock().ID: return 9513;
+ case DeadFireCoralFan::DeadFireCoralFan().ID: return 9547;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9585;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9587;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9589;
+ case DeadFireCoralWallFan::DeadFireCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9591;
+ case DeadHornCoral::DeadHornCoral().ID: return 9529;
+ case DeadHornCoralBlock::DeadHornCoralBlock().ID: return 9514;
+ case DeadHornCoralFan::DeadHornCoralFan().ID: return 9549;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9593;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9595;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9597;
+ case DeadHornCoralWallFan::DeadHornCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9599;
+ case DeadTubeCoral::DeadTubeCoral().ID: return 9521;
+ case DeadTubeCoralBlock::DeadTubeCoralBlock().ID: return 9510;
+ case DeadTubeCoralFan::DeadTubeCoralFan().ID: return 9541;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9561;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9563;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9565;
+ case DeadTubeCoralWallFan::DeadTubeCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9567;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::NorthSouth).ID: return 1317;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::EastWest).ID: return 1318;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingEast).ID: return 1319;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingWest).ID: return 1320;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingNorth).ID: return 1321;
+ case DetectorRail::DetectorRail(true, DetectorRail::Shape::AscendingSouth).ID: return 1322;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::NorthSouth).ID: return 1323;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::EastWest).ID: return 1324;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingEast).ID: return 1325;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingWest).ID: return 1326;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingNorth).ID: return 1327;
+ case DetectorRail::DetectorRail(false, DetectorRail::Shape::AscendingSouth).ID: return 1328;
+ case DiamondBlock::DiamondBlock().ID: return 3355;
+ case DiamondOre::DiamondOre().ID: return 3354;
+ case Diorite::Diorite().ID: return 4;
+ case DioriteSlab::DioriteSlab(DioriteSlab::Type::Top).ID: return 10862;
+ case DioriteSlab::DioriteSlab(DioriteSlab::Type::Bottom).ID: return 10864;
+ case DioriteSlab::DioriteSlab(DioriteSlab::Type::Double).ID: return 10866;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight).ID: return 10710;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft).ID: return 10712;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight).ID: return 10714;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft).ID: return 10716;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight).ID: return 10718;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight).ID: return 10720;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft).ID: return 10722;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight).ID: return 10724;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft).ID: return 10726;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight).ID: return 10728;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight).ID: return 10730;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft).ID: return 10732;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight).ID: return 10734;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft).ID: return 10736;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight).ID: return 10738;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight).ID: return 10740;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft).ID: return 10742;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight).ID: return 10744;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft).ID: return 10746;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_ZP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight).ID: return 10748;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight).ID: return 10750;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft).ID: return 10752;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight).ID: return 10754;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft).ID: return 10756;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight).ID: return 10758;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight).ID: return 10760;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft).ID: return 10762;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight).ID: return 10764;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft).ID: return 10766;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XM, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight).ID: return 10768;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::Straight).ID: return 10770;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerLeft).ID: return 10772;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::InnerRight).ID: return 10774;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterLeft).ID: return 10776;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Top, DioriteStairs::Shape::OuterRight).ID: return 10778;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::Straight).ID: return 10780;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerLeft).ID: return 10782;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::InnerRight).ID: return 10784;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterLeft).ID: return 10786;
+ case DioriteStairs::DioriteStairs(eBlockFace::BLOCK_FACE_XP, DioriteStairs::Half::Bottom, DioriteStairs::Shape::OuterRight).ID: return 10788;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 14434;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 14435;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Tall).ID: return 14436;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 14440;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 14441;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Tall).ID: return 14442;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 14446;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 14447;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Tall).ID: return 14448;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 14452;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 14453;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Tall).ID: return 14454;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::None).ID: return 14458;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Low).ID: return 14459;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Tall).ID: return 14460;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::None).ID: return 14464;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Low).ID: return 14465;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Tall).ID: return 14466;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 14470;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 14471;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Tall).ID: return 14472;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 14476;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 14477;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Tall).ID: return 14478;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 14482;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 14483;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Tall).ID: return 14484;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 14488;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 14489;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Tall).ID: return 14490;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::None).ID: return 14494;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Low).ID: return 14495;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Tall).ID: return 14496;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::None).ID: return 14500;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Low).ID: return 14501;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Tall).ID: return 14502;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 14506;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 14507;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Tall).ID: return 14508;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 14512;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 14513;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Tall).ID: return 14514;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 14518;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 14519;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Tall).ID: return 14520;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 14524;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 14525;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Tall).ID: return 14526;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::None).ID: return 14530;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Low).ID: return 14531;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Tall).ID: return 14532;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::None).ID: return 14536;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Low).ID: return 14537;
+ case DioriteWall::DioriteWall(DioriteWall::East::None, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Tall).ID: return 14538;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 14542;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 14543;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Tall).ID: return 14544;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 14548;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 14549;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Tall).ID: return 14550;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 14554;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 14555;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Tall).ID: return 14556;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 14560;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 14561;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Tall).ID: return 14562;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::None).ID: return 14566;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Low).ID: return 14567;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Tall).ID: return 14568;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::None).ID: return 14572;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Low).ID: return 14573;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Tall).ID: return 14574;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 14578;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 14579;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Tall).ID: return 14580;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 14584;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 14585;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Tall).ID: return 14586;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 14590;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 14591;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Tall).ID: return 14592;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 14596;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 14597;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Tall).ID: return 14598;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::None).ID: return 14602;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Low).ID: return 14603;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Tall).ID: return 14604;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::None).ID: return 14608;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Low).ID: return 14609;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Tall).ID: return 14610;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 14614;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 14615;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Tall).ID: return 14616;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 14620;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 14621;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Tall).ID: return 14622;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 14626;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 14627;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Tall).ID: return 14628;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 14632;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 14633;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Tall).ID: return 14634;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::None).ID: return 14638;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Low).ID: return 14639;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Tall).ID: return 14640;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::None).ID: return 14644;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Low).ID: return 14645;
+ case DioriteWall::DioriteWall(DioriteWall::East::Low, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Tall).ID: return 14646;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 14650;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 14651;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, true, DioriteWall::West::Tall).ID: return 14652;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 14656;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 14657;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::None, false, DioriteWall::West::Tall).ID: return 14658;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 14662;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 14663;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, true, DioriteWall::West::Tall).ID: return 14664;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 14668;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 14669;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Low, false, DioriteWall::West::Tall).ID: return 14670;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::None).ID: return 14674;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Low).ID: return 14675;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, true, DioriteWall::West::Tall).ID: return 14676;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::None).ID: return 14680;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Low).ID: return 14681;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::None, DioriteWall::South::Tall, false, DioriteWall::West::Tall).ID: return 14682;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 14686;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 14687;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, true, DioriteWall::West::Tall).ID: return 14688;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 14692;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 14693;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::None, false, DioriteWall::West::Tall).ID: return 14694;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 14698;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 14699;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, true, DioriteWall::West::Tall).ID: return 14700;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 14704;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 14705;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Low, false, DioriteWall::West::Tall).ID: return 14706;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::None).ID: return 14710;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Low).ID: return 14711;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, true, DioriteWall::West::Tall).ID: return 14712;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::None).ID: return 14716;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Low).ID: return 14717;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Low, DioriteWall::South::Tall, false, DioriteWall::West::Tall).ID: return 14718;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::None).ID: return 14722;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Low).ID: return 14723;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, true, DioriteWall::West::Tall).ID: return 14724;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::None).ID: return 14728;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Low).ID: return 14729;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::None, false, DioriteWall::West::Tall).ID: return 14730;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::None).ID: return 14734;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Low).ID: return 14735;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, true, DioriteWall::West::Tall).ID: return 14736;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::None).ID: return 14740;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Low).ID: return 14741;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Low, false, DioriteWall::West::Tall).ID: return 14742;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::None).ID: return 14746;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Low).ID: return 14747;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, true, DioriteWall::West::Tall).ID: return 14748;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::None).ID: return 14752;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Low).ID: return 14753;
+ case DioriteWall::DioriteWall(DioriteWall::East::Tall, DioriteWall::North::Tall, DioriteWall::South::Tall, false, DioriteWall::West::Tall).ID: return 14754;
+ case Dirt::Dirt().ID: return 10;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, true).ID: return 234;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZM, false).ID: return 235;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, true).ID: return 236;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XP, false).ID: return 237;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, true).ID: return 238;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_ZP, false).ID: return 239;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, true).ID: return 240;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_XM, false).ID: return 241;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, true).ID: return 242;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YP, false).ID: return 243;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, true).ID: return 244;
+ case Dispenser::Dispenser(eBlockFace::BLOCK_FACE_YM, false).ID: return 245;
+ case DragonEgg::DragonEgg().ID: return 5155;
+ case DragonHead::DragonHead(0).ID: return 6590;
+ case DragonHead::DragonHead(1).ID: return 6591;
+ case DragonHead::DragonHead(2).ID: return 6592;
+ case DragonHead::DragonHead(3).ID: return 6593;
+ case DragonHead::DragonHead(4).ID: return 6594;
+ case DragonHead::DragonHead(5).ID: return 6595;
+ case DragonHead::DragonHead(6).ID: return 6596;
+ case DragonHead::DragonHead(7).ID: return 6597;
+ case DragonHead::DragonHead(8).ID: return 6598;
+ case DragonHead::DragonHead(9).ID: return 6599;
+ case DragonHead::DragonHead(10).ID: return 6600;
+ case DragonHead::DragonHead(11).ID: return 6601;
+ case DragonHead::DragonHead(12).ID: return 6602;
+ case DragonHead::DragonHead(13).ID: return 6603;
+ case DragonHead::DragonHead(14).ID: return 6604;
+ case DragonHead::DragonHead(15).ID: return 6605;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 6606;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 6607;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 6608;
+ case DragonWallHead::DragonWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 6609;
+ case DriedKelpBlock::DriedKelpBlock().ID: return 9497;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, true).ID: return 6835;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZM, false).ID: return 6836;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, true).ID: return 6837;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XP, false).ID: return 6838;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, true).ID: return 6839;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_ZP, false).ID: return 6840;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, true).ID: return 6841;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_XM, false).ID: return 6842;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, true).ID: return 6843;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YP, false).ID: return 6844;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, true).ID: return 6845;
+ case Dropper::Dropper(eBlockFace::BLOCK_FACE_YM, false).ID: return 6846;
+ case EmeraldBlock::EmeraldBlock().ID: return 5403;
+ case EmeraldOre::EmeraldOre().ID: return 5250;
+ case EnchantingTable::EnchantingTable().ID: return 5132;
+ case EndGateway::EndGateway().ID: return 9224;
+ case EndPortal::EndPortal().ID: return 5145;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZM).ID: return 5146;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_ZP).ID: return 5147;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XM).ID: return 5148;
+ case EndPortalFrame::EndPortalFrame(true, eBlockFace::BLOCK_FACE_XP).ID: return 5149;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZM).ID: return 5150;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_ZP).ID: return 5151;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XM).ID: return 5152;
+ case EndPortalFrame::EndPortalFrame(false, eBlockFace::BLOCK_FACE_XP).ID: return 5153;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZM).ID: return 9058;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_XP).ID: return 9059;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_ZP).ID: return 9060;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_XM).ID: return 9061;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_YP).ID: return 9062;
+ case EndRod::EndRod(eBlockFace::BLOCK_FACE_YM).ID: return 9063;
+ case EndStone::EndStone().ID: return 5154;
+ case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Top).ID: return 10820;
+ case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Bottom).ID: return 10822;
+ case EndStoneBrickSlab::EndStoneBrickSlab(EndStoneBrickSlab::Type::Double).ID: return 10824;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight).ID: return 10070;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft).ID: return 10072;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight).ID: return 10074;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft).ID: return 10076;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight).ID: return 10078;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight).ID: return 10080;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft).ID: return 10082;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight).ID: return 10084;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft).ID: return 10086;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight).ID: return 10088;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight).ID: return 10090;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft).ID: return 10092;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight).ID: return 10094;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft).ID: return 10096;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight).ID: return 10098;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight).ID: return 10100;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft).ID: return 10102;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight).ID: return 10104;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft).ID: return 10106;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight).ID: return 10108;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight).ID: return 10110;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft).ID: return 10112;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight).ID: return 10114;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft).ID: return 10116;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight).ID: return 10118;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight).ID: return 10120;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft).ID: return 10122;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight).ID: return 10124;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft).ID: return 10126;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight).ID: return 10128;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::Straight).ID: return 10130;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerLeft).ID: return 10132;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::InnerRight).ID: return 10134;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterLeft).ID: return 10136;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Top, EndStoneBrickStairs::Shape::OuterRight).ID: return 10138;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::Straight).ID: return 10140;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerLeft).ID: return 10142;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::InnerRight).ID: return 10144;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterLeft).ID: return 10146;
+ case EndStoneBrickStairs::EndStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, EndStoneBrickStairs::Half::Bottom, EndStoneBrickStairs::Shape::OuterRight).ID: return 10148;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 14110;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 14111;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall).ID: return 14112;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 14116;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 14117;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall).ID: return 14118;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 14122;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 14123;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall).ID: return 14124;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 14128;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 14129;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall).ID: return 14130;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None).ID: return 14134;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low).ID: return 14135;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall).ID: return 14136;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None).ID: return 14140;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low).ID: return 14141;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall).ID: return 14142;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 14146;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 14147;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall).ID: return 14148;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 14152;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 14153;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall).ID: return 14154;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 14158;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 14159;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall).ID: return 14160;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 14164;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 14165;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall).ID: return 14166;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None).ID: return 14170;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low).ID: return 14171;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall).ID: return 14172;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None).ID: return 14176;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low).ID: return 14177;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall).ID: return 14178;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 14182;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 14183;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall).ID: return 14184;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 14188;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 14189;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall).ID: return 14190;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 14194;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 14195;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall).ID: return 14196;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 14200;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 14201;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall).ID: return 14202;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None).ID: return 14206;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low).ID: return 14207;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall).ID: return 14208;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None).ID: return 14212;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low).ID: return 14213;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::None, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall).ID: return 14214;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 14218;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 14219;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall).ID: return 14220;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 14224;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 14225;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall).ID: return 14226;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 14230;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 14231;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall).ID: return 14232;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 14236;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 14237;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall).ID: return 14238;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None).ID: return 14242;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low).ID: return 14243;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall).ID: return 14244;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None).ID: return 14248;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low).ID: return 14249;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall).ID: return 14250;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 14254;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 14255;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall).ID: return 14256;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 14260;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 14261;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall).ID: return 14262;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 14266;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 14267;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall).ID: return 14268;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 14272;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 14273;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall).ID: return 14274;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None).ID: return 14278;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low).ID: return 14279;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall).ID: return 14280;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None).ID: return 14284;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low).ID: return 14285;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall).ID: return 14286;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 14290;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 14291;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall).ID: return 14292;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 14296;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 14297;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall).ID: return 14298;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 14302;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 14303;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall).ID: return 14304;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 14308;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 14309;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall).ID: return 14310;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None).ID: return 14314;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low).ID: return 14315;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall).ID: return 14316;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None).ID: return 14320;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low).ID: return 14321;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Low, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall).ID: return 14322;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 14326;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 14327;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall).ID: return 14328;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 14332;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 14333;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall).ID: return 14334;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 14338;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 14339;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall).ID: return 14340;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 14344;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 14345;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall).ID: return 14346;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None).ID: return 14350;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low).ID: return 14351;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall).ID: return 14352;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None).ID: return 14356;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low).ID: return 14357;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::None, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall).ID: return 14358;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 14362;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 14363;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall).ID: return 14364;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 14368;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 14369;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall).ID: return 14370;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 14374;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 14375;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall).ID: return 14376;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 14380;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 14381;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall).ID: return 14382;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None).ID: return 14386;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low).ID: return 14387;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall).ID: return 14388;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None).ID: return 14392;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low).ID: return 14393;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Low, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall).ID: return 14394;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::None).ID: return 14398;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Low).ID: return 14399;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, true, EndStoneBrickWall::West::Tall).ID: return 14400;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::None).ID: return 14404;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Low).ID: return 14405;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::None, false, EndStoneBrickWall::West::Tall).ID: return 14406;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::None).ID: return 14410;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Low).ID: return 14411;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, true, EndStoneBrickWall::West::Tall).ID: return 14412;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::None).ID: return 14416;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Low).ID: return 14417;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Low, false, EndStoneBrickWall::West::Tall).ID: return 14418;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::None).ID: return 14422;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Low).ID: return 14423;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, true, EndStoneBrickWall::West::Tall).ID: return 14424;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::None).ID: return 14428;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Low).ID: return 14429;
+ case EndStoneBrickWall::EndStoneBrickWall(EndStoneBrickWall::East::Tall, EndStoneBrickWall::North::Tall, EndStoneBrickWall::South::Tall, false, EndStoneBrickWall::West::Tall).ID: return 14430;
+ case EndStoneBricks::EndStoneBricks().ID: return 9218;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZM).ID: return 5252;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_ZP).ID: return 5254;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XM).ID: return 5256;
+ case EnderChest::EnderChest(eBlockFace::BLOCK_FACE_XP).ID: return 5258;
+ case Farmland::Farmland(0).ID: return 3365;
+ case Farmland::Farmland(1).ID: return 3366;
+ case Farmland::Farmland(2).ID: return 3367;
+ case Farmland::Farmland(3).ID: return 3368;
+ case Farmland::Farmland(4).ID: return 3369;
+ case Farmland::Farmland(5).ID: return 3370;
+ case Farmland::Farmland(6).ID: return 3371;
+ case Farmland::Farmland(7).ID: return 3372;
+ case Fern::Fern().ID: return 1343;
+ case Fire::Fire(0, true, true, true, true, true).ID: return 1440;
+ case Fire::Fire(0, true, true, true, true, false).ID: return 1441;
+ case Fire::Fire(0, true, true, true, false, true).ID: return 1442;
+ case Fire::Fire(0, true, true, true, false, false).ID: return 1443;
+ case Fire::Fire(0, true, true, false, true, true).ID: return 1444;
+ case Fire::Fire(0, true, true, false, true, false).ID: return 1445;
+ case Fire::Fire(0, true, true, false, false, true).ID: return 1446;
+ case Fire::Fire(0, true, true, false, false, false).ID: return 1447;
+ case Fire::Fire(0, true, false, true, true, true).ID: return 1448;
+ case Fire::Fire(0, true, false, true, true, false).ID: return 1449;
+ case Fire::Fire(0, true, false, true, false, true).ID: return 1450;
+ case Fire::Fire(0, true, false, true, false, false).ID: return 1451;
+ case Fire::Fire(0, true, false, false, true, true).ID: return 1452;
+ case Fire::Fire(0, true, false, false, true, false).ID: return 1453;
+ case Fire::Fire(0, true, false, false, false, true).ID: return 1454;
+ case Fire::Fire(0, true, false, false, false, false).ID: return 1455;
+ case Fire::Fire(0, false, true, true, true, true).ID: return 1456;
+ case Fire::Fire(0, false, true, true, true, false).ID: return 1457;
+ case Fire::Fire(0, false, true, true, false, true).ID: return 1458;
+ case Fire::Fire(0, false, true, true, false, false).ID: return 1459;
+ case Fire::Fire(0, false, true, false, true, true).ID: return 1460;
+ case Fire::Fire(0, false, true, false, true, false).ID: return 1461;
+ case Fire::Fire(0, false, true, false, false, true).ID: return 1462;
+ case Fire::Fire(0, false, true, false, false, false).ID: return 1463;
+ case Fire::Fire(0, false, false, true, true, true).ID: return 1464;
+ case Fire::Fire(0, false, false, true, true, false).ID: return 1465;
+ case Fire::Fire(0, false, false, true, false, true).ID: return 1466;
+ case Fire::Fire(0, false, false, true, false, false).ID: return 1467;
+ case Fire::Fire(0, false, false, false, true, true).ID: return 1468;
+ case Fire::Fire(0, false, false, false, true, false).ID: return 1469;
+ case Fire::Fire(0, false, false, false, false, true).ID: return 1470;
+ case Fire::Fire(0, false, false, false, false, false).ID: return 1471;
+ case Fire::Fire(1, true, true, true, true, true).ID: return 1472;
+ case Fire::Fire(1, true, true, true, true, false).ID: return 1473;
+ case Fire::Fire(1, true, true, true, false, true).ID: return 1474;
+ case Fire::Fire(1, true, true, true, false, false).ID: return 1475;
+ case Fire::Fire(1, true, true, false, true, true).ID: return 1476;
+ case Fire::Fire(1, true, true, false, true, false).ID: return 1477;
+ case Fire::Fire(1, true, true, false, false, true).ID: return 1478;
+ case Fire::Fire(1, true, true, false, false, false).ID: return 1479;
+ case Fire::Fire(1, true, false, true, true, true).ID: return 1480;
+ case Fire::Fire(1, true, false, true, true, false).ID: return 1481;
+ case Fire::Fire(1, true, false, true, false, true).ID: return 1482;
+ case Fire::Fire(1, true, false, true, false, false).ID: return 1483;
+ case Fire::Fire(1, true, false, false, true, true).ID: return 1484;
+ case Fire::Fire(1, true, false, false, true, false).ID: return 1485;
+ case Fire::Fire(1, true, false, false, false, true).ID: return 1486;
+ case Fire::Fire(1, true, false, false, false, false).ID: return 1487;
+ case Fire::Fire(1, false, true, true, true, true).ID: return 1488;
+ case Fire::Fire(1, false, true, true, true, false).ID: return 1489;
+ case Fire::Fire(1, false, true, true, false, true).ID: return 1490;
+ case Fire::Fire(1, false, true, true, false, false).ID: return 1491;
+ case Fire::Fire(1, false, true, false, true, true).ID: return 1492;
+ case Fire::Fire(1, false, true, false, true, false).ID: return 1493;
+ case Fire::Fire(1, false, true, false, false, true).ID: return 1494;
+ case Fire::Fire(1, false, true, false, false, false).ID: return 1495;
+ case Fire::Fire(1, false, false, true, true, true).ID: return 1496;
+ case Fire::Fire(1, false, false, true, true, false).ID: return 1497;
+ case Fire::Fire(1, false, false, true, false, true).ID: return 1498;
+ case Fire::Fire(1, false, false, true, false, false).ID: return 1499;
+ case Fire::Fire(1, false, false, false, true, true).ID: return 1500;
+ case Fire::Fire(1, false, false, false, true, false).ID: return 1501;
+ case Fire::Fire(1, false, false, false, false, true).ID: return 1502;
+ case Fire::Fire(1, false, false, false, false, false).ID: return 1503;
+ case Fire::Fire(2, true, true, true, true, true).ID: return 1504;
+ case Fire::Fire(2, true, true, true, true, false).ID: return 1505;
+ case Fire::Fire(2, true, true, true, false, true).ID: return 1506;
+ case Fire::Fire(2, true, true, true, false, false).ID: return 1507;
+ case Fire::Fire(2, true, true, false, true, true).ID: return 1508;
+ case Fire::Fire(2, true, true, false, true, false).ID: return 1509;
+ case Fire::Fire(2, true, true, false, false, true).ID: return 1510;
+ case Fire::Fire(2, true, true, false, false, false).ID: return 1511;
+ case Fire::Fire(2, true, false, true, true, true).ID: return 1512;
+ case Fire::Fire(2, true, false, true, true, false).ID: return 1513;
+ case Fire::Fire(2, true, false, true, false, true).ID: return 1514;
+ case Fire::Fire(2, true, false, true, false, false).ID: return 1515;
+ case Fire::Fire(2, true, false, false, true, true).ID: return 1516;
+ case Fire::Fire(2, true, false, false, true, false).ID: return 1517;
+ case Fire::Fire(2, true, false, false, false, true).ID: return 1518;
+ case Fire::Fire(2, true, false, false, false, false).ID: return 1519;
+ case Fire::Fire(2, false, true, true, true, true).ID: return 1520;
+ case Fire::Fire(2, false, true, true, true, false).ID: return 1521;
+ case Fire::Fire(2, false, true, true, false, true).ID: return 1522;
+ case Fire::Fire(2, false, true, true, false, false).ID: return 1523;
+ case Fire::Fire(2, false, true, false, true, true).ID: return 1524;
+ case Fire::Fire(2, false, true, false, true, false).ID: return 1525;
+ case Fire::Fire(2, false, true, false, false, true).ID: return 1526;
+ case Fire::Fire(2, false, true, false, false, false).ID: return 1527;
+ case Fire::Fire(2, false, false, true, true, true).ID: return 1528;
+ case Fire::Fire(2, false, false, true, true, false).ID: return 1529;
+ case Fire::Fire(2, false, false, true, false, true).ID: return 1530;
+ case Fire::Fire(2, false, false, true, false, false).ID: return 1531;
+ case Fire::Fire(2, false, false, false, true, true).ID: return 1532;
+ case Fire::Fire(2, false, false, false, true, false).ID: return 1533;
+ case Fire::Fire(2, false, false, false, false, true).ID: return 1534;
+ case Fire::Fire(2, false, false, false, false, false).ID: return 1535;
+ case Fire::Fire(3, true, true, true, true, true).ID: return 1536;
+ case Fire::Fire(3, true, true, true, true, false).ID: return 1537;
+ case Fire::Fire(3, true, true, true, false, true).ID: return 1538;
+ case Fire::Fire(3, true, true, true, false, false).ID: return 1539;
+ case Fire::Fire(3, true, true, false, true, true).ID: return 1540;
+ case Fire::Fire(3, true, true, false, true, false).ID: return 1541;
+ case Fire::Fire(3, true, true, false, false, true).ID: return 1542;
+ case Fire::Fire(3, true, true, false, false, false).ID: return 1543;
+ case Fire::Fire(3, true, false, true, true, true).ID: return 1544;
+ case Fire::Fire(3, true, false, true, true, false).ID: return 1545;
+ case Fire::Fire(3, true, false, true, false, true).ID: return 1546;
+ case Fire::Fire(3, true, false, true, false, false).ID: return 1547;
+ case Fire::Fire(3, true, false, false, true, true).ID: return 1548;
+ case Fire::Fire(3, true, false, false, true, false).ID: return 1549;
+ case Fire::Fire(3, true, false, false, false, true).ID: return 1550;
+ case Fire::Fire(3, true, false, false, false, false).ID: return 1551;
+ case Fire::Fire(3, false, true, true, true, true).ID: return 1552;
+ case Fire::Fire(3, false, true, true, true, false).ID: return 1553;
+ case Fire::Fire(3, false, true, true, false, true).ID: return 1554;
+ case Fire::Fire(3, false, true, true, false, false).ID: return 1555;
+ case Fire::Fire(3, false, true, false, true, true).ID: return 1556;
+ case Fire::Fire(3, false, true, false, true, false).ID: return 1557;
+ case Fire::Fire(3, false, true, false, false, true).ID: return 1558;
+ case Fire::Fire(3, false, true, false, false, false).ID: return 1559;
+ case Fire::Fire(3, false, false, true, true, true).ID: return 1560;
+ case Fire::Fire(3, false, false, true, true, false).ID: return 1561;
+ case Fire::Fire(3, false, false, true, false, true).ID: return 1562;
+ case Fire::Fire(3, false, false, true, false, false).ID: return 1563;
+ case Fire::Fire(3, false, false, false, true, true).ID: return 1564;
+ case Fire::Fire(3, false, false, false, true, false).ID: return 1565;
+ case Fire::Fire(3, false, false, false, false, true).ID: return 1566;
+ case Fire::Fire(3, false, false, false, false, false).ID: return 1567;
+ case Fire::Fire(4, true, true, true, true, true).ID: return 1568;
+ case Fire::Fire(4, true, true, true, true, false).ID: return 1569;
+ case Fire::Fire(4, true, true, true, false, true).ID: return 1570;
+ case Fire::Fire(4, true, true, true, false, false).ID: return 1571;
+ case Fire::Fire(4, true, true, false, true, true).ID: return 1572;
+ case Fire::Fire(4, true, true, false, true, false).ID: return 1573;
+ case Fire::Fire(4, true, true, false, false, true).ID: return 1574;
+ case Fire::Fire(4, true, true, false, false, false).ID: return 1575;
+ case Fire::Fire(4, true, false, true, true, true).ID: return 1576;
+ case Fire::Fire(4, true, false, true, true, false).ID: return 1577;
+ case Fire::Fire(4, true, false, true, false, true).ID: return 1578;
+ case Fire::Fire(4, true, false, true, false, false).ID: return 1579;
+ case Fire::Fire(4, true, false, false, true, true).ID: return 1580;
+ case Fire::Fire(4, true, false, false, true, false).ID: return 1581;
+ case Fire::Fire(4, true, false, false, false, true).ID: return 1582;
+ case Fire::Fire(4, true, false, false, false, false).ID: return 1583;
+ case Fire::Fire(4, false, true, true, true, true).ID: return 1584;
+ case Fire::Fire(4, false, true, true, true, false).ID: return 1585;
+ case Fire::Fire(4, false, true, true, false, true).ID: return 1586;
+ case Fire::Fire(4, false, true, true, false, false).ID: return 1587;
+ case Fire::Fire(4, false, true, false, true, true).ID: return 1588;
+ case Fire::Fire(4, false, true, false, true, false).ID: return 1589;
+ case Fire::Fire(4, false, true, false, false, true).ID: return 1590;
+ case Fire::Fire(4, false, true, false, false, false).ID: return 1591;
+ case Fire::Fire(4, false, false, true, true, true).ID: return 1592;
+ case Fire::Fire(4, false, false, true, true, false).ID: return 1593;
+ case Fire::Fire(4, false, false, true, false, true).ID: return 1594;
+ case Fire::Fire(4, false, false, true, false, false).ID: return 1595;
+ case Fire::Fire(4, false, false, false, true, true).ID: return 1596;
+ case Fire::Fire(4, false, false, false, true, false).ID: return 1597;
+ case Fire::Fire(4, false, false, false, false, true).ID: return 1598;
+ case Fire::Fire(4, false, false, false, false, false).ID: return 1599;
+ case Fire::Fire(5, true, true, true, true, true).ID: return 1600;
+ case Fire::Fire(5, true, true, true, true, false).ID: return 1601;
+ case Fire::Fire(5, true, true, true, false, true).ID: return 1602;
+ case Fire::Fire(5, true, true, true, false, false).ID: return 1603;
+ case Fire::Fire(5, true, true, false, true, true).ID: return 1604;
+ case Fire::Fire(5, true, true, false, true, false).ID: return 1605;
+ case Fire::Fire(5, true, true, false, false, true).ID: return 1606;
+ case Fire::Fire(5, true, true, false, false, false).ID: return 1607;
+ case Fire::Fire(5, true, false, true, true, true).ID: return 1608;
+ case Fire::Fire(5, true, false, true, true, false).ID: return 1609;
+ case Fire::Fire(5, true, false, true, false, true).ID: return 1610;
+ case Fire::Fire(5, true, false, true, false, false).ID: return 1611;
+ case Fire::Fire(5, true, false, false, true, true).ID: return 1612;
+ case Fire::Fire(5, true, false, false, true, false).ID: return 1613;
+ case Fire::Fire(5, true, false, false, false, true).ID: return 1614;
+ case Fire::Fire(5, true, false, false, false, false).ID: return 1615;
+ case Fire::Fire(5, false, true, true, true, true).ID: return 1616;
+ case Fire::Fire(5, false, true, true, true, false).ID: return 1617;
+ case Fire::Fire(5, false, true, true, false, true).ID: return 1618;
+ case Fire::Fire(5, false, true, true, false, false).ID: return 1619;
+ case Fire::Fire(5, false, true, false, true, true).ID: return 1620;
+ case Fire::Fire(5, false, true, false, true, false).ID: return 1621;
+ case Fire::Fire(5, false, true, false, false, true).ID: return 1622;
+ case Fire::Fire(5, false, true, false, false, false).ID: return 1623;
+ case Fire::Fire(5, false, false, true, true, true).ID: return 1624;
+ case Fire::Fire(5, false, false, true, true, false).ID: return 1625;
+ case Fire::Fire(5, false, false, true, false, true).ID: return 1626;
+ case Fire::Fire(5, false, false, true, false, false).ID: return 1627;
+ case Fire::Fire(5, false, false, false, true, true).ID: return 1628;
+ case Fire::Fire(5, false, false, false, true, false).ID: return 1629;
+ case Fire::Fire(5, false, false, false, false, true).ID: return 1630;
+ case Fire::Fire(5, false, false, false, false, false).ID: return 1631;
+ case Fire::Fire(6, true, true, true, true, true).ID: return 1632;
+ case Fire::Fire(6, true, true, true, true, false).ID: return 1633;
+ case Fire::Fire(6, true, true, true, false, true).ID: return 1634;
+ case Fire::Fire(6, true, true, true, false, false).ID: return 1635;
+ case Fire::Fire(6, true, true, false, true, true).ID: return 1636;
+ case Fire::Fire(6, true, true, false, true, false).ID: return 1637;
+ case Fire::Fire(6, true, true, false, false, true).ID: return 1638;
+ case Fire::Fire(6, true, true, false, false, false).ID: return 1639;
+ case Fire::Fire(6, true, false, true, true, true).ID: return 1640;
+ case Fire::Fire(6, true, false, true, true, false).ID: return 1641;
+ case Fire::Fire(6, true, false, true, false, true).ID: return 1642;
+ case Fire::Fire(6, true, false, true, false, false).ID: return 1643;
+ case Fire::Fire(6, true, false, false, true, true).ID: return 1644;
+ case Fire::Fire(6, true, false, false, true, false).ID: return 1645;
+ case Fire::Fire(6, true, false, false, false, true).ID: return 1646;
+ case Fire::Fire(6, true, false, false, false, false).ID: return 1647;
+ case Fire::Fire(6, false, true, true, true, true).ID: return 1648;
+ case Fire::Fire(6, false, true, true, true, false).ID: return 1649;
+ case Fire::Fire(6, false, true, true, false, true).ID: return 1650;
+ case Fire::Fire(6, false, true, true, false, false).ID: return 1651;
+ case Fire::Fire(6, false, true, false, true, true).ID: return 1652;
+ case Fire::Fire(6, false, true, false, true, false).ID: return 1653;
+ case Fire::Fire(6, false, true, false, false, true).ID: return 1654;
+ case Fire::Fire(6, false, true, false, false, false).ID: return 1655;
+ case Fire::Fire(6, false, false, true, true, true).ID: return 1656;
+ case Fire::Fire(6, false, false, true, true, false).ID: return 1657;
+ case Fire::Fire(6, false, false, true, false, true).ID: return 1658;
+ case Fire::Fire(6, false, false, true, false, false).ID: return 1659;
+ case Fire::Fire(6, false, false, false, true, true).ID: return 1660;
+ case Fire::Fire(6, false, false, false, true, false).ID: return 1661;
+ case Fire::Fire(6, false, false, false, false, true).ID: return 1662;
+ case Fire::Fire(6, false, false, false, false, false).ID: return 1663;
+ case Fire::Fire(7, true, true, true, true, true).ID: return 1664;
+ case Fire::Fire(7, true, true, true, true, false).ID: return 1665;
+ case Fire::Fire(7, true, true, true, false, true).ID: return 1666;
+ case Fire::Fire(7, true, true, true, false, false).ID: return 1667;
+ case Fire::Fire(7, true, true, false, true, true).ID: return 1668;
+ case Fire::Fire(7, true, true, false, true, false).ID: return 1669;
+ case Fire::Fire(7, true, true, false, false, true).ID: return 1670;
+ case Fire::Fire(7, true, true, false, false, false).ID: return 1671;
+ case Fire::Fire(7, true, false, true, true, true).ID: return 1672;
+ case Fire::Fire(7, true, false, true, true, false).ID: return 1673;
+ case Fire::Fire(7, true, false, true, false, true).ID: return 1674;
+ case Fire::Fire(7, true, false, true, false, false).ID: return 1675;
+ case Fire::Fire(7, true, false, false, true, true).ID: return 1676;
+ case Fire::Fire(7, true, false, false, true, false).ID: return 1677;
+ case Fire::Fire(7, true, false, false, false, true).ID: return 1678;
+ case Fire::Fire(7, true, false, false, false, false).ID: return 1679;
+ case Fire::Fire(7, false, true, true, true, true).ID: return 1680;
+ case Fire::Fire(7, false, true, true, true, false).ID: return 1681;
+ case Fire::Fire(7, false, true, true, false, true).ID: return 1682;
+ case Fire::Fire(7, false, true, true, false, false).ID: return 1683;
+ case Fire::Fire(7, false, true, false, true, true).ID: return 1684;
+ case Fire::Fire(7, false, true, false, true, false).ID: return 1685;
+ case Fire::Fire(7, false, true, false, false, true).ID: return 1686;
+ case Fire::Fire(7, false, true, false, false, false).ID: return 1687;
+ case Fire::Fire(7, false, false, true, true, true).ID: return 1688;
+ case Fire::Fire(7, false, false, true, true, false).ID: return 1689;
+ case Fire::Fire(7, false, false, true, false, true).ID: return 1690;
+ case Fire::Fire(7, false, false, true, false, false).ID: return 1691;
+ case Fire::Fire(7, false, false, false, true, true).ID: return 1692;
+ case Fire::Fire(7, false, false, false, true, false).ID: return 1693;
+ case Fire::Fire(7, false, false, false, false, true).ID: return 1694;
+ case Fire::Fire(7, false, false, false, false, false).ID: return 1695;
+ case Fire::Fire(8, true, true, true, true, true).ID: return 1696;
+ case Fire::Fire(8, true, true, true, true, false).ID: return 1697;
+ case Fire::Fire(8, true, true, true, false, true).ID: return 1698;
+ case Fire::Fire(8, true, true, true, false, false).ID: return 1699;
+ case Fire::Fire(8, true, true, false, true, true).ID: return 1700;
+ case Fire::Fire(8, true, true, false, true, false).ID: return 1701;
+ case Fire::Fire(8, true, true, false, false, true).ID: return 1702;
+ case Fire::Fire(8, true, true, false, false, false).ID: return 1703;
+ case Fire::Fire(8, true, false, true, true, true).ID: return 1704;
+ case Fire::Fire(8, true, false, true, true, false).ID: return 1705;
+ case Fire::Fire(8, true, false, true, false, true).ID: return 1706;
+ case Fire::Fire(8, true, false, true, false, false).ID: return 1707;
+ case Fire::Fire(8, true, false, false, true, true).ID: return 1708;
+ case Fire::Fire(8, true, false, false, true, false).ID: return 1709;
+ case Fire::Fire(8, true, false, false, false, true).ID: return 1710;
+ case Fire::Fire(8, true, false, false, false, false).ID: return 1711;
+ case Fire::Fire(8, false, true, true, true, true).ID: return 1712;
+ case Fire::Fire(8, false, true, true, true, false).ID: return 1713;
+ case Fire::Fire(8, false, true, true, false, true).ID: return 1714;
+ case Fire::Fire(8, false, true, true, false, false).ID: return 1715;
+ case Fire::Fire(8, false, true, false, true, true).ID: return 1716;
+ case Fire::Fire(8, false, true, false, true, false).ID: return 1717;
+ case Fire::Fire(8, false, true, false, false, true).ID: return 1718;
+ case Fire::Fire(8, false, true, false, false, false).ID: return 1719;
+ case Fire::Fire(8, false, false, true, true, true).ID: return 1720;
+ case Fire::Fire(8, false, false, true, true, false).ID: return 1721;
+ case Fire::Fire(8, false, false, true, false, true).ID: return 1722;
+ case Fire::Fire(8, false, false, true, false, false).ID: return 1723;
+ case Fire::Fire(8, false, false, false, true, true).ID: return 1724;
+ case Fire::Fire(8, false, false, false, true, false).ID: return 1725;
+ case Fire::Fire(8, false, false, false, false, true).ID: return 1726;
+ case Fire::Fire(8, false, false, false, false, false).ID: return 1727;
+ case Fire::Fire(9, true, true, true, true, true).ID: return 1728;
+ case Fire::Fire(9, true, true, true, true, false).ID: return 1729;
+ case Fire::Fire(9, true, true, true, false, true).ID: return 1730;
+ case Fire::Fire(9, true, true, true, false, false).ID: return 1731;
+ case Fire::Fire(9, true, true, false, true, true).ID: return 1732;
+ case Fire::Fire(9, true, true, false, true, false).ID: return 1733;
+ case Fire::Fire(9, true, true, false, false, true).ID: return 1734;
+ case Fire::Fire(9, true, true, false, false, false).ID: return 1735;
+ case Fire::Fire(9, true, false, true, true, true).ID: return 1736;
+ case Fire::Fire(9, true, false, true, true, false).ID: return 1737;
+ case Fire::Fire(9, true, false, true, false, true).ID: return 1738;
+ case Fire::Fire(9, true, false, true, false, false).ID: return 1739;
+ case Fire::Fire(9, true, false, false, true, true).ID: return 1740;
+ case Fire::Fire(9, true, false, false, true, false).ID: return 1741;
+ case Fire::Fire(9, true, false, false, false, true).ID: return 1742;
+ case Fire::Fire(9, true, false, false, false, false).ID: return 1743;
+ case Fire::Fire(9, false, true, true, true, true).ID: return 1744;
+ case Fire::Fire(9, false, true, true, true, false).ID: return 1745;
+ case Fire::Fire(9, false, true, true, false, true).ID: return 1746;
+ case Fire::Fire(9, false, true, true, false, false).ID: return 1747;
+ case Fire::Fire(9, false, true, false, true, true).ID: return 1748;
+ case Fire::Fire(9, false, true, false, true, false).ID: return 1749;
+ case Fire::Fire(9, false, true, false, false, true).ID: return 1750;
+ case Fire::Fire(9, false, true, false, false, false).ID: return 1751;
+ case Fire::Fire(9, false, false, true, true, true).ID: return 1752;
+ case Fire::Fire(9, false, false, true, true, false).ID: return 1753;
+ case Fire::Fire(9, false, false, true, false, true).ID: return 1754;
+ case Fire::Fire(9, false, false, true, false, false).ID: return 1755;
+ case Fire::Fire(9, false, false, false, true, true).ID: return 1756;
+ case Fire::Fire(9, false, false, false, true, false).ID: return 1757;
+ case Fire::Fire(9, false, false, false, false, true).ID: return 1758;
+ case Fire::Fire(9, false, false, false, false, false).ID: return 1759;
+ case Fire::Fire(10, true, true, true, true, true).ID: return 1760;
+ case Fire::Fire(10, true, true, true, true, false).ID: return 1761;
+ case Fire::Fire(10, true, true, true, false, true).ID: return 1762;
+ case Fire::Fire(10, true, true, true, false, false).ID: return 1763;
+ case Fire::Fire(10, true, true, false, true, true).ID: return 1764;
+ case Fire::Fire(10, true, true, false, true, false).ID: return 1765;
+ case Fire::Fire(10, true, true, false, false, true).ID: return 1766;
+ case Fire::Fire(10, true, true, false, false, false).ID: return 1767;
+ case Fire::Fire(10, true, false, true, true, true).ID: return 1768;
+ case Fire::Fire(10, true, false, true, true, false).ID: return 1769;
+ case Fire::Fire(10, true, false, true, false, true).ID: return 1770;
+ case Fire::Fire(10, true, false, true, false, false).ID: return 1771;
+ case Fire::Fire(10, true, false, false, true, true).ID: return 1772;
+ case Fire::Fire(10, true, false, false, true, false).ID: return 1773;
+ case Fire::Fire(10, true, false, false, false, true).ID: return 1774;
+ case Fire::Fire(10, true, false, false, false, false).ID: return 1775;
+ case Fire::Fire(10, false, true, true, true, true).ID: return 1776;
+ case Fire::Fire(10, false, true, true, true, false).ID: return 1777;
+ case Fire::Fire(10, false, true, true, false, true).ID: return 1778;
+ case Fire::Fire(10, false, true, true, false, false).ID: return 1779;
+ case Fire::Fire(10, false, true, false, true, true).ID: return 1780;
+ case Fire::Fire(10, false, true, false, true, false).ID: return 1781;
+ case Fire::Fire(10, false, true, false, false, true).ID: return 1782;
+ case Fire::Fire(10, false, true, false, false, false).ID: return 1783;
+ case Fire::Fire(10, false, false, true, true, true).ID: return 1784;
+ case Fire::Fire(10, false, false, true, true, false).ID: return 1785;
+ case Fire::Fire(10, false, false, true, false, true).ID: return 1786;
+ case Fire::Fire(10, false, false, true, false, false).ID: return 1787;
+ case Fire::Fire(10, false, false, false, true, true).ID: return 1788;
+ case Fire::Fire(10, false, false, false, true, false).ID: return 1789;
+ case Fire::Fire(10, false, false, false, false, true).ID: return 1790;
+ case Fire::Fire(10, false, false, false, false, false).ID: return 1791;
+ case Fire::Fire(11, true, true, true, true, true).ID: return 1792;
+ case Fire::Fire(11, true, true, true, true, false).ID: return 1793;
+ case Fire::Fire(11, true, true, true, false, true).ID: return 1794;
+ case Fire::Fire(11, true, true, true, false, false).ID: return 1795;
+ case Fire::Fire(11, true, true, false, true, true).ID: return 1796;
+ case Fire::Fire(11, true, true, false, true, false).ID: return 1797;
+ case Fire::Fire(11, true, true, false, false, true).ID: return 1798;
+ case Fire::Fire(11, true, true, false, false, false).ID: return 1799;
+ case Fire::Fire(11, true, false, true, true, true).ID: return 1800;
+ case Fire::Fire(11, true, false, true, true, false).ID: return 1801;
+ case Fire::Fire(11, true, false, true, false, true).ID: return 1802;
+ case Fire::Fire(11, true, false, true, false, false).ID: return 1803;
+ case Fire::Fire(11, true, false, false, true, true).ID: return 1804;
+ case Fire::Fire(11, true, false, false, true, false).ID: return 1805;
+ case Fire::Fire(11, true, false, false, false, true).ID: return 1806;
+ case Fire::Fire(11, true, false, false, false, false).ID: return 1807;
+ case Fire::Fire(11, false, true, true, true, true).ID: return 1808;
+ case Fire::Fire(11, false, true, true, true, false).ID: return 1809;
+ case Fire::Fire(11, false, true, true, false, true).ID: return 1810;
+ case Fire::Fire(11, false, true, true, false, false).ID: return 1811;
+ case Fire::Fire(11, false, true, false, true, true).ID: return 1812;
+ case Fire::Fire(11, false, true, false, true, false).ID: return 1813;
+ case Fire::Fire(11, false, true, false, false, true).ID: return 1814;
+ case Fire::Fire(11, false, true, false, false, false).ID: return 1815;
+ case Fire::Fire(11, false, false, true, true, true).ID: return 1816;
+ case Fire::Fire(11, false, false, true, true, false).ID: return 1817;
+ case Fire::Fire(11, false, false, true, false, true).ID: return 1818;
+ case Fire::Fire(11, false, false, true, false, false).ID: return 1819;
+ case Fire::Fire(11, false, false, false, true, true).ID: return 1820;
+ case Fire::Fire(11, false, false, false, true, false).ID: return 1821;
+ case Fire::Fire(11, false, false, false, false, true).ID: return 1822;
+ case Fire::Fire(11, false, false, false, false, false).ID: return 1823;
+ case Fire::Fire(12, true, true, true, true, true).ID: return 1824;
+ case Fire::Fire(12, true, true, true, true, false).ID: return 1825;
+ case Fire::Fire(12, true, true, true, false, true).ID: return 1826;
+ case Fire::Fire(12, true, true, true, false, false).ID: return 1827;
+ case Fire::Fire(12, true, true, false, true, true).ID: return 1828;
+ case Fire::Fire(12, true, true, false, true, false).ID: return 1829;
+ case Fire::Fire(12, true, true, false, false, true).ID: return 1830;
+ case Fire::Fire(12, true, true, false, false, false).ID: return 1831;
+ case Fire::Fire(12, true, false, true, true, true).ID: return 1832;
+ case Fire::Fire(12, true, false, true, true, false).ID: return 1833;
+ case Fire::Fire(12, true, false, true, false, true).ID: return 1834;
+ case Fire::Fire(12, true, false, true, false, false).ID: return 1835;
+ case Fire::Fire(12, true, false, false, true, true).ID: return 1836;
+ case Fire::Fire(12, true, false, false, true, false).ID: return 1837;
+ case Fire::Fire(12, true, false, false, false, true).ID: return 1838;
+ case Fire::Fire(12, true, false, false, false, false).ID: return 1839;
+ case Fire::Fire(12, false, true, true, true, true).ID: return 1840;
+ case Fire::Fire(12, false, true, true, true, false).ID: return 1841;
+ case Fire::Fire(12, false, true, true, false, true).ID: return 1842;
+ case Fire::Fire(12, false, true, true, false, false).ID: return 1843;
+ case Fire::Fire(12, false, true, false, true, true).ID: return 1844;
+ case Fire::Fire(12, false, true, false, true, false).ID: return 1845;
+ case Fire::Fire(12, false, true, false, false, true).ID: return 1846;
+ case Fire::Fire(12, false, true, false, false, false).ID: return 1847;
+ case Fire::Fire(12, false, false, true, true, true).ID: return 1848;
+ case Fire::Fire(12, false, false, true, true, false).ID: return 1849;
+ case Fire::Fire(12, false, false, true, false, true).ID: return 1850;
+ case Fire::Fire(12, false, false, true, false, false).ID: return 1851;
+ case Fire::Fire(12, false, false, false, true, true).ID: return 1852;
+ case Fire::Fire(12, false, false, false, true, false).ID: return 1853;
+ case Fire::Fire(12, false, false, false, false, true).ID: return 1854;
+ case Fire::Fire(12, false, false, false, false, false).ID: return 1855;
+ case Fire::Fire(13, true, true, true, true, true).ID: return 1856;
+ case Fire::Fire(13, true, true, true, true, false).ID: return 1857;
+ case Fire::Fire(13, true, true, true, false, true).ID: return 1858;
+ case Fire::Fire(13, true, true, true, false, false).ID: return 1859;
+ case Fire::Fire(13, true, true, false, true, true).ID: return 1860;
+ case Fire::Fire(13, true, true, false, true, false).ID: return 1861;
+ case Fire::Fire(13, true, true, false, false, true).ID: return 1862;
+ case Fire::Fire(13, true, true, false, false, false).ID: return 1863;
+ case Fire::Fire(13, true, false, true, true, true).ID: return 1864;
+ case Fire::Fire(13, true, false, true, true, false).ID: return 1865;
+ case Fire::Fire(13, true, false, true, false, true).ID: return 1866;
+ case Fire::Fire(13, true, false, true, false, false).ID: return 1867;
+ case Fire::Fire(13, true, false, false, true, true).ID: return 1868;
+ case Fire::Fire(13, true, false, false, true, false).ID: return 1869;
+ case Fire::Fire(13, true, false, false, false, true).ID: return 1870;
+ case Fire::Fire(13, true, false, false, false, false).ID: return 1871;
+ case Fire::Fire(13, false, true, true, true, true).ID: return 1872;
+ case Fire::Fire(13, false, true, true, true, false).ID: return 1873;
+ case Fire::Fire(13, false, true, true, false, true).ID: return 1874;
+ case Fire::Fire(13, false, true, true, false, false).ID: return 1875;
+ case Fire::Fire(13, false, true, false, true, true).ID: return 1876;
+ case Fire::Fire(13, false, true, false, true, false).ID: return 1877;
+ case Fire::Fire(13, false, true, false, false, true).ID: return 1878;
+ case Fire::Fire(13, false, true, false, false, false).ID: return 1879;
+ case Fire::Fire(13, false, false, true, true, true).ID: return 1880;
+ case Fire::Fire(13, false, false, true, true, false).ID: return 1881;
+ case Fire::Fire(13, false, false, true, false, true).ID: return 1882;
+ case Fire::Fire(13, false, false, true, false, false).ID: return 1883;
+ case Fire::Fire(13, false, false, false, true, true).ID: return 1884;
+ case Fire::Fire(13, false, false, false, true, false).ID: return 1885;
+ case Fire::Fire(13, false, false, false, false, true).ID: return 1886;
+ case Fire::Fire(13, false, false, false, false, false).ID: return 1887;
+ case Fire::Fire(14, true, true, true, true, true).ID: return 1888;
+ case Fire::Fire(14, true, true, true, true, false).ID: return 1889;
+ case Fire::Fire(14, true, true, true, false, true).ID: return 1890;
+ case Fire::Fire(14, true, true, true, false, false).ID: return 1891;
+ case Fire::Fire(14, true, true, false, true, true).ID: return 1892;
+ case Fire::Fire(14, true, true, false, true, false).ID: return 1893;
+ case Fire::Fire(14, true, true, false, false, true).ID: return 1894;
+ case Fire::Fire(14, true, true, false, false, false).ID: return 1895;
+ case Fire::Fire(14, true, false, true, true, true).ID: return 1896;
+ case Fire::Fire(14, true, false, true, true, false).ID: return 1897;
+ case Fire::Fire(14, true, false, true, false, true).ID: return 1898;
+ case Fire::Fire(14, true, false, true, false, false).ID: return 1899;
+ case Fire::Fire(14, true, false, false, true, true).ID: return 1900;
+ case Fire::Fire(14, true, false, false, true, false).ID: return 1901;
+ case Fire::Fire(14, true, false, false, false, true).ID: return 1902;
+ case Fire::Fire(14, true, false, false, false, false).ID: return 1903;
+ case Fire::Fire(14, false, true, true, true, true).ID: return 1904;
+ case Fire::Fire(14, false, true, true, true, false).ID: return 1905;
+ case Fire::Fire(14, false, true, true, false, true).ID: return 1906;
+ case Fire::Fire(14, false, true, true, false, false).ID: return 1907;
+ case Fire::Fire(14, false, true, false, true, true).ID: return 1908;
+ case Fire::Fire(14, false, true, false, true, false).ID: return 1909;
+ case Fire::Fire(14, false, true, false, false, true).ID: return 1910;
+ case Fire::Fire(14, false, true, false, false, false).ID: return 1911;
+ case Fire::Fire(14, false, false, true, true, true).ID: return 1912;
+ case Fire::Fire(14, false, false, true, true, false).ID: return 1913;
+ case Fire::Fire(14, false, false, true, false, true).ID: return 1914;
+ case Fire::Fire(14, false, false, true, false, false).ID: return 1915;
+ case Fire::Fire(14, false, false, false, true, true).ID: return 1916;
+ case Fire::Fire(14, false, false, false, true, false).ID: return 1917;
+ case Fire::Fire(14, false, false, false, false, true).ID: return 1918;
+ case Fire::Fire(14, false, false, false, false, false).ID: return 1919;
+ case Fire::Fire(15, true, true, true, true, true).ID: return 1920;
+ case Fire::Fire(15, true, true, true, true, false).ID: return 1921;
+ case Fire::Fire(15, true, true, true, false, true).ID: return 1922;
+ case Fire::Fire(15, true, true, true, false, false).ID: return 1923;
+ case Fire::Fire(15, true, true, false, true, true).ID: return 1924;
+ case Fire::Fire(15, true, true, false, true, false).ID: return 1925;
+ case Fire::Fire(15, true, true, false, false, true).ID: return 1926;
+ case Fire::Fire(15, true, true, false, false, false).ID: return 1927;
+ case Fire::Fire(15, true, false, true, true, true).ID: return 1928;
+ case Fire::Fire(15, true, false, true, true, false).ID: return 1929;
+ case Fire::Fire(15, true, false, true, false, true).ID: return 1930;
+ case Fire::Fire(15, true, false, true, false, false).ID: return 1931;
+ case Fire::Fire(15, true, false, false, true, true).ID: return 1932;
+ case Fire::Fire(15, true, false, false, true, false).ID: return 1933;
+ case Fire::Fire(15, true, false, false, false, true).ID: return 1934;
+ case Fire::Fire(15, true, false, false, false, false).ID: return 1935;
+ case Fire::Fire(15, false, true, true, true, true).ID: return 1936;
+ case Fire::Fire(15, false, true, true, true, false).ID: return 1937;
+ case Fire::Fire(15, false, true, true, false, true).ID: return 1938;
+ case Fire::Fire(15, false, true, true, false, false).ID: return 1939;
+ case Fire::Fire(15, false, true, false, true, true).ID: return 1940;
+ case Fire::Fire(15, false, true, false, true, false).ID: return 1941;
+ case Fire::Fire(15, false, true, false, false, true).ID: return 1942;
+ case Fire::Fire(15, false, true, false, false, false).ID: return 1943;
+ case Fire::Fire(15, false, false, true, true, true).ID: return 1944;
+ case Fire::Fire(15, false, false, true, true, false).ID: return 1945;
+ case Fire::Fire(15, false, false, true, false, true).ID: return 1946;
+ case Fire::Fire(15, false, false, true, false, false).ID: return 1947;
+ case Fire::Fire(15, false, false, false, true, true).ID: return 1948;
+ case Fire::Fire(15, false, false, false, true, false).ID: return 1949;
+ case Fire::Fire(15, false, false, false, false, true).ID: return 1950;
+ case Fire::Fire(15, false, false, false, false, false).ID: return 1951;
+ case FireCoral::FireCoral().ID: return 9537;
+ case FireCoralBlock::FireCoralBlock().ID: return 9518;
+ case FireCoralFan::FireCoralFan().ID: return 9557;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9625;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9627;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9629;
+ case FireCoralWallFan::FireCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9631;
+ case FletchingTable::FletchingTable().ID: return 14820;
+ case FlowerPot::FlowerPot().ID: return 6305;
+ case FrostedIce::FrostedIce(0).ID: return 9249;
+ case FrostedIce::FrostedIce(1).ID: return 9250;
+ case FrostedIce::FrostedIce(2).ID: return 9251;
+ case FrostedIce::FrostedIce(3).ID: return 9252;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, true).ID: return 3373;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZM, false).ID: return 3374;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, true).ID: return 3375;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_ZP, false).ID: return 3376;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, true).ID: return 3377;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XM, false).ID: return 3378;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, true).ID: return 3379;
+ case Furnace::Furnace(eBlockFace::BLOCK_FACE_XP, false).ID: return 3380;
+ case GildedBlackstone::GildedBlackstone().ID: return 16664;
+ case Glass::Glass().ID: return 231;
+ case GlassPane::GlassPane(true, true, true, true).ID: return 4733;
+ case GlassPane::GlassPane(true, true, true, false).ID: return 4734;
+ case GlassPane::GlassPane(true, true, false, true).ID: return 4737;
+ case GlassPane::GlassPane(true, true, false, false).ID: return 4738;
+ case GlassPane::GlassPane(true, false, true, true).ID: return 4741;
+ case GlassPane::GlassPane(true, false, true, false).ID: return 4742;
+ case GlassPane::GlassPane(true, false, false, true).ID: return 4745;
+ case GlassPane::GlassPane(true, false, false, false).ID: return 4746;
+ case GlassPane::GlassPane(false, true, true, true).ID: return 4749;
+ case GlassPane::GlassPane(false, true, true, false).ID: return 4750;
+ case GlassPane::GlassPane(false, true, false, true).ID: return 4753;
+ case GlassPane::GlassPane(false, true, false, false).ID: return 4754;
+ case GlassPane::GlassPane(false, false, true, true).ID: return 4757;
+ case GlassPane::GlassPane(false, false, true, false).ID: return 4758;
+ case GlassPane::GlassPane(false, false, false, true).ID: return 4761;
+ case GlassPane::GlassPane(false, false, false, false).ID: return 4762;
+ case Glowstone::Glowstone().ID: return 4013;
+ case GoldBlock::GoldBlock().ID: return 1427;
+ case GoldOre::GoldOre().ID: return 69;
+ case Granite::Granite().ID: return 2;
+ case GraniteSlab::GraniteSlab(GraniteSlab::Type::Top).ID: return 10838;
+ case GraniteSlab::GraniteSlab(GraniteSlab::Type::Bottom).ID: return 10840;
+ case GraniteSlab::GraniteSlab(GraniteSlab::Type::Double).ID: return 10842;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight).ID: return 10390;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft).ID: return 10392;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight).ID: return 10394;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft).ID: return 10396;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight).ID: return 10398;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight).ID: return 10400;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft).ID: return 10402;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight).ID: return 10404;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft).ID: return 10406;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight).ID: return 10408;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight).ID: return 10410;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft).ID: return 10412;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight).ID: return 10414;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft).ID: return 10416;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight).ID: return 10418;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight).ID: return 10420;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft).ID: return 10422;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight).ID: return 10424;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft).ID: return 10426;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_ZP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight).ID: return 10428;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight).ID: return 10430;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft).ID: return 10432;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight).ID: return 10434;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft).ID: return 10436;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight).ID: return 10438;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight).ID: return 10440;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft).ID: return 10442;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight).ID: return 10444;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft).ID: return 10446;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XM, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight).ID: return 10448;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::Straight).ID: return 10450;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerLeft).ID: return 10452;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::InnerRight).ID: return 10454;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterLeft).ID: return 10456;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Top, GraniteStairs::Shape::OuterRight).ID: return 10458;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::Straight).ID: return 10460;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerLeft).ID: return 10462;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::InnerRight).ID: return 10464;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterLeft).ID: return 10466;
+ case GraniteStairs::GraniteStairs(eBlockFace::BLOCK_FACE_XP, GraniteStairs::Half::Bottom, GraniteStairs::Shape::OuterRight).ID: return 10468;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 12166;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 12167;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Tall).ID: return 12168;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 12172;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 12173;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Tall).ID: return 12174;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 12178;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 12179;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Tall).ID: return 12180;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 12184;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 12185;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Tall).ID: return 12186;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::None).ID: return 12190;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Low).ID: return 12191;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Tall).ID: return 12192;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::None).ID: return 12196;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Low).ID: return 12197;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Tall).ID: return 12198;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 12202;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 12203;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Tall).ID: return 12204;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 12208;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 12209;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Tall).ID: return 12210;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 12214;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 12215;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Tall).ID: return 12216;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 12220;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 12221;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Tall).ID: return 12222;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::None).ID: return 12226;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Low).ID: return 12227;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Tall).ID: return 12228;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::None).ID: return 12232;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Low).ID: return 12233;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Tall).ID: return 12234;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 12238;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 12239;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Tall).ID: return 12240;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 12244;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 12245;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Tall).ID: return 12246;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 12250;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 12251;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Tall).ID: return 12252;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 12256;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 12257;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Tall).ID: return 12258;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::None).ID: return 12262;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Low).ID: return 12263;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Tall).ID: return 12264;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::None).ID: return 12268;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Low).ID: return 12269;
+ case GraniteWall::GraniteWall(GraniteWall::East::None, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Tall).ID: return 12270;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 12274;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 12275;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Tall).ID: return 12276;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 12280;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 12281;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Tall).ID: return 12282;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 12286;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 12287;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Tall).ID: return 12288;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 12292;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 12293;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Tall).ID: return 12294;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::None).ID: return 12298;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Low).ID: return 12299;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Tall).ID: return 12300;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::None).ID: return 12304;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Low).ID: return 12305;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Tall).ID: return 12306;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 12310;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 12311;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Tall).ID: return 12312;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 12316;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 12317;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Tall).ID: return 12318;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 12322;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 12323;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Tall).ID: return 12324;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 12328;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 12329;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Tall).ID: return 12330;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::None).ID: return 12334;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Low).ID: return 12335;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Tall).ID: return 12336;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::None).ID: return 12340;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Low).ID: return 12341;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Tall).ID: return 12342;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 12346;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 12347;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Tall).ID: return 12348;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 12352;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 12353;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Tall).ID: return 12354;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 12358;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 12359;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Tall).ID: return 12360;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 12364;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 12365;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Tall).ID: return 12366;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::None).ID: return 12370;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Low).ID: return 12371;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Tall).ID: return 12372;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::None).ID: return 12376;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Low).ID: return 12377;
+ case GraniteWall::GraniteWall(GraniteWall::East::Low, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Tall).ID: return 12378;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 12382;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 12383;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, true, GraniteWall::West::Tall).ID: return 12384;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 12388;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 12389;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::None, false, GraniteWall::West::Tall).ID: return 12390;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 12394;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 12395;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, true, GraniteWall::West::Tall).ID: return 12396;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 12400;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 12401;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Low, false, GraniteWall::West::Tall).ID: return 12402;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::None).ID: return 12406;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Low).ID: return 12407;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, true, GraniteWall::West::Tall).ID: return 12408;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::None).ID: return 12412;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Low).ID: return 12413;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::None, GraniteWall::South::Tall, false, GraniteWall::West::Tall).ID: return 12414;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 12418;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 12419;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, true, GraniteWall::West::Tall).ID: return 12420;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 12424;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 12425;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::None, false, GraniteWall::West::Tall).ID: return 12426;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 12430;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 12431;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, true, GraniteWall::West::Tall).ID: return 12432;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 12436;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 12437;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Low, false, GraniteWall::West::Tall).ID: return 12438;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::None).ID: return 12442;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Low).ID: return 12443;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, true, GraniteWall::West::Tall).ID: return 12444;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::None).ID: return 12448;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Low).ID: return 12449;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Low, GraniteWall::South::Tall, false, GraniteWall::West::Tall).ID: return 12450;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::None).ID: return 12454;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Low).ID: return 12455;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, true, GraniteWall::West::Tall).ID: return 12456;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::None).ID: return 12460;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Low).ID: return 12461;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::None, false, GraniteWall::West::Tall).ID: return 12462;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::None).ID: return 12466;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Low).ID: return 12467;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, true, GraniteWall::West::Tall).ID: return 12468;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::None).ID: return 12472;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Low).ID: return 12473;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Low, false, GraniteWall::West::Tall).ID: return 12474;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::None).ID: return 12478;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Low).ID: return 12479;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, true, GraniteWall::West::Tall).ID: return 12480;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::None).ID: return 12484;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Low).ID: return 12485;
+ case GraniteWall::GraniteWall(GraniteWall::East::Tall, GraniteWall::North::Tall, GraniteWall::South::Tall, false, GraniteWall::West::Tall).ID: return 12486;
+ case Grass::Grass().ID: return 1342;
+ case GrassBlock::GrassBlock(true).ID: return 8;
+ case GrassBlock::GrassBlock(false).ID: return 9;
+ case GrassPath::GrassPath().ID: return 9223;
+ case Gravel::Gravel().ID: return 68;
+ case GrayBanner::GrayBanner(0).ID: return 8009;
+ case GrayBanner::GrayBanner(1).ID: return 8010;
+ case GrayBanner::GrayBanner(2).ID: return 8011;
+ case GrayBanner::GrayBanner(3).ID: return 8012;
+ case GrayBanner::GrayBanner(4).ID: return 8013;
+ case GrayBanner::GrayBanner(5).ID: return 8014;
+ case GrayBanner::GrayBanner(6).ID: return 8015;
+ case GrayBanner::GrayBanner(7).ID: return 8016;
+ case GrayBanner::GrayBanner(8).ID: return 8017;
+ case GrayBanner::GrayBanner(9).ID: return 8018;
+ case GrayBanner::GrayBanner(10).ID: return 8019;
+ case GrayBanner::GrayBanner(11).ID: return 8020;
+ case GrayBanner::GrayBanner(12).ID: return 8021;
+ case GrayBanner::GrayBanner(13).ID: return 8022;
+ case GrayBanner::GrayBanner(14).ID: return 8023;
+ case GrayBanner::GrayBanner(15).ID: return 8024;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Head).ID: return 1161;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, true, GrayBed::Part::Foot).ID: return 1162;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Head).ID: return 1163;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZM, false, GrayBed::Part::Foot).ID: return 1164;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Head).ID: return 1165;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, true, GrayBed::Part::Foot).ID: return 1166;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Head).ID: return 1167;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_ZP, false, GrayBed::Part::Foot).ID: return 1168;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Head).ID: return 1169;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, true, GrayBed::Part::Foot).ID: return 1170;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Head).ID: return 1171;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XM, false, GrayBed::Part::Foot).ID: return 1172;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Head).ID: return 1173;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, true, GrayBed::Part::Foot).ID: return 1174;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Head).ID: return 1175;
+ case GrayBed::GrayBed(eBlockFace::BLOCK_FACE_XP, false, GrayBed::Part::Foot).ID: return 1176;
+ case GrayCarpet::GrayCarpet().ID: return 7873;
+ case GrayConcrete::GrayConcrete().ID: return 9445;
+ case GrayConcretePowder::GrayConcretePowder().ID: return 9461;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9402;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9403;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9404;
+ case GrayGlazedTerracotta::GrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9405;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9320;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9321;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9322;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9323;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9324;
+ case GrayShulkerBox::GrayShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9325;
+ case GrayStainedGlass::GrayStainedGlass().ID: return 4102;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, true).ID: return 7089;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, true, false).ID: return 7090;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, true).ID: return 7093;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, true, false, false).ID: return 7094;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, true).ID: return 7097;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, true, false).ID: return 7098;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, true).ID: return 7101;
+ case GrayStainedGlassPane::GrayStainedGlassPane(true, false, false, false).ID: return 7102;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, true).ID: return 7105;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, true, false).ID: return 7106;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, true).ID: return 7109;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, true, false, false).ID: return 7110;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, true).ID: return 7113;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, true, false).ID: return 7114;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, true).ID: return 7117;
+ case GrayStainedGlassPane::GrayStainedGlassPane(false, false, false, false).ID: return 7118;
+ case GrayTerracotta::GrayTerracotta().ID: return 6854;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8181;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8182;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8183;
+ case GrayWallBanner::GrayWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8184;
+ case GrayWool::GrayWool().ID: return 1391;
+ case GreenBanner::GreenBanner(0).ID: return 8105;
+ case GreenBanner::GreenBanner(1).ID: return 8106;
+ case GreenBanner::GreenBanner(2).ID: return 8107;
+ case GreenBanner::GreenBanner(3).ID: return 8108;
+ case GreenBanner::GreenBanner(4).ID: return 8109;
+ case GreenBanner::GreenBanner(5).ID: return 8110;
+ case GreenBanner::GreenBanner(6).ID: return 8111;
+ case GreenBanner::GreenBanner(7).ID: return 8112;
+ case GreenBanner::GreenBanner(8).ID: return 8113;
+ case GreenBanner::GreenBanner(9).ID: return 8114;
+ case GreenBanner::GreenBanner(10).ID: return 8115;
+ case GreenBanner::GreenBanner(11).ID: return 8116;
+ case GreenBanner::GreenBanner(12).ID: return 8117;
+ case GreenBanner::GreenBanner(13).ID: return 8118;
+ case GreenBanner::GreenBanner(14).ID: return 8119;
+ case GreenBanner::GreenBanner(15).ID: return 8120;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Head).ID: return 1257;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, true, GreenBed::Part::Foot).ID: return 1258;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Head).ID: return 1259;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZM, false, GreenBed::Part::Foot).ID: return 1260;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Head).ID: return 1261;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, true, GreenBed::Part::Foot).ID: return 1262;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Head).ID: return 1263;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_ZP, false, GreenBed::Part::Foot).ID: return 1264;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Head).ID: return 1265;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, true, GreenBed::Part::Foot).ID: return 1266;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Head).ID: return 1267;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XM, false, GreenBed::Part::Foot).ID: return 1268;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Head).ID: return 1269;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, true, GreenBed::Part::Foot).ID: return 1270;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Head).ID: return 1271;
+ case GreenBed::GreenBed(eBlockFace::BLOCK_FACE_XP, false, GreenBed::Part::Foot).ID: return 1272;
+ case GreenCarpet::GreenCarpet().ID: return 7879;
+ case GreenConcrete::GreenConcrete().ID: return 9451;
+ case GreenConcretePowder::GreenConcretePowder().ID: return 9467;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9426;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9427;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9428;
+ case GreenGlazedTerracotta::GreenGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9429;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9356;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9357;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9358;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9359;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9360;
+ case GreenShulkerBox::GreenShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9361;
+ case GreenStainedGlass::GreenStainedGlass().ID: return 4108;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, true).ID: return 7281;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, true, false).ID: return 7282;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, true).ID: return 7285;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, true, false, false).ID: return 7286;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, true).ID: return 7289;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, true, false).ID: return 7290;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, true).ID: return 7293;
+ case GreenStainedGlassPane::GreenStainedGlassPane(true, false, false, false).ID: return 7294;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, true).ID: return 7297;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, true, false).ID: return 7298;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, true).ID: return 7301;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, true, false, false).ID: return 7302;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, true).ID: return 7305;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, true, false).ID: return 7306;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, true).ID: return 7309;
+ case GreenStainedGlassPane::GreenStainedGlassPane(false, false, false, false).ID: return 7310;
+ case GreenTerracotta::GreenTerracotta().ID: return 6860;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8205;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8206;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8207;
+ case GreenWallBanner::GreenWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8208;
+ case GreenWool::GreenWool().ID: return 1397;
+ case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZM).ID: return 14821;
+ case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_ZP).ID: return 14822;
+ case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XM).ID: return 14823;
+ case Grindstone::Grindstone(Grindstone::Face::Floor, eBlockFace::BLOCK_FACE_XP).ID: return 14824;
+ case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZM).ID: return 14825;
+ case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_ZP).ID: return 14826;
+ case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XM).ID: return 14827;
+ case Grindstone::Grindstone(Grindstone::Face::Wall, eBlockFace::BLOCK_FACE_XP).ID: return 14828;
+ case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM).ID: return 14829;
+ case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP).ID: return 14830;
+ case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XM).ID: return 14831;
+ case Grindstone::Grindstone(Grindstone::Face::Ceiling, eBlockFace::BLOCK_FACE_XP).ID: return 14832;
+ case HayBale::HayBale(HayBale::Axis::X).ID: return 7863;
+ case HayBale::HayBale(HayBale::Axis::Y).ID: return 7864;
+ case HayBale::HayBale(HayBale::Axis::Z).ID: return 7865;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(0).ID: return 6662;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(1).ID: return 6663;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(2).ID: return 6664;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(3).ID: return 6665;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(4).ID: return 6666;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(5).ID: return 6667;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(6).ID: return 6668;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(7).ID: return 6669;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(8).ID: return 6670;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(9).ID: return 6671;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(10).ID: return 6672;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(11).ID: return 6673;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(12).ID: return 6674;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(13).ID: return 6675;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(14).ID: return 6676;
+ case HeavyWeightedPressurePlate::HeavyWeightedPressurePlate(15).ID: return 6677;
+ case HoneyBlock::HoneyBlock().ID: return 15824;
+ case HoneycombBlock::HoneycombBlock().ID: return 15825;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_YM).ID: return 6728;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZM).ID: return 6729;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_ZP).ID: return 6730;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XM).ID: return 6731;
+ case Hopper::Hopper(true, eBlockFace::BLOCK_FACE_XP).ID: return 6732;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_YM).ID: return 6733;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZM).ID: return 6734;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_ZP).ID: return 6735;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XM).ID: return 6736;
+ case Hopper::Hopper(false, eBlockFace::BLOCK_FACE_XP).ID: return 6737;
+ case HornCoral::HornCoral().ID: return 9539;
+ case HornCoralBlock::HornCoralBlock().ID: return 9519;
+ case HornCoralFan::HornCoralFan().ID: return 9559;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9633;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9635;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9637;
+ case HornCoralWallFan::HornCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9639;
+ case Ice::Ice().ID: return 3929;
+ case InfestedChiseledStoneBricks::InfestedChiseledStoneBricks().ID: return 4504;
+ case InfestedCobblestone::InfestedCobblestone().ID: return 4500;
+ case InfestedCrackedStoneBricks::InfestedCrackedStoneBricks().ID: return 4503;
+ case InfestedMossyStoneBricks::InfestedMossyStoneBricks().ID: return 4502;
+ case InfestedStone::InfestedStone().ID: return 4499;
+ case InfestedStoneBricks::InfestedStoneBricks().ID: return 4501;
+ case IronBars::IronBars(true, true, true, true).ID: return 4699;
+ case IronBars::IronBars(true, true, true, false).ID: return 4700;
+ case IronBars::IronBars(true, true, false, true).ID: return 4703;
+ case IronBars::IronBars(true, true, false, false).ID: return 4704;
+ case IronBars::IronBars(true, false, true, true).ID: return 4707;
+ case IronBars::IronBars(true, false, true, false).ID: return 4708;
+ case IronBars::IronBars(true, false, false, true).ID: return 4711;
+ case IronBars::IronBars(true, false, false, false).ID: return 4712;
+ case IronBars::IronBars(false, true, true, true).ID: return 4715;
+ case IronBars::IronBars(false, true, true, false).ID: return 4716;
+ case IronBars::IronBars(false, true, false, true).ID: return 4719;
+ case IronBars::IronBars(false, true, false, false).ID: return 4720;
+ case IronBars::IronBars(false, false, true, true).ID: return 4723;
+ case IronBars::IronBars(false, false, true, false).ID: return 4724;
+ case IronBars::IronBars(false, false, false, true).ID: return 4727;
+ case IronBars::IronBars(false, false, false, false).ID: return 4728;
+ case IronBlock::IronBlock().ID: return 1428;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3809;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3810;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3811;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3812;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3813;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3814;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3815;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3816;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3817;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3818;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3819;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3820;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3821;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3822;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3823;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3824;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3825;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3826;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3827;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3828;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3829;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3830;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3831;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3832;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3833;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3834;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3835;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3836;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3837;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3838;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3839;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_ZP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3840;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3841;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3842;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3843;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3844;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3845;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3846;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3847;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3848;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3849;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3850;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3851;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3852;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3853;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3854;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3855;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XM, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3856;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, true).ID: return 3857;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, true, false).ID: return 3858;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, true).ID: return 3859;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Left, false, false).ID: return 3860;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, true).ID: return 3861;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, true, false).ID: return 3862;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, true).ID: return 3863;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Upper, IronDoor::Hinge::Right, false, false).ID: return 3864;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, true).ID: return 3865;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, true, false).ID: return 3866;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, true).ID: return 3867;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Left, false, false).ID: return 3868;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, true).ID: return 3869;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, true, false).ID: return 3870;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, true).ID: return 3871;
+ case IronDoor::IronDoor(eBlockFace::BLOCK_FACE_XP, IronDoor::Half::Lower, IronDoor::Hinge::Right, false, false).ID: return 3872;
+ case IronOre::IronOre().ID: return 70;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, true).ID: return 7538;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, true, false).ID: return 7540;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, true).ID: return 7542;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Top, false, false).ID: return 7544;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, true).ID: return 7546;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, true, false).ID: return 7548;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, true).ID: return 7550;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZM, IronTrapdoor::Half::Bottom, false, false).ID: return 7552;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, true).ID: return 7554;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, true, false).ID: return 7556;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, true).ID: return 7558;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Top, false, false).ID: return 7560;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, true).ID: return 7562;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, true, false).ID: return 7564;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, true).ID: return 7566;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_ZP, IronTrapdoor::Half::Bottom, false, false).ID: return 7568;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, true).ID: return 7570;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, true, false).ID: return 7572;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, true).ID: return 7574;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Top, false, false).ID: return 7576;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, true).ID: return 7578;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, true, false).ID: return 7580;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, true).ID: return 7582;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XM, IronTrapdoor::Half::Bottom, false, false).ID: return 7584;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, true).ID: return 7586;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, true, false).ID: return 7588;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, true).ID: return 7590;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Top, false, false).ID: return 7592;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, true).ID: return 7594;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, true, false).ID: return 7596;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, true).ID: return 7598;
+ case IronTrapdoor::IronTrapdoor(eBlockFace::BLOCK_FACE_XP, IronTrapdoor::Half::Bottom, false, false).ID: return 7600;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZM).ID: return 4020;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_ZP).ID: return 4021;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XM).ID: return 4022;
+ case JackOLantern::JackOLantern(eBlockFace::BLOCK_FACE_XP).ID: return 4023;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::DownEast).ID: return 15739;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::DownNorth).ID: return 15740;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::DownSouth).ID: return 15741;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::DownWest).ID: return 15742;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::UpEast).ID: return 15743;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::UpNorth).ID: return 15744;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::UpSouth).ID: return 15745;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::UpWest).ID: return 15746;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::WestUp).ID: return 15747;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::EastUp).ID: return 15748;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::NorthUp).ID: return 15749;
+ case Jigsaw::Jigsaw(Jigsaw::Orientation::SouthUp).ID: return 15750;
+ case Jukebox::Jukebox(true).ID: return 3964;
+ case Jukebox::Jukebox(false).ID: return 3965;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6418;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6419;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6420;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6421;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 6422;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 6423;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 6424;
+ case JungleButton::JungleButton(JungleButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 6425;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6426;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6427;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6428;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6429;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 6430;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 6431;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 6432;
+ case JungleButton::JungleButton(JungleButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 6433;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6434;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6435;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6436;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6437;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 6438;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 6439;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 6440;
+ case JungleButton::JungleButton(JungleButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 6441;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 8866;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 8867;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 8868;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 8869;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 8870;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 8871;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 8872;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 8873;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 8874;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 8875;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 8876;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 8877;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 8878;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 8879;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 8880;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 8881;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 8882;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 8883;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 8884;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 8885;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 8886;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 8887;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 8888;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 8889;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 8890;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 8891;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 8892;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 8893;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 8894;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 8895;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 8896;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_ZP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 8897;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 8898;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 8899;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 8900;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 8901;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 8902;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 8903;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 8904;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 8905;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 8906;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 8907;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 8908;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 8909;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 8910;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 8911;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 8912;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XM, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 8913;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, true).ID: return 8914;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, true, false).ID: return 8915;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, true).ID: return 8916;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Left, false, false).ID: return 8917;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, true).ID: return 8918;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, true, false).ID: return 8919;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, true).ID: return 8920;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Upper, JungleDoor::Hinge::Right, false, false).ID: return 8921;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, true).ID: return 8922;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, true, false).ID: return 8923;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, true).ID: return 8924;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Left, false, false).ID: return 8925;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, true).ID: return 8926;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, true, false).ID: return 8927;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, true).ID: return 8928;
+ case JungleDoor::JungleDoor(eBlockFace::BLOCK_FACE_XP, JungleDoor::Half::Lower, JungleDoor::Hinge::Right, false, false).ID: return 8929;
+ case JungleFence::JungleFence(true, true, true, true).ID: return 8644;
+ case JungleFence::JungleFence(true, true, true, false).ID: return 8645;
+ case JungleFence::JungleFence(true, true, false, true).ID: return 8648;
+ case JungleFence::JungleFence(true, true, false, false).ID: return 8649;
+ case JungleFence::JungleFence(true, false, true, true).ID: return 8652;
+ case JungleFence::JungleFence(true, false, true, false).ID: return 8653;
+ case JungleFence::JungleFence(true, false, false, true).ID: return 8656;
+ case JungleFence::JungleFence(true, false, false, false).ID: return 8657;
+ case JungleFence::JungleFence(false, true, true, true).ID: return 8660;
+ case JungleFence::JungleFence(false, true, true, false).ID: return 8661;
+ case JungleFence::JungleFence(false, true, false, true).ID: return 8664;
+ case JungleFence::JungleFence(false, true, false, false).ID: return 8665;
+ case JungleFence::JungleFence(false, false, true, true).ID: return 8668;
+ case JungleFence::JungleFence(false, false, true, false).ID: return 8669;
+ case JungleFence::JungleFence(false, false, false, true).ID: return 8672;
+ case JungleFence::JungleFence(false, false, false, false).ID: return 8673;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 8482;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 8483;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 8484;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 8485;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 8486;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 8487;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 8488;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 8489;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 8490;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 8491;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 8492;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 8493;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 8494;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 8495;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 8496;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 8497;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 8498;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 8499;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 8500;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 8501;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 8502;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 8503;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 8504;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 8505;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 8506;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 8507;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 8508;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 8509;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 8510;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 8511;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 8512;
+ case JungleFenceGate::JungleFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 8513;
+ case JungleLeaves::JungleLeaves(1, true).ID: return 187;
+ case JungleLeaves::JungleLeaves(1, false).ID: return 188;
+ case JungleLeaves::JungleLeaves(2, true).ID: return 189;
+ case JungleLeaves::JungleLeaves(2, false).ID: return 190;
+ case JungleLeaves::JungleLeaves(3, true).ID: return 191;
+ case JungleLeaves::JungleLeaves(3, false).ID: return 192;
+ case JungleLeaves::JungleLeaves(4, true).ID: return 193;
+ case JungleLeaves::JungleLeaves(4, false).ID: return 194;
+ case JungleLeaves::JungleLeaves(5, true).ID: return 195;
+ case JungleLeaves::JungleLeaves(5, false).ID: return 196;
+ case JungleLeaves::JungleLeaves(6, true).ID: return 197;
+ case JungleLeaves::JungleLeaves(6, false).ID: return 198;
+ case JungleLeaves::JungleLeaves(7, true).ID: return 199;
+ case JungleLeaves::JungleLeaves(7, false).ID: return 200;
+ case JungleLog::JungleLog(JungleLog::Axis::X).ID: return 82;
+ case JungleLog::JungleLog(JungleLog::Axis::Y).ID: return 83;
+ case JungleLog::JungleLog(JungleLog::Axis::Z).ID: return 84;
+ case JunglePlanks::JunglePlanks().ID: return 18;
+ case JunglePressurePlate::JunglePressurePlate(true).ID: return 3879;
+ case JunglePressurePlate::JunglePressurePlate(false).ID: return 3880;
+ case JungleSapling::JungleSapling(0).ID: return 27;
+ case JungleSapling::JungleSapling(1).ID: return 28;
+ case JungleSign::JungleSign(0).ID: return 3510;
+ case JungleSign::JungleSign(1).ID: return 3512;
+ case JungleSign::JungleSign(2).ID: return 3514;
+ case JungleSign::JungleSign(3).ID: return 3516;
+ case JungleSign::JungleSign(4).ID: return 3518;
+ case JungleSign::JungleSign(5).ID: return 3520;
+ case JungleSign::JungleSign(6).ID: return 3522;
+ case JungleSign::JungleSign(7).ID: return 3524;
+ case JungleSign::JungleSign(8).ID: return 3526;
+ case JungleSign::JungleSign(9).ID: return 3528;
+ case JungleSign::JungleSign(10).ID: return 3530;
+ case JungleSign::JungleSign(11).ID: return 3532;
+ case JungleSign::JungleSign(12).ID: return 3534;
+ case JungleSign::JungleSign(13).ID: return 3536;
+ case JungleSign::JungleSign(14).ID: return 3538;
+ case JungleSign::JungleSign(15).ID: return 3540;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Top).ID: return 8319;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Bottom).ID: return 8321;
+ case JungleSlab::JungleSlab(JungleSlab::Type::Double).ID: return 8323;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5565;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5567;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5569;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5571;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5573;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5575;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5577;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5579;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5581;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5583;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5585;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5587;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5589;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5591;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5593;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5595;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5597;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5599;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5601;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_ZP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5603;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5605;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5607;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5609;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5611;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5613;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5615;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5617;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5619;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5621;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XM, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5623;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::Straight).ID: return 5625;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerLeft).ID: return 5627;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::InnerRight).ID: return 5629;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterLeft).ID: return 5631;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Top, JungleStairs::Shape::OuterRight).ID: return 5633;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::Straight).ID: return 5635;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerLeft).ID: return 5637;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::InnerRight).ID: return 5639;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterLeft).ID: return 5641;
+ case JungleStairs::JungleStairs(eBlockFace::BLOCK_FACE_XP, JungleStairs::Half::Bottom, JungleStairs::Shape::OuterRight).ID: return 5643;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, true).ID: return 4304;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, true, false).ID: return 4306;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, true).ID: return 4308;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Top, false, false).ID: return 4310;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, true).ID: return 4312;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, true, false).ID: return 4314;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, true).ID: return 4316;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZM, JungleTrapdoor::Half::Bottom, false, false).ID: return 4318;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, true).ID: return 4320;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, true, false).ID: return 4322;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, true).ID: return 4324;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Top, false, false).ID: return 4326;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, true).ID: return 4328;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, true, false).ID: return 4330;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, true).ID: return 4332;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_ZP, JungleTrapdoor::Half::Bottom, false, false).ID: return 4334;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, true).ID: return 4336;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, true, false).ID: return 4338;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, true).ID: return 4340;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Top, false, false).ID: return 4342;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, true).ID: return 4344;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, true, false).ID: return 4346;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, true).ID: return 4348;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XM, JungleTrapdoor::Half::Bottom, false, false).ID: return 4350;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, true).ID: return 4352;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, true, false).ID: return 4354;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, true).ID: return 4356;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Top, false, false).ID: return 4358;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, true).ID: return 4360;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, true, false).ID: return 4362;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, true).ID: return 4364;
+ case JungleTrapdoor::JungleTrapdoor(eBlockFace::BLOCK_FACE_XP, JungleTrapdoor::Half::Bottom, false, false).ID: return 4366;
+ case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3768;
+ case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3770;
+ case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3772;
+ case JungleWallSign::JungleWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3774;
+ case JungleWood::JungleWood(JungleWood::Axis::X).ID: return 118;
+ case JungleWood::JungleWood(JungleWood::Axis::Y).ID: return 119;
+ case JungleWood::JungleWood(JungleWood::Axis::Z).ID: return 120;
+ case Kelp::Kelp(0).ID: return 9470;
+ case Kelp::Kelp(1).ID: return 9471;
+ case Kelp::Kelp(2).ID: return 9472;
+ case Kelp::Kelp(3).ID: return 9473;
+ case Kelp::Kelp(4).ID: return 9474;
+ case Kelp::Kelp(5).ID: return 9475;
+ case Kelp::Kelp(6).ID: return 9476;
+ case Kelp::Kelp(7).ID: return 9477;
+ case Kelp::Kelp(8).ID: return 9478;
+ case Kelp::Kelp(9).ID: return 9479;
+ case Kelp::Kelp(10).ID: return 9480;
+ case Kelp::Kelp(11).ID: return 9481;
+ case Kelp::Kelp(12).ID: return 9482;
+ case Kelp::Kelp(13).ID: return 9483;
+ case Kelp::Kelp(14).ID: return 9484;
+ case Kelp::Kelp(15).ID: return 9485;
+ case Kelp::Kelp(16).ID: return 9486;
+ case Kelp::Kelp(17).ID: return 9487;
+ case Kelp::Kelp(18).ID: return 9488;
+ case Kelp::Kelp(19).ID: return 9489;
+ case Kelp::Kelp(20).ID: return 9490;
+ case Kelp::Kelp(21).ID: return 9491;
+ case Kelp::Kelp(22).ID: return 9492;
+ case Kelp::Kelp(23).ID: return 9493;
+ case Kelp::Kelp(24).ID: return 9494;
+ case Kelp::Kelp(25).ID: return 9495;
+ case KelpPlant::KelpPlant().ID: return 9496;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZM).ID: return 3638;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_ZP).ID: return 3640;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_XM).ID: return 3642;
+ case Ladder::Ladder(eBlockFace::BLOCK_FACE_XP).ID: return 3644;
+ case Lantern::Lantern(true).ID: return 14886;
+ case Lantern::Lantern(false).ID: return 14887;
+ case LapisBlock::LapisBlock().ID: return 233;
+ case LapisOre::LapisOre().ID: return 232;
+ case LargeFern::LargeFern(LargeFern::Half::Upper).ID: return 7895;
+ case LargeFern::LargeFern(LargeFern::Half::Lower).ID: return 7896;
+ case Lava::Lava(0).ID: return 50;
+ case Lava::Lava(1).ID: return 51;
+ case Lava::Lava(2).ID: return 52;
+ case Lava::Lava(3).ID: return 53;
+ case Lava::Lava(4).ID: return 54;
+ case Lava::Lava(5).ID: return 55;
+ case Lava::Lava(6).ID: return 56;
+ case Lava::Lava(7).ID: return 57;
+ case Lava::Lava(8).ID: return 58;
+ case Lava::Lava(9).ID: return 59;
+ case Lava::Lava(10).ID: return 60;
+ case Lava::Lava(11).ID: return 61;
+ case Lava::Lava(12).ID: return 62;
+ case Lava::Lava(13).ID: return 63;
+ case Lava::Lava(14).ID: return 64;
+ case Lava::Lava(15).ID: return 65;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 14833;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 14834;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 14835;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 14836;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 14837;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 14838;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 14839;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 14840;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, true).ID: return 14841;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, true, false).ID: return 14842;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, true).ID: return 14843;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XM, false, false).ID: return 14844;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, true).ID: return 14845;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, true, false).ID: return 14846;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, true).ID: return 14847;
+ case Lectern::Lectern(eBlockFace::BLOCK_FACE_XP, false, false).ID: return 14848;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3783;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3784;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3785;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3786;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 3787;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 3788;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 3789;
+ case Lever::Lever(Lever::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 3790;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3791;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3792;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3793;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3794;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 3795;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 3796;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 3797;
+ case Lever::Lever(Lever::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 3798;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3799;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3800;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3801;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3802;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 3803;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 3804;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 3805;
+ case Lever::Lever(Lever::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 3806;
+ case LightBlueBanner::LightBlueBanner(0).ID: return 7945;
+ case LightBlueBanner::LightBlueBanner(1).ID: return 7946;
+ case LightBlueBanner::LightBlueBanner(2).ID: return 7947;
+ case LightBlueBanner::LightBlueBanner(3).ID: return 7948;
+ case LightBlueBanner::LightBlueBanner(4).ID: return 7949;
+ case LightBlueBanner::LightBlueBanner(5).ID: return 7950;
+ case LightBlueBanner::LightBlueBanner(6).ID: return 7951;
+ case LightBlueBanner::LightBlueBanner(7).ID: return 7952;
+ case LightBlueBanner::LightBlueBanner(8).ID: return 7953;
+ case LightBlueBanner::LightBlueBanner(9).ID: return 7954;
+ case LightBlueBanner::LightBlueBanner(10).ID: return 7955;
+ case LightBlueBanner::LightBlueBanner(11).ID: return 7956;
+ case LightBlueBanner::LightBlueBanner(12).ID: return 7957;
+ case LightBlueBanner::LightBlueBanner(13).ID: return 7958;
+ case LightBlueBanner::LightBlueBanner(14).ID: return 7959;
+ case LightBlueBanner::LightBlueBanner(15).ID: return 7960;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Head).ID: return 1097;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, true, LightBlueBed::Part::Foot).ID: return 1098;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Head).ID: return 1099;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZM, false, LightBlueBed::Part::Foot).ID: return 1100;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Head).ID: return 1101;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, true, LightBlueBed::Part::Foot).ID: return 1102;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Head).ID: return 1103;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_ZP, false, LightBlueBed::Part::Foot).ID: return 1104;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Head).ID: return 1105;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, true, LightBlueBed::Part::Foot).ID: return 1106;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Head).ID: return 1107;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XM, false, LightBlueBed::Part::Foot).ID: return 1108;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Head).ID: return 1109;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, true, LightBlueBed::Part::Foot).ID: return 1110;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Head).ID: return 1111;
+ case LightBlueBed::LightBlueBed(eBlockFace::BLOCK_FACE_XP, false, LightBlueBed::Part::Foot).ID: return 1112;
+ case LightBlueCarpet::LightBlueCarpet().ID: return 7869;
+ case LightBlueConcrete::LightBlueConcrete().ID: return 9441;
+ case LightBlueConcretePowder::LightBlueConcretePowder().ID: return 9457;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9386;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9387;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9388;
+ case LightBlueGlazedTerracotta::LightBlueGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9389;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9296;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9297;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9298;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9299;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9300;
+ case LightBlueShulkerBox::LightBlueShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9301;
+ case LightBlueStainedGlass::LightBlueStainedGlass().ID: return 4098;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, true).ID: return 6961;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, true, false).ID: return 6962;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, true).ID: return 6965;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, true, false, false).ID: return 6966;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, true).ID: return 6969;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, true, false).ID: return 6970;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, true).ID: return 6973;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(true, false, false, false).ID: return 6974;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, true).ID: return 6977;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, true, false).ID: return 6978;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, true).ID: return 6981;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, true, false, false).ID: return 6982;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, true).ID: return 6985;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, true, false).ID: return 6986;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, true).ID: return 6989;
+ case LightBlueStainedGlassPane::LightBlueStainedGlassPane(false, false, false, false).ID: return 6990;
+ case LightBlueTerracotta::LightBlueTerracotta().ID: return 6850;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8165;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8166;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8167;
+ case LightBlueWallBanner::LightBlueWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8168;
+ case LightBlueWool::LightBlueWool().ID: return 1387;
+ case LightGrayBanner::LightGrayBanner(0).ID: return 8025;
+ case LightGrayBanner::LightGrayBanner(1).ID: return 8026;
+ case LightGrayBanner::LightGrayBanner(2).ID: return 8027;
+ case LightGrayBanner::LightGrayBanner(3).ID: return 8028;
+ case LightGrayBanner::LightGrayBanner(4).ID: return 8029;
+ case LightGrayBanner::LightGrayBanner(5).ID: return 8030;
+ case LightGrayBanner::LightGrayBanner(6).ID: return 8031;
+ case LightGrayBanner::LightGrayBanner(7).ID: return 8032;
+ case LightGrayBanner::LightGrayBanner(8).ID: return 8033;
+ case LightGrayBanner::LightGrayBanner(9).ID: return 8034;
+ case LightGrayBanner::LightGrayBanner(10).ID: return 8035;
+ case LightGrayBanner::LightGrayBanner(11).ID: return 8036;
+ case LightGrayBanner::LightGrayBanner(12).ID: return 8037;
+ case LightGrayBanner::LightGrayBanner(13).ID: return 8038;
+ case LightGrayBanner::LightGrayBanner(14).ID: return 8039;
+ case LightGrayBanner::LightGrayBanner(15).ID: return 8040;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Head).ID: return 1177;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, true, LightGrayBed::Part::Foot).ID: return 1178;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Head).ID: return 1179;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZM, false, LightGrayBed::Part::Foot).ID: return 1180;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Head).ID: return 1181;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, true, LightGrayBed::Part::Foot).ID: return 1182;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Head).ID: return 1183;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_ZP, false, LightGrayBed::Part::Foot).ID: return 1184;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Head).ID: return 1185;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, true, LightGrayBed::Part::Foot).ID: return 1186;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Head).ID: return 1187;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XM, false, LightGrayBed::Part::Foot).ID: return 1188;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Head).ID: return 1189;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, true, LightGrayBed::Part::Foot).ID: return 1190;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Head).ID: return 1191;
+ case LightGrayBed::LightGrayBed(eBlockFace::BLOCK_FACE_XP, false, LightGrayBed::Part::Foot).ID: return 1192;
+ case LightGrayCarpet::LightGrayCarpet().ID: return 7874;
+ case LightGrayConcrete::LightGrayConcrete().ID: return 9446;
+ case LightGrayConcretePowder::LightGrayConcretePowder().ID: return 9462;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9406;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9407;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9408;
+ case LightGrayGlazedTerracotta::LightGrayGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9409;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9326;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9327;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9328;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9329;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9330;
+ case LightGrayShulkerBox::LightGrayShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9331;
+ case LightGrayStainedGlass::LightGrayStainedGlass().ID: return 4103;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, true).ID: return 7121;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, true, false).ID: return 7122;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, true).ID: return 7125;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, true, false, false).ID: return 7126;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, true).ID: return 7129;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, true, false).ID: return 7130;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, true).ID: return 7133;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(true, false, false, false).ID: return 7134;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, true).ID: return 7137;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, true, false).ID: return 7138;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, true).ID: return 7141;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, true, false, false).ID: return 7142;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, true).ID: return 7145;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, true, false).ID: return 7146;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, true).ID: return 7149;
+ case LightGrayStainedGlassPane::LightGrayStainedGlassPane(false, false, false, false).ID: return 7150;
+ case LightGrayTerracotta::LightGrayTerracotta().ID: return 6855;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8185;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8186;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8187;
+ case LightGrayWallBanner::LightGrayWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8188;
+ case LightGrayWool::LightGrayWool().ID: return 1392;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(0).ID: return 6646;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(1).ID: return 6647;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(2).ID: return 6648;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(3).ID: return 6649;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(4).ID: return 6650;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(5).ID: return 6651;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(6).ID: return 6652;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(7).ID: return 6653;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(8).ID: return 6654;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(9).ID: return 6655;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(10).ID: return 6656;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(11).ID: return 6657;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(12).ID: return 6658;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(13).ID: return 6659;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(14).ID: return 6660;
+ case LightWeightedPressurePlate::LightWeightedPressurePlate(15).ID: return 6661;
+ case Lilac::Lilac(Lilac::Half::Upper).ID: return 7887;
+ case Lilac::Lilac(Lilac::Half::Lower).ID: return 7888;
+ case LilyOfTheValley::LilyOfTheValley().ID: return 1424;
+ case LilyPad::LilyPad().ID: return 5014;
+ case LimeBanner::LimeBanner(0).ID: return 7977;
+ case LimeBanner::LimeBanner(1).ID: return 7978;
+ case LimeBanner::LimeBanner(2).ID: return 7979;
+ case LimeBanner::LimeBanner(3).ID: return 7980;
+ case LimeBanner::LimeBanner(4).ID: return 7981;
+ case LimeBanner::LimeBanner(5).ID: return 7982;
+ case LimeBanner::LimeBanner(6).ID: return 7983;
+ case LimeBanner::LimeBanner(7).ID: return 7984;
+ case LimeBanner::LimeBanner(8).ID: return 7985;
+ case LimeBanner::LimeBanner(9).ID: return 7986;
+ case LimeBanner::LimeBanner(10).ID: return 7987;
+ case LimeBanner::LimeBanner(11).ID: return 7988;
+ case LimeBanner::LimeBanner(12).ID: return 7989;
+ case LimeBanner::LimeBanner(13).ID: return 7990;
+ case LimeBanner::LimeBanner(14).ID: return 7991;
+ case LimeBanner::LimeBanner(15).ID: return 7992;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Head).ID: return 1129;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, true, LimeBed::Part::Foot).ID: return 1130;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Head).ID: return 1131;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZM, false, LimeBed::Part::Foot).ID: return 1132;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Head).ID: return 1133;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, true, LimeBed::Part::Foot).ID: return 1134;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Head).ID: return 1135;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_ZP, false, LimeBed::Part::Foot).ID: return 1136;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Head).ID: return 1137;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, true, LimeBed::Part::Foot).ID: return 1138;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Head).ID: return 1139;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XM, false, LimeBed::Part::Foot).ID: return 1140;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Head).ID: return 1141;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, true, LimeBed::Part::Foot).ID: return 1142;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Head).ID: return 1143;
+ case LimeBed::LimeBed(eBlockFace::BLOCK_FACE_XP, false, LimeBed::Part::Foot).ID: return 1144;
+ case LimeCarpet::LimeCarpet().ID: return 7871;
+ case LimeConcrete::LimeConcrete().ID: return 9443;
+ case LimeConcretePowder::LimeConcretePowder().ID: return 9459;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9394;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9395;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9396;
+ case LimeGlazedTerracotta::LimeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9397;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9308;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9309;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9310;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9311;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9312;
+ case LimeShulkerBox::LimeShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9313;
+ case LimeStainedGlass::LimeStainedGlass().ID: return 4100;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, true).ID: return 7025;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, true, false).ID: return 7026;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, true).ID: return 7029;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, true, false, false).ID: return 7030;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, true).ID: return 7033;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, true, false).ID: return 7034;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, true).ID: return 7037;
+ case LimeStainedGlassPane::LimeStainedGlassPane(true, false, false, false).ID: return 7038;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, true).ID: return 7041;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, true, false).ID: return 7042;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, true).ID: return 7045;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, true, false, false).ID: return 7046;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, true).ID: return 7049;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, true, false).ID: return 7050;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, true).ID: return 7053;
+ case LimeStainedGlassPane::LimeStainedGlassPane(false, false, false, false).ID: return 7054;
+ case LimeTerracotta::LimeTerracotta().ID: return 6852;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8173;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8174;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8175;
+ case LimeWallBanner::LimeWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8176;
+ case LimeWool::LimeWool().ID: return 1389;
+ case Lodestone::Lodestone().ID: return 15838;
+ case Loom::Loom(eBlockFace::BLOCK_FACE_ZM).ID: return 14787;
+ case Loom::Loom(eBlockFace::BLOCK_FACE_ZP).ID: return 14788;
+ case Loom::Loom(eBlockFace::BLOCK_FACE_XM).ID: return 14789;
+ case Loom::Loom(eBlockFace::BLOCK_FACE_XP).ID: return 14790;
+ case MagentaBanner::MagentaBanner(0).ID: return 7929;
+ case MagentaBanner::MagentaBanner(1).ID: return 7930;
+ case MagentaBanner::MagentaBanner(2).ID: return 7931;
+ case MagentaBanner::MagentaBanner(3).ID: return 7932;
+ case MagentaBanner::MagentaBanner(4).ID: return 7933;
+ case MagentaBanner::MagentaBanner(5).ID: return 7934;
+ case MagentaBanner::MagentaBanner(6).ID: return 7935;
+ case MagentaBanner::MagentaBanner(7).ID: return 7936;
+ case MagentaBanner::MagentaBanner(8).ID: return 7937;
+ case MagentaBanner::MagentaBanner(9).ID: return 7938;
+ case MagentaBanner::MagentaBanner(10).ID: return 7939;
+ case MagentaBanner::MagentaBanner(11).ID: return 7940;
+ case MagentaBanner::MagentaBanner(12).ID: return 7941;
+ case MagentaBanner::MagentaBanner(13).ID: return 7942;
+ case MagentaBanner::MagentaBanner(14).ID: return 7943;
+ case MagentaBanner::MagentaBanner(15).ID: return 7944;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Head).ID: return 1081;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, true, MagentaBed::Part::Foot).ID: return 1082;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Head).ID: return 1083;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZM, false, MagentaBed::Part::Foot).ID: return 1084;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Head).ID: return 1085;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, true, MagentaBed::Part::Foot).ID: return 1086;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Head).ID: return 1087;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_ZP, false, MagentaBed::Part::Foot).ID: return 1088;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Head).ID: return 1089;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, true, MagentaBed::Part::Foot).ID: return 1090;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Head).ID: return 1091;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XM, false, MagentaBed::Part::Foot).ID: return 1092;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Head).ID: return 1093;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, true, MagentaBed::Part::Foot).ID: return 1094;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Head).ID: return 1095;
+ case MagentaBed::MagentaBed(eBlockFace::BLOCK_FACE_XP, false, MagentaBed::Part::Foot).ID: return 1096;
+ case MagentaCarpet::MagentaCarpet().ID: return 7868;
+ case MagentaConcrete::MagentaConcrete().ID: return 9440;
+ case MagentaConcretePowder::MagentaConcretePowder().ID: return 9456;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9382;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9383;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9384;
+ case MagentaGlazedTerracotta::MagentaGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9385;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9290;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9291;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9292;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9293;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9294;
+ case MagentaShulkerBox::MagentaShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9295;
+ case MagentaStainedGlass::MagentaStainedGlass().ID: return 4097;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, true).ID: return 6929;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, true, false).ID: return 6930;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, true).ID: return 6933;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, true, false, false).ID: return 6934;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, true).ID: return 6937;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, true, false).ID: return 6938;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, true).ID: return 6941;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(true, false, false, false).ID: return 6942;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, true).ID: return 6945;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, true, false).ID: return 6946;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, true).ID: return 6949;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, true, false, false).ID: return 6950;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, true).ID: return 6953;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, true, false).ID: return 6954;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, true).ID: return 6957;
+ case MagentaStainedGlassPane::MagentaStainedGlassPane(false, false, false, false).ID: return 6958;
+ case MagentaTerracotta::MagentaTerracotta().ID: return 6849;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8161;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8162;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8163;
+ case MagentaWallBanner::MagentaWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8164;
+ case MagentaWool::MagentaWool().ID: return 1386;
+ case MagmaBlock::MagmaBlock().ID: return 9253;
+ case Melon::Melon().ID: return 4763;
+ case MelonStem::MelonStem(0).ID: return 4780;
+ case MelonStem::MelonStem(1).ID: return 4781;
+ case MelonStem::MelonStem(2).ID: return 4782;
+ case MelonStem::MelonStem(3).ID: return 4783;
+ case MelonStem::MelonStem(4).ID: return 4784;
+ case MelonStem::MelonStem(5).ID: return 4785;
+ case MelonStem::MelonStem(6).ID: return 4786;
+ case MelonStem::MelonStem(7).ID: return 4787;
+ case MossyCobblestone::MossyCobblestone().ID: return 1433;
+ case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Top).ID: return 10814;
+ case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Bottom).ID: return 10816;
+ case MossyCobblestoneSlab::MossyCobblestoneSlab(MossyCobblestoneSlab::Type::Double).ID: return 10818;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight).ID: return 9990;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 9992;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight).ID: return 9994;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 9996;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight).ID: return 9998;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight).ID: return 10000;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 10002;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight).ID: return 10004;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 10006;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight).ID: return 10008;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight).ID: return 10010;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 10012;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight).ID: return 10014;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 10016;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight).ID: return 10018;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight).ID: return 10020;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 10022;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight).ID: return 10024;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 10026;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_ZP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight).ID: return 10028;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight).ID: return 10030;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 10032;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight).ID: return 10034;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 10036;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight).ID: return 10038;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight).ID: return 10040;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 10042;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight).ID: return 10044;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 10046;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XM, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight).ID: return 10048;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::Straight).ID: return 10050;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 10052;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::InnerRight).ID: return 10054;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 10056;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Top, MossyCobblestoneStairs::Shape::OuterRight).ID: return 10058;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::Straight).ID: return 10060;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerLeft).ID: return 10062;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::InnerRight).ID: return 10064;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterLeft).ID: return 10066;
+ case MossyCobblestoneStairs::MossyCobblestoneStairs(eBlockFace::BLOCK_FACE_XP, MossyCobblestoneStairs::Half::Bottom, MossyCobblestoneStairs::Shape::OuterRight).ID: return 10068;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 5984;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 5985;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall).ID: return 5986;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 5990;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 5991;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall).ID: return 5992;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 5996;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 5997;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall).ID: return 5998;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 6002;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 6003;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall).ID: return 6004;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None).ID: return 6008;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low).ID: return 6009;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall).ID: return 6010;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None).ID: return 6014;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low).ID: return 6015;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall).ID: return 6016;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 6020;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 6021;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall).ID: return 6022;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 6026;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 6027;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall).ID: return 6028;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 6032;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 6033;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall).ID: return 6034;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 6038;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 6039;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall).ID: return 6040;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None).ID: return 6044;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low).ID: return 6045;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall).ID: return 6046;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None).ID: return 6050;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low).ID: return 6051;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall).ID: return 6052;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 6056;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 6057;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall).ID: return 6058;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 6062;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 6063;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall).ID: return 6064;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 6068;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 6069;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall).ID: return 6070;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 6074;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 6075;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall).ID: return 6076;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None).ID: return 6080;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low).ID: return 6081;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall).ID: return 6082;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None).ID: return 6086;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low).ID: return 6087;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::None, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall).ID: return 6088;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 6092;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 6093;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall).ID: return 6094;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 6098;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 6099;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall).ID: return 6100;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 6104;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 6105;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall).ID: return 6106;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 6110;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 6111;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall).ID: return 6112;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None).ID: return 6116;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low).ID: return 6117;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall).ID: return 6118;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None).ID: return 6122;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low).ID: return 6123;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall).ID: return 6124;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 6128;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 6129;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall).ID: return 6130;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 6134;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 6135;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall).ID: return 6136;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 6140;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 6141;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall).ID: return 6142;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 6146;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 6147;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall).ID: return 6148;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None).ID: return 6152;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low).ID: return 6153;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall).ID: return 6154;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None).ID: return 6158;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low).ID: return 6159;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall).ID: return 6160;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 6164;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 6165;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall).ID: return 6166;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 6170;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 6171;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall).ID: return 6172;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 6176;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 6177;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall).ID: return 6178;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 6182;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 6183;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall).ID: return 6184;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None).ID: return 6188;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low).ID: return 6189;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall).ID: return 6190;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None).ID: return 6194;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low).ID: return 6195;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Low, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall).ID: return 6196;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 6200;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 6201;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall).ID: return 6202;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 6206;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 6207;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall).ID: return 6208;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 6212;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 6213;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall).ID: return 6214;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 6218;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 6219;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall).ID: return 6220;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None).ID: return 6224;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low).ID: return 6225;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall).ID: return 6226;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None).ID: return 6230;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low).ID: return 6231;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::None, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall).ID: return 6232;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 6236;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 6237;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall).ID: return 6238;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 6242;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 6243;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall).ID: return 6244;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 6248;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 6249;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall).ID: return 6250;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 6254;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 6255;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall).ID: return 6256;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None).ID: return 6260;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low).ID: return 6261;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall).ID: return 6262;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None).ID: return 6266;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low).ID: return 6267;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Low, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall).ID: return 6268;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::None).ID: return 6272;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Low).ID: return 6273;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, true, MossyCobblestoneWall::West::Tall).ID: return 6274;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::None).ID: return 6278;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Low).ID: return 6279;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::None, false, MossyCobblestoneWall::West::Tall).ID: return 6280;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::None).ID: return 6284;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Low).ID: return 6285;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, true, MossyCobblestoneWall::West::Tall).ID: return 6286;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::None).ID: return 6290;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Low).ID: return 6291;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Low, false, MossyCobblestoneWall::West::Tall).ID: return 6292;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::None).ID: return 6296;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Low).ID: return 6297;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, true, MossyCobblestoneWall::West::Tall).ID: return 6298;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::None).ID: return 6302;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Low).ID: return 6303;
+ case MossyCobblestoneWall::MossyCobblestoneWall(MossyCobblestoneWall::East::Tall, MossyCobblestoneWall::North::Tall, MossyCobblestoneWall::South::Tall, false, MossyCobblestoneWall::West::Tall).ID: return 6304;
+ case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Top).ID: return 10802;
+ case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Bottom).ID: return 10804;
+ case MossyStoneBrickSlab::MossyStoneBrickSlab(MossyStoneBrickSlab::Type::Double).ID: return 10806;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight).ID: return 9830;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9832;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9834;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9836;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9838;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight).ID: return 9840;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9842;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9844;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9846;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9848;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight).ID: return 9850;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9852;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9854;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9856;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9858;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight).ID: return 9860;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9862;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9864;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9866;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9868;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight).ID: return 9870;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9872;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9874;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9876;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9878;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight).ID: return 9880;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9882;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9884;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9886;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XM, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9888;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::Straight).ID: return 9890;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9892;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9894;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9896;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Top, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9898;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::Straight).ID: return 9900;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerLeft).ID: return 9902;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::InnerRight).ID: return 9904;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterLeft).ID: return 9906;
+ case MossyStoneBrickStairs::MossyStoneBrickStairs(eBlockFace::BLOCK_FACE_XP, MossyStoneBrickStairs::Half::Bottom, MossyStoneBrickStairs::Shape::OuterRight).ID: return 9908;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 11842;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 11843;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall).ID: return 11844;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 11848;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 11849;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall).ID: return 11850;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 11854;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 11855;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall).ID: return 11856;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 11860;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 11861;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall).ID: return 11862;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None).ID: return 11866;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low).ID: return 11867;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall).ID: return 11868;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None).ID: return 11872;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low).ID: return 11873;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall).ID: return 11874;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 11878;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 11879;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall).ID: return 11880;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 11884;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 11885;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall).ID: return 11886;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 11890;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 11891;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall).ID: return 11892;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 11896;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 11897;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall).ID: return 11898;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None).ID: return 11902;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low).ID: return 11903;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall).ID: return 11904;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None).ID: return 11908;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low).ID: return 11909;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall).ID: return 11910;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 11914;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 11915;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall).ID: return 11916;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 11920;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 11921;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall).ID: return 11922;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 11926;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 11927;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall).ID: return 11928;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 11932;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 11933;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall).ID: return 11934;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None).ID: return 11938;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low).ID: return 11939;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall).ID: return 11940;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None).ID: return 11944;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low).ID: return 11945;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::None, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall).ID: return 11946;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 11950;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 11951;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall).ID: return 11952;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 11956;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 11957;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall).ID: return 11958;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 11962;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 11963;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall).ID: return 11964;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 11968;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 11969;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall).ID: return 11970;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None).ID: return 11974;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low).ID: return 11975;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall).ID: return 11976;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None).ID: return 11980;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low).ID: return 11981;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall).ID: return 11982;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 11986;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 11987;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall).ID: return 11988;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 11992;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 11993;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall).ID: return 11994;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 11998;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 11999;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall).ID: return 12000;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 12004;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 12005;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall).ID: return 12006;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None).ID: return 12010;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low).ID: return 12011;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall).ID: return 12012;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None).ID: return 12016;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low).ID: return 12017;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall).ID: return 12018;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 12022;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 12023;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall).ID: return 12024;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 12028;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 12029;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall).ID: return 12030;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 12034;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 12035;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall).ID: return 12036;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 12040;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 12041;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall).ID: return 12042;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None).ID: return 12046;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low).ID: return 12047;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall).ID: return 12048;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None).ID: return 12052;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low).ID: return 12053;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Low, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall).ID: return 12054;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 12058;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 12059;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall).ID: return 12060;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 12064;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 12065;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall).ID: return 12066;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 12070;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 12071;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall).ID: return 12072;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 12076;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 12077;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall).ID: return 12078;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None).ID: return 12082;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low).ID: return 12083;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall).ID: return 12084;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None).ID: return 12088;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low).ID: return 12089;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::None, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall).ID: return 12090;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 12094;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 12095;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall).ID: return 12096;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 12100;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 12101;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall).ID: return 12102;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 12106;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 12107;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall).ID: return 12108;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 12112;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 12113;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall).ID: return 12114;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None).ID: return 12118;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low).ID: return 12119;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall).ID: return 12120;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None).ID: return 12124;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low).ID: return 12125;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Low, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall).ID: return 12126;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::None).ID: return 12130;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Low).ID: return 12131;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, true, MossyStoneBrickWall::West::Tall).ID: return 12132;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::None).ID: return 12136;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Low).ID: return 12137;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::None, false, MossyStoneBrickWall::West::Tall).ID: return 12138;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::None).ID: return 12142;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Low).ID: return 12143;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, true, MossyStoneBrickWall::West::Tall).ID: return 12144;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::None).ID: return 12148;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Low).ID: return 12149;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Low, false, MossyStoneBrickWall::West::Tall).ID: return 12150;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::None).ID: return 12154;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Low).ID: return 12155;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, true, MossyStoneBrickWall::West::Tall).ID: return 12156;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::None).ID: return 12160;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Low).ID: return 12161;
+ case MossyStoneBrickWall::MossyStoneBrickWall(MossyStoneBrickWall::East::Tall, MossyStoneBrickWall::North::Tall, MossyStoneBrickWall::South::Tall, false, MossyStoneBrickWall::West::Tall).ID: return 12162;
+ case MossyStoneBricks::MossyStoneBricks().ID: return 4496;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Normal).ID: return 1400;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZM, MovingPiston::Type::Sticky).ID: return 1401;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Normal).ID: return 1402;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XP, MovingPiston::Type::Sticky).ID: return 1403;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Normal).ID: return 1404;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_ZP, MovingPiston::Type::Sticky).ID: return 1405;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Normal).ID: return 1406;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_XM, MovingPiston::Type::Sticky).ID: return 1407;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Normal).ID: return 1408;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YP, MovingPiston::Type::Sticky).ID: return 1409;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Normal).ID: return 1410;
+ case MovingPiston::MovingPiston(eBlockFace::BLOCK_FACE_YM, MovingPiston::Type::Sticky).ID: return 1411;
+ case MushroomStem::MushroomStem(true, true, true, true, true, true).ID: return 4633;
+ case MushroomStem::MushroomStem(true, true, true, true, true, false).ID: return 4634;
+ case MushroomStem::MushroomStem(true, true, true, true, false, true).ID: return 4635;
+ case MushroomStem::MushroomStem(true, true, true, true, false, false).ID: return 4636;
+ case MushroomStem::MushroomStem(true, true, true, false, true, true).ID: return 4637;
+ case MushroomStem::MushroomStem(true, true, true, false, true, false).ID: return 4638;
+ case MushroomStem::MushroomStem(true, true, true, false, false, true).ID: return 4639;
+ case MushroomStem::MushroomStem(true, true, true, false, false, false).ID: return 4640;
+ case MushroomStem::MushroomStem(true, true, false, true, true, true).ID: return 4641;
+ case MushroomStem::MushroomStem(true, true, false, true, true, false).ID: return 4642;
+ case MushroomStem::MushroomStem(true, true, false, true, false, true).ID: return 4643;
+ case MushroomStem::MushroomStem(true, true, false, true, false, false).ID: return 4644;
+ case MushroomStem::MushroomStem(true, true, false, false, true, true).ID: return 4645;
+ case MushroomStem::MushroomStem(true, true, false, false, true, false).ID: return 4646;
+ case MushroomStem::MushroomStem(true, true, false, false, false, true).ID: return 4647;
+ case MushroomStem::MushroomStem(true, true, false, false, false, false).ID: return 4648;
+ case MushroomStem::MushroomStem(true, false, true, true, true, true).ID: return 4649;
+ case MushroomStem::MushroomStem(true, false, true, true, true, false).ID: return 4650;
+ case MushroomStem::MushroomStem(true, false, true, true, false, true).ID: return 4651;
+ case MushroomStem::MushroomStem(true, false, true, true, false, false).ID: return 4652;
+ case MushroomStem::MushroomStem(true, false, true, false, true, true).ID: return 4653;
+ case MushroomStem::MushroomStem(true, false, true, false, true, false).ID: return 4654;
+ case MushroomStem::MushroomStem(true, false, true, false, false, true).ID: return 4655;
+ case MushroomStem::MushroomStem(true, false, true, false, false, false).ID: return 4656;
+ case MushroomStem::MushroomStem(true, false, false, true, true, true).ID: return 4657;
+ case MushroomStem::MushroomStem(true, false, false, true, true, false).ID: return 4658;
+ case MushroomStem::MushroomStem(true, false, false, true, false, true).ID: return 4659;
+ case MushroomStem::MushroomStem(true, false, false, true, false, false).ID: return 4660;
+ case MushroomStem::MushroomStem(true, false, false, false, true, true).ID: return 4661;
+ case MushroomStem::MushroomStem(true, false, false, false, true, false).ID: return 4662;
+ case MushroomStem::MushroomStem(true, false, false, false, false, true).ID: return 4663;
+ case MushroomStem::MushroomStem(true, false, false, false, false, false).ID: return 4664;
+ case MushroomStem::MushroomStem(false, true, true, true, true, true).ID: return 4665;
+ case MushroomStem::MushroomStem(false, true, true, true, true, false).ID: return 4666;
+ case MushroomStem::MushroomStem(false, true, true, true, false, true).ID: return 4667;
+ case MushroomStem::MushroomStem(false, true, true, true, false, false).ID: return 4668;
+ case MushroomStem::MushroomStem(false, true, true, false, true, true).ID: return 4669;
+ case MushroomStem::MushroomStem(false, true, true, false, true, false).ID: return 4670;
+ case MushroomStem::MushroomStem(false, true, true, false, false, true).ID: return 4671;
+ case MushroomStem::MushroomStem(false, true, true, false, false, false).ID: return 4672;
+ case MushroomStem::MushroomStem(false, true, false, true, true, true).ID: return 4673;
+ case MushroomStem::MushroomStem(false, true, false, true, true, false).ID: return 4674;
+ case MushroomStem::MushroomStem(false, true, false, true, false, true).ID: return 4675;
+ case MushroomStem::MushroomStem(false, true, false, true, false, false).ID: return 4676;
+ case MushroomStem::MushroomStem(false, true, false, false, true, true).ID: return 4677;
+ case MushroomStem::MushroomStem(false, true, false, false, true, false).ID: return 4678;
+ case MushroomStem::MushroomStem(false, true, false, false, false, true).ID: return 4679;
+ case MushroomStem::MushroomStem(false, true, false, false, false, false).ID: return 4680;
+ case MushroomStem::MushroomStem(false, false, true, true, true, true).ID: return 4681;
+ case MushroomStem::MushroomStem(false, false, true, true, true, false).ID: return 4682;
+ case MushroomStem::MushroomStem(false, false, true, true, false, true).ID: return 4683;
+ case MushroomStem::MushroomStem(false, false, true, true, false, false).ID: return 4684;
+ case MushroomStem::MushroomStem(false, false, true, false, true, true).ID: return 4685;
+ case MushroomStem::MushroomStem(false, false, true, false, true, false).ID: return 4686;
+ case MushroomStem::MushroomStem(false, false, true, false, false, true).ID: return 4687;
+ case MushroomStem::MushroomStem(false, false, true, false, false, false).ID: return 4688;
+ case MushroomStem::MushroomStem(false, false, false, true, true, true).ID: return 4689;
+ case MushroomStem::MushroomStem(false, false, false, true, true, false).ID: return 4690;
+ case MushroomStem::MushroomStem(false, false, false, true, false, true).ID: return 4691;
+ case MushroomStem::MushroomStem(false, false, false, true, false, false).ID: return 4692;
+ case MushroomStem::MushroomStem(false, false, false, false, true, true).ID: return 4693;
+ case MushroomStem::MushroomStem(false, false, false, false, true, false).ID: return 4694;
+ case MushroomStem::MushroomStem(false, false, false, false, false, true).ID: return 4695;
+ case MushroomStem::MushroomStem(false, false, false, false, false, false).ID: return 4696;
+ case Mycelium::Mycelium(true).ID: return 5012;
+ case Mycelium::Mycelium(false).ID: return 5013;
+ case NetherBrickFence::NetherBrickFence(true, true, true, true).ID: return 5018;
+ case NetherBrickFence::NetherBrickFence(true, true, true, false).ID: return 5019;
+ case NetherBrickFence::NetherBrickFence(true, true, false, true).ID: return 5022;
+ case NetherBrickFence::NetherBrickFence(true, true, false, false).ID: return 5023;
+ case NetherBrickFence::NetherBrickFence(true, false, true, true).ID: return 5026;
+ case NetherBrickFence::NetherBrickFence(true, false, true, false).ID: return 5027;
+ case NetherBrickFence::NetherBrickFence(true, false, false, true).ID: return 5030;
+ case NetherBrickFence::NetherBrickFence(true, false, false, false).ID: return 5031;
+ case NetherBrickFence::NetherBrickFence(false, true, true, true).ID: return 5034;
+ case NetherBrickFence::NetherBrickFence(false, true, true, false).ID: return 5035;
+ case NetherBrickFence::NetherBrickFence(false, true, false, true).ID: return 5038;
+ case NetherBrickFence::NetherBrickFence(false, true, false, false).ID: return 5039;
+ case NetherBrickFence::NetherBrickFence(false, false, true, true).ID: return 5042;
+ case NetherBrickFence::NetherBrickFence(false, false, true, false).ID: return 5043;
+ case NetherBrickFence::NetherBrickFence(false, false, false, true).ID: return 5046;
+ case NetherBrickFence::NetherBrickFence(false, false, false, false).ID: return 5047;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Top).ID: return 8385;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Bottom).ID: return 8387;
+ case NetherBrickSlab::NetherBrickSlab(NetherBrickSlab::Type::Double).ID: return 8389;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 5049;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 5051;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 5053;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 5055;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 5057;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 5059;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 5061;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 5063;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 5065;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 5067;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 5069;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 5071;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 5073;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 5075;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 5077;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 5079;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 5081;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 5083;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 5085;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 5087;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 5089;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 5091;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 5093;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 5095;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 5097;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 5099;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 5101;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 5103;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 5105;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XM, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 5107;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::Straight).ID: return 5109;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerLeft).ID: return 5111;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::InnerRight).ID: return 5113;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterLeft).ID: return 5115;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Top, NetherBrickStairs::Shape::OuterRight).ID: return 5117;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::Straight).ID: return 5119;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerLeft).ID: return 5121;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::InnerRight).ID: return 5123;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterLeft).ID: return 5125;
+ case NetherBrickStairs::NetherBrickStairs(eBlockFace::BLOCK_FACE_XP, NetherBrickStairs::Half::Bottom, NetherBrickStairs::Shape::OuterRight).ID: return 5127;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 12814;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 12815;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall).ID: return 12816;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 12820;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 12821;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall).ID: return 12822;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 12826;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 12827;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall).ID: return 12828;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 12832;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 12833;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall).ID: return 12834;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None).ID: return 12838;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low).ID: return 12839;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall).ID: return 12840;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None).ID: return 12844;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low).ID: return 12845;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall).ID: return 12846;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 12850;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 12851;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall).ID: return 12852;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 12856;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 12857;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall).ID: return 12858;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 12862;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 12863;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall).ID: return 12864;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 12868;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 12869;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall).ID: return 12870;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None).ID: return 12874;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low).ID: return 12875;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall).ID: return 12876;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None).ID: return 12880;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low).ID: return 12881;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall).ID: return 12882;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 12886;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 12887;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall).ID: return 12888;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 12892;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 12893;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall).ID: return 12894;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 12898;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 12899;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall).ID: return 12900;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 12904;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 12905;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall).ID: return 12906;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None).ID: return 12910;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low).ID: return 12911;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall).ID: return 12912;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None).ID: return 12916;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low).ID: return 12917;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::None, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall).ID: return 12918;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 12922;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 12923;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall).ID: return 12924;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 12928;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 12929;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall).ID: return 12930;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 12934;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 12935;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall).ID: return 12936;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 12940;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 12941;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall).ID: return 12942;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None).ID: return 12946;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low).ID: return 12947;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall).ID: return 12948;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None).ID: return 12952;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low).ID: return 12953;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall).ID: return 12954;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 12958;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 12959;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall).ID: return 12960;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 12964;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 12965;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall).ID: return 12966;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 12970;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 12971;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall).ID: return 12972;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 12976;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 12977;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall).ID: return 12978;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None).ID: return 12982;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low).ID: return 12983;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall).ID: return 12984;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None).ID: return 12988;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low).ID: return 12989;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall).ID: return 12990;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 12994;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 12995;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall).ID: return 12996;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 13000;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 13001;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall).ID: return 13002;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 13006;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 13007;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall).ID: return 13008;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 13012;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 13013;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall).ID: return 13014;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None).ID: return 13018;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low).ID: return 13019;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall).ID: return 13020;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None).ID: return 13024;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low).ID: return 13025;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Low, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall).ID: return 13026;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 13030;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 13031;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall).ID: return 13032;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 13036;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 13037;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall).ID: return 13038;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 13042;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 13043;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall).ID: return 13044;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 13048;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 13049;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall).ID: return 13050;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None).ID: return 13054;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low).ID: return 13055;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall).ID: return 13056;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None).ID: return 13060;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low).ID: return 13061;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::None, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall).ID: return 13062;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 13066;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 13067;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall).ID: return 13068;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 13072;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 13073;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall).ID: return 13074;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 13078;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 13079;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall).ID: return 13080;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 13084;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 13085;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall).ID: return 13086;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None).ID: return 13090;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low).ID: return 13091;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall).ID: return 13092;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None).ID: return 13096;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low).ID: return 13097;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Low, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall).ID: return 13098;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::None).ID: return 13102;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Low).ID: return 13103;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, true, NetherBrickWall::West::Tall).ID: return 13104;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::None).ID: return 13108;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Low).ID: return 13109;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::None, false, NetherBrickWall::West::Tall).ID: return 13110;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::None).ID: return 13114;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Low).ID: return 13115;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, true, NetherBrickWall::West::Tall).ID: return 13116;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::None).ID: return 13120;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Low).ID: return 13121;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Low, false, NetherBrickWall::West::Tall).ID: return 13122;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::None).ID: return 13126;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Low).ID: return 13127;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, true, NetherBrickWall::West::Tall).ID: return 13128;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::None).ID: return 13132;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Low).ID: return 13133;
+ case NetherBrickWall::NetherBrickWall(NetherBrickWall::East::Tall, NetherBrickWall::North::Tall, NetherBrickWall::South::Tall, false, NetherBrickWall::West::Tall).ID: return 13134;
+ case NetherBricks::NetherBricks().ID: return 5015;
+ case NetherGoldOre::NetherGoldOre().ID: return 72;
+ case NetherPortal::NetherPortal(NetherPortal::Axis::X).ID: return 4014;
+ case NetherPortal::NetherPortal(NetherPortal::Axis::Z).ID: return 4015;
+ case NetherQuartzOre::NetherQuartzOre().ID: return 6727;
+ case NetherSprouts::NetherSprouts().ID: return 14974;
+ case NetherWart::NetherWart(0).ID: return 5128;
+ case NetherWart::NetherWart(1).ID: return 5129;
+ case NetherWart::NetherWart(2).ID: return 5130;
+ case NetherWart::NetherWart(3).ID: return 5131;
+ case NetherWartBlock::NetherWartBlock().ID: return 9254;
+ case NetheriteBlock::NetheriteBlock().ID: return 15826;
+ case Netherrack::Netherrack().ID: return 3999;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, true).ID: return 249;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 0, false).ID: return 250;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, true).ID: return 251;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 1, false).ID: return 252;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, true).ID: return 253;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 2, false).ID: return 254;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, true).ID: return 255;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 3, false).ID: return 256;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, true).ID: return 257;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 4, false).ID: return 258;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, true).ID: return 259;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 5, false).ID: return 260;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, true).ID: return 261;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 6, false).ID: return 262;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, true).ID: return 263;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 7, false).ID: return 264;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, true).ID: return 265;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 8, false).ID: return 266;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, true).ID: return 267;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 9, false).ID: return 268;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, true).ID: return 269;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 10, false).ID: return 270;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, true).ID: return 271;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 11, false).ID: return 272;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, true).ID: return 273;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 12, false).ID: return 274;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, true).ID: return 275;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 13, false).ID: return 276;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, true).ID: return 277;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 14, false).ID: return 278;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, true).ID: return 279;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 15, false).ID: return 280;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, true).ID: return 281;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 16, false).ID: return 282;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, true).ID: return 283;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 17, false).ID: return 284;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, true).ID: return 285;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 18, false).ID: return 286;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, true).ID: return 287;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 19, false).ID: return 288;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, true).ID: return 289;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 20, false).ID: return 290;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, true).ID: return 291;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 21, false).ID: return 292;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, true).ID: return 293;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 22, false).ID: return 294;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, true).ID: return 295;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 23, false).ID: return 296;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, true).ID: return 297;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Harp, 24, false).ID: return 298;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, true).ID: return 299;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 0, false).ID: return 300;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, true).ID: return 301;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 1, false).ID: return 302;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, true).ID: return 303;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 2, false).ID: return 304;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, true).ID: return 305;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 3, false).ID: return 306;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, true).ID: return 307;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 4, false).ID: return 308;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, true).ID: return 309;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 5, false).ID: return 310;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, true).ID: return 311;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 6, false).ID: return 312;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, true).ID: return 313;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 7, false).ID: return 314;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, true).ID: return 315;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 8, false).ID: return 316;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, true).ID: return 317;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 9, false).ID: return 318;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, true).ID: return 319;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 10, false).ID: return 320;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, true).ID: return 321;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 11, false).ID: return 322;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, true).ID: return 323;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 12, false).ID: return 324;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, true).ID: return 325;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 13, false).ID: return 326;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, true).ID: return 327;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 14, false).ID: return 328;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, true).ID: return 329;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 15, false).ID: return 330;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, true).ID: return 331;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 16, false).ID: return 332;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, true).ID: return 333;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 17, false).ID: return 334;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, true).ID: return 335;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 18, false).ID: return 336;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, true).ID: return 337;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 19, false).ID: return 338;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, true).ID: return 339;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 20, false).ID: return 340;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, true).ID: return 341;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 21, false).ID: return 342;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, true).ID: return 343;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 22, false).ID: return 344;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, true).ID: return 345;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 23, false).ID: return 346;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, true).ID: return 347;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Basedrum, 24, false).ID: return 348;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, true).ID: return 349;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 0, false).ID: return 350;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, true).ID: return 351;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 1, false).ID: return 352;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, true).ID: return 353;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 2, false).ID: return 354;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, true).ID: return 355;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 3, false).ID: return 356;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, true).ID: return 357;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 4, false).ID: return 358;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, true).ID: return 359;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 5, false).ID: return 360;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, true).ID: return 361;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 6, false).ID: return 362;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, true).ID: return 363;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 7, false).ID: return 364;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, true).ID: return 365;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 8, false).ID: return 366;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, true).ID: return 367;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 9, false).ID: return 368;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, true).ID: return 369;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 10, false).ID: return 370;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, true).ID: return 371;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 11, false).ID: return 372;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, true).ID: return 373;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 12, false).ID: return 374;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, true).ID: return 375;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 13, false).ID: return 376;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, true).ID: return 377;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 14, false).ID: return 378;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, true).ID: return 379;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 15, false).ID: return 380;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, true).ID: return 381;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 16, false).ID: return 382;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, true).ID: return 383;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 17, false).ID: return 384;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, true).ID: return 385;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 18, false).ID: return 386;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, true).ID: return 387;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 19, false).ID: return 388;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, true).ID: return 389;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 20, false).ID: return 390;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, true).ID: return 391;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 21, false).ID: return 392;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, true).ID: return 393;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 22, false).ID: return 394;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, true).ID: return 395;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 23, false).ID: return 396;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, true).ID: return 397;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Snare, 24, false).ID: return 398;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, true).ID: return 399;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 0, false).ID: return 400;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, true).ID: return 401;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 1, false).ID: return 402;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, true).ID: return 403;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 2, false).ID: return 404;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, true).ID: return 405;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 3, false).ID: return 406;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, true).ID: return 407;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 4, false).ID: return 408;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, true).ID: return 409;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 5, false).ID: return 410;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, true).ID: return 411;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 6, false).ID: return 412;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, true).ID: return 413;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 7, false).ID: return 414;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, true).ID: return 415;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 8, false).ID: return 416;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, true).ID: return 417;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 9, false).ID: return 418;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, true).ID: return 419;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 10, false).ID: return 420;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, true).ID: return 421;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 11, false).ID: return 422;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, true).ID: return 423;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 12, false).ID: return 424;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, true).ID: return 425;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 13, false).ID: return 426;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, true).ID: return 427;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 14, false).ID: return 428;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, true).ID: return 429;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 15, false).ID: return 430;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, true).ID: return 431;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 16, false).ID: return 432;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, true).ID: return 433;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 17, false).ID: return 434;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, true).ID: return 435;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 18, false).ID: return 436;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, true).ID: return 437;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 19, false).ID: return 438;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, true).ID: return 439;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 20, false).ID: return 440;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, true).ID: return 441;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 21, false).ID: return 442;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, true).ID: return 443;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 22, false).ID: return 444;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, true).ID: return 445;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 23, false).ID: return 446;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, true).ID: return 447;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Hat, 24, false).ID: return 448;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, true).ID: return 449;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 0, false).ID: return 450;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, true).ID: return 451;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 1, false).ID: return 452;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, true).ID: return 453;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 2, false).ID: return 454;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, true).ID: return 455;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 3, false).ID: return 456;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, true).ID: return 457;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 4, false).ID: return 458;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, true).ID: return 459;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 5, false).ID: return 460;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, true).ID: return 461;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 6, false).ID: return 462;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, true).ID: return 463;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 7, false).ID: return 464;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, true).ID: return 465;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 8, false).ID: return 466;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, true).ID: return 467;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 9, false).ID: return 468;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, true).ID: return 469;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 10, false).ID: return 470;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, true).ID: return 471;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 11, false).ID: return 472;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, true).ID: return 473;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 12, false).ID: return 474;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, true).ID: return 475;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 13, false).ID: return 476;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, true).ID: return 477;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 14, false).ID: return 478;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, true).ID: return 479;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 15, false).ID: return 480;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, true).ID: return 481;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 16, false).ID: return 482;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, true).ID: return 483;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 17, false).ID: return 484;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, true).ID: return 485;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 18, false).ID: return 486;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, true).ID: return 487;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 19, false).ID: return 488;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, true).ID: return 489;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 20, false).ID: return 490;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, true).ID: return 491;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 21, false).ID: return 492;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, true).ID: return 493;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 22, false).ID: return 494;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, true).ID: return 495;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 23, false).ID: return 496;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, true).ID: return 497;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bass, 24, false).ID: return 498;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, true).ID: return 499;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 0, false).ID: return 500;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, true).ID: return 501;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 1, false).ID: return 502;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, true).ID: return 503;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 2, false).ID: return 504;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, true).ID: return 505;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 3, false).ID: return 506;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, true).ID: return 507;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 4, false).ID: return 508;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, true).ID: return 509;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 5, false).ID: return 510;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, true).ID: return 511;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 6, false).ID: return 512;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, true).ID: return 513;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 7, false).ID: return 514;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, true).ID: return 515;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 8, false).ID: return 516;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, true).ID: return 517;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 9, false).ID: return 518;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, true).ID: return 519;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 10, false).ID: return 520;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, true).ID: return 521;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 11, false).ID: return 522;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, true).ID: return 523;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 12, false).ID: return 524;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, true).ID: return 525;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 13, false).ID: return 526;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, true).ID: return 527;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 14, false).ID: return 528;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, true).ID: return 529;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 15, false).ID: return 530;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, true).ID: return 531;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 16, false).ID: return 532;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, true).ID: return 533;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 17, false).ID: return 534;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, true).ID: return 535;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 18, false).ID: return 536;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, true).ID: return 537;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 19, false).ID: return 538;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, true).ID: return 539;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 20, false).ID: return 540;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, true).ID: return 541;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 21, false).ID: return 542;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, true).ID: return 543;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 22, false).ID: return 544;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, true).ID: return 545;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 23, false).ID: return 546;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, true).ID: return 547;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Flute, 24, false).ID: return 548;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, true).ID: return 549;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 0, false).ID: return 550;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, true).ID: return 551;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 1, false).ID: return 552;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, true).ID: return 553;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 2, false).ID: return 554;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, true).ID: return 555;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 3, false).ID: return 556;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, true).ID: return 557;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 4, false).ID: return 558;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, true).ID: return 559;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 5, false).ID: return 560;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, true).ID: return 561;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 6, false).ID: return 562;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, true).ID: return 563;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 7, false).ID: return 564;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, true).ID: return 565;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 8, false).ID: return 566;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, true).ID: return 567;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 9, false).ID: return 568;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, true).ID: return 569;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 10, false).ID: return 570;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, true).ID: return 571;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 11, false).ID: return 572;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, true).ID: return 573;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 12, false).ID: return 574;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, true).ID: return 575;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 13, false).ID: return 576;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, true).ID: return 577;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 14, false).ID: return 578;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, true).ID: return 579;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 15, false).ID: return 580;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, true).ID: return 581;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 16, false).ID: return 582;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, true).ID: return 583;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 17, false).ID: return 584;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, true).ID: return 585;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 18, false).ID: return 586;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, true).ID: return 587;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 19, false).ID: return 588;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, true).ID: return 589;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 20, false).ID: return 590;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, true).ID: return 591;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 21, false).ID: return 592;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, true).ID: return 593;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 22, false).ID: return 594;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, true).ID: return 595;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 23, false).ID: return 596;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, true).ID: return 597;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bell, 24, false).ID: return 598;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, true).ID: return 599;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 0, false).ID: return 600;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, true).ID: return 601;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 1, false).ID: return 602;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, true).ID: return 603;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 2, false).ID: return 604;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, true).ID: return 605;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 3, false).ID: return 606;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, true).ID: return 607;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 4, false).ID: return 608;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, true).ID: return 609;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 5, false).ID: return 610;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, true).ID: return 611;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 6, false).ID: return 612;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, true).ID: return 613;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 7, false).ID: return 614;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, true).ID: return 615;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 8, false).ID: return 616;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, true).ID: return 617;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 9, false).ID: return 618;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, true).ID: return 619;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 10, false).ID: return 620;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, true).ID: return 621;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 11, false).ID: return 622;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, true).ID: return 623;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 12, false).ID: return 624;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, true).ID: return 625;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 13, false).ID: return 626;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, true).ID: return 627;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 14, false).ID: return 628;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, true).ID: return 629;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 15, false).ID: return 630;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, true).ID: return 631;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 16, false).ID: return 632;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, true).ID: return 633;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 17, false).ID: return 634;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, true).ID: return 635;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 18, false).ID: return 636;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, true).ID: return 637;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 19, false).ID: return 638;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, true).ID: return 639;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 20, false).ID: return 640;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, true).ID: return 641;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 21, false).ID: return 642;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, true).ID: return 643;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 22, false).ID: return 644;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, true).ID: return 645;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 23, false).ID: return 646;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, true).ID: return 647;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Guitar, 24, false).ID: return 648;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, true).ID: return 649;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 0, false).ID: return 650;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, true).ID: return 651;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 1, false).ID: return 652;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, true).ID: return 653;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 2, false).ID: return 654;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, true).ID: return 655;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 3, false).ID: return 656;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, true).ID: return 657;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 4, false).ID: return 658;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, true).ID: return 659;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 5, false).ID: return 660;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, true).ID: return 661;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 6, false).ID: return 662;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, true).ID: return 663;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 7, false).ID: return 664;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, true).ID: return 665;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 8, false).ID: return 666;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, true).ID: return 667;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 9, false).ID: return 668;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, true).ID: return 669;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 10, false).ID: return 670;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, true).ID: return 671;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 11, false).ID: return 672;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, true).ID: return 673;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 12, false).ID: return 674;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, true).ID: return 675;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 13, false).ID: return 676;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, true).ID: return 677;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 14, false).ID: return 678;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, true).ID: return 679;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 15, false).ID: return 680;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, true).ID: return 681;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 16, false).ID: return 682;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, true).ID: return 683;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 17, false).ID: return 684;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, true).ID: return 685;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 18, false).ID: return 686;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, true).ID: return 687;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 19, false).ID: return 688;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, true).ID: return 689;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 20, false).ID: return 690;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, true).ID: return 691;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 21, false).ID: return 692;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, true).ID: return 693;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 22, false).ID: return 694;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, true).ID: return 695;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 23, false).ID: return 696;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, true).ID: return 697;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Chime, 24, false).ID: return 698;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, true).ID: return 699;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 0, false).ID: return 700;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, true).ID: return 701;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 1, false).ID: return 702;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, true).ID: return 703;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 2, false).ID: return 704;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, true).ID: return 705;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 3, false).ID: return 706;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, true).ID: return 707;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 4, false).ID: return 708;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, true).ID: return 709;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 5, false).ID: return 710;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, true).ID: return 711;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 6, false).ID: return 712;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, true).ID: return 713;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 7, false).ID: return 714;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, true).ID: return 715;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 8, false).ID: return 716;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, true).ID: return 717;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 9, false).ID: return 718;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, true).ID: return 719;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 10, false).ID: return 720;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, true).ID: return 721;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 11, false).ID: return 722;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, true).ID: return 723;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 12, false).ID: return 724;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, true).ID: return 725;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 13, false).ID: return 726;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, true).ID: return 727;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 14, false).ID: return 728;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, true).ID: return 729;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 15, false).ID: return 730;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, true).ID: return 731;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 16, false).ID: return 732;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, true).ID: return 733;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 17, false).ID: return 734;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, true).ID: return 735;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 18, false).ID: return 736;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, true).ID: return 737;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 19, false).ID: return 738;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, true).ID: return 739;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 20, false).ID: return 740;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, true).ID: return 741;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 21, false).ID: return 742;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, true).ID: return 743;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 22, false).ID: return 744;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, true).ID: return 745;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 23, false).ID: return 746;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, true).ID: return 747;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Xylophone, 24, false).ID: return 748;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, true).ID: return 749;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 0, false).ID: return 750;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, true).ID: return 751;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 1, false).ID: return 752;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, true).ID: return 753;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 2, false).ID: return 754;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, true).ID: return 755;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 3, false).ID: return 756;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, true).ID: return 757;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 4, false).ID: return 758;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, true).ID: return 759;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 5, false).ID: return 760;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, true).ID: return 761;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 6, false).ID: return 762;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, true).ID: return 763;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 7, false).ID: return 764;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, true).ID: return 765;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 8, false).ID: return 766;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, true).ID: return 767;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 9, false).ID: return 768;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, true).ID: return 769;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 10, false).ID: return 770;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, true).ID: return 771;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 11, false).ID: return 772;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, true).ID: return 773;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 12, false).ID: return 774;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, true).ID: return 775;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 13, false).ID: return 776;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, true).ID: return 777;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 14, false).ID: return 778;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, true).ID: return 779;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 15, false).ID: return 780;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, true).ID: return 781;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 16, false).ID: return 782;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, true).ID: return 783;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 17, false).ID: return 784;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, true).ID: return 785;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 18, false).ID: return 786;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, true).ID: return 787;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 19, false).ID: return 788;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, true).ID: return 789;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 20, false).ID: return 790;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, true).ID: return 791;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 21, false).ID: return 792;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, true).ID: return 793;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 22, false).ID: return 794;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, true).ID: return 795;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 23, false).ID: return 796;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, true).ID: return 797;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::IronXylophone, 24, false).ID: return 798;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, true).ID: return 799;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 0, false).ID: return 800;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, true).ID: return 801;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 1, false).ID: return 802;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, true).ID: return 803;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 2, false).ID: return 804;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, true).ID: return 805;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 3, false).ID: return 806;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, true).ID: return 807;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 4, false).ID: return 808;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, true).ID: return 809;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 5, false).ID: return 810;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, true).ID: return 811;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 6, false).ID: return 812;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, true).ID: return 813;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 7, false).ID: return 814;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, true).ID: return 815;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 8, false).ID: return 816;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, true).ID: return 817;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 9, false).ID: return 818;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, true).ID: return 819;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 10, false).ID: return 820;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, true).ID: return 821;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 11, false).ID: return 822;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, true).ID: return 823;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 12, false).ID: return 824;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, true).ID: return 825;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 13, false).ID: return 826;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, true).ID: return 827;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 14, false).ID: return 828;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, true).ID: return 829;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 15, false).ID: return 830;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, true).ID: return 831;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 16, false).ID: return 832;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, true).ID: return 833;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 17, false).ID: return 834;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, true).ID: return 835;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 18, false).ID: return 836;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, true).ID: return 837;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 19, false).ID: return 838;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, true).ID: return 839;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 20, false).ID: return 840;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, true).ID: return 841;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 21, false).ID: return 842;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, true).ID: return 843;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 22, false).ID: return 844;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, true).ID: return 845;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 23, false).ID: return 846;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, true).ID: return 847;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::CowBell, 24, false).ID: return 848;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, true).ID: return 849;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 0, false).ID: return 850;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, true).ID: return 851;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 1, false).ID: return 852;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, true).ID: return 853;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 2, false).ID: return 854;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, true).ID: return 855;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 3, false).ID: return 856;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, true).ID: return 857;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 4, false).ID: return 858;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, true).ID: return 859;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 5, false).ID: return 860;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, true).ID: return 861;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 6, false).ID: return 862;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, true).ID: return 863;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 7, false).ID: return 864;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, true).ID: return 865;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 8, false).ID: return 866;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, true).ID: return 867;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 9, false).ID: return 868;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, true).ID: return 869;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 10, false).ID: return 870;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, true).ID: return 871;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 11, false).ID: return 872;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, true).ID: return 873;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 12, false).ID: return 874;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, true).ID: return 875;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 13, false).ID: return 876;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, true).ID: return 877;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 14, false).ID: return 878;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, true).ID: return 879;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 15, false).ID: return 880;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, true).ID: return 881;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 16, false).ID: return 882;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, true).ID: return 883;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 17, false).ID: return 884;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, true).ID: return 885;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 18, false).ID: return 886;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, true).ID: return 887;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 19, false).ID: return 888;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, true).ID: return 889;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 20, false).ID: return 890;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, true).ID: return 891;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 21, false).ID: return 892;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, true).ID: return 893;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 22, false).ID: return 894;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, true).ID: return 895;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 23, false).ID: return 896;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, true).ID: return 897;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Didgeridoo, 24, false).ID: return 898;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, true).ID: return 899;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 0, false).ID: return 900;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, true).ID: return 901;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 1, false).ID: return 902;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, true).ID: return 903;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 2, false).ID: return 904;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, true).ID: return 905;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 3, false).ID: return 906;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, true).ID: return 907;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 4, false).ID: return 908;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, true).ID: return 909;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 5, false).ID: return 910;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, true).ID: return 911;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 6, false).ID: return 912;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, true).ID: return 913;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 7, false).ID: return 914;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, true).ID: return 915;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 8, false).ID: return 916;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, true).ID: return 917;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 9, false).ID: return 918;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, true).ID: return 919;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 10, false).ID: return 920;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, true).ID: return 921;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 11, false).ID: return 922;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, true).ID: return 923;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 12, false).ID: return 924;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, true).ID: return 925;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 13, false).ID: return 926;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, true).ID: return 927;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 14, false).ID: return 928;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, true).ID: return 929;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 15, false).ID: return 930;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, true).ID: return 931;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 16, false).ID: return 932;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, true).ID: return 933;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 17, false).ID: return 934;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, true).ID: return 935;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 18, false).ID: return 936;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, true).ID: return 937;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 19, false).ID: return 938;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, true).ID: return 939;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 20, false).ID: return 940;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, true).ID: return 941;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 21, false).ID: return 942;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, true).ID: return 943;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 22, false).ID: return 944;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, true).ID: return 945;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 23, false).ID: return 946;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, true).ID: return 947;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Bit, 24, false).ID: return 948;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, true).ID: return 949;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 0, false).ID: return 950;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, true).ID: return 951;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 1, false).ID: return 952;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, true).ID: return 953;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 2, false).ID: return 954;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, true).ID: return 955;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 3, false).ID: return 956;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, true).ID: return 957;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 4, false).ID: return 958;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, true).ID: return 959;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 5, false).ID: return 960;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, true).ID: return 961;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 6, false).ID: return 962;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, true).ID: return 963;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 7, false).ID: return 964;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, true).ID: return 965;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 8, false).ID: return 966;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, true).ID: return 967;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 9, false).ID: return 968;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, true).ID: return 969;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 10, false).ID: return 970;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, true).ID: return 971;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 11, false).ID: return 972;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, true).ID: return 973;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 12, false).ID: return 974;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, true).ID: return 975;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 13, false).ID: return 976;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, true).ID: return 977;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 14, false).ID: return 978;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, true).ID: return 979;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 15, false).ID: return 980;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, true).ID: return 981;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 16, false).ID: return 982;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, true).ID: return 983;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 17, false).ID: return 984;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, true).ID: return 985;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 18, false).ID: return 986;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, true).ID: return 987;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 19, false).ID: return 988;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, true).ID: return 989;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 20, false).ID: return 990;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, true).ID: return 991;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 21, false).ID: return 992;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, true).ID: return 993;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 22, false).ID: return 994;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, true).ID: return 995;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 23, false).ID: return 996;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, true).ID: return 997;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Banjo, 24, false).ID: return 998;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, true).ID: return 999;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 0, false).ID: return 1000;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, true).ID: return 1001;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 1, false).ID: return 1002;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, true).ID: return 1003;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 2, false).ID: return 1004;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, true).ID: return 1005;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 3, false).ID: return 1006;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, true).ID: return 1007;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 4, false).ID: return 1008;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, true).ID: return 1009;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 5, false).ID: return 1010;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, true).ID: return 1011;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 6, false).ID: return 1012;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, true).ID: return 1013;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 7, false).ID: return 1014;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, true).ID: return 1015;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 8, false).ID: return 1016;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, true).ID: return 1017;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 9, false).ID: return 1018;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, true).ID: return 1019;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 10, false).ID: return 1020;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, true).ID: return 1021;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 11, false).ID: return 1022;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, true).ID: return 1023;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 12, false).ID: return 1024;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, true).ID: return 1025;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 13, false).ID: return 1026;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, true).ID: return 1027;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 14, false).ID: return 1028;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, true).ID: return 1029;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 15, false).ID: return 1030;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, true).ID: return 1031;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 16, false).ID: return 1032;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, true).ID: return 1033;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 17, false).ID: return 1034;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, true).ID: return 1035;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 18, false).ID: return 1036;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, true).ID: return 1037;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 19, false).ID: return 1038;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, true).ID: return 1039;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 20, false).ID: return 1040;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, true).ID: return 1041;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 21, false).ID: return 1042;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, true).ID: return 1043;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 22, false).ID: return 1044;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, true).ID: return 1045;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 23, false).ID: return 1046;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, true).ID: return 1047;
+ case NoteBlock::NoteBlock(NoteBlock::Instrument::Pling, 24, false).ID: return 1048;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6346;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6347;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6348;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6349;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 6350;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 6351;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 6352;
+ case OakButton::OakButton(OakButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 6353;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6354;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6355;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6356;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6357;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 6358;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 6359;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 6360;
+ case OakButton::OakButton(OakButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 6361;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6362;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6363;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6364;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6365;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 6366;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 6367;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 6368;
+ case OakButton::OakButton(OakButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 6369;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3573;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3574;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3575;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3576;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3577;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3578;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3579;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3580;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3581;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3582;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3583;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3584;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3585;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3586;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3587;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3588;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3589;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3590;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3591;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3592;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3593;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3594;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3595;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3596;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3597;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3598;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3599;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3600;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3601;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3602;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3603;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_ZP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3604;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3605;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3606;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3607;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3608;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3609;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3610;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3611;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3612;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3613;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3614;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3615;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3616;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3617;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3618;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3619;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XM, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3620;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, true).ID: return 3621;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, true, false).ID: return 3622;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, true).ID: return 3623;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Left, false, false).ID: return 3624;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, true).ID: return 3625;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, true, false).ID: return 3626;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, true).ID: return 3627;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Upper, OakDoor::Hinge::Right, false, false).ID: return 3628;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, true).ID: return 3629;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, true, false).ID: return 3630;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, true).ID: return 3631;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Left, false, false).ID: return 3632;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, true).ID: return 3633;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, true, false).ID: return 3634;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, true).ID: return 3635;
+ case OakDoor::OakDoor(eBlockFace::BLOCK_FACE_XP, OakDoor::Half::Lower, OakDoor::Hinge::Right, false, false).ID: return 3636;
+ case OakFence::OakFence(true, true, true, true).ID: return 3968;
+ case OakFence::OakFence(true, true, true, false).ID: return 3969;
+ case OakFence::OakFence(true, true, false, true).ID: return 3972;
+ case OakFence::OakFence(true, true, false, false).ID: return 3973;
+ case OakFence::OakFence(true, false, true, true).ID: return 3976;
+ case OakFence::OakFence(true, false, true, false).ID: return 3977;
+ case OakFence::OakFence(true, false, false, true).ID: return 3980;
+ case OakFence::OakFence(true, false, false, false).ID: return 3981;
+ case OakFence::OakFence(false, true, true, true).ID: return 3984;
+ case OakFence::OakFence(false, true, true, false).ID: return 3985;
+ case OakFence::OakFence(false, true, false, true).ID: return 3988;
+ case OakFence::OakFence(false, true, false, false).ID: return 3989;
+ case OakFence::OakFence(false, false, true, true).ID: return 3992;
+ case OakFence::OakFence(false, false, true, false).ID: return 3993;
+ case OakFence::OakFence(false, false, false, true).ID: return 3996;
+ case OakFence::OakFence(false, false, false, false).ID: return 3997;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 4820;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 4821;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 4822;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 4823;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 4824;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 4825;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 4826;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 4827;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 4828;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 4829;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 4830;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 4831;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 4832;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 4833;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 4834;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 4835;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 4836;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 4837;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 4838;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 4839;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 4840;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 4841;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 4842;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 4843;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 4844;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 4845;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 4846;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 4847;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 4848;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 4849;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 4850;
+ case OakFenceGate::OakFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 4851;
+ case OakLeaves::OakLeaves(1, true).ID: return 145;
+ case OakLeaves::OakLeaves(1, false).ID: return 146;
+ case OakLeaves::OakLeaves(2, true).ID: return 147;
+ case OakLeaves::OakLeaves(2, false).ID: return 148;
+ case OakLeaves::OakLeaves(3, true).ID: return 149;
+ case OakLeaves::OakLeaves(3, false).ID: return 150;
+ case OakLeaves::OakLeaves(4, true).ID: return 151;
+ case OakLeaves::OakLeaves(4, false).ID: return 152;
+ case OakLeaves::OakLeaves(5, true).ID: return 153;
+ case OakLeaves::OakLeaves(5, false).ID: return 154;
+ case OakLeaves::OakLeaves(6, true).ID: return 155;
+ case OakLeaves::OakLeaves(6, false).ID: return 156;
+ case OakLeaves::OakLeaves(7, true).ID: return 157;
+ case OakLeaves::OakLeaves(7, false).ID: return 158;
+ case OakLog::OakLog(OakLog::Axis::X).ID: return 73;
+ case OakLog::OakLog(OakLog::Axis::Y).ID: return 74;
+ case OakLog::OakLog(OakLog::Axis::Z).ID: return 75;
+ case OakPlanks::OakPlanks().ID: return 15;
+ case OakPressurePlate::OakPressurePlate(true).ID: return 3873;
+ case OakPressurePlate::OakPressurePlate(false).ID: return 3874;
+ case OakSapling::OakSapling(0).ID: return 21;
+ case OakSapling::OakSapling(1).ID: return 22;
+ case OakSign::OakSign(0).ID: return 3382;
+ case OakSign::OakSign(1).ID: return 3384;
+ case OakSign::OakSign(2).ID: return 3386;
+ case OakSign::OakSign(3).ID: return 3388;
+ case OakSign::OakSign(4).ID: return 3390;
+ case OakSign::OakSign(5).ID: return 3392;
+ case OakSign::OakSign(6).ID: return 3394;
+ case OakSign::OakSign(7).ID: return 3396;
+ case OakSign::OakSign(8).ID: return 3398;
+ case OakSign::OakSign(9).ID: return 3400;
+ case OakSign::OakSign(10).ID: return 3402;
+ case OakSign::OakSign(11).ID: return 3404;
+ case OakSign::OakSign(12).ID: return 3406;
+ case OakSign::OakSign(13).ID: return 3408;
+ case OakSign::OakSign(14).ID: return 3410;
+ case OakSign::OakSign(15).ID: return 3412;
+ case OakSlab::OakSlab(OakSlab::Type::Top).ID: return 8301;
+ case OakSlab::OakSlab(OakSlab::Type::Bottom).ID: return 8303;
+ case OakSlab::OakSlab(OakSlab::Type::Double).ID: return 8305;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1955;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1957;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1959;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1961;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1963;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1965;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1967;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1969;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1971;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1973;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1975;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1977;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1979;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 1981;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 1983;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 1985;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 1987;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 1989;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 1991;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_ZP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 1993;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 1995;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 1997;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 1999;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 2001;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 2003;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 2005;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 2007;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 2009;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 2011;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XM, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 2013;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::Straight).ID: return 2015;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerLeft).ID: return 2017;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::InnerRight).ID: return 2019;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterLeft).ID: return 2021;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Top, OakStairs::Shape::OuterRight).ID: return 2023;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::Straight).ID: return 2025;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerLeft).ID: return 2027;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::InnerRight).ID: return 2029;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterLeft).ID: return 2031;
+ case OakStairs::OakStairs(eBlockFace::BLOCK_FACE_XP, OakStairs::Half::Bottom, OakStairs::Shape::OuterRight).ID: return 2033;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, true).ID: return 4112;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, true, false).ID: return 4114;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, true).ID: return 4116;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Top, false, false).ID: return 4118;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, true).ID: return 4120;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, true, false).ID: return 4122;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, true).ID: return 4124;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZM, OakTrapdoor::Half::Bottom, false, false).ID: return 4126;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, true).ID: return 4128;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, true, false).ID: return 4130;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, true).ID: return 4132;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Top, false, false).ID: return 4134;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, true).ID: return 4136;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, true, false).ID: return 4138;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, true).ID: return 4140;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_ZP, OakTrapdoor::Half::Bottom, false, false).ID: return 4142;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, true).ID: return 4144;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, true, false).ID: return 4146;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, true).ID: return 4148;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Top, false, false).ID: return 4150;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, true).ID: return 4152;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, true, false).ID: return 4154;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, true).ID: return 4156;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XM, OakTrapdoor::Half::Bottom, false, false).ID: return 4158;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, true).ID: return 4160;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, true, false).ID: return 4162;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, true).ID: return 4164;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Top, false, false).ID: return 4166;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, true).ID: return 4168;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, true, false).ID: return 4170;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, true).ID: return 4172;
+ case OakTrapdoor::OakTrapdoor(eBlockFace::BLOCK_FACE_XP, OakTrapdoor::Half::Bottom, false, false).ID: return 4174;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3736;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3738;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3740;
+ case OakWallSign::OakWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3742;
+ case OakWood::OakWood(OakWood::Axis::X).ID: return 109;
+ case OakWood::OakWood(OakWood::Axis::Y).ID: return 110;
+ case OakWood::OakWood(OakWood::Axis::Z).ID: return 111;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, true).ID: return 9260;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZM, false).ID: return 9261;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XP, true).ID: return 9262;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XP, false).ID: return 9263;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, true).ID: return 9264;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_ZP, false).ID: return 9265;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XM, true).ID: return 9266;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_XM, false).ID: return 9267;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YP, true).ID: return 9268;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YP, false).ID: return 9269;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YM, true).ID: return 9270;
+ case Observer::Observer(eBlockFace::BLOCK_FACE_YM, false).ID: return 9271;
+ case Obsidian::Obsidian().ID: return 1434;
+ case OrangeBanner::OrangeBanner(0).ID: return 7913;
+ case OrangeBanner::OrangeBanner(1).ID: return 7914;
+ case OrangeBanner::OrangeBanner(2).ID: return 7915;
+ case OrangeBanner::OrangeBanner(3).ID: return 7916;
+ case OrangeBanner::OrangeBanner(4).ID: return 7917;
+ case OrangeBanner::OrangeBanner(5).ID: return 7918;
+ case OrangeBanner::OrangeBanner(6).ID: return 7919;
+ case OrangeBanner::OrangeBanner(7).ID: return 7920;
+ case OrangeBanner::OrangeBanner(8).ID: return 7921;
+ case OrangeBanner::OrangeBanner(9).ID: return 7922;
+ case OrangeBanner::OrangeBanner(10).ID: return 7923;
+ case OrangeBanner::OrangeBanner(11).ID: return 7924;
+ case OrangeBanner::OrangeBanner(12).ID: return 7925;
+ case OrangeBanner::OrangeBanner(13).ID: return 7926;
+ case OrangeBanner::OrangeBanner(14).ID: return 7927;
+ case OrangeBanner::OrangeBanner(15).ID: return 7928;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Head).ID: return 1065;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, true, OrangeBed::Part::Foot).ID: return 1066;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Head).ID: return 1067;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZM, false, OrangeBed::Part::Foot).ID: return 1068;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Head).ID: return 1069;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, true, OrangeBed::Part::Foot).ID: return 1070;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Head).ID: return 1071;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_ZP, false, OrangeBed::Part::Foot).ID: return 1072;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Head).ID: return 1073;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, true, OrangeBed::Part::Foot).ID: return 1074;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Head).ID: return 1075;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XM, false, OrangeBed::Part::Foot).ID: return 1076;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Head).ID: return 1077;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, true, OrangeBed::Part::Foot).ID: return 1078;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Head).ID: return 1079;
+ case OrangeBed::OrangeBed(eBlockFace::BLOCK_FACE_XP, false, OrangeBed::Part::Foot).ID: return 1080;
+ case OrangeCarpet::OrangeCarpet().ID: return 7867;
+ case OrangeConcrete::OrangeConcrete().ID: return 9439;
+ case OrangeConcretePowder::OrangeConcretePowder().ID: return 9455;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9378;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9379;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9380;
+ case OrangeGlazedTerracotta::OrangeGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9381;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9284;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9285;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9286;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9287;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9288;
+ case OrangeShulkerBox::OrangeShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9289;
+ case OrangeStainedGlass::OrangeStainedGlass().ID: return 4096;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, true).ID: return 6897;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, true, false).ID: return 6898;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, true).ID: return 6901;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, true, false, false).ID: return 6902;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, true).ID: return 6905;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, true, false).ID: return 6906;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, true).ID: return 6909;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(true, false, false, false).ID: return 6910;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, true).ID: return 6913;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, true, false).ID: return 6914;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, true).ID: return 6917;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, true, false, false).ID: return 6918;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, true).ID: return 6921;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, true, false).ID: return 6922;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, true).ID: return 6925;
+ case OrangeStainedGlassPane::OrangeStainedGlassPane(false, false, false, false).ID: return 6926;
+ case OrangeTerracotta::OrangeTerracotta().ID: return 6848;
+ case OrangeTulip::OrangeTulip().ID: return 1418;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8157;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8158;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8159;
+ case OrangeWallBanner::OrangeWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8160;
+ case OrangeWool::OrangeWool().ID: return 1385;
+ case OxeyeDaisy::OxeyeDaisy().ID: return 1421;
+ case PackedIce::PackedIce().ID: return 7884;
+ case Peony::Peony(Peony::Half::Upper).ID: return 7891;
+ case Peony::Peony(Peony::Half::Lower).ID: return 7892;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Top).ID: return 8361;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Bottom).ID: return 8363;
+ case PetrifiedOakSlab::PetrifiedOakSlab(PetrifiedOakSlab::Type::Double).ID: return 8365;
+ case PinkBanner::PinkBanner(0).ID: return 7993;
+ case PinkBanner::PinkBanner(1).ID: return 7994;
+ case PinkBanner::PinkBanner(2).ID: return 7995;
+ case PinkBanner::PinkBanner(3).ID: return 7996;
+ case PinkBanner::PinkBanner(4).ID: return 7997;
+ case PinkBanner::PinkBanner(5).ID: return 7998;
+ case PinkBanner::PinkBanner(6).ID: return 7999;
+ case PinkBanner::PinkBanner(7).ID: return 8000;
+ case PinkBanner::PinkBanner(8).ID: return 8001;
+ case PinkBanner::PinkBanner(9).ID: return 8002;
+ case PinkBanner::PinkBanner(10).ID: return 8003;
+ case PinkBanner::PinkBanner(11).ID: return 8004;
+ case PinkBanner::PinkBanner(12).ID: return 8005;
+ case PinkBanner::PinkBanner(13).ID: return 8006;
+ case PinkBanner::PinkBanner(14).ID: return 8007;
+ case PinkBanner::PinkBanner(15).ID: return 8008;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Head).ID: return 1145;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, true, PinkBed::Part::Foot).ID: return 1146;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Head).ID: return 1147;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZM, false, PinkBed::Part::Foot).ID: return 1148;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Head).ID: return 1149;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, true, PinkBed::Part::Foot).ID: return 1150;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Head).ID: return 1151;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_ZP, false, PinkBed::Part::Foot).ID: return 1152;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Head).ID: return 1153;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, true, PinkBed::Part::Foot).ID: return 1154;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Head).ID: return 1155;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XM, false, PinkBed::Part::Foot).ID: return 1156;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Head).ID: return 1157;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, true, PinkBed::Part::Foot).ID: return 1158;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Head).ID: return 1159;
+ case PinkBed::PinkBed(eBlockFace::BLOCK_FACE_XP, false, PinkBed::Part::Foot).ID: return 1160;
+ case PinkCarpet::PinkCarpet().ID: return 7872;
+ case PinkConcrete::PinkConcrete().ID: return 9444;
+ case PinkConcretePowder::PinkConcretePowder().ID: return 9460;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9398;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9399;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9400;
+ case PinkGlazedTerracotta::PinkGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9401;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9314;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9315;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9316;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9317;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9318;
+ case PinkShulkerBox::PinkShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9319;
+ case PinkStainedGlass::PinkStainedGlass().ID: return 4101;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, true).ID: return 7057;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, true, false).ID: return 7058;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, true).ID: return 7061;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, true, false, false).ID: return 7062;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, true).ID: return 7065;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, true, false).ID: return 7066;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, true).ID: return 7069;
+ case PinkStainedGlassPane::PinkStainedGlassPane(true, false, false, false).ID: return 7070;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, true).ID: return 7073;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, true, false).ID: return 7074;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, true).ID: return 7077;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, true, false, false).ID: return 7078;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, true).ID: return 7081;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, true, false).ID: return 7082;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, true).ID: return 7085;
+ case PinkStainedGlassPane::PinkStainedGlassPane(false, false, false, false).ID: return 7086;
+ case PinkTerracotta::PinkTerracotta().ID: return 6853;
+ case PinkTulip::PinkTulip().ID: return 1420;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8177;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8178;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8179;
+ case PinkWallBanner::PinkWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8180;
+ case PinkWool::PinkWool().ID: return 1390;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZM).ID: return 1348;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_XP).ID: return 1349;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_ZP).ID: return 1350;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_XM).ID: return 1351;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_YP).ID: return 1352;
+ case Piston::Piston(true, eBlockFace::BLOCK_FACE_YM).ID: return 1353;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZM).ID: return 1354;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_XP).ID: return 1355;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_ZP).ID: return 1356;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_XM).ID: return 1357;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_YP).ID: return 1358;
+ case Piston::Piston(false, eBlockFace::BLOCK_FACE_YM).ID: return 1359;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Normal).ID: return 1360;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, true, PistonHead::Type::Sticky).ID: return 1361;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Normal).ID: return 1362;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZM, false, PistonHead::Type::Sticky).ID: return 1363;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Normal).ID: return 1364;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, true, PistonHead::Type::Sticky).ID: return 1365;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Normal).ID: return 1366;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XP, false, PistonHead::Type::Sticky).ID: return 1367;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Normal).ID: return 1368;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, true, PistonHead::Type::Sticky).ID: return 1369;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Normal).ID: return 1370;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_ZP, false, PistonHead::Type::Sticky).ID: return 1371;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Normal).ID: return 1372;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, true, PistonHead::Type::Sticky).ID: return 1373;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Normal).ID: return 1374;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_XM, false, PistonHead::Type::Sticky).ID: return 1375;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Normal).ID: return 1376;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, true, PistonHead::Type::Sticky).ID: return 1377;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Normal).ID: return 1378;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YP, false, PistonHead::Type::Sticky).ID: return 1379;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Normal).ID: return 1380;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, true, PistonHead::Type::Sticky).ID: return 1381;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Normal).ID: return 1382;
+ case PistonHead::PistonHead(eBlockFace::BLOCK_FACE_YM, false, PistonHead::Type::Sticky).ID: return 1383;
+ case PlayerHead::PlayerHead(0).ID: return 6550;
+ case PlayerHead::PlayerHead(1).ID: return 6551;
+ case PlayerHead::PlayerHead(2).ID: return 6552;
+ case PlayerHead::PlayerHead(3).ID: return 6553;
+ case PlayerHead::PlayerHead(4).ID: return 6554;
+ case PlayerHead::PlayerHead(5).ID: return 6555;
+ case PlayerHead::PlayerHead(6).ID: return 6556;
+ case PlayerHead::PlayerHead(7).ID: return 6557;
+ case PlayerHead::PlayerHead(8).ID: return 6558;
+ case PlayerHead::PlayerHead(9).ID: return 6559;
+ case PlayerHead::PlayerHead(10).ID: return 6560;
+ case PlayerHead::PlayerHead(11).ID: return 6561;
+ case PlayerHead::PlayerHead(12).ID: return 6562;
+ case PlayerHead::PlayerHead(13).ID: return 6563;
+ case PlayerHead::PlayerHead(14).ID: return 6564;
+ case PlayerHead::PlayerHead(15).ID: return 6565;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 6566;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 6567;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 6568;
+ case PlayerWallHead::PlayerWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 6569;
+ case Podzol::Podzol(true).ID: return 12;
+ case Podzol::Podzol(false).ID: return 13;
+ case PolishedAndesite::PolishedAndesite().ID: return 7;
+ case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Top).ID: return 10856;
+ case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Bottom).ID: return 10858;
+ case PolishedAndesiteSlab::PolishedAndesiteSlab(PolishedAndesiteSlab::Type::Double).ID: return 10860;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight).ID: return 10630;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10632;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10634;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10636;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10638;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight).ID: return 10640;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10642;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10644;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10646;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10648;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight).ID: return 10650;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10652;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10654;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10656;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10658;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight).ID: return 10660;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10662;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10664;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10666;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10668;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight).ID: return 10670;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10672;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10674;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10676;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10678;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight).ID: return 10680;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10682;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10684;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10686;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XM, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10688;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::Straight).ID: return 10690;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10692;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10694;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10696;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Top, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10698;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::Straight).ID: return 10700;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerLeft).ID: return 10702;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::InnerRight).ID: return 10704;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterLeft).ID: return 10706;
+ case PolishedAndesiteStairs::PolishedAndesiteStairs(eBlockFace::BLOCK_FACE_XP, PolishedAndesiteStairs::Half::Bottom, PolishedAndesiteStairs::Shape::OuterRight).ID: return 10708;
+ case PolishedBasalt::PolishedBasalt(PolishedBasalt::Axis::X).ID: return 4005;
+ case PolishedBasalt::PolishedBasalt(PolishedBasalt::Axis::Y).ID: return 4006;
+ case PolishedBasalt::PolishedBasalt(PolishedBasalt::Axis::Z).ID: return 4007;
+ case PolishedBlackstone::PolishedBlackstone().ID: return 16250;
+ case PolishedBlackstoneBrickSlab::PolishedBlackstoneBrickSlab(PolishedBlackstoneBrickSlab::Type::Top).ID: return 16255;
+ case PolishedBlackstoneBrickSlab::PolishedBlackstoneBrickSlab(PolishedBlackstoneBrickSlab::Type::Bottom).ID: return 16257;
+ case PolishedBlackstoneBrickSlab::PolishedBlackstoneBrickSlab(PolishedBlackstoneBrickSlab::Type::Double).ID: return 16259;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::Straight).ID: return 16261;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerLeft).ID: return 16263;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerRight).ID: return 16265;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterLeft).ID: return 16267;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterRight).ID: return 16269;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::Straight).ID: return 16271;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerLeft).ID: return 16273;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerRight).ID: return 16275;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterLeft).ID: return 16277;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterRight).ID: return 16279;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::Straight).ID: return 16281;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerLeft).ID: return 16283;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerRight).ID: return 16285;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterLeft).ID: return 16287;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterRight).ID: return 16289;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::Straight).ID: return 16291;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerLeft).ID: return 16293;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerRight).ID: return 16295;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterLeft).ID: return 16297;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterRight).ID: return 16299;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::Straight).ID: return 16301;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerLeft).ID: return 16303;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerRight).ID: return 16305;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterLeft).ID: return 16307;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterRight).ID: return 16309;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::Straight).ID: return 16311;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerLeft).ID: return 16313;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerRight).ID: return 16315;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterLeft).ID: return 16317;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterRight).ID: return 16319;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::Straight).ID: return 16321;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerLeft).ID: return 16323;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::InnerRight).ID: return 16325;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterLeft).ID: return 16327;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Top, PolishedBlackstoneBrickStairs::Shape::OuterRight).ID: return 16329;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::Straight).ID: return 16331;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerLeft).ID: return 16333;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::InnerRight).ID: return 16335;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterLeft).ID: return 16337;
+ case PolishedBlackstoneBrickStairs::PolishedBlackstoneBrickStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneBrickStairs::Half::Bottom, PolishedBlackstoneBrickStairs::Shape::OuterRight).ID: return 16339;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None).ID: return 16343;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16344;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16345;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None).ID: return 16349;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16350;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16351;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None).ID: return 16355;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16356;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16357;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None).ID: return 16361;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16362;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16363;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None).ID: return 16367;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16368;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16369;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None).ID: return 16373;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16374;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16375;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None).ID: return 16379;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16380;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16381;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None).ID: return 16385;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16386;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16387;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None).ID: return 16391;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16392;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16393;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None).ID: return 16397;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16398;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16399;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None).ID: return 16403;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16404;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16405;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None).ID: return 16409;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16410;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16411;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None).ID: return 16415;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16416;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16417;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None).ID: return 16421;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16422;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16423;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None).ID: return 16427;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16428;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16429;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None).ID: return 16433;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16434;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16435;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None).ID: return 16439;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16440;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16441;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None).ID: return 16445;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16446;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::None, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16447;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None).ID: return 16451;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16452;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16453;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None).ID: return 16457;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16458;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16459;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None).ID: return 16463;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16464;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16465;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None).ID: return 16469;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16470;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16471;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None).ID: return 16475;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16476;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16477;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None).ID: return 16481;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16482;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16483;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None).ID: return 16487;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16488;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16489;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None).ID: return 16493;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16494;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16495;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None).ID: return 16499;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16500;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16501;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None).ID: return 16505;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16506;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16507;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None).ID: return 16511;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16512;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16513;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None).ID: return 16517;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16518;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16519;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None).ID: return 16523;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16524;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16525;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None).ID: return 16529;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16530;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16531;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None).ID: return 16535;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16536;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16537;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None).ID: return 16541;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16542;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16543;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None).ID: return 16547;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16548;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16549;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None).ID: return 16553;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16554;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Low, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16555;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None).ID: return 16559;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16560;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16561;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None).ID: return 16565;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16566;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16567;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None).ID: return 16571;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16572;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16573;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None).ID: return 16577;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16578;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16579;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None).ID: return 16583;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16584;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16585;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None).ID: return 16589;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16590;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::None, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16591;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None).ID: return 16595;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16596;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16597;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None).ID: return 16601;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16602;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16603;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None).ID: return 16607;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16608;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16609;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None).ID: return 16613;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16614;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16615;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None).ID: return 16619;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16620;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16621;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None).ID: return 16625;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16626;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Low, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16627;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::None).ID: return 16631;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16632;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16633;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::None).ID: return 16637;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16638;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::None, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16639;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::None).ID: return 16643;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16644;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16645;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::None).ID: return 16649;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16650;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Low, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16651;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::None).ID: return 16655;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Low).ID: return 16656;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, true, PolishedBlackstoneBrickWall::West::Tall).ID: return 16657;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::None).ID: return 16661;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Low).ID: return 16662;
+ case PolishedBlackstoneBrickWall::PolishedBlackstoneBrickWall(PolishedBlackstoneBrickWall::East::Tall, PolishedBlackstoneBrickWall::North::Tall, PolishedBlackstoneBrickWall::South::Tall, false, PolishedBlackstoneBrickWall::West::Tall).ID: return 16663;
+ case PolishedBlackstoneBricks::PolishedBlackstoneBricks().ID: return 16251;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 16753;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 16754;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 16755;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 16756;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 16757;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 16758;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 16759;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 16760;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 16761;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 16762;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 16763;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 16764;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 16765;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 16766;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 16767;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 16768;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 16769;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 16770;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 16771;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 16772;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 16773;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 16774;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 16775;
+ case PolishedBlackstoneButton::PolishedBlackstoneButton(PolishedBlackstoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 16776;
+ case PolishedBlackstonePressurePlate::PolishedBlackstonePressurePlate(true).ID: return 16751;
+ case PolishedBlackstonePressurePlate::PolishedBlackstonePressurePlate(false).ID: return 16752;
+ case PolishedBlackstoneSlab::PolishedBlackstoneSlab(PolishedBlackstoneSlab::Type::Top).ID: return 16746;
+ case PolishedBlackstoneSlab::PolishedBlackstoneSlab(PolishedBlackstoneSlab::Type::Bottom).ID: return 16748;
+ case PolishedBlackstoneSlab::PolishedBlackstoneSlab(PolishedBlackstoneSlab::Type::Double).ID: return 16750;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::Straight).ID: return 16666;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerLeft).ID: return 16668;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerRight).ID: return 16670;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterLeft).ID: return 16672;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterRight).ID: return 16674;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::Straight).ID: return 16676;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerLeft).ID: return 16678;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerRight).ID: return 16680;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterLeft).ID: return 16682;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterRight).ID: return 16684;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::Straight).ID: return 16686;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerLeft).ID: return 16688;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerRight).ID: return 16690;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterLeft).ID: return 16692;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterRight).ID: return 16694;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::Straight).ID: return 16696;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerLeft).ID: return 16698;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerRight).ID: return 16700;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterLeft).ID: return 16702;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_ZP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterRight).ID: return 16704;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::Straight).ID: return 16706;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerLeft).ID: return 16708;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerRight).ID: return 16710;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterLeft).ID: return 16712;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterRight).ID: return 16714;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::Straight).ID: return 16716;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerLeft).ID: return 16718;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerRight).ID: return 16720;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterLeft).ID: return 16722;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XM, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterRight).ID: return 16724;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::Straight).ID: return 16726;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerLeft).ID: return 16728;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::InnerRight).ID: return 16730;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterLeft).ID: return 16732;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Top, PolishedBlackstoneStairs::Shape::OuterRight).ID: return 16734;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::Straight).ID: return 16736;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerLeft).ID: return 16738;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::InnerRight).ID: return 16740;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterLeft).ID: return 16742;
+ case PolishedBlackstoneStairs::PolishedBlackstoneStairs(eBlockFace::BLOCK_FACE_XP, PolishedBlackstoneStairs::Half::Bottom, PolishedBlackstoneStairs::Shape::OuterRight).ID: return 16744;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None).ID: return 16780;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low).ID: return 16781;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall).ID: return 16782;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None).ID: return 16786;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low).ID: return 16787;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall).ID: return 16788;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None).ID: return 16792;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low).ID: return 16793;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall).ID: return 16794;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None).ID: return 16798;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low).ID: return 16799;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall).ID: return 16800;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None).ID: return 16804;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low).ID: return 16805;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall).ID: return 16806;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None).ID: return 16810;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low).ID: return 16811;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall).ID: return 16812;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None).ID: return 16816;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low).ID: return 16817;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall).ID: return 16818;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None).ID: return 16822;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low).ID: return 16823;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall).ID: return 16824;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None).ID: return 16828;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low).ID: return 16829;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall).ID: return 16830;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None).ID: return 16834;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low).ID: return 16835;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall).ID: return 16836;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None).ID: return 16840;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low).ID: return 16841;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall).ID: return 16842;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None).ID: return 16846;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low).ID: return 16847;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall).ID: return 16848;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None).ID: return 16852;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low).ID: return 16853;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall).ID: return 16854;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None).ID: return 16858;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low).ID: return 16859;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall).ID: return 16860;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None).ID: return 16864;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low).ID: return 16865;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall).ID: return 16866;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None).ID: return 16870;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low).ID: return 16871;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall).ID: return 16872;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None).ID: return 16876;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low).ID: return 16877;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall).ID: return 16878;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None).ID: return 16882;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low).ID: return 16883;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::None, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall).ID: return 16884;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None).ID: return 16888;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low).ID: return 16889;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall).ID: return 16890;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None).ID: return 16894;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low).ID: return 16895;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall).ID: return 16896;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None).ID: return 16900;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low).ID: return 16901;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall).ID: return 16902;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None).ID: return 16906;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low).ID: return 16907;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall).ID: return 16908;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None).ID: return 16912;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low).ID: return 16913;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall).ID: return 16914;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None).ID: return 16918;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low).ID: return 16919;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall).ID: return 16920;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None).ID: return 16924;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low).ID: return 16925;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall).ID: return 16926;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None).ID: return 16930;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low).ID: return 16931;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall).ID: return 16932;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None).ID: return 16936;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low).ID: return 16937;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall).ID: return 16938;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None).ID: return 16942;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low).ID: return 16943;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall).ID: return 16944;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None).ID: return 16948;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low).ID: return 16949;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall).ID: return 16950;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None).ID: return 16954;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low).ID: return 16955;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall).ID: return 16956;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None).ID: return 16960;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low).ID: return 16961;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall).ID: return 16962;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None).ID: return 16966;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low).ID: return 16967;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall).ID: return 16968;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None).ID: return 16972;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low).ID: return 16973;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall).ID: return 16974;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None).ID: return 16978;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low).ID: return 16979;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall).ID: return 16980;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None).ID: return 16984;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low).ID: return 16985;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall).ID: return 16986;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None).ID: return 16990;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low).ID: return 16991;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Low, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall).ID: return 16992;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None).ID: return 16996;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low).ID: return 16997;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall).ID: return 16998;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None).ID: return 17002;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low).ID: return 17003;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall).ID: return 17004;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None).ID: return 17008;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low).ID: return 17009;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall).ID: return 17010;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None).ID: return 17014;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low).ID: return 17015;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall).ID: return 17016;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None).ID: return 17020;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low).ID: return 17021;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall).ID: return 17022;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None).ID: return 17026;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low).ID: return 17027;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::None, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall).ID: return 17028;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None).ID: return 17032;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low).ID: return 17033;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall).ID: return 17034;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None).ID: return 17038;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low).ID: return 17039;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall).ID: return 17040;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None).ID: return 17044;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low).ID: return 17045;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall).ID: return 17046;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None).ID: return 17050;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low).ID: return 17051;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall).ID: return 17052;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None).ID: return 17056;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low).ID: return 17057;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall).ID: return 17058;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None).ID: return 17062;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low).ID: return 17063;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Low, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall).ID: return 17064;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::None).ID: return 17068;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Low).ID: return 17069;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, true, PolishedBlackstoneWall::West::Tall).ID: return 17070;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::None).ID: return 17074;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Low).ID: return 17075;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::None, false, PolishedBlackstoneWall::West::Tall).ID: return 17076;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::None).ID: return 17080;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Low).ID: return 17081;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, true, PolishedBlackstoneWall::West::Tall).ID: return 17082;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::None).ID: return 17086;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Low).ID: return 17087;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Low, false, PolishedBlackstoneWall::West::Tall).ID: return 17088;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::None).ID: return 17092;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Low).ID: return 17093;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, true, PolishedBlackstoneWall::West::Tall).ID: return 17094;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::None).ID: return 17098;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Low).ID: return 17099;
+ case PolishedBlackstoneWall::PolishedBlackstoneWall(PolishedBlackstoneWall::East::Tall, PolishedBlackstoneWall::North::Tall, PolishedBlackstoneWall::South::Tall, false, PolishedBlackstoneWall::West::Tall).ID: return 17100;
+ case PolishedDiorite::PolishedDiorite().ID: return 5;
+ case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Top).ID: return 10808;
+ case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Bottom).ID: return 10810;
+ case PolishedDioriteSlab::PolishedDioriteSlab(PolishedDioriteSlab::Type::Double).ID: return 10812;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight).ID: return 9910;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9912;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight).ID: return 9914;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9916;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight).ID: return 9918;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight).ID: return 9920;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9922;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight).ID: return 9924;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9926;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight).ID: return 9928;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight).ID: return 9930;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9932;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight).ID: return 9934;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9936;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight).ID: return 9938;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight).ID: return 9940;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9942;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight).ID: return 9944;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9946;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight).ID: return 9948;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight).ID: return 9950;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9952;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight).ID: return 9954;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9956;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight).ID: return 9958;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight).ID: return 9960;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9962;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight).ID: return 9964;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9966;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XM, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight).ID: return 9968;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::Straight).ID: return 9970;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9972;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::InnerRight).ID: return 9974;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9976;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Top, PolishedDioriteStairs::Shape::OuterRight).ID: return 9978;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::Straight).ID: return 9980;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerLeft).ID: return 9982;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::InnerRight).ID: return 9984;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterLeft).ID: return 9986;
+ case PolishedDioriteStairs::PolishedDioriteStairs(eBlockFace::BLOCK_FACE_XP, PolishedDioriteStairs::Half::Bottom, PolishedDioriteStairs::Shape::OuterRight).ID: return 9988;
+ case PolishedGranite::PolishedGranite().ID: return 3;
+ case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Top).ID: return 10790;
+ case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Bottom).ID: return 10792;
+ case PolishedGraniteSlab::PolishedGraniteSlab(PolishedGraniteSlab::Type::Double).ID: return 10794;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight).ID: return 9670;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9672;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight).ID: return 9674;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9676;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight).ID: return 9678;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight).ID: return 9680;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9682;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight).ID: return 9684;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9686;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight).ID: return 9688;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight).ID: return 9690;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9692;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight).ID: return 9694;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9696;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight).ID: return 9698;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight).ID: return 9700;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9702;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight).ID: return 9704;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9706;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_ZP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight).ID: return 9708;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight).ID: return 9710;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9712;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight).ID: return 9714;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9716;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight).ID: return 9718;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight).ID: return 9720;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9722;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight).ID: return 9724;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9726;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XM, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight).ID: return 9728;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::Straight).ID: return 9730;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9732;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::InnerRight).ID: return 9734;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9736;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Top, PolishedGraniteStairs::Shape::OuterRight).ID: return 9738;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::Straight).ID: return 9740;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerLeft).ID: return 9742;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::InnerRight).ID: return 9744;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterLeft).ID: return 9746;
+ case PolishedGraniteStairs::PolishedGraniteStairs(eBlockFace::BLOCK_FACE_XP, PolishedGraniteStairs::Half::Bottom, PolishedGraniteStairs::Shape::OuterRight).ID: return 9748;
+ case Poppy::Poppy().ID: return 1413;
+ case Potatoes::Potatoes(0).ID: return 6338;
+ case Potatoes::Potatoes(1).ID: return 6339;
+ case Potatoes::Potatoes(2).ID: return 6340;
+ case Potatoes::Potatoes(3).ID: return 6341;
+ case Potatoes::Potatoes(4).ID: return 6342;
+ case Potatoes::Potatoes(5).ID: return 6343;
+ case Potatoes::Potatoes(6).ID: return 6344;
+ case Potatoes::Potatoes(7).ID: return 6345;
+ case PottedAcaciaSapling::PottedAcaciaSapling().ID: return 6310;
+ case PottedAllium::PottedAllium().ID: return 6316;
+ case PottedAzureBluet::PottedAzureBluet().ID: return 6317;
+ case PottedBamboo::PottedBamboo().ID: return 9664;
+ case PottedBirchSapling::PottedBirchSapling().ID: return 6308;
+ case PottedBlueOrchid::PottedBlueOrchid().ID: return 6315;
+ case PottedBrownMushroom::PottedBrownMushroom().ID: return 6327;
+ case PottedCactus::PottedCactus().ID: return 6329;
+ case PottedCornflower::PottedCornflower().ID: return 6323;
+ case PottedCrimsonFungus::PottedCrimsonFungus().ID: return 15834;
+ case PottedCrimsonRoots::PottedCrimsonRoots().ID: return 15836;
+ case PottedDandelion::PottedDandelion().ID: return 6313;
+ case PottedDarkOakSapling::PottedDarkOakSapling().ID: return 6311;
+ case PottedDeadBush::PottedDeadBush().ID: return 6328;
+ case PottedFern::PottedFern().ID: return 6312;
+ case PottedJungleSapling::PottedJungleSapling().ID: return 6309;
+ case PottedLilyOfTheValley::PottedLilyOfTheValley().ID: return 6324;
+ case PottedOakSapling::PottedOakSapling().ID: return 6306;
+ case PottedOrangeTulip::PottedOrangeTulip().ID: return 6319;
+ case PottedOxeyeDaisy::PottedOxeyeDaisy().ID: return 6322;
+ case PottedPinkTulip::PottedPinkTulip().ID: return 6321;
+ case PottedPoppy::PottedPoppy().ID: return 6314;
+ case PottedRedMushroom::PottedRedMushroom().ID: return 6326;
+ case PottedRedTulip::PottedRedTulip().ID: return 6318;
+ case PottedSpruceSapling::PottedSpruceSapling().ID: return 6307;
+ case PottedWarpedFungus::PottedWarpedFungus().ID: return 15835;
+ case PottedWarpedRoots::PottedWarpedRoots().ID: return 15837;
+ case PottedWhiteTulip::PottedWhiteTulip().ID: return 6320;
+ case PottedWitherRose::PottedWitherRose().ID: return 6325;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::NorthSouth).ID: return 1305;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::EastWest).ID: return 1306;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingEast).ID: return 1307;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingWest).ID: return 1308;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingNorth).ID: return 1309;
+ case PoweredRail::PoweredRail(true, PoweredRail::Shape::AscendingSouth).ID: return 1310;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::NorthSouth).ID: return 1311;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::EastWest).ID: return 1312;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingEast).ID: return 1313;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingWest).ID: return 1314;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingNorth).ID: return 1315;
+ case PoweredRail::PoweredRail(false, PoweredRail::Shape::AscendingSouth).ID: return 1316;
+ case Prismarine::Prismarine().ID: return 7601;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Top).ID: return 7851;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Bottom).ID: return 7853;
+ case PrismarineBrickSlab::PrismarineBrickSlab(PrismarineBrickSlab::Type::Double).ID: return 7855;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 7685;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7687;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 7689;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7691;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 7693;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 7695;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7697;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 7699;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7701;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 7703;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 7705;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7707;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 7709;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7711;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 7713;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 7715;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7717;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 7719;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7721;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 7723;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 7725;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7727;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 7729;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7731;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 7733;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 7735;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7737;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 7739;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7741;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XM, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 7743;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::Straight).ID: return 7745;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7747;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::InnerRight).ID: return 7749;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7751;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Top, PrismarineBrickStairs::Shape::OuterRight).ID: return 7753;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::Straight).ID: return 7755;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerLeft).ID: return 7757;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::InnerRight).ID: return 7759;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterLeft).ID: return 7761;
+ case PrismarineBrickStairs::PrismarineBrickStairs(eBlockFace::BLOCK_FACE_XP, PrismarineBrickStairs::Half::Bottom, PrismarineBrickStairs::Shape::OuterRight).ID: return 7763;
+ case PrismarineBricks::PrismarineBricks().ID: return 7602;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Top).ID: return 7845;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Bottom).ID: return 7847;
+ case PrismarineSlab::PrismarineSlab(PrismarineSlab::Type::Double).ID: return 7849;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 7605;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 7607;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 7609;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 7611;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 7613;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 7615;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 7617;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 7619;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 7621;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 7623;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 7625;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 7627;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 7629;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 7631;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 7633;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 7635;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 7637;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 7639;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 7641;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_ZP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 7643;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 7645;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 7647;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 7649;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 7651;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 7653;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 7655;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 7657;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 7659;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 7661;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XM, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 7663;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::Straight).ID: return 7665;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerLeft).ID: return 7667;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::InnerRight).ID: return 7669;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterLeft).ID: return 7671;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Top, PrismarineStairs::Shape::OuterRight).ID: return 7673;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::Straight).ID: return 7675;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerLeft).ID: return 7677;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::InnerRight).ID: return 7679;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterLeft).ID: return 7681;
+ case PrismarineStairs::PrismarineStairs(eBlockFace::BLOCK_FACE_XP, PrismarineStairs::Half::Bottom, PrismarineStairs::Shape::OuterRight).ID: return 7683;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 11194;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 11195;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Tall).ID: return 11196;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 11200;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 11201;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Tall).ID: return 11202;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 11206;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 11207;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Tall).ID: return 11208;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 11212;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 11213;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Tall).ID: return 11214;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::None).ID: return 11218;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Low).ID: return 11219;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall).ID: return 11220;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::None).ID: return 11224;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Low).ID: return 11225;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall).ID: return 11226;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 11230;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 11231;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Tall).ID: return 11232;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 11236;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 11237;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Tall).ID: return 11238;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 11242;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 11243;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Tall).ID: return 11244;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 11248;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 11249;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Tall).ID: return 11250;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::None).ID: return 11254;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Low).ID: return 11255;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall).ID: return 11256;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::None).ID: return 11260;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Low).ID: return 11261;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall).ID: return 11262;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 11266;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 11267;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Tall).ID: return 11268;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 11272;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 11273;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Tall).ID: return 11274;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 11278;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 11279;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Tall).ID: return 11280;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 11284;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 11285;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Tall).ID: return 11286;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::None).ID: return 11290;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Low).ID: return 11291;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall).ID: return 11292;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::None).ID: return 11296;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Low).ID: return 11297;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::None, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall).ID: return 11298;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 11302;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 11303;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Tall).ID: return 11304;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 11308;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 11309;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Tall).ID: return 11310;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 11314;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 11315;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Tall).ID: return 11316;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 11320;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 11321;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Tall).ID: return 11322;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::None).ID: return 11326;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Low).ID: return 11327;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall).ID: return 11328;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::None).ID: return 11332;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Low).ID: return 11333;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall).ID: return 11334;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 11338;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 11339;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Tall).ID: return 11340;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 11344;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 11345;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Tall).ID: return 11346;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 11350;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 11351;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Tall).ID: return 11352;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 11356;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 11357;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Tall).ID: return 11358;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::None).ID: return 11362;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Low).ID: return 11363;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall).ID: return 11364;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::None).ID: return 11368;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Low).ID: return 11369;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall).ID: return 11370;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 11374;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 11375;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Tall).ID: return 11376;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 11380;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 11381;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Tall).ID: return 11382;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 11386;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 11387;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Tall).ID: return 11388;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 11392;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 11393;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Tall).ID: return 11394;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::None).ID: return 11398;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Low).ID: return 11399;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall).ID: return 11400;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::None).ID: return 11404;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Low).ID: return 11405;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Low, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall).ID: return 11406;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 11410;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 11411;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, true, PrismarineWall::West::Tall).ID: return 11412;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 11416;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 11417;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::None, false, PrismarineWall::West::Tall).ID: return 11418;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 11422;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 11423;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, true, PrismarineWall::West::Tall).ID: return 11424;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 11428;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 11429;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Low, false, PrismarineWall::West::Tall).ID: return 11430;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::None).ID: return 11434;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Low).ID: return 11435;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall).ID: return 11436;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::None).ID: return 11440;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Low).ID: return 11441;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::None, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall).ID: return 11442;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 11446;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 11447;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, true, PrismarineWall::West::Tall).ID: return 11448;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 11452;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 11453;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::None, false, PrismarineWall::West::Tall).ID: return 11454;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 11458;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 11459;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, true, PrismarineWall::West::Tall).ID: return 11460;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 11464;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 11465;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Low, false, PrismarineWall::West::Tall).ID: return 11466;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::None).ID: return 11470;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Low).ID: return 11471;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall).ID: return 11472;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::None).ID: return 11476;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Low).ID: return 11477;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Low, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall).ID: return 11478;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::None).ID: return 11482;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Low).ID: return 11483;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, true, PrismarineWall::West::Tall).ID: return 11484;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::None).ID: return 11488;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Low).ID: return 11489;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::None, false, PrismarineWall::West::Tall).ID: return 11490;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::None).ID: return 11494;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Low).ID: return 11495;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, true, PrismarineWall::West::Tall).ID: return 11496;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::None).ID: return 11500;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Low).ID: return 11501;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Low, false, PrismarineWall::West::Tall).ID: return 11502;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::None).ID: return 11506;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Low).ID: return 11507;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, true, PrismarineWall::West::Tall).ID: return 11508;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::None).ID: return 11512;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Low).ID: return 11513;
+ case PrismarineWall::PrismarineWall(PrismarineWall::East::Tall, PrismarineWall::North::Tall, PrismarineWall::South::Tall, false, PrismarineWall::West::Tall).ID: return 11514;
+ case Pumpkin::Pumpkin().ID: return 3998;
+ case PumpkinStem::PumpkinStem(0).ID: return 4772;
+ case PumpkinStem::PumpkinStem(1).ID: return 4773;
+ case PumpkinStem::PumpkinStem(2).ID: return 4774;
+ case PumpkinStem::PumpkinStem(3).ID: return 4775;
+ case PumpkinStem::PumpkinStem(4).ID: return 4776;
+ case PumpkinStem::PumpkinStem(5).ID: return 4777;
+ case PumpkinStem::PumpkinStem(6).ID: return 4778;
+ case PumpkinStem::PumpkinStem(7).ID: return 4779;
+ case PurpleBanner::PurpleBanner(0).ID: return 8057;
+ case PurpleBanner::PurpleBanner(1).ID: return 8058;
+ case PurpleBanner::PurpleBanner(2).ID: return 8059;
+ case PurpleBanner::PurpleBanner(3).ID: return 8060;
+ case PurpleBanner::PurpleBanner(4).ID: return 8061;
+ case PurpleBanner::PurpleBanner(5).ID: return 8062;
+ case PurpleBanner::PurpleBanner(6).ID: return 8063;
+ case PurpleBanner::PurpleBanner(7).ID: return 8064;
+ case PurpleBanner::PurpleBanner(8).ID: return 8065;
+ case PurpleBanner::PurpleBanner(9).ID: return 8066;
+ case PurpleBanner::PurpleBanner(10).ID: return 8067;
+ case PurpleBanner::PurpleBanner(11).ID: return 8068;
+ case PurpleBanner::PurpleBanner(12).ID: return 8069;
+ case PurpleBanner::PurpleBanner(13).ID: return 8070;
+ case PurpleBanner::PurpleBanner(14).ID: return 8071;
+ case PurpleBanner::PurpleBanner(15).ID: return 8072;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Head).ID: return 1209;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, true, PurpleBed::Part::Foot).ID: return 1210;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Head).ID: return 1211;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZM, false, PurpleBed::Part::Foot).ID: return 1212;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Head).ID: return 1213;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, true, PurpleBed::Part::Foot).ID: return 1214;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Head).ID: return 1215;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_ZP, false, PurpleBed::Part::Foot).ID: return 1216;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Head).ID: return 1217;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, true, PurpleBed::Part::Foot).ID: return 1218;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Head).ID: return 1219;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XM, false, PurpleBed::Part::Foot).ID: return 1220;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Head).ID: return 1221;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, true, PurpleBed::Part::Foot).ID: return 1222;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Head).ID: return 1223;
+ case PurpleBed::PurpleBed(eBlockFace::BLOCK_FACE_XP, false, PurpleBed::Part::Foot).ID: return 1224;
+ case PurpleCarpet::PurpleCarpet().ID: return 7876;
+ case PurpleConcrete::PurpleConcrete().ID: return 9448;
+ case PurpleConcretePowder::PurpleConcretePowder().ID: return 9464;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9414;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9415;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9416;
+ case PurpleGlazedTerracotta::PurpleGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9417;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9338;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9339;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9340;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9341;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9342;
+ case PurpleShulkerBox::PurpleShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9343;
+ case PurpleStainedGlass::PurpleStainedGlass().ID: return 4105;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, true).ID: return 7185;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, true, false).ID: return 7186;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, true).ID: return 7189;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, true, false, false).ID: return 7190;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, true).ID: return 7193;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, true, false).ID: return 7194;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, true).ID: return 7197;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(true, false, false, false).ID: return 7198;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, true).ID: return 7201;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, true, false).ID: return 7202;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, true).ID: return 7205;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, true, false, false).ID: return 7206;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, true).ID: return 7209;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, true, false).ID: return 7210;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, true).ID: return 7213;
+ case PurpleStainedGlassPane::PurpleStainedGlassPane(false, false, false, false).ID: return 7214;
+ case PurpleTerracotta::PurpleTerracotta().ID: return 6857;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8193;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8194;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8195;
+ case PurpleWallBanner::PurpleWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8196;
+ case PurpleWool::PurpleWool().ID: return 1394;
+ case PurpurBlock::PurpurBlock().ID: return 9134;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::X).ID: return 9135;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Y).ID: return 9136;
+ case PurpurPillar::PurpurPillar(PurpurPillar::Axis::Z).ID: return 9137;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Top).ID: return 8409;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Bottom).ID: return 8411;
+ case PurpurSlab::PurpurSlab(PurpurSlab::Type::Double).ID: return 8413;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 9139;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 9141;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 9143;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 9145;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 9147;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 9149;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 9151;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 9153;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 9155;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 9157;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 9159;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 9161;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 9163;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 9165;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 9167;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 9169;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 9171;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 9173;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 9175;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_ZP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 9177;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 9179;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 9181;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 9183;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 9185;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 9187;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 9189;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 9191;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 9193;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 9195;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XM, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 9197;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::Straight).ID: return 9199;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerLeft).ID: return 9201;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::InnerRight).ID: return 9203;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterLeft).ID: return 9205;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Top, PurpurStairs::Shape::OuterRight).ID: return 9207;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::Straight).ID: return 9209;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerLeft).ID: return 9211;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::InnerRight).ID: return 9213;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterLeft).ID: return 9215;
+ case PurpurStairs::PurpurStairs(eBlockFace::BLOCK_FACE_XP, PurpurStairs::Half::Bottom, PurpurStairs::Shape::OuterRight).ID: return 9217;
+ case QuartzBlock::QuartzBlock().ID: return 6738;
+ case QuartzBricks::QuartzBricks().ID: return 17103;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::X).ID: return 6740;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Y).ID: return 6741;
+ case QuartzPillar::QuartzPillar(QuartzPillar::Axis::Z).ID: return 6742;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Top).ID: return 8391;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Bottom).ID: return 8393;
+ case QuartzSlab::QuartzSlab(QuartzSlab::Type::Double).ID: return 8395;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 6744;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 6746;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 6748;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 6750;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 6752;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 6754;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 6756;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 6758;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 6760;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 6762;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 6764;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 6766;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 6768;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 6770;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 6772;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 6774;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 6776;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 6778;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 6780;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_ZP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 6782;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 6784;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 6786;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 6788;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 6790;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 6792;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 6794;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 6796;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 6798;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 6800;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XM, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 6802;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::Straight).ID: return 6804;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerLeft).ID: return 6806;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::InnerRight).ID: return 6808;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterLeft).ID: return 6810;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Top, QuartzStairs::Shape::OuterRight).ID: return 6812;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::Straight).ID: return 6814;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerLeft).ID: return 6816;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::InnerRight).ID: return 6818;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterLeft).ID: return 6820;
+ case QuartzStairs::QuartzStairs(eBlockFace::BLOCK_FACE_XP, QuartzStairs::Half::Bottom, QuartzStairs::Shape::OuterRight).ID: return 6822;
+ case Rail::Rail(Rail::Shape::NorthSouth).ID: return 3645;
+ case Rail::Rail(Rail::Shape::EastWest).ID: return 3646;
+ case Rail::Rail(Rail::Shape::AscendingEast).ID: return 3647;
+ case Rail::Rail(Rail::Shape::AscendingWest).ID: return 3648;
+ case Rail::Rail(Rail::Shape::AscendingNorth).ID: return 3649;
+ case Rail::Rail(Rail::Shape::AscendingSouth).ID: return 3650;
+ case Rail::Rail(Rail::Shape::SouthEast).ID: return 3651;
+ case Rail::Rail(Rail::Shape::SouthWest).ID: return 3652;
+ case Rail::Rail(Rail::Shape::NorthWest).ID: return 3653;
+ case Rail::Rail(Rail::Shape::NorthEast).ID: return 3654;
+ case RedBanner::RedBanner(0).ID: return 8121;
+ case RedBanner::RedBanner(1).ID: return 8122;
+ case RedBanner::RedBanner(2).ID: return 8123;
+ case RedBanner::RedBanner(3).ID: return 8124;
+ case RedBanner::RedBanner(4).ID: return 8125;
+ case RedBanner::RedBanner(5).ID: return 8126;
+ case RedBanner::RedBanner(6).ID: return 8127;
+ case RedBanner::RedBanner(7).ID: return 8128;
+ case RedBanner::RedBanner(8).ID: return 8129;
+ case RedBanner::RedBanner(9).ID: return 8130;
+ case RedBanner::RedBanner(10).ID: return 8131;
+ case RedBanner::RedBanner(11).ID: return 8132;
+ case RedBanner::RedBanner(12).ID: return 8133;
+ case RedBanner::RedBanner(13).ID: return 8134;
+ case RedBanner::RedBanner(14).ID: return 8135;
+ case RedBanner::RedBanner(15).ID: return 8136;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Head).ID: return 1273;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, true, RedBed::Part::Foot).ID: return 1274;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Head).ID: return 1275;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZM, false, RedBed::Part::Foot).ID: return 1276;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Head).ID: return 1277;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, true, RedBed::Part::Foot).ID: return 1278;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Head).ID: return 1279;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_ZP, false, RedBed::Part::Foot).ID: return 1280;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Head).ID: return 1281;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, true, RedBed::Part::Foot).ID: return 1282;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Head).ID: return 1283;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XM, false, RedBed::Part::Foot).ID: return 1284;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Head).ID: return 1285;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, true, RedBed::Part::Foot).ID: return 1286;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Head).ID: return 1287;
+ case RedBed::RedBed(eBlockFace::BLOCK_FACE_XP, false, RedBed::Part::Foot).ID: return 1288;
+ case RedCarpet::RedCarpet().ID: return 7880;
+ case RedConcrete::RedConcrete().ID: return 9452;
+ case RedConcretePowder::RedConcretePowder().ID: return 9468;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9430;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9431;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9432;
+ case RedGlazedTerracotta::RedGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9433;
+ case RedMushroom::RedMushroom().ID: return 1426;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, true).ID: return 4569;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, true, false).ID: return 4570;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, true).ID: return 4571;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, true, false, false).ID: return 4572;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, true).ID: return 4573;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, true, false).ID: return 4574;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, true).ID: return 4575;
+ case RedMushroomBlock::RedMushroomBlock(true, true, true, false, false, false).ID: return 4576;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, true).ID: return 4577;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, true, false).ID: return 4578;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, true).ID: return 4579;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, true, false, false).ID: return 4580;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, true).ID: return 4581;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, true, false).ID: return 4582;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, true).ID: return 4583;
+ case RedMushroomBlock::RedMushroomBlock(true, true, false, false, false, false).ID: return 4584;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, true).ID: return 4585;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, true, false).ID: return 4586;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, true).ID: return 4587;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, true, false, false).ID: return 4588;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, true).ID: return 4589;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, true, false).ID: return 4590;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, true).ID: return 4591;
+ case RedMushroomBlock::RedMushroomBlock(true, false, true, false, false, false).ID: return 4592;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, true).ID: return 4593;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, true, false).ID: return 4594;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, true).ID: return 4595;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, true, false, false).ID: return 4596;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, true).ID: return 4597;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, true, false).ID: return 4598;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, true).ID: return 4599;
+ case RedMushroomBlock::RedMushroomBlock(true, false, false, false, false, false).ID: return 4600;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, true).ID: return 4601;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, true, false).ID: return 4602;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, true).ID: return 4603;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, true, false, false).ID: return 4604;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, true).ID: return 4605;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, true, false).ID: return 4606;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, true).ID: return 4607;
+ case RedMushroomBlock::RedMushroomBlock(false, true, true, false, false, false).ID: return 4608;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, true).ID: return 4609;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, true, false).ID: return 4610;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, true).ID: return 4611;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, true, false, false).ID: return 4612;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, true).ID: return 4613;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, true, false).ID: return 4614;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, true).ID: return 4615;
+ case RedMushroomBlock::RedMushroomBlock(false, true, false, false, false, false).ID: return 4616;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, true).ID: return 4617;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, true, false).ID: return 4618;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, true).ID: return 4619;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, true, false, false).ID: return 4620;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, true).ID: return 4621;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, true, false).ID: return 4622;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, true).ID: return 4623;
+ case RedMushroomBlock::RedMushroomBlock(false, false, true, false, false, false).ID: return 4624;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, true).ID: return 4625;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, true, false).ID: return 4626;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, true).ID: return 4627;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, true, false, false).ID: return 4628;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, true).ID: return 4629;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, true, false).ID: return 4630;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, true).ID: return 4631;
+ case RedMushroomBlock::RedMushroomBlock(false, false, false, false, false, false).ID: return 4632;
+ case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Top).ID: return 10850;
+ case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Bottom).ID: return 10852;
+ case RedNetherBrickSlab::RedNetherBrickSlab(RedNetherBrickSlab::Type::Double).ID: return 10854;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight).ID: return 10550;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10552;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight).ID: return 10554;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10556;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight).ID: return 10558;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight).ID: return 10560;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10562;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight).ID: return 10564;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10566;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight).ID: return 10568;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight).ID: return 10570;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10572;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight).ID: return 10574;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10576;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight).ID: return 10578;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight).ID: return 10580;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10582;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight).ID: return 10584;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10586;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_ZP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight).ID: return 10588;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight).ID: return 10590;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10592;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight).ID: return 10594;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10596;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight).ID: return 10598;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight).ID: return 10600;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10602;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight).ID: return 10604;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10606;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XM, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight).ID: return 10608;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::Straight).ID: return 10610;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10612;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::InnerRight).ID: return 10614;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10616;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Top, RedNetherBrickStairs::Shape::OuterRight).ID: return 10618;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::Straight).ID: return 10620;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerLeft).ID: return 10622;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::InnerRight).ID: return 10624;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterLeft).ID: return 10626;
+ case RedNetherBrickStairs::RedNetherBrickStairs(eBlockFace::BLOCK_FACE_XP, RedNetherBrickStairs::Half::Bottom, RedNetherBrickStairs::Shape::OuterRight).ID: return 10628;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 13462;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 13463;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall).ID: return 13464;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 13468;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 13469;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall).ID: return 13470;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 13474;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 13475;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall).ID: return 13476;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 13480;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 13481;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall).ID: return 13482;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None).ID: return 13486;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low).ID: return 13487;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall).ID: return 13488;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None).ID: return 13492;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low).ID: return 13493;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall).ID: return 13494;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 13498;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 13499;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall).ID: return 13500;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 13504;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 13505;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall).ID: return 13506;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 13510;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 13511;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall).ID: return 13512;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 13516;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 13517;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall).ID: return 13518;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None).ID: return 13522;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low).ID: return 13523;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall).ID: return 13524;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None).ID: return 13528;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low).ID: return 13529;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall).ID: return 13530;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 13534;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 13535;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall).ID: return 13536;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 13540;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 13541;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall).ID: return 13542;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 13546;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 13547;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall).ID: return 13548;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 13552;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 13553;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall).ID: return 13554;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None).ID: return 13558;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low).ID: return 13559;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall).ID: return 13560;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None).ID: return 13564;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low).ID: return 13565;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::None, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall).ID: return 13566;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 13570;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 13571;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall).ID: return 13572;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 13576;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 13577;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall).ID: return 13578;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 13582;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 13583;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall).ID: return 13584;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 13588;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 13589;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall).ID: return 13590;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None).ID: return 13594;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low).ID: return 13595;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall).ID: return 13596;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None).ID: return 13600;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low).ID: return 13601;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall).ID: return 13602;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 13606;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 13607;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall).ID: return 13608;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 13612;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 13613;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall).ID: return 13614;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 13618;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 13619;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall).ID: return 13620;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 13624;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 13625;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall).ID: return 13626;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None).ID: return 13630;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low).ID: return 13631;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall).ID: return 13632;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None).ID: return 13636;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low).ID: return 13637;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall).ID: return 13638;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 13642;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 13643;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall).ID: return 13644;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 13648;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 13649;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall).ID: return 13650;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 13654;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 13655;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall).ID: return 13656;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 13660;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 13661;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall).ID: return 13662;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None).ID: return 13666;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low).ID: return 13667;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall).ID: return 13668;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None).ID: return 13672;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low).ID: return 13673;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Low, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall).ID: return 13674;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 13678;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 13679;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall).ID: return 13680;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 13684;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 13685;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall).ID: return 13686;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 13690;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 13691;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall).ID: return 13692;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 13696;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 13697;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall).ID: return 13698;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None).ID: return 13702;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low).ID: return 13703;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall).ID: return 13704;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None).ID: return 13708;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low).ID: return 13709;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::None, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall).ID: return 13710;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 13714;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 13715;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall).ID: return 13716;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 13720;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 13721;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall).ID: return 13722;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 13726;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 13727;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall).ID: return 13728;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 13732;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 13733;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall).ID: return 13734;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None).ID: return 13738;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low).ID: return 13739;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall).ID: return 13740;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None).ID: return 13744;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low).ID: return 13745;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Low, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall).ID: return 13746;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::None).ID: return 13750;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Low).ID: return 13751;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, true, RedNetherBrickWall::West::Tall).ID: return 13752;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::None).ID: return 13756;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Low).ID: return 13757;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::None, false, RedNetherBrickWall::West::Tall).ID: return 13758;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::None).ID: return 13762;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Low).ID: return 13763;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, true, RedNetherBrickWall::West::Tall).ID: return 13764;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::None).ID: return 13768;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Low).ID: return 13769;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Low, false, RedNetherBrickWall::West::Tall).ID: return 13770;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::None).ID: return 13774;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Low).ID: return 13775;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, true, RedNetherBrickWall::West::Tall).ID: return 13776;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::None).ID: return 13780;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Low).ID: return 13781;
+ case RedNetherBrickWall::RedNetherBrickWall(RedNetherBrickWall::East::Tall, RedNetherBrickWall::North::Tall, RedNetherBrickWall::South::Tall, false, RedNetherBrickWall::West::Tall).ID: return 13782;
+ case RedNetherBricks::RedNetherBricks().ID: return 9255;
+ case RedSand::RedSand().ID: return 67;
+ case RedSandstone::RedSandstone().ID: return 8217;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Top).ID: return 8397;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Bottom).ID: return 8399;
+ case RedSandstoneSlab::RedSandstoneSlab(RedSandstoneSlab::Type::Double).ID: return 8401;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 8221;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 8223;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 8225;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 8227;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 8229;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 8231;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 8233;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 8235;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 8237;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 8239;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 8241;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 8243;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 8245;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 8247;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 8249;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 8251;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 8253;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 8255;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 8257;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 8259;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 8261;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 8263;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 8265;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 8267;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 8269;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 8271;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 8273;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 8275;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 8277;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 8279;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::Straight).ID: return 8281;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerLeft).ID: return 8283;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::InnerRight).ID: return 8285;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterLeft).ID: return 8287;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Top, RedSandstoneStairs::Shape::OuterRight).ID: return 8289;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::Straight).ID: return 8291;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerLeft).ID: return 8293;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::InnerRight).ID: return 8295;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterLeft).ID: return 8297;
+ case RedSandstoneStairs::RedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, RedSandstoneStairs::Half::Bottom, RedSandstoneStairs::Shape::OuterRight).ID: return 8299;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 11518;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 11519;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall).ID: return 11520;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 11524;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 11525;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall).ID: return 11526;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 11530;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 11531;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall).ID: return 11532;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 11536;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 11537;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall).ID: return 11538;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None).ID: return 11542;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low).ID: return 11543;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall).ID: return 11544;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None).ID: return 11548;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low).ID: return 11549;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall).ID: return 11550;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 11554;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 11555;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall).ID: return 11556;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 11560;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 11561;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall).ID: return 11562;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 11566;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 11567;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall).ID: return 11568;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 11572;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 11573;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall).ID: return 11574;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None).ID: return 11578;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low).ID: return 11579;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall).ID: return 11580;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None).ID: return 11584;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low).ID: return 11585;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall).ID: return 11586;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 11590;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 11591;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall).ID: return 11592;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 11596;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 11597;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall).ID: return 11598;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 11602;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 11603;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall).ID: return 11604;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 11608;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 11609;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall).ID: return 11610;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None).ID: return 11614;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low).ID: return 11615;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall).ID: return 11616;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None).ID: return 11620;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low).ID: return 11621;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::None, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall).ID: return 11622;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 11626;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 11627;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall).ID: return 11628;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 11632;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 11633;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall).ID: return 11634;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 11638;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 11639;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall).ID: return 11640;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 11644;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 11645;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall).ID: return 11646;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None).ID: return 11650;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low).ID: return 11651;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall).ID: return 11652;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None).ID: return 11656;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low).ID: return 11657;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall).ID: return 11658;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 11662;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 11663;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall).ID: return 11664;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 11668;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 11669;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall).ID: return 11670;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 11674;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 11675;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall).ID: return 11676;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 11680;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 11681;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall).ID: return 11682;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None).ID: return 11686;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low).ID: return 11687;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall).ID: return 11688;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None).ID: return 11692;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low).ID: return 11693;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall).ID: return 11694;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 11698;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 11699;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall).ID: return 11700;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 11704;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 11705;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall).ID: return 11706;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 11710;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 11711;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall).ID: return 11712;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 11716;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 11717;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall).ID: return 11718;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None).ID: return 11722;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low).ID: return 11723;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall).ID: return 11724;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None).ID: return 11728;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low).ID: return 11729;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Low, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall).ID: return 11730;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 11734;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 11735;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall).ID: return 11736;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 11740;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 11741;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall).ID: return 11742;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 11746;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 11747;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall).ID: return 11748;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 11752;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 11753;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall).ID: return 11754;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None).ID: return 11758;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low).ID: return 11759;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall).ID: return 11760;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None).ID: return 11764;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low).ID: return 11765;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::None, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall).ID: return 11766;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 11770;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 11771;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall).ID: return 11772;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 11776;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 11777;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall).ID: return 11778;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 11782;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 11783;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall).ID: return 11784;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 11788;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 11789;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall).ID: return 11790;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None).ID: return 11794;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low).ID: return 11795;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall).ID: return 11796;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None).ID: return 11800;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low).ID: return 11801;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Low, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall).ID: return 11802;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::None).ID: return 11806;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Low).ID: return 11807;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, true, RedSandstoneWall::West::Tall).ID: return 11808;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::None).ID: return 11812;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Low).ID: return 11813;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::None, false, RedSandstoneWall::West::Tall).ID: return 11814;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::None).ID: return 11818;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Low).ID: return 11819;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, true, RedSandstoneWall::West::Tall).ID: return 11820;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::None).ID: return 11824;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Low).ID: return 11825;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Low, false, RedSandstoneWall::West::Tall).ID: return 11826;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::None).ID: return 11830;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Low).ID: return 11831;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, true, RedSandstoneWall::West::Tall).ID: return 11832;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::None).ID: return 11836;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Low).ID: return 11837;
+ case RedSandstoneWall::RedSandstoneWall(RedSandstoneWall::East::Tall, RedSandstoneWall::North::Tall, RedSandstoneWall::South::Tall, false, RedSandstoneWall::West::Tall).ID: return 11838;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9362;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9363;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9364;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9365;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9366;
+ case RedShulkerBox::RedShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9367;
+ case RedStainedGlass::RedStainedGlass().ID: return 4109;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, true, true).ID: return 7313;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, true, false).ID: return 7314;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, false, true).ID: return 7317;
+ case RedStainedGlassPane::RedStainedGlassPane(true, true, false, false).ID: return 7318;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, true, true).ID: return 7321;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, true, false).ID: return 7322;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, false, true).ID: return 7325;
+ case RedStainedGlassPane::RedStainedGlassPane(true, false, false, false).ID: return 7326;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, true, true).ID: return 7329;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, true, false).ID: return 7330;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, false, true).ID: return 7333;
+ case RedStainedGlassPane::RedStainedGlassPane(false, true, false, false).ID: return 7334;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, true, true).ID: return 7337;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, true, false).ID: return 7338;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, false, true).ID: return 7341;
+ case RedStainedGlassPane::RedStainedGlassPane(false, false, false, false).ID: return 7342;
+ case RedTerracotta::RedTerracotta().ID: return 6861;
+ case RedTulip::RedTulip().ID: return 1417;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8209;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8210;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8211;
+ case RedWallBanner::RedWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8212;
+ case RedWool::RedWool().ID: return 1398;
+ case RedstoneBlock::RedstoneBlock().ID: return 6726;
+ case RedstoneLamp::RedstoneLamp(true).ID: return 5156;
+ case RedstoneLamp::RedstoneLamp(false).ID: return 5157;
+ case RedstoneOre::RedstoneOre(true).ID: return 3885;
+ case RedstoneOre::RedstoneOre(false).ID: return 3886;
+ case RedstoneTorch::RedstoneTorch(true).ID: return 3887;
+ case RedstoneTorch::RedstoneTorch(false).ID: return 3888;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, true).ID: return 3889;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZM, false).ID: return 3890;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, true).ID: return 3891;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_ZP, false).ID: return 3892;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, true).ID: return 3893;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XM, false).ID: return 3894;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, true).ID: return 3895;
+ case RedstoneWallTorch::RedstoneWallTorch(eBlockFace::BLOCK_FACE_XP, false).ID: return 3896;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2058;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2059;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2060;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2061;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2062;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2063;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2064;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2065;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2066;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2067;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2068;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2069;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2070;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2071;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2072;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2073;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2074;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2075;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2076;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2077;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2078;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2079;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2080;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2081;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2082;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2083;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2084;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2085;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2086;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2087;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2088;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2089;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2090;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2091;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2092;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2093;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2094;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2095;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2096;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2097;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2098;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2099;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2100;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2101;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2102;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2103;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2104;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2105;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2106;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2107;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2108;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2109;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2110;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2111;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2112;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2113;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2114;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2115;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2116;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2117;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2118;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2119;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2120;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2121;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2122;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2123;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2124;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2125;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2126;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2127;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2128;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2129;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2130;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2131;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2132;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2133;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2134;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2135;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2136;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2137;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2138;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2139;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2140;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2141;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2142;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2143;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2144;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2145;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2146;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2147;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2148;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2149;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2150;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2151;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2152;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2153;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2154;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2155;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2156;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2157;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2158;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2159;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2160;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2161;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2162;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2163;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2164;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2165;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2166;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2167;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2168;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2169;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2170;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2171;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2172;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2173;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2174;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2175;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2176;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2177;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2178;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2179;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2180;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2181;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2182;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2183;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2184;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2185;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2186;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2187;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2188;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2189;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2190;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2191;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2192;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2193;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2194;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2195;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2196;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2197;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2198;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2199;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2200;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2201;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2202;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2203;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2204;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2205;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2206;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2207;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2208;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2209;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2210;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2211;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2212;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2213;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2214;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2215;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2216;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2217;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2218;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2219;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2220;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2221;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2222;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2223;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2224;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2225;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2226;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2227;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2228;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2229;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2230;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2231;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2232;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2233;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2234;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2235;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2236;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2237;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2238;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2239;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2240;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2241;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2242;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2243;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2244;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2245;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2246;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2247;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2248;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2249;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2250;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2251;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2252;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2253;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2254;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2255;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2256;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2257;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2258;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2259;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2260;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2261;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2262;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2263;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2264;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2265;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2266;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2267;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2268;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2269;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2270;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2271;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2272;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2273;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2274;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2275;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2276;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2277;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2278;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2279;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2280;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2281;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2282;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2283;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2284;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2285;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2286;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2287;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2288;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2289;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2290;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2291;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2292;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2293;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2294;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2295;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2296;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2297;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2298;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2299;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2300;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2301;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2302;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2303;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2304;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2305;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2306;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2307;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2308;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2309;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2310;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2311;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2312;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2313;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2314;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2315;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2316;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2317;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2318;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2319;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2320;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2321;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2322;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2323;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2324;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2325;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2326;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2327;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2328;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2329;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2330;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2331;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2332;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2333;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2334;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2335;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2336;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2337;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2338;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2339;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2340;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2341;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2342;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2343;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2344;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2345;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2346;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2347;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2348;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2349;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2350;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2351;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2352;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2353;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2354;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2355;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2356;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2357;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2358;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2359;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2360;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2361;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2362;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2363;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2364;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2365;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2366;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2367;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2368;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2369;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2370;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2371;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2372;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2373;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2374;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2375;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2376;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2377;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2378;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2379;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2380;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2381;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2382;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2383;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2384;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2385;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2386;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2387;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2388;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2389;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2390;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2391;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2392;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2393;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2394;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2395;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2396;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2397;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2398;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2399;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2400;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2401;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2402;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2403;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2404;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2405;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2406;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2407;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2408;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2409;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2410;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2411;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2412;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2413;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2414;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2415;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2416;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2417;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2418;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2419;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2420;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2421;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2422;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2423;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2424;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2425;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2426;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2427;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2428;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2429;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2430;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2431;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2432;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2433;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2434;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2435;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2436;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2437;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2438;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2439;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2440;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2441;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2442;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2443;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2444;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2445;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2446;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2447;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2448;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2449;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2450;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2451;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2452;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2453;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2454;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2455;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2456;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2457;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2458;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2459;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2460;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2461;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2462;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2463;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2464;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2465;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2466;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2467;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2468;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2469;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2470;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2471;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2472;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2473;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2474;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2475;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2476;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2477;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2478;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2479;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2480;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2481;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2482;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2483;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2484;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2485;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2486;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2487;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2488;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Up, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2489;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2490;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2491;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2492;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2493;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2494;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2495;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2496;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2497;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2498;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2499;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2500;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2501;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2502;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2503;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2504;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2505;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2506;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2507;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2508;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2509;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2510;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2511;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2512;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2513;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2514;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2515;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2516;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2517;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2518;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2519;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2520;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2521;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2522;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2523;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2524;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2525;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2526;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2527;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2528;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2529;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2530;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2531;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2532;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2533;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2534;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2535;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2536;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2537;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2538;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2539;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2540;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2541;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2542;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2543;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2544;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2545;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2546;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2547;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2548;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2549;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2550;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2551;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2552;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2553;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2554;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2555;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2556;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2557;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2558;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2559;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2560;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2561;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2562;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2563;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2564;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2565;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2566;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2567;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2568;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2569;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2570;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2571;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2572;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2573;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2574;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2575;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2576;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2577;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2578;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2579;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2580;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2581;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2582;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2583;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2584;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2585;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2586;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2587;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2588;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2589;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2590;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2591;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2592;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2593;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2594;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2595;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2596;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2597;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2598;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2599;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2600;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2601;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2602;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2603;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2604;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2605;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2606;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2607;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2608;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2609;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2610;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2611;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2612;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2613;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2614;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2615;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2616;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2617;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2618;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2619;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2620;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2621;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2622;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2623;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2624;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2625;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2626;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2627;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2628;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2629;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2630;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2631;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2632;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2633;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2634;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2635;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2636;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2637;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2638;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2639;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2640;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2641;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2642;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2643;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2644;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2645;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2646;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2647;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2648;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2649;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2650;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2651;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2652;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2653;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2654;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2655;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2656;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2657;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2658;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2659;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2660;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2661;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2662;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2663;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2664;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2665;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2666;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2667;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2668;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2669;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2670;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2671;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2672;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2673;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2674;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2675;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2676;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2677;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2678;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2679;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2680;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2681;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2682;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2683;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2684;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2685;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2686;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2687;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2688;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2689;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2690;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2691;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2692;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2693;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2694;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2695;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2696;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2697;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2698;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2699;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2700;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2701;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2702;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2703;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2704;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2705;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2706;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2707;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2708;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2709;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2710;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2711;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2712;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2713;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2714;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2715;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2716;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2717;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2718;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2719;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2720;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2721;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2722;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2723;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2724;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2725;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2726;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2727;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2728;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2729;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2730;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2731;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2732;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2733;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2734;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2735;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2736;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2737;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2738;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2739;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2740;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2741;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2742;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2743;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2744;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2745;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2746;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2747;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2748;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2749;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2750;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2751;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2752;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2753;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2754;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2755;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2756;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2757;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2758;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2759;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2760;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2761;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2762;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2763;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2764;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2765;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2766;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2767;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2768;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2769;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2770;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2771;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2772;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2773;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2774;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2775;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2776;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2777;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2778;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2779;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2780;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2781;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2782;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2783;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2784;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2785;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2786;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2787;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2788;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2789;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2790;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2791;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2792;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2793;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2794;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2795;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2796;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2797;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2798;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2799;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2800;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2801;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2802;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2803;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2804;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2805;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2806;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2807;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2808;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2809;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2810;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2811;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2812;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2813;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2814;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2815;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2816;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2817;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2818;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2819;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2820;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2821;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2822;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2823;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2824;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2825;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2826;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2827;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2828;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2829;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2830;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2831;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2832;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2833;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2834;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2835;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2836;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2837;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2838;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2839;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2840;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2841;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2842;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2843;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2844;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2845;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2846;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2847;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2848;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2849;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2850;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2851;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2852;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2853;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2854;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2855;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2856;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2857;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2858;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2859;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2860;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2861;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2862;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2863;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2864;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2865;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2866;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2867;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2868;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2869;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2870;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2871;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2872;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2873;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2874;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2875;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2876;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2877;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2878;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2879;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2880;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2881;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2882;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2883;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2884;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2885;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2886;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2887;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2888;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2889;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2890;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2891;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2892;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2893;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2894;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2895;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2896;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2897;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2898;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2899;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2900;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2901;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2902;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2903;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2904;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2905;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2906;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2907;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2908;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2909;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2910;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2911;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2912;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2913;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2914;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2915;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2916;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2917;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2918;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2919;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2920;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::Side, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2921;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2922;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2923;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2924;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2925;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2926;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2927;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2928;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2929;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2930;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2931;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2932;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2933;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2934;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2935;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2936;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2937;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2938;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2939;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2940;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2941;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2942;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2943;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2944;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2945;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2946;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2947;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2948;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2949;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2950;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2951;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2952;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2953;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2954;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2955;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2956;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2957;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2958;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2959;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2960;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2961;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2962;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2963;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2964;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2965;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2966;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2967;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2968;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2969;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2970;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2971;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2972;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2973;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2974;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2975;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2976;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2977;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2978;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2979;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2980;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2981;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2982;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2983;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2984;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2985;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2986;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2987;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2988;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2989;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2990;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 2991;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 2992;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 2993;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 2994;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 2995;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 2996;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 2997;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 2998;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 2999;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3000;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3001;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3002;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3003;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3004;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3005;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3006;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3007;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3008;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3009;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3010;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3011;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3012;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3013;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3014;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3015;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3016;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3017;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3018;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3019;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3020;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3021;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3022;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3023;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3024;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3025;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3026;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3027;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3028;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3029;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3030;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3031;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3032;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3033;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3034;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3035;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3036;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3037;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3038;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3039;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3040;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3041;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3042;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3043;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3044;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3045;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3046;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3047;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3048;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3049;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3050;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3051;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3052;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3053;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3054;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3055;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3056;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3057;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3058;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3059;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3060;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3061;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3062;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3063;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3064;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Up, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3065;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3066;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3067;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3068;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3069;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3070;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3071;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3072;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3073;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3074;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3075;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3076;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3077;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3078;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3079;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3080;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3081;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3082;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3083;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3084;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3085;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3086;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3087;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3088;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3089;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3090;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3091;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3092;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3093;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3094;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3095;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3096;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3097;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3098;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3099;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3100;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3101;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3102;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3103;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3104;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3105;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3106;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3107;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3108;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3109;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3110;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3111;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3112;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3113;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3114;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3115;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3116;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3117;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3118;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3119;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3120;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3121;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3122;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3123;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3124;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3125;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3126;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3127;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3128;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3129;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3130;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3131;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3132;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3133;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3134;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3135;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3136;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3137;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3138;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3139;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3140;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3141;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3142;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3143;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3144;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3145;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3146;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3147;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3148;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3149;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3150;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3151;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3152;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3153;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3154;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3155;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3156;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3157;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3158;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3159;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3160;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3161;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3162;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3163;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3164;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3165;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3166;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3167;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3168;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3169;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3170;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3171;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3172;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3173;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3174;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3175;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3176;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3177;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3178;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3179;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3180;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3181;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3182;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3183;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3184;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3185;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3186;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3187;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3188;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3189;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3190;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3191;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3192;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3193;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3194;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3195;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3196;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3197;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3198;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3199;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3200;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3201;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3202;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3203;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3204;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3205;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3206;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3207;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3208;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::Side, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3209;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3210;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3211;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3212;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3213;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3214;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3215;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3216;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3217;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 0, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3218;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3219;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3220;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3221;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3222;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3223;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3224;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3225;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3226;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 1, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3227;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3228;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3229;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3230;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3231;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3232;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3233;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3234;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3235;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 2, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3236;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3237;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3238;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3239;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3240;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3241;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3242;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3243;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3244;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 3, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3245;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3246;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3247;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3248;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3249;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3250;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3251;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3252;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3253;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 4, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3254;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3255;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3256;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3257;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3258;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3259;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3260;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3261;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3262;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 5, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3263;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3264;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3265;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3266;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3267;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3268;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3269;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3270;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3271;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 6, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3272;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3273;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3274;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3275;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3276;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3277;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3278;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3279;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3280;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 7, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3281;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3282;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3283;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3284;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3285;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3286;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3287;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3288;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3289;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 8, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3290;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3291;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3292;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3293;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3294;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3295;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3296;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3297;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3298;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 9, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3299;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3300;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3301;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3302;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3303;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3304;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3305;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3306;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3307;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 10, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3308;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3309;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3310;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3311;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3312;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3313;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3314;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3315;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3316;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 11, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3317;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3318;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3319;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3320;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3321;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3322;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3323;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3324;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3325;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 12, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3326;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3327;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3328;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3329;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3330;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3331;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3332;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3333;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3334;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 13, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3335;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3336;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3337;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3338;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3339;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3340;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3341;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3342;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3343;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 14, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3344;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Up).ID: return 3345;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::Side).ID: return 3346;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Up, RedstoneWire::West::None).ID: return 3347;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Up).ID: return 3348;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::Side).ID: return 3349;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::Side, RedstoneWire::West::None).ID: return 3350;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Up).ID: return 3351;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::Side).ID: return 3352;
+ case RedstoneWire::RedstoneWire(RedstoneWire::East::None, RedstoneWire::North::None, 15, RedstoneWire::South::None, RedstoneWire::West::None).ID: return 3353;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 4031;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 4032;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 4033;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 4034;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 4035;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 4036;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 4037;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 4038;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 4039;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 4040;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 4041;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 4042;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 4043;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 4044;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 4045;
+ case Repeater::Repeater(1, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 4046;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 4047;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 4048;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 4049;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 4050;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 4051;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 4052;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 4053;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 4054;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 4055;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 4056;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 4057;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 4058;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 4059;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 4060;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 4061;
+ case Repeater::Repeater(2, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 4062;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 4063;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 4064;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 4065;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 4066;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 4067;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 4068;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 4069;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 4070;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 4071;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 4072;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 4073;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 4074;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 4075;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 4076;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 4077;
+ case Repeater::Repeater(3, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 4078;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 4079;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 4080;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 4081;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 4082;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 4083;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 4084;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 4085;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 4086;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, true).ID: return 4087;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, true, false).ID: return 4088;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, true).ID: return 4089;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XM, false, false).ID: return 4090;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, true).ID: return 4091;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, true, false).ID: return 4092;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, true).ID: return 4093;
+ case Repeater::Repeater(4, eBlockFace::BLOCK_FACE_XP, false, false).ID: return 4094;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZM).ID: return 9225;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XP).ID: return 9226;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_ZP).ID: return 9227;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_XM).ID: return 9228;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YP).ID: return 9229;
+ case RepeatingCommandBlock::RepeatingCommandBlock(true, eBlockFace::BLOCK_FACE_YM).ID: return 9230;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZM).ID: return 9231;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XP).ID: return 9232;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_ZP).ID: return 9233;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_XM).ID: return 9234;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YP).ID: return 9235;
+ case RepeatingCommandBlock::RepeatingCommandBlock(false, eBlockFace::BLOCK_FACE_YM).ID: return 9236;
+ case RespawnAnchor::RespawnAnchor(0).ID: return 15829;
+ case RespawnAnchor::RespawnAnchor(1).ID: return 15830;
+ case RespawnAnchor::RespawnAnchor(2).ID: return 15831;
+ case RespawnAnchor::RespawnAnchor(3).ID: return 15832;
+ case RespawnAnchor::RespawnAnchor(4).ID: return 15833;
+ case RoseBush::RoseBush(RoseBush::Half::Upper).ID: return 7889;
+ case RoseBush::RoseBush(RoseBush::Half::Lower).ID: return 7890;
+ case Sand::Sand().ID: return 66;
+ case Sandstone::Sandstone().ID: return 246;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Top).ID: return 8349;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Bottom).ID: return 8351;
+ case SandstoneSlab::SandstoneSlab(SandstoneSlab::Type::Double).ID: return 8353;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 5171;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 5173;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 5175;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 5177;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 5179;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 5181;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 5183;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 5185;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 5187;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 5189;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 5191;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 5193;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 5195;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 5197;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 5199;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 5201;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 5203;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 5205;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 5207;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 5209;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 5211;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 5213;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 5215;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 5217;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 5219;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 5221;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 5223;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 5225;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 5227;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XM, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 5229;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::Straight).ID: return 5231;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerLeft).ID: return 5233;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::InnerRight).ID: return 5235;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterLeft).ID: return 5237;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Top, SandstoneStairs::Shape::OuterRight).ID: return 5239;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::Straight).ID: return 5241;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerLeft).ID: return 5243;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::InnerRight).ID: return 5245;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterLeft).ID: return 5247;
+ case SandstoneStairs::SandstoneStairs(eBlockFace::BLOCK_FACE_XP, SandstoneStairs::Half::Bottom, SandstoneStairs::Shape::OuterRight).ID: return 5249;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 13786;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 13787;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Tall).ID: return 13788;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 13792;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 13793;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Tall).ID: return 13794;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 13798;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 13799;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Tall).ID: return 13800;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 13804;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 13805;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Tall).ID: return 13806;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::None).ID: return 13810;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Low).ID: return 13811;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall).ID: return 13812;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::None).ID: return 13816;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Low).ID: return 13817;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall).ID: return 13818;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 13822;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 13823;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Tall).ID: return 13824;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 13828;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 13829;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Tall).ID: return 13830;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 13834;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 13835;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Tall).ID: return 13836;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 13840;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 13841;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Tall).ID: return 13842;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::None).ID: return 13846;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Low).ID: return 13847;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall).ID: return 13848;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::None).ID: return 13852;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Low).ID: return 13853;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall).ID: return 13854;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 13858;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 13859;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Tall).ID: return 13860;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 13864;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 13865;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Tall).ID: return 13866;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 13870;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 13871;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Tall).ID: return 13872;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 13876;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 13877;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Tall).ID: return 13878;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::None).ID: return 13882;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Low).ID: return 13883;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall).ID: return 13884;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::None).ID: return 13888;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Low).ID: return 13889;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::None, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall).ID: return 13890;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 13894;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 13895;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Tall).ID: return 13896;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 13900;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 13901;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Tall).ID: return 13902;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 13906;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 13907;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Tall).ID: return 13908;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 13912;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 13913;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Tall).ID: return 13914;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::None).ID: return 13918;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Low).ID: return 13919;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall).ID: return 13920;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::None).ID: return 13924;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Low).ID: return 13925;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall).ID: return 13926;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 13930;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 13931;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Tall).ID: return 13932;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 13936;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 13937;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Tall).ID: return 13938;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 13942;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 13943;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Tall).ID: return 13944;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 13948;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 13949;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Tall).ID: return 13950;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::None).ID: return 13954;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Low).ID: return 13955;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall).ID: return 13956;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::None).ID: return 13960;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Low).ID: return 13961;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall).ID: return 13962;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 13966;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 13967;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Tall).ID: return 13968;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 13972;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 13973;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Tall).ID: return 13974;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 13978;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 13979;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Tall).ID: return 13980;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 13984;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 13985;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Tall).ID: return 13986;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::None).ID: return 13990;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Low).ID: return 13991;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall).ID: return 13992;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::None).ID: return 13996;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Low).ID: return 13997;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Low, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall).ID: return 13998;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 14002;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 14003;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, true, SandstoneWall::West::Tall).ID: return 14004;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 14008;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 14009;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::None, false, SandstoneWall::West::Tall).ID: return 14010;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 14014;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 14015;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, true, SandstoneWall::West::Tall).ID: return 14016;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 14020;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 14021;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Low, false, SandstoneWall::West::Tall).ID: return 14022;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::None).ID: return 14026;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Low).ID: return 14027;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall).ID: return 14028;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::None).ID: return 14032;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Low).ID: return 14033;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::None, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall).ID: return 14034;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 14038;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 14039;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, true, SandstoneWall::West::Tall).ID: return 14040;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 14044;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 14045;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::None, false, SandstoneWall::West::Tall).ID: return 14046;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 14050;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 14051;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, true, SandstoneWall::West::Tall).ID: return 14052;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 14056;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 14057;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Low, false, SandstoneWall::West::Tall).ID: return 14058;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::None).ID: return 14062;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Low).ID: return 14063;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall).ID: return 14064;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::None).ID: return 14068;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Low).ID: return 14069;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Low, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall).ID: return 14070;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::None).ID: return 14074;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Low).ID: return 14075;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, true, SandstoneWall::West::Tall).ID: return 14076;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::None).ID: return 14080;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Low).ID: return 14081;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::None, false, SandstoneWall::West::Tall).ID: return 14082;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::None).ID: return 14086;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Low).ID: return 14087;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, true, SandstoneWall::West::Tall).ID: return 14088;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::None).ID: return 14092;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Low).ID: return 14093;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Low, false, SandstoneWall::West::Tall).ID: return 14094;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::None).ID: return 14098;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Low).ID: return 14099;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, true, SandstoneWall::West::Tall).ID: return 14100;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::None).ID: return 14104;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Low).ID: return 14105;
+ case SandstoneWall::SandstoneWall(SandstoneWall::East::Tall, SandstoneWall::North::Tall, SandstoneWall::South::Tall, false, SandstoneWall::West::Tall).ID: return 14106;
+ case Scaffolding::Scaffolding(true, 0).ID: return 14756;
+ case Scaffolding::Scaffolding(true, 1).ID: return 14758;
+ case Scaffolding::Scaffolding(true, 2).ID: return 14760;
+ case Scaffolding::Scaffolding(true, 3).ID: return 14762;
+ case Scaffolding::Scaffolding(true, 4).ID: return 14764;
+ case Scaffolding::Scaffolding(true, 5).ID: return 14766;
+ case Scaffolding::Scaffolding(true, 6).ID: return 14768;
+ case Scaffolding::Scaffolding(true, 7).ID: return 14770;
+ case Scaffolding::Scaffolding(false, 0).ID: return 14772;
+ case Scaffolding::Scaffolding(false, 1).ID: return 14774;
+ case Scaffolding::Scaffolding(false, 2).ID: return 14776;
+ case Scaffolding::Scaffolding(false, 3).ID: return 14778;
+ case Scaffolding::Scaffolding(false, 4).ID: return 14780;
+ case Scaffolding::Scaffolding(false, 5).ID: return 14782;
+ case Scaffolding::Scaffolding(false, 6).ID: return 14784;
+ case Scaffolding::Scaffolding(false, 7).ID: return 14786;
+ case SeaLantern::SeaLantern().ID: return 7862;
+ case SeaPickle::SeaPickle(1).ID: return 9641;
+ case SeaPickle::SeaPickle(2).ID: return 9643;
+ case SeaPickle::SeaPickle(3).ID: return 9645;
+ case SeaPickle::SeaPickle(4).ID: return 9647;
+ case Seagrass::Seagrass().ID: return 1345;
+ case Shroomlight::Shroomlight().ID: return 14989;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9272;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9273;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9274;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9275;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9276;
+ case ShulkerBox::ShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9277;
+ case SkeletonSkull::SkeletonSkull(0).ID: return 6490;
+ case SkeletonSkull::SkeletonSkull(1).ID: return 6491;
+ case SkeletonSkull::SkeletonSkull(2).ID: return 6492;
+ case SkeletonSkull::SkeletonSkull(3).ID: return 6493;
+ case SkeletonSkull::SkeletonSkull(4).ID: return 6494;
+ case SkeletonSkull::SkeletonSkull(5).ID: return 6495;
+ case SkeletonSkull::SkeletonSkull(6).ID: return 6496;
+ case SkeletonSkull::SkeletonSkull(7).ID: return 6497;
+ case SkeletonSkull::SkeletonSkull(8).ID: return 6498;
+ case SkeletonSkull::SkeletonSkull(9).ID: return 6499;
+ case SkeletonSkull::SkeletonSkull(10).ID: return 6500;
+ case SkeletonSkull::SkeletonSkull(11).ID: return 6501;
+ case SkeletonSkull::SkeletonSkull(12).ID: return 6502;
+ case SkeletonSkull::SkeletonSkull(13).ID: return 6503;
+ case SkeletonSkull::SkeletonSkull(14).ID: return 6504;
+ case SkeletonSkull::SkeletonSkull(15).ID: return 6505;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM).ID: return 6506;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP).ID: return 6507;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XM).ID: return 6508;
+ case SkeletonWallSkull::SkeletonWallSkull(eBlockFace::BLOCK_FACE_XP).ID: return 6509;
+ case SlimeBlock::SlimeBlock().ID: return 7535;
+ case SmithingTable::SmithingTable().ID: return 14849;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, true).ID: return 14803;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZM, false).ID: return 14804;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, true).ID: return 14805;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_ZP, false).ID: return 14806;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, true).ID: return 14807;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_XM, false).ID: return 14808;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, true).ID: return 14809;
+ case Smoker::Smoker(eBlockFace::BLOCK_FACE_XP, false).ID: return 14810;
+ case SmoothQuartz::SmoothQuartz().ID: return 8416;
+ case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Top).ID: return 10832;
+ case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Bottom).ID: return 10834;
+ case SmoothQuartzSlab::SmoothQuartzSlab(SmoothQuartzSlab::Type::Double).ID: return 10836;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight).ID: return 10310;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft).ID: return 10312;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight).ID: return 10314;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft).ID: return 10316;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight).ID: return 10318;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight).ID: return 10320;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft).ID: return 10322;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight).ID: return 10324;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft).ID: return 10326;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight).ID: return 10328;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight).ID: return 10330;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft).ID: return 10332;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight).ID: return 10334;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft).ID: return 10336;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight).ID: return 10338;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight).ID: return 10340;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft).ID: return 10342;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight).ID: return 10344;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft).ID: return 10346;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_ZP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight).ID: return 10348;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight).ID: return 10350;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft).ID: return 10352;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight).ID: return 10354;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft).ID: return 10356;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight).ID: return 10358;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight).ID: return 10360;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft).ID: return 10362;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight).ID: return 10364;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft).ID: return 10366;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XM, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight).ID: return 10368;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::Straight).ID: return 10370;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerLeft).ID: return 10372;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::InnerRight).ID: return 10374;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterLeft).ID: return 10376;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Top, SmoothQuartzStairs::Shape::OuterRight).ID: return 10378;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::Straight).ID: return 10380;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerLeft).ID: return 10382;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::InnerRight).ID: return 10384;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterLeft).ID: return 10386;
+ case SmoothQuartzStairs::SmoothQuartzStairs(eBlockFace::BLOCK_FACE_XP, SmoothQuartzStairs::Half::Bottom, SmoothQuartzStairs::Shape::OuterRight).ID: return 10388;
+ case SmoothRedSandstone::SmoothRedSandstone().ID: return 8417;
+ case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Top).ID: return 10796;
+ case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Bottom).ID: return 10798;
+ case SmoothRedSandstoneSlab::SmoothRedSandstoneSlab(SmoothRedSandstoneSlab::Type::Double).ID: return 10800;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9750;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9752;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9754;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9756;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9758;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9760;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9762;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9764;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9766;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9768;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9770;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9772;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9774;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9776;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9778;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9780;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9782;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9784;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9786;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9788;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9790;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9792;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9794;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9796;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9798;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9800;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9802;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9804;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9806;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9808;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9810;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9812;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9814;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9816;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Top, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9818;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::Straight).ID: return 9820;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerLeft).ID: return 9822;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::InnerRight).ID: return 9824;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterLeft).ID: return 9826;
+ case SmoothRedSandstoneStairs::SmoothRedSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothRedSandstoneStairs::Half::Bottom, SmoothRedSandstoneStairs::Shape::OuterRight).ID: return 9828;
+ case SmoothSandstone::SmoothSandstone().ID: return 8415;
+ case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Top).ID: return 10826;
+ case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Bottom).ID: return 10828;
+ case SmoothSandstoneSlab::SmoothSandstoneSlab(SmoothSandstoneSlab::Type::Double).ID: return 10830;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight).ID: return 10230;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 10232;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight).ID: return 10234;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 10236;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight).ID: return 10238;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight).ID: return 10240;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 10242;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight).ID: return 10244;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 10246;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight).ID: return 10248;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight).ID: return 10250;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 10252;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight).ID: return 10254;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 10256;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight).ID: return 10258;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight).ID: return 10260;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 10262;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight).ID: return 10264;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 10266;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_ZP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight).ID: return 10268;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight).ID: return 10270;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 10272;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight).ID: return 10274;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 10276;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight).ID: return 10278;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight).ID: return 10280;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 10282;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight).ID: return 10284;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 10286;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XM, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight).ID: return 10288;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::Straight).ID: return 10290;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 10292;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::InnerRight).ID: return 10294;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 10296;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Top, SmoothSandstoneStairs::Shape::OuterRight).ID: return 10298;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::Straight).ID: return 10300;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerLeft).ID: return 10302;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::InnerRight).ID: return 10304;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterLeft).ID: return 10306;
+ case SmoothSandstoneStairs::SmoothSandstoneStairs(eBlockFace::BLOCK_FACE_XP, SmoothSandstoneStairs::Half::Bottom, SmoothSandstoneStairs::Shape::OuterRight).ID: return 10308;
+ case SmoothStone::SmoothStone().ID: return 8414;
+ case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Top).ID: return 8343;
+ case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Bottom).ID: return 8345;
+ case SmoothStoneSlab::SmoothStoneSlab(SmoothStoneSlab::Type::Double).ID: return 8347;
+ case Snow::Snow(1).ID: return 3921;
+ case Snow::Snow(2).ID: return 3922;
+ case Snow::Snow(3).ID: return 3923;
+ case Snow::Snow(4).ID: return 3924;
+ case Snow::Snow(5).ID: return 3925;
+ case Snow::Snow(6).ID: return 3926;
+ case Snow::Snow(7).ID: return 3927;
+ case Snow::Snow(8).ID: return 3928;
+ case SnowBlock::SnowBlock().ID: return 3930;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZM, true, true).ID: return 14923;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZM, true, false).ID: return 14925;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZM, false, true).ID: return 14927;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZM, false, false).ID: return 14929;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZP, true, true).ID: return 14931;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZP, true, false).ID: return 14933;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZP, false, true).ID: return 14935;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_ZP, false, false).ID: return 14937;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XM, true, true).ID: return 14939;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XM, true, false).ID: return 14941;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XM, false, true).ID: return 14943;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XM, false, false).ID: return 14945;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XP, true, true).ID: return 14947;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XP, true, false).ID: return 14949;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XP, false, true).ID: return 14951;
+ case SoulCampfire::SoulCampfire(eBlockFace::BLOCK_FACE_XP, false, false).ID: return 14953;
+ case SoulFire::SoulFire().ID: return 1952;
+ case SoulLantern::SoulLantern(true).ID: return 14888;
+ case SoulLantern::SoulLantern(false).ID: return 14889;
+ case SoulSand::SoulSand().ID: return 4000;
+ case SoulSoil::SoulSoil().ID: return 4001;
+ case SoulTorch::SoulTorch().ID: return 4008;
+ case SoulWallTorch::SoulWallTorch(eBlockFace::BLOCK_FACE_ZM).ID: return 4009;
+ case SoulWallTorch::SoulWallTorch(eBlockFace::BLOCK_FACE_ZP).ID: return 4010;
+ case SoulWallTorch::SoulWallTorch(eBlockFace::BLOCK_FACE_XM).ID: return 4011;
+ case SoulWallTorch::SoulWallTorch(eBlockFace::BLOCK_FACE_XP).ID: return 4012;
+ case Spawner::Spawner().ID: return 1953;
+ case Sponge::Sponge().ID: return 229;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6370;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6371;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6372;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6373;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 6374;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 6375;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 6376;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 6377;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6378;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6379;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6380;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6381;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 6382;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 6383;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 6384;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 6385;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 6386;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 6387;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 6388;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 6389;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 6390;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 6391;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 6392;
+ case SpruceButton::SpruceButton(SpruceButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 6393;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 8738;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 8739;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 8740;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 8741;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 8742;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 8743;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 8744;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 8745;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 8746;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 8747;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 8748;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 8749;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 8750;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 8751;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 8752;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 8753;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 8754;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 8755;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 8756;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 8757;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 8758;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 8759;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 8760;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 8761;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 8762;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 8763;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 8764;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 8765;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 8766;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 8767;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 8768;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_ZP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 8769;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 8770;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 8771;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 8772;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 8773;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 8774;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 8775;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 8776;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 8777;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 8778;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 8779;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 8780;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 8781;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 8782;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 8783;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 8784;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XM, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 8785;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, true).ID: return 8786;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, true, false).ID: return 8787;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, true).ID: return 8788;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Left, false, false).ID: return 8789;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, true).ID: return 8790;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, true, false).ID: return 8791;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, true).ID: return 8792;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Upper, SpruceDoor::Hinge::Right, false, false).ID: return 8793;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, true).ID: return 8794;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, true, false).ID: return 8795;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, true).ID: return 8796;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Left, false, false).ID: return 8797;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, true).ID: return 8798;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, true, false).ID: return 8799;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, true).ID: return 8800;
+ case SpruceDoor::SpruceDoor(eBlockFace::BLOCK_FACE_XP, SpruceDoor::Half::Lower, SpruceDoor::Hinge::Right, false, false).ID: return 8801;
+ case SpruceFence::SpruceFence(true, true, true, true).ID: return 8580;
+ case SpruceFence::SpruceFence(true, true, true, false).ID: return 8581;
+ case SpruceFence::SpruceFence(true, true, false, true).ID: return 8584;
+ case SpruceFence::SpruceFence(true, true, false, false).ID: return 8585;
+ case SpruceFence::SpruceFence(true, false, true, true).ID: return 8588;
+ case SpruceFence::SpruceFence(true, false, true, false).ID: return 8589;
+ case SpruceFence::SpruceFence(true, false, false, true).ID: return 8592;
+ case SpruceFence::SpruceFence(true, false, false, false).ID: return 8593;
+ case SpruceFence::SpruceFence(false, true, true, true).ID: return 8596;
+ case SpruceFence::SpruceFence(false, true, true, false).ID: return 8597;
+ case SpruceFence::SpruceFence(false, true, false, true).ID: return 8600;
+ case SpruceFence::SpruceFence(false, true, false, false).ID: return 8601;
+ case SpruceFence::SpruceFence(false, false, true, true).ID: return 8604;
+ case SpruceFence::SpruceFence(false, false, true, false).ID: return 8605;
+ case SpruceFence::SpruceFence(false, false, false, true).ID: return 8608;
+ case SpruceFence::SpruceFence(false, false, false, false).ID: return 8609;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 8418;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 8419;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 8420;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 8421;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 8422;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 8423;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 8424;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 8425;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 8426;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 8427;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 8428;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 8429;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 8430;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 8431;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 8432;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 8433;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 8434;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 8435;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 8436;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 8437;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 8438;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 8439;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 8440;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 8441;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 8442;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 8443;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 8444;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 8445;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 8446;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 8447;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 8448;
+ case SpruceFenceGate::SpruceFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 8449;
+ case SpruceLeaves::SpruceLeaves(1, true).ID: return 159;
+ case SpruceLeaves::SpruceLeaves(1, false).ID: return 160;
+ case SpruceLeaves::SpruceLeaves(2, true).ID: return 161;
+ case SpruceLeaves::SpruceLeaves(2, false).ID: return 162;
+ case SpruceLeaves::SpruceLeaves(3, true).ID: return 163;
+ case SpruceLeaves::SpruceLeaves(3, false).ID: return 164;
+ case SpruceLeaves::SpruceLeaves(4, true).ID: return 165;
+ case SpruceLeaves::SpruceLeaves(4, false).ID: return 166;
+ case SpruceLeaves::SpruceLeaves(5, true).ID: return 167;
+ case SpruceLeaves::SpruceLeaves(5, false).ID: return 168;
+ case SpruceLeaves::SpruceLeaves(6, true).ID: return 169;
+ case SpruceLeaves::SpruceLeaves(6, false).ID: return 170;
+ case SpruceLeaves::SpruceLeaves(7, true).ID: return 171;
+ case SpruceLeaves::SpruceLeaves(7, false).ID: return 172;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::X).ID: return 76;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::Y).ID: return 77;
+ case SpruceLog::SpruceLog(SpruceLog::Axis::Z).ID: return 78;
+ case SprucePlanks::SprucePlanks().ID: return 16;
+ case SprucePressurePlate::SprucePressurePlate(true).ID: return 3875;
+ case SprucePressurePlate::SprucePressurePlate(false).ID: return 3876;
+ case SpruceSapling::SpruceSapling(0).ID: return 23;
+ case SpruceSapling::SpruceSapling(1).ID: return 24;
+ case SpruceSign::SpruceSign(0).ID: return 3414;
+ case SpruceSign::SpruceSign(1).ID: return 3416;
+ case SpruceSign::SpruceSign(2).ID: return 3418;
+ case SpruceSign::SpruceSign(3).ID: return 3420;
+ case SpruceSign::SpruceSign(4).ID: return 3422;
+ case SpruceSign::SpruceSign(5).ID: return 3424;
+ case SpruceSign::SpruceSign(6).ID: return 3426;
+ case SpruceSign::SpruceSign(7).ID: return 3428;
+ case SpruceSign::SpruceSign(8).ID: return 3430;
+ case SpruceSign::SpruceSign(9).ID: return 3432;
+ case SpruceSign::SpruceSign(10).ID: return 3434;
+ case SpruceSign::SpruceSign(11).ID: return 3436;
+ case SpruceSign::SpruceSign(12).ID: return 3438;
+ case SpruceSign::SpruceSign(13).ID: return 3440;
+ case SpruceSign::SpruceSign(14).ID: return 3442;
+ case SpruceSign::SpruceSign(15).ID: return 3444;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Top).ID: return 8307;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Bottom).ID: return 8309;
+ case SpruceSlab::SpruceSlab(SpruceSlab::Type::Double).ID: return 8311;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 5405;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 5407;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 5409;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 5411;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 5413;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 5415;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 5417;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 5419;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 5421;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 5423;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 5425;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 5427;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 5429;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 5431;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 5433;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 5435;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 5437;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 5439;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 5441;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_ZP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 5443;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 5445;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 5447;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 5449;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 5451;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 5453;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 5455;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 5457;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 5459;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 5461;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XM, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 5463;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::Straight).ID: return 5465;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerLeft).ID: return 5467;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::InnerRight).ID: return 5469;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterLeft).ID: return 5471;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Top, SpruceStairs::Shape::OuterRight).ID: return 5473;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::Straight).ID: return 5475;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerLeft).ID: return 5477;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::InnerRight).ID: return 5479;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterLeft).ID: return 5481;
+ case SpruceStairs::SpruceStairs(eBlockFace::BLOCK_FACE_XP, SpruceStairs::Half::Bottom, SpruceStairs::Shape::OuterRight).ID: return 5483;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, true).ID: return 4176;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, true, false).ID: return 4178;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, true).ID: return 4180;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Top, false, false).ID: return 4182;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, true).ID: return 4184;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, true, false).ID: return 4186;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, true).ID: return 4188;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZM, SpruceTrapdoor::Half::Bottom, false, false).ID: return 4190;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, true).ID: return 4192;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, true, false).ID: return 4194;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, true).ID: return 4196;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Top, false, false).ID: return 4198;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, true).ID: return 4200;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, true, false).ID: return 4202;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, true).ID: return 4204;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_ZP, SpruceTrapdoor::Half::Bottom, false, false).ID: return 4206;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, true).ID: return 4208;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, true, false).ID: return 4210;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, true).ID: return 4212;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Top, false, false).ID: return 4214;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, true).ID: return 4216;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, true, false).ID: return 4218;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, true).ID: return 4220;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XM, SpruceTrapdoor::Half::Bottom, false, false).ID: return 4222;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, true).ID: return 4224;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, true, false).ID: return 4226;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, true).ID: return 4228;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Top, false, false).ID: return 4230;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, true).ID: return 4232;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, true, false).ID: return 4234;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, true).ID: return 4236;
+ case SpruceTrapdoor::SpruceTrapdoor(eBlockFace::BLOCK_FACE_XP, SpruceTrapdoor::Half::Bottom, false, false).ID: return 4238;
+ case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 3744;
+ case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 3746;
+ case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 3748;
+ case SpruceWallSign::SpruceWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 3750;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::X).ID: return 112;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::Y).ID: return 113;
+ case SpruceWood::SpruceWood(SpruceWood::Axis::Z).ID: return 114;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZM).ID: return 1329;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XP).ID: return 1330;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_ZP).ID: return 1331;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_XM).ID: return 1332;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YP).ID: return 1333;
+ case StickyPiston::StickyPiston(true, eBlockFace::BLOCK_FACE_YM).ID: return 1334;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZM).ID: return 1335;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XP).ID: return 1336;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_ZP).ID: return 1337;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_XM).ID: return 1338;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YP).ID: return 1339;
+ case StickyPiston::StickyPiston(false, eBlockFace::BLOCK_FACE_YM).ID: return 1340;
+ case Stone::Stone().ID: return 1;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Top).ID: return 8379;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Bottom).ID: return 8381;
+ case StoneBrickSlab::StoneBrickSlab(StoneBrickSlab::Type::Double).ID: return 8383;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4933;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4935;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4937;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4939;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4941;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4943;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4945;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4947;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4949;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4951;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4953;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4955;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4957;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4959;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4961;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4963;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4965;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4967;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4969;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_ZP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4971;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4973;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4975;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4977;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4979;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 4981;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 4983;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 4985;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 4987;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 4989;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XM, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 4991;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::Straight).ID: return 4993;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerLeft).ID: return 4995;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::InnerRight).ID: return 4997;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterLeft).ID: return 4999;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Top, StoneBrickStairs::Shape::OuterRight).ID: return 5001;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::Straight).ID: return 5003;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerLeft).ID: return 5005;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::InnerRight).ID: return 5007;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterLeft).ID: return 5009;
+ case StoneBrickStairs::StoneBrickStairs(eBlockFace::BLOCK_FACE_XP, StoneBrickStairs::Half::Bottom, StoneBrickStairs::Shape::OuterRight).ID: return 5011;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 12490;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 12491;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall).ID: return 12492;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 12496;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 12497;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall).ID: return 12498;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 12502;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 12503;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall).ID: return 12504;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 12508;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 12509;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall).ID: return 12510;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None).ID: return 12514;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low).ID: return 12515;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall).ID: return 12516;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None).ID: return 12520;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low).ID: return 12521;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall).ID: return 12522;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 12526;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 12527;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall).ID: return 12528;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 12532;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 12533;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall).ID: return 12534;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 12538;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 12539;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall).ID: return 12540;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 12544;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 12545;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall).ID: return 12546;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None).ID: return 12550;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low).ID: return 12551;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall).ID: return 12552;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None).ID: return 12556;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low).ID: return 12557;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall).ID: return 12558;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 12562;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 12563;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall).ID: return 12564;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 12568;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 12569;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall).ID: return 12570;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 12574;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 12575;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall).ID: return 12576;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 12580;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 12581;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall).ID: return 12582;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None).ID: return 12586;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low).ID: return 12587;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall).ID: return 12588;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None).ID: return 12592;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low).ID: return 12593;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::None, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall).ID: return 12594;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 12598;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 12599;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall).ID: return 12600;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 12604;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 12605;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall).ID: return 12606;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 12610;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 12611;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall).ID: return 12612;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 12616;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 12617;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall).ID: return 12618;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None).ID: return 12622;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low).ID: return 12623;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall).ID: return 12624;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None).ID: return 12628;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low).ID: return 12629;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall).ID: return 12630;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 12634;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 12635;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall).ID: return 12636;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 12640;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 12641;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall).ID: return 12642;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 12646;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 12647;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall).ID: return 12648;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 12652;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 12653;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall).ID: return 12654;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None).ID: return 12658;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low).ID: return 12659;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall).ID: return 12660;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None).ID: return 12664;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low).ID: return 12665;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall).ID: return 12666;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 12670;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 12671;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall).ID: return 12672;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 12676;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 12677;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall).ID: return 12678;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 12682;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 12683;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall).ID: return 12684;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 12688;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 12689;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall).ID: return 12690;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None).ID: return 12694;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low).ID: return 12695;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall).ID: return 12696;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None).ID: return 12700;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low).ID: return 12701;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Low, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall).ID: return 12702;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 12706;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 12707;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall).ID: return 12708;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 12712;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 12713;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall).ID: return 12714;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 12718;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 12719;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall).ID: return 12720;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 12724;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 12725;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall).ID: return 12726;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None).ID: return 12730;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low).ID: return 12731;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall).ID: return 12732;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None).ID: return 12736;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low).ID: return 12737;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::None, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall).ID: return 12738;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 12742;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 12743;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall).ID: return 12744;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 12748;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 12749;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall).ID: return 12750;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 12754;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 12755;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall).ID: return 12756;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 12760;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 12761;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall).ID: return 12762;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None).ID: return 12766;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low).ID: return 12767;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall).ID: return 12768;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None).ID: return 12772;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low).ID: return 12773;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Low, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall).ID: return 12774;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::None).ID: return 12778;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Low).ID: return 12779;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, true, StoneBrickWall::West::Tall).ID: return 12780;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::None).ID: return 12784;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Low).ID: return 12785;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::None, false, StoneBrickWall::West::Tall).ID: return 12786;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::None).ID: return 12790;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Low).ID: return 12791;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, true, StoneBrickWall::West::Tall).ID: return 12792;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::None).ID: return 12796;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Low).ID: return 12797;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Low, false, StoneBrickWall::West::Tall).ID: return 12798;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::None).ID: return 12802;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Low).ID: return 12803;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, true, StoneBrickWall::West::Tall).ID: return 12804;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::None).ID: return 12808;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Low).ID: return 12809;
+ case StoneBrickWall::StoneBrickWall(StoneBrickWall::East::Tall, StoneBrickWall::North::Tall, StoneBrickWall::South::Tall, false, StoneBrickWall::West::Tall).ID: return 12810;
+ case StoneBricks::StoneBricks().ID: return 4495;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3897;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3898;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3899;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3900;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 3901;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 3902;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 3903;
+ case StoneButton::StoneButton(StoneButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 3904;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3905;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3906;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3907;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3908;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 3909;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 3910;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 3911;
+ case StoneButton::StoneButton(StoneButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 3912;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 3913;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 3914;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 3915;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 3916;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 3917;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 3918;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 3919;
+ case StoneButton::StoneButton(StoneButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 3920;
+ case StonePressurePlate::StonePressurePlate(true).ID: return 3807;
+ case StonePressurePlate::StonePressurePlate(false).ID: return 3808;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Top).ID: return 8337;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Bottom).ID: return 8339;
+ case StoneSlab::StoneSlab(StoneSlab::Type::Double).ID: return 8341;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::Straight).ID: return 10150;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft).ID: return 10152;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight).ID: return 10154;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft).ID: return 10156;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight).ID: return 10158;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight).ID: return 10160;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft).ID: return 10162;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight).ID: return 10164;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft).ID: return 10166;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight).ID: return 10168;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::Straight).ID: return 10170;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft).ID: return 10172;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight).ID: return 10174;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft).ID: return 10176;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight).ID: return 10178;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight).ID: return 10180;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft).ID: return 10182;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight).ID: return 10184;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft).ID: return 10186;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_ZP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight).ID: return 10188;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::Straight).ID: return 10190;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft).ID: return 10192;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight).ID: return 10194;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft).ID: return 10196;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight).ID: return 10198;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight).ID: return 10200;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft).ID: return 10202;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight).ID: return 10204;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft).ID: return 10206;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XM, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight).ID: return 10208;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::Straight).ID: return 10210;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerLeft).ID: return 10212;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::InnerRight).ID: return 10214;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterLeft).ID: return 10216;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Top, StoneStairs::Shape::OuterRight).ID: return 10218;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::Straight).ID: return 10220;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerLeft).ID: return 10222;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::InnerRight).ID: return 10224;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterLeft).ID: return 10226;
+ case StoneStairs::StoneStairs(eBlockFace::BLOCK_FACE_XP, StoneStairs::Half::Bottom, StoneStairs::Shape::OuterRight).ID: return 10228;
+ case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZM).ID: return 14850;
+ case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_ZP).ID: return 14851;
+ case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XM).ID: return 14852;
+ case Stonecutter::Stonecutter(eBlockFace::BLOCK_FACE_XP).ID: return 14853;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::X).ID: return 100;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Y).ID: return 101;
+ case StrippedAcaciaLog::StrippedAcaciaLog(StrippedAcaciaLog::Axis::Z).ID: return 102;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::X).ID: return 139;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Y).ID: return 140;
+ case StrippedAcaciaWood::StrippedAcaciaWood(StrippedAcaciaWood::Axis::Z).ID: return 141;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::X).ID: return 94;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Y).ID: return 95;
+ case StrippedBirchLog::StrippedBirchLog(StrippedBirchLog::Axis::Z).ID: return 96;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::X).ID: return 133;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Y).ID: return 134;
+ case StrippedBirchWood::StrippedBirchWood(StrippedBirchWood::Axis::Z).ID: return 135;
+ case StrippedCrimsonHyphae::StrippedCrimsonHyphae(StrippedCrimsonHyphae::Axis::X).ID: return 14984;
+ case StrippedCrimsonHyphae::StrippedCrimsonHyphae(StrippedCrimsonHyphae::Axis::Y).ID: return 14985;
+ case StrippedCrimsonHyphae::StrippedCrimsonHyphae(StrippedCrimsonHyphae::Axis::Z).ID: return 14986;
+ case StrippedCrimsonStem::StrippedCrimsonStem(StrippedCrimsonStem::Axis::X).ID: return 14978;
+ case StrippedCrimsonStem::StrippedCrimsonStem(StrippedCrimsonStem::Axis::Y).ID: return 14979;
+ case StrippedCrimsonStem::StrippedCrimsonStem(StrippedCrimsonStem::Axis::Z).ID: return 14980;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::X).ID: return 103;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Y).ID: return 104;
+ case StrippedDarkOakLog::StrippedDarkOakLog(StrippedDarkOakLog::Axis::Z).ID: return 105;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::X).ID: return 142;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Y).ID: return 143;
+ case StrippedDarkOakWood::StrippedDarkOakWood(StrippedDarkOakWood::Axis::Z).ID: return 144;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::X).ID: return 97;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Y).ID: return 98;
+ case StrippedJungleLog::StrippedJungleLog(StrippedJungleLog::Axis::Z).ID: return 99;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::X).ID: return 136;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Y).ID: return 137;
+ case StrippedJungleWood::StrippedJungleWood(StrippedJungleWood::Axis::Z).ID: return 138;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::X).ID: return 106;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Y).ID: return 107;
+ case StrippedOakLog::StrippedOakLog(StrippedOakLog::Axis::Z).ID: return 108;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::X).ID: return 127;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Y).ID: return 128;
+ case StrippedOakWood::StrippedOakWood(StrippedOakWood::Axis::Z).ID: return 129;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::X).ID: return 91;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Y).ID: return 92;
+ case StrippedSpruceLog::StrippedSpruceLog(StrippedSpruceLog::Axis::Z).ID: return 93;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::X).ID: return 130;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Y).ID: return 131;
+ case StrippedSpruceWood::StrippedSpruceWood(StrippedSpruceWood::Axis::Z).ID: return 132;
+ case StrippedWarpedHyphae::StrippedWarpedHyphae(StrippedWarpedHyphae::Axis::X).ID: return 14967;
+ case StrippedWarpedHyphae::StrippedWarpedHyphae(StrippedWarpedHyphae::Axis::Y).ID: return 14968;
+ case StrippedWarpedHyphae::StrippedWarpedHyphae(StrippedWarpedHyphae::Axis::Z).ID: return 14969;
+ case StrippedWarpedStem::StrippedWarpedStem(StrippedWarpedStem::Axis::X).ID: return 14961;
+ case StrippedWarpedStem::StrippedWarpedStem(StrippedWarpedStem::Axis::Y).ID: return 14962;
+ case StrippedWarpedStem::StrippedWarpedStem(StrippedWarpedStem::Axis::Z).ID: return 14963;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Save).ID: return 15735;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Load).ID: return 15736;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Corner).ID: return 15737;
+ case StructureBlock::StructureBlock(StructureBlock::Mode::Data).ID: return 15738;
+ case StructureVoid::StructureVoid().ID: return 9259;
+ case SugarCane::SugarCane(0).ID: return 3948;
+ case SugarCane::SugarCane(1).ID: return 3949;
+ case SugarCane::SugarCane(2).ID: return 3950;
+ case SugarCane::SugarCane(3).ID: return 3951;
+ case SugarCane::SugarCane(4).ID: return 3952;
+ case SugarCane::SugarCane(5).ID: return 3953;
+ case SugarCane::SugarCane(6).ID: return 3954;
+ case SugarCane::SugarCane(7).ID: return 3955;
+ case SugarCane::SugarCane(8).ID: return 3956;
+ case SugarCane::SugarCane(9).ID: return 3957;
+ case SugarCane::SugarCane(10).ID: return 3958;
+ case SugarCane::SugarCane(11).ID: return 3959;
+ case SugarCane::SugarCane(12).ID: return 3960;
+ case SugarCane::SugarCane(13).ID: return 3961;
+ case SugarCane::SugarCane(14).ID: return 3962;
+ case SugarCane::SugarCane(15).ID: return 3963;
+ case Sunflower::Sunflower(Sunflower::Half::Upper).ID: return 7885;
+ case Sunflower::Sunflower(Sunflower::Half::Lower).ID: return 7886;
+ case SweetBerryBush::SweetBerryBush(0).ID: return 14954;
+ case SweetBerryBush::SweetBerryBush(1).ID: return 14955;
+ case SweetBerryBush::SweetBerryBush(2).ID: return 14956;
+ case SweetBerryBush::SweetBerryBush(3).ID: return 14957;
+ case TNT::TNT(true).ID: return 1430;
+ case TNT::TNT(false).ID: return 1431;
+ case TallGrass::TallGrass(TallGrass::Half::Upper).ID: return 7893;
+ case TallGrass::TallGrass(TallGrass::Half::Lower).ID: return 7894;
+ case TallSeagrass::TallSeagrass(TallSeagrass::Half::Upper).ID: return 1346;
+ case TallSeagrass::TallSeagrass(TallSeagrass::Half::Lower).ID: return 1347;
+ case Target::Target(0).ID: return 15760;
+ case Target::Target(1).ID: return 15761;
+ case Target::Target(2).ID: return 15762;
+ case Target::Target(3).ID: return 15763;
+ case Target::Target(4).ID: return 15764;
+ case Target::Target(5).ID: return 15765;
+ case Target::Target(6).ID: return 15766;
+ case Target::Target(7).ID: return 15767;
+ case Target::Target(8).ID: return 15768;
+ case Target::Target(9).ID: return 15769;
+ case Target::Target(10).ID: return 15770;
+ case Target::Target(11).ID: return 15771;
+ case Target::Target(12).ID: return 15772;
+ case Target::Target(13).ID: return 15773;
+ case Target::Target(14).ID: return 15774;
+ case Target::Target(15).ID: return 15775;
+ case Terracotta::Terracotta().ID: return 7882;
+ case Torch::Torch().ID: return 1435;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Single).ID: return 6623;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Left).ID: return 6625;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZM, TrappedChest::Type::Right).ID: return 6627;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Single).ID: return 6629;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Left).ID: return 6631;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_ZP, TrappedChest::Type::Right).ID: return 6633;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Single).ID: return 6635;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Left).ID: return 6637;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XM, TrappedChest::Type::Right).ID: return 6639;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Single).ID: return 6641;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Left).ID: return 6643;
+ case TrappedChest::TrappedChest(eBlockFace::BLOCK_FACE_XP, TrappedChest::Type::Right).ID: return 6645;
+ case Tripwire::Tripwire(true, true, true, true, true, true, true).ID: return 5275;
+ case Tripwire::Tripwire(true, true, true, true, true, true, false).ID: return 5276;
+ case Tripwire::Tripwire(true, true, true, true, true, false, true).ID: return 5277;
+ case Tripwire::Tripwire(true, true, true, true, true, false, false).ID: return 5278;
+ case Tripwire::Tripwire(true, true, true, true, false, true, true).ID: return 5279;
+ case Tripwire::Tripwire(true, true, true, true, false, true, false).ID: return 5280;
+ case Tripwire::Tripwire(true, true, true, true, false, false, true).ID: return 5281;
+ case Tripwire::Tripwire(true, true, true, true, false, false, false).ID: return 5282;
+ case Tripwire::Tripwire(true, true, true, false, true, true, true).ID: return 5283;
+ case Tripwire::Tripwire(true, true, true, false, true, true, false).ID: return 5284;
+ case Tripwire::Tripwire(true, true, true, false, true, false, true).ID: return 5285;
+ case Tripwire::Tripwire(true, true, true, false, true, false, false).ID: return 5286;
+ case Tripwire::Tripwire(true, true, true, false, false, true, true).ID: return 5287;
+ case Tripwire::Tripwire(true, true, true, false, false, true, false).ID: return 5288;
+ case Tripwire::Tripwire(true, true, true, false, false, false, true).ID: return 5289;
+ case Tripwire::Tripwire(true, true, true, false, false, false, false).ID: return 5290;
+ case Tripwire::Tripwire(true, true, false, true, true, true, true).ID: return 5291;
+ case Tripwire::Tripwire(true, true, false, true, true, true, false).ID: return 5292;
+ case Tripwire::Tripwire(true, true, false, true, true, false, true).ID: return 5293;
+ case Tripwire::Tripwire(true, true, false, true, true, false, false).ID: return 5294;
+ case Tripwire::Tripwire(true, true, false, true, false, true, true).ID: return 5295;
+ case Tripwire::Tripwire(true, true, false, true, false, true, false).ID: return 5296;
+ case Tripwire::Tripwire(true, true, false, true, false, false, true).ID: return 5297;
+ case Tripwire::Tripwire(true, true, false, true, false, false, false).ID: return 5298;
+ case Tripwire::Tripwire(true, true, false, false, true, true, true).ID: return 5299;
+ case Tripwire::Tripwire(true, true, false, false, true, true, false).ID: return 5300;
+ case Tripwire::Tripwire(true, true, false, false, true, false, true).ID: return 5301;
+ case Tripwire::Tripwire(true, true, false, false, true, false, false).ID: return 5302;
+ case Tripwire::Tripwire(true, true, false, false, false, true, true).ID: return 5303;
+ case Tripwire::Tripwire(true, true, false, false, false, true, false).ID: return 5304;
+ case Tripwire::Tripwire(true, true, false, false, false, false, true).ID: return 5305;
+ case Tripwire::Tripwire(true, true, false, false, false, false, false).ID: return 5306;
+ case Tripwire::Tripwire(true, false, true, true, true, true, true).ID: return 5307;
+ case Tripwire::Tripwire(true, false, true, true, true, true, false).ID: return 5308;
+ case Tripwire::Tripwire(true, false, true, true, true, false, true).ID: return 5309;
+ case Tripwire::Tripwire(true, false, true, true, true, false, false).ID: return 5310;
+ case Tripwire::Tripwire(true, false, true, true, false, true, true).ID: return 5311;
+ case Tripwire::Tripwire(true, false, true, true, false, true, false).ID: return 5312;
+ case Tripwire::Tripwire(true, false, true, true, false, false, true).ID: return 5313;
+ case Tripwire::Tripwire(true, false, true, true, false, false, false).ID: return 5314;
+ case Tripwire::Tripwire(true, false, true, false, true, true, true).ID: return 5315;
+ case Tripwire::Tripwire(true, false, true, false, true, true, false).ID: return 5316;
+ case Tripwire::Tripwire(true, false, true, false, true, false, true).ID: return 5317;
+ case Tripwire::Tripwire(true, false, true, false, true, false, false).ID: return 5318;
+ case Tripwire::Tripwire(true, false, true, false, false, true, true).ID: return 5319;
+ case Tripwire::Tripwire(true, false, true, false, false, true, false).ID: return 5320;
+ case Tripwire::Tripwire(true, false, true, false, false, false, true).ID: return 5321;
+ case Tripwire::Tripwire(true, false, true, false, false, false, false).ID: return 5322;
+ case Tripwire::Tripwire(true, false, false, true, true, true, true).ID: return 5323;
+ case Tripwire::Tripwire(true, false, false, true, true, true, false).ID: return 5324;
+ case Tripwire::Tripwire(true, false, false, true, true, false, true).ID: return 5325;
+ case Tripwire::Tripwire(true, false, false, true, true, false, false).ID: return 5326;
+ case Tripwire::Tripwire(true, false, false, true, false, true, true).ID: return 5327;
+ case Tripwire::Tripwire(true, false, false, true, false, true, false).ID: return 5328;
+ case Tripwire::Tripwire(true, false, false, true, false, false, true).ID: return 5329;
+ case Tripwire::Tripwire(true, false, false, true, false, false, false).ID: return 5330;
+ case Tripwire::Tripwire(true, false, false, false, true, true, true).ID: return 5331;
+ case Tripwire::Tripwire(true, false, false, false, true, true, false).ID: return 5332;
+ case Tripwire::Tripwire(true, false, false, false, true, false, true).ID: return 5333;
+ case Tripwire::Tripwire(true, false, false, false, true, false, false).ID: return 5334;
+ case Tripwire::Tripwire(true, false, false, false, false, true, true).ID: return 5335;
+ case Tripwire::Tripwire(true, false, false, false, false, true, false).ID: return 5336;
+ case Tripwire::Tripwire(true, false, false, false, false, false, true).ID: return 5337;
+ case Tripwire::Tripwire(true, false, false, false, false, false, false).ID: return 5338;
+ case Tripwire::Tripwire(false, true, true, true, true, true, true).ID: return 5339;
+ case Tripwire::Tripwire(false, true, true, true, true, true, false).ID: return 5340;
+ case Tripwire::Tripwire(false, true, true, true, true, false, true).ID: return 5341;
+ case Tripwire::Tripwire(false, true, true, true, true, false, false).ID: return 5342;
+ case Tripwire::Tripwire(false, true, true, true, false, true, true).ID: return 5343;
+ case Tripwire::Tripwire(false, true, true, true, false, true, false).ID: return 5344;
+ case Tripwire::Tripwire(false, true, true, true, false, false, true).ID: return 5345;
+ case Tripwire::Tripwire(false, true, true, true, false, false, false).ID: return 5346;
+ case Tripwire::Tripwire(false, true, true, false, true, true, true).ID: return 5347;
+ case Tripwire::Tripwire(false, true, true, false, true, true, false).ID: return 5348;
+ case Tripwire::Tripwire(false, true, true, false, true, false, true).ID: return 5349;
+ case Tripwire::Tripwire(false, true, true, false, true, false, false).ID: return 5350;
+ case Tripwire::Tripwire(false, true, true, false, false, true, true).ID: return 5351;
+ case Tripwire::Tripwire(false, true, true, false, false, true, false).ID: return 5352;
+ case Tripwire::Tripwire(false, true, true, false, false, false, true).ID: return 5353;
+ case Tripwire::Tripwire(false, true, true, false, false, false, false).ID: return 5354;
+ case Tripwire::Tripwire(false, true, false, true, true, true, true).ID: return 5355;
+ case Tripwire::Tripwire(false, true, false, true, true, true, false).ID: return 5356;
+ case Tripwire::Tripwire(false, true, false, true, true, false, true).ID: return 5357;
+ case Tripwire::Tripwire(false, true, false, true, true, false, false).ID: return 5358;
+ case Tripwire::Tripwire(false, true, false, true, false, true, true).ID: return 5359;
+ case Tripwire::Tripwire(false, true, false, true, false, true, false).ID: return 5360;
+ case Tripwire::Tripwire(false, true, false, true, false, false, true).ID: return 5361;
+ case Tripwire::Tripwire(false, true, false, true, false, false, false).ID: return 5362;
+ case Tripwire::Tripwire(false, true, false, false, true, true, true).ID: return 5363;
+ case Tripwire::Tripwire(false, true, false, false, true, true, false).ID: return 5364;
+ case Tripwire::Tripwire(false, true, false, false, true, false, true).ID: return 5365;
+ case Tripwire::Tripwire(false, true, false, false, true, false, false).ID: return 5366;
+ case Tripwire::Tripwire(false, true, false, false, false, true, true).ID: return 5367;
+ case Tripwire::Tripwire(false, true, false, false, false, true, false).ID: return 5368;
+ case Tripwire::Tripwire(false, true, false, false, false, false, true).ID: return 5369;
+ case Tripwire::Tripwire(false, true, false, false, false, false, false).ID: return 5370;
+ case Tripwire::Tripwire(false, false, true, true, true, true, true).ID: return 5371;
+ case Tripwire::Tripwire(false, false, true, true, true, true, false).ID: return 5372;
+ case Tripwire::Tripwire(false, false, true, true, true, false, true).ID: return 5373;
+ case Tripwire::Tripwire(false, false, true, true, true, false, false).ID: return 5374;
+ case Tripwire::Tripwire(false, false, true, true, false, true, true).ID: return 5375;
+ case Tripwire::Tripwire(false, false, true, true, false, true, false).ID: return 5376;
+ case Tripwire::Tripwire(false, false, true, true, false, false, true).ID: return 5377;
+ case Tripwire::Tripwire(false, false, true, true, false, false, false).ID: return 5378;
+ case Tripwire::Tripwire(false, false, true, false, true, true, true).ID: return 5379;
+ case Tripwire::Tripwire(false, false, true, false, true, true, false).ID: return 5380;
+ case Tripwire::Tripwire(false, false, true, false, true, false, true).ID: return 5381;
+ case Tripwire::Tripwire(false, false, true, false, true, false, false).ID: return 5382;
+ case Tripwire::Tripwire(false, false, true, false, false, true, true).ID: return 5383;
+ case Tripwire::Tripwire(false, false, true, false, false, true, false).ID: return 5384;
+ case Tripwire::Tripwire(false, false, true, false, false, false, true).ID: return 5385;
+ case Tripwire::Tripwire(false, false, true, false, false, false, false).ID: return 5386;
+ case Tripwire::Tripwire(false, false, false, true, true, true, true).ID: return 5387;
+ case Tripwire::Tripwire(false, false, false, true, true, true, false).ID: return 5388;
+ case Tripwire::Tripwire(false, false, false, true, true, false, true).ID: return 5389;
+ case Tripwire::Tripwire(false, false, false, true, true, false, false).ID: return 5390;
+ case Tripwire::Tripwire(false, false, false, true, false, true, true).ID: return 5391;
+ case Tripwire::Tripwire(false, false, false, true, false, true, false).ID: return 5392;
+ case Tripwire::Tripwire(false, false, false, true, false, false, true).ID: return 5393;
+ case Tripwire::Tripwire(false, false, false, true, false, false, false).ID: return 5394;
+ case Tripwire::Tripwire(false, false, false, false, true, true, true).ID: return 5395;
+ case Tripwire::Tripwire(false, false, false, false, true, true, false).ID: return 5396;
+ case Tripwire::Tripwire(false, false, false, false, true, false, true).ID: return 5397;
+ case Tripwire::Tripwire(false, false, false, false, true, false, false).ID: return 5398;
+ case Tripwire::Tripwire(false, false, false, false, false, true, true).ID: return 5399;
+ case Tripwire::Tripwire(false, false, false, false, false, true, false).ID: return 5400;
+ case Tripwire::Tripwire(false, false, false, false, false, false, true).ID: return 5401;
+ case Tripwire::Tripwire(false, false, false, false, false, false, false).ID: return 5402;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5259;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5260;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5261;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5262;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, true).ID: return 5263;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XM, false).ID: return 5264;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, true).ID: return 5265;
+ case TripwireHook::TripwireHook(true, eBlockFace::BLOCK_FACE_XP, false).ID: return 5266;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, true).ID: return 5267;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZM, false).ID: return 5268;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, true).ID: return 5269;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_ZP, false).ID: return 5270;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, true).ID: return 5271;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XM, false).ID: return 5272;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, true).ID: return 5273;
+ case TripwireHook::TripwireHook(false, eBlockFace::BLOCK_FACE_XP, false).ID: return 5274;
+ case TubeCoral::TubeCoral().ID: return 9531;
+ case TubeCoralBlock::TubeCoralBlock().ID: return 9515;
+ case TubeCoralFan::TubeCoralFan().ID: return 9551;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZM).ID: return 9601;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_ZP).ID: return 9603;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XM).ID: return 9605;
+ case TubeCoralWallFan::TubeCoralWallFan(eBlockFace::BLOCK_FACE_XP).ID: return 9607;
+ case TurtleEgg::TurtleEgg(1, 0).ID: return 9498;
+ case TurtleEgg::TurtleEgg(1, 1).ID: return 9499;
+ case TurtleEgg::TurtleEgg(1, 2).ID: return 9500;
+ case TurtleEgg::TurtleEgg(2, 0).ID: return 9501;
+ case TurtleEgg::TurtleEgg(2, 1).ID: return 9502;
+ case TurtleEgg::TurtleEgg(2, 2).ID: return 9503;
+ case TurtleEgg::TurtleEgg(3, 0).ID: return 9504;
+ case TurtleEgg::TurtleEgg(3, 1).ID: return 9505;
+ case TurtleEgg::TurtleEgg(3, 2).ID: return 9506;
+ case TurtleEgg::TurtleEgg(4, 0).ID: return 9507;
+ case TurtleEgg::TurtleEgg(4, 1).ID: return 9508;
+ case TurtleEgg::TurtleEgg(4, 2).ID: return 9509;
+ case TwistingVines::TwistingVines(0).ID: return 15017;
+ case TwistingVines::TwistingVines(1).ID: return 15018;
+ case TwistingVines::TwistingVines(2).ID: return 15019;
+ case TwistingVines::TwistingVines(3).ID: return 15020;
+ case TwistingVines::TwistingVines(4).ID: return 15021;
+ case TwistingVines::TwistingVines(5).ID: return 15022;
+ case TwistingVines::TwistingVines(6).ID: return 15023;
+ case TwistingVines::TwistingVines(7).ID: return 15024;
+ case TwistingVines::TwistingVines(8).ID: return 15025;
+ case TwistingVines::TwistingVines(9).ID: return 15026;
+ case TwistingVines::TwistingVines(10).ID: return 15027;
+ case TwistingVines::TwistingVines(11).ID: return 15028;
+ case TwistingVines::TwistingVines(12).ID: return 15029;
+ case TwistingVines::TwistingVines(13).ID: return 15030;
+ case TwistingVines::TwistingVines(14).ID: return 15031;
+ case TwistingVines::TwistingVines(15).ID: return 15032;
+ case TwistingVines::TwistingVines(16).ID: return 15033;
+ case TwistingVines::TwistingVines(17).ID: return 15034;
+ case TwistingVines::TwistingVines(18).ID: return 15035;
+ case TwistingVines::TwistingVines(19).ID: return 15036;
+ case TwistingVines::TwistingVines(20).ID: return 15037;
+ case TwistingVines::TwistingVines(21).ID: return 15038;
+ case TwistingVines::TwistingVines(22).ID: return 15039;
+ case TwistingVines::TwistingVines(23).ID: return 15040;
+ case TwistingVines::TwistingVines(24).ID: return 15041;
+ case TwistingVines::TwistingVines(25).ID: return 15042;
+ case TwistingVinesPlant::TwistingVinesPlant().ID: return 15043;
+ case Vine::Vine(true, true, true, true, true).ID: return 4788;
+ case Vine::Vine(true, true, true, true, false).ID: return 4789;
+ case Vine::Vine(true, true, true, false, true).ID: return 4790;
+ case Vine::Vine(true, true, true, false, false).ID: return 4791;
+ case Vine::Vine(true, true, false, true, true).ID: return 4792;
+ case Vine::Vine(true, true, false, true, false).ID: return 4793;
+ case Vine::Vine(true, true, false, false, true).ID: return 4794;
+ case Vine::Vine(true, true, false, false, false).ID: return 4795;
+ case Vine::Vine(true, false, true, true, true).ID: return 4796;
+ case Vine::Vine(true, false, true, true, false).ID: return 4797;
+ case Vine::Vine(true, false, true, false, true).ID: return 4798;
+ case Vine::Vine(true, false, true, false, false).ID: return 4799;
+ case Vine::Vine(true, false, false, true, true).ID: return 4800;
+ case Vine::Vine(true, false, false, true, false).ID: return 4801;
+ case Vine::Vine(true, false, false, false, true).ID: return 4802;
+ case Vine::Vine(true, false, false, false, false).ID: return 4803;
+ case Vine::Vine(false, true, true, true, true).ID: return 4804;
+ case Vine::Vine(false, true, true, true, false).ID: return 4805;
+ case Vine::Vine(false, true, true, false, true).ID: return 4806;
+ case Vine::Vine(false, true, true, false, false).ID: return 4807;
+ case Vine::Vine(false, true, false, true, true).ID: return 4808;
+ case Vine::Vine(false, true, false, true, false).ID: return 4809;
+ case Vine::Vine(false, true, false, false, true).ID: return 4810;
+ case Vine::Vine(false, true, false, false, false).ID: return 4811;
+ case Vine::Vine(false, false, true, true, true).ID: return 4812;
+ case Vine::Vine(false, false, true, true, false).ID: return 4813;
+ case Vine::Vine(false, false, true, false, true).ID: return 4814;
+ case Vine::Vine(false, false, true, false, false).ID: return 4815;
+ case Vine::Vine(false, false, false, true, true).ID: return 4816;
+ case Vine::Vine(false, false, false, true, false).ID: return 4817;
+ case Vine::Vine(false, false, false, false, true).ID: return 4818;
+ case Vine::Vine(false, false, false, false, false).ID: return 4819;
+ case VoidAir::VoidAir().ID: return 9665;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZM).ID: return 1436;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_ZP).ID: return 1437;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XM).ID: return 1438;
+ case WallTorch::WallTorch(eBlockFace::BLOCK_FACE_XP).ID: return 1439;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, true).ID: return 15503;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_ZM, false).ID: return 15504;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, true).ID: return 15505;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_ZP, false).ID: return 15506;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, true).ID: return 15507;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_XM, false).ID: return 15508;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, true).ID: return 15509;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Floor, eBlockFace::BLOCK_FACE_XP, false).ID: return 15510;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, true).ID: return 15511;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_ZM, false).ID: return 15512;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, true).ID: return 15513;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_ZP, false).ID: return 15514;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, true).ID: return 15515;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_XM, false).ID: return 15516;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, true).ID: return 15517;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Wall, eBlockFace::BLOCK_FACE_XP, false).ID: return 15518;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, true).ID: return 15519;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZM, false).ID: return 15520;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, true).ID: return 15521;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_ZP, false).ID: return 15522;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, true).ID: return 15523;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XM, false).ID: return 15524;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, true).ID: return 15525;
+ case WarpedButton::WarpedButton(WarpedButton::Face::Ceiling, eBlockFace::BLOCK_FACE_XP, false).ID: return 15526;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, true).ID: return 15591;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, false).ID: return 15592;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, true).ID: return 15593;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, false).ID: return 15594;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, true).ID: return 15595;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, false).ID: return 15596;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, true).ID: return 15597;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, false).ID: return 15598;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, true).ID: return 15599;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, false).ID: return 15600;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, true).ID: return 15601;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, false).ID: return 15602;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, true).ID: return 15603;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, false).ID: return 15604;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, true).ID: return 15605;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, false).ID: return 15606;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, true).ID: return 15607;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, false).ID: return 15608;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, true).ID: return 15609;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, false).ID: return 15610;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, true).ID: return 15611;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, false).ID: return 15612;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, true).ID: return 15613;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, false).ID: return 15614;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, true).ID: return 15615;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, false).ID: return 15616;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, true).ID: return 15617;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, false).ID: return 15618;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, true).ID: return 15619;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, false).ID: return 15620;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, true).ID: return 15621;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_ZP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, false).ID: return 15622;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, true).ID: return 15623;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, false).ID: return 15624;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, true).ID: return 15625;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, false).ID: return 15626;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, true).ID: return 15627;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, false).ID: return 15628;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, true).ID: return 15629;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, false).ID: return 15630;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, true).ID: return 15631;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, false).ID: return 15632;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, true).ID: return 15633;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, false).ID: return 15634;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, true).ID: return 15635;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, false).ID: return 15636;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, true).ID: return 15637;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XM, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, false).ID: return 15638;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, true).ID: return 15639;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, true, false).ID: return 15640;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, true).ID: return 15641;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Left, false, false).ID: return 15642;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, true).ID: return 15643;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, true, false).ID: return 15644;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, true).ID: return 15645;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Upper, WarpedDoor::Hinge::Right, false, false).ID: return 15646;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, true).ID: return 15647;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, true, false).ID: return 15648;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, true).ID: return 15649;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Left, false, false).ID: return 15650;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, true).ID: return 15651;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, true, false).ID: return 15652;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, true).ID: return 15653;
+ case WarpedDoor::WarpedDoor(eBlockFace::BLOCK_FACE_XP, WarpedDoor::Half::Lower, WarpedDoor::Hinge::Right, false, false).ID: return 15654;
+ case WarpedFence::WarpedFence(true, true, true, true).ID: return 15097;
+ case WarpedFence::WarpedFence(true, true, true, false).ID: return 15098;
+ case WarpedFence::WarpedFence(true, true, false, true).ID: return 15101;
+ case WarpedFence::WarpedFence(true, true, false, false).ID: return 15102;
+ case WarpedFence::WarpedFence(true, false, true, true).ID: return 15105;
+ case WarpedFence::WarpedFence(true, false, true, false).ID: return 15106;
+ case WarpedFence::WarpedFence(true, false, false, true).ID: return 15109;
+ case WarpedFence::WarpedFence(true, false, false, false).ID: return 15110;
+ case WarpedFence::WarpedFence(false, true, true, true).ID: return 15113;
+ case WarpedFence::WarpedFence(false, true, true, false).ID: return 15114;
+ case WarpedFence::WarpedFence(false, true, false, true).ID: return 15117;
+ case WarpedFence::WarpedFence(false, true, false, false).ID: return 15118;
+ case WarpedFence::WarpedFence(false, false, true, true).ID: return 15121;
+ case WarpedFence::WarpedFence(false, false, true, false).ID: return 15122;
+ case WarpedFence::WarpedFence(false, false, false, true).ID: return 15125;
+ case WarpedFence::WarpedFence(false, false, false, false).ID: return 15126;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, true).ID: return 15287;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, true, true, false).ID: return 15288;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, true).ID: return 15289;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, true, false, false).ID: return 15290;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, true).ID: return 15291;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, false, true, false).ID: return 15292;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, true).ID: return 15293;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZM, false, false, false).ID: return 15294;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, true).ID: return 15295;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, true, true, false).ID: return 15296;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, true).ID: return 15297;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, true, false, false).ID: return 15298;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, true).ID: return 15299;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, false, true, false).ID: return 15300;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, true).ID: return 15301;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_ZP, false, false, false).ID: return 15302;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, true).ID: return 15303;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, true, true, false).ID: return 15304;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, true).ID: return 15305;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, true, false, false).ID: return 15306;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, true).ID: return 15307;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, false, true, false).ID: return 15308;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, true).ID: return 15309;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XM, false, false, false).ID: return 15310;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, true).ID: return 15311;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, true, true, false).ID: return 15312;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, true).ID: return 15313;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, true, false, false).ID: return 15314;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, true).ID: return 15315;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, false, true, false).ID: return 15316;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, true).ID: return 15317;
+ case WarpedFenceGate::WarpedFenceGate(eBlockFace::BLOCK_FACE_XP, false, false, false).ID: return 15318;
+ case WarpedFungus::WarpedFungus().ID: return 14971;
+ case WarpedHyphae::WarpedHyphae(WarpedHyphae::Axis::X).ID: return 14964;
+ case WarpedHyphae::WarpedHyphae(WarpedHyphae::Axis::Y).ID: return 14965;
+ case WarpedHyphae::WarpedHyphae(WarpedHyphae::Axis::Z).ID: return 14966;
+ case WarpedNylium::WarpedNylium().ID: return 14970;
+ case WarpedPlanks::WarpedPlanks().ID: return 15046;
+ case WarpedPressurePlate::WarpedPressurePlate(true).ID: return 15061;
+ case WarpedPressurePlate::WarpedPressurePlate(false).ID: return 15062;
+ case WarpedRoots::WarpedRoots().ID: return 14973;
+ case WarpedSign::WarpedSign(0).ID: return 15688;
+ case WarpedSign::WarpedSign(1).ID: return 15690;
+ case WarpedSign::WarpedSign(2).ID: return 15692;
+ case WarpedSign::WarpedSign(3).ID: return 15694;
+ case WarpedSign::WarpedSign(4).ID: return 15696;
+ case WarpedSign::WarpedSign(5).ID: return 15698;
+ case WarpedSign::WarpedSign(6).ID: return 15700;
+ case WarpedSign::WarpedSign(7).ID: return 15702;
+ case WarpedSign::WarpedSign(8).ID: return 15704;
+ case WarpedSign::WarpedSign(9).ID: return 15706;
+ case WarpedSign::WarpedSign(10).ID: return 15708;
+ case WarpedSign::WarpedSign(11).ID: return 15710;
+ case WarpedSign::WarpedSign(12).ID: return 15712;
+ case WarpedSign::WarpedSign(13).ID: return 15714;
+ case WarpedSign::WarpedSign(14).ID: return 15716;
+ case WarpedSign::WarpedSign(15).ID: return 15718;
+ case WarpedSlab::WarpedSlab(WarpedSlab::Type::Top).ID: return 15054;
+ case WarpedSlab::WarpedSlab(WarpedSlab::Type::Bottom).ID: return 15056;
+ case WarpedSlab::WarpedSlab(WarpedSlab::Type::Double).ID: return 15058;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::Straight).ID: return 15400;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerLeft).ID: return 15402;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerRight).ID: return 15404;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterLeft).ID: return 15406;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterRight).ID: return 15408;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::Straight).ID: return 15410;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerLeft).ID: return 15412;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerRight).ID: return 15414;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterLeft).ID: return 15416;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterRight).ID: return 15418;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::Straight).ID: return 15420;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerLeft).ID: return 15422;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerRight).ID: return 15424;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterLeft).ID: return 15426;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterRight).ID: return 15428;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::Straight).ID: return 15430;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerLeft).ID: return 15432;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerRight).ID: return 15434;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterLeft).ID: return 15436;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_ZP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterRight).ID: return 15438;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::Straight).ID: return 15440;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerLeft).ID: return 15442;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerRight).ID: return 15444;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterLeft).ID: return 15446;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterRight).ID: return 15448;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::Straight).ID: return 15450;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerLeft).ID: return 15452;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerRight).ID: return 15454;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterLeft).ID: return 15456;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XM, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterRight).ID: return 15458;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::Straight).ID: return 15460;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerLeft).ID: return 15462;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::InnerRight).ID: return 15464;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterLeft).ID: return 15466;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Top, WarpedStairs::Shape::OuterRight).ID: return 15468;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::Straight).ID: return 15470;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerLeft).ID: return 15472;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::InnerRight).ID: return 15474;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterLeft).ID: return 15476;
+ case WarpedStairs::WarpedStairs(eBlockFace::BLOCK_FACE_XP, WarpedStairs::Half::Bottom, WarpedStairs::Shape::OuterRight).ID: return 15478;
+ case WarpedStem::WarpedStem(WarpedStem::Axis::X).ID: return 14958;
+ case WarpedStem::WarpedStem(WarpedStem::Axis::Y).ID: return 14959;
+ case WarpedStem::WarpedStem(WarpedStem::Axis::Z).ID: return 14960;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Top, true, true).ID: return 15192;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Top, true, false).ID: return 15194;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Top, false, true).ID: return 15196;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Top, false, false).ID: return 15198;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Bottom, true, true).ID: return 15200;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Bottom, true, false).ID: return 15202;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Bottom, false, true).ID: return 15204;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZM, WarpedTrapdoor::Half::Bottom, false, false).ID: return 15206;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Top, true, true).ID: return 15208;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Top, true, false).ID: return 15210;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Top, false, true).ID: return 15212;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Top, false, false).ID: return 15214;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Bottom, true, true).ID: return 15216;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Bottom, true, false).ID: return 15218;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Bottom, false, true).ID: return 15220;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_ZP, WarpedTrapdoor::Half::Bottom, false, false).ID: return 15222;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Top, true, true).ID: return 15224;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Top, true, false).ID: return 15226;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Top, false, true).ID: return 15228;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Top, false, false).ID: return 15230;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Bottom, true, true).ID: return 15232;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Bottom, true, false).ID: return 15234;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Bottom, false, true).ID: return 15236;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XM, WarpedTrapdoor::Half::Bottom, false, false).ID: return 15238;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Top, true, true).ID: return 15240;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Top, true, false).ID: return 15242;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Top, false, true).ID: return 15244;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Top, false, false).ID: return 15246;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Bottom, true, true).ID: return 15248;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Bottom, true, false).ID: return 15250;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Bottom, false, true).ID: return 15252;
+ case WarpedTrapdoor::WarpedTrapdoor(eBlockFace::BLOCK_FACE_XP, WarpedTrapdoor::Half::Bottom, false, false).ID: return 15254;
+ case WarpedWallSign::WarpedWallSign(eBlockFace::BLOCK_FACE_ZM).ID: return 15728;
+ case WarpedWallSign::WarpedWallSign(eBlockFace::BLOCK_FACE_ZP).ID: return 15730;
+ case WarpedWallSign::WarpedWallSign(eBlockFace::BLOCK_FACE_XM).ID: return 15732;
+ case WarpedWallSign::WarpedWallSign(eBlockFace::BLOCK_FACE_XP).ID: return 15734;
+ case WarpedWartBlock::WarpedWartBlock().ID: return 14972;
+ case Water::Water(0).ID: return 34;
+ case Water::Water(1).ID: return 35;
+ case Water::Water(2).ID: return 36;
+ case Water::Water(3).ID: return 37;
+ case Water::Water(4).ID: return 38;
+ case Water::Water(5).ID: return 39;
+ case Water::Water(6).ID: return 40;
+ case Water::Water(7).ID: return 41;
+ case Water::Water(8).ID: return 42;
+ case Water::Water(9).ID: return 43;
+ case Water::Water(10).ID: return 44;
+ case Water::Water(11).ID: return 45;
+ case Water::Water(12).ID: return 46;
+ case Water::Water(13).ID: return 47;
+ case Water::Water(14).ID: return 48;
+ case Water::Water(15).ID: return 49;
+ case WeepingVines::WeepingVines(0).ID: return 14990;
+ case WeepingVines::WeepingVines(1).ID: return 14991;
+ case WeepingVines::WeepingVines(2).ID: return 14992;
+ case WeepingVines::WeepingVines(3).ID: return 14993;
+ case WeepingVines::WeepingVines(4).ID: return 14994;
+ case WeepingVines::WeepingVines(5).ID: return 14995;
+ case WeepingVines::WeepingVines(6).ID: return 14996;
+ case WeepingVines::WeepingVines(7).ID: return 14997;
+ case WeepingVines::WeepingVines(8).ID: return 14998;
+ case WeepingVines::WeepingVines(9).ID: return 14999;
+ case WeepingVines::WeepingVines(10).ID: return 15000;
+ case WeepingVines::WeepingVines(11).ID: return 15001;
+ case WeepingVines::WeepingVines(12).ID: return 15002;
+ case WeepingVines::WeepingVines(13).ID: return 15003;
+ case WeepingVines::WeepingVines(14).ID: return 15004;
+ case WeepingVines::WeepingVines(15).ID: return 15005;
+ case WeepingVines::WeepingVines(16).ID: return 15006;
+ case WeepingVines::WeepingVines(17).ID: return 15007;
+ case WeepingVines::WeepingVines(18).ID: return 15008;
+ case WeepingVines::WeepingVines(19).ID: return 15009;
+ case WeepingVines::WeepingVines(20).ID: return 15010;
+ case WeepingVines::WeepingVines(21).ID: return 15011;
+ case WeepingVines::WeepingVines(22).ID: return 15012;
+ case WeepingVines::WeepingVines(23).ID: return 15013;
+ case WeepingVines::WeepingVines(24).ID: return 15014;
+ case WeepingVines::WeepingVines(25).ID: return 15015;
+ case WeepingVinesPlant::WeepingVinesPlant().ID: return 15016;
+ case WetSponge::WetSponge().ID: return 230;
+ case Wheat::Wheat(0).ID: return 3357;
+ case Wheat::Wheat(1).ID: return 3358;
+ case Wheat::Wheat(2).ID: return 3359;
+ case Wheat::Wheat(3).ID: return 3360;
+ case Wheat::Wheat(4).ID: return 3361;
+ case Wheat::Wheat(5).ID: return 3362;
+ case Wheat::Wheat(6).ID: return 3363;
+ case Wheat::Wheat(7).ID: return 3364;
+ case WhiteBanner::WhiteBanner(0).ID: return 7897;
+ case WhiteBanner::WhiteBanner(1).ID: return 7898;
+ case WhiteBanner::WhiteBanner(2).ID: return 7899;
+ case WhiteBanner::WhiteBanner(3).ID: return 7900;
+ case WhiteBanner::WhiteBanner(4).ID: return 7901;
+ case WhiteBanner::WhiteBanner(5).ID: return 7902;
+ case WhiteBanner::WhiteBanner(6).ID: return 7903;
+ case WhiteBanner::WhiteBanner(7).ID: return 7904;
+ case WhiteBanner::WhiteBanner(8).ID: return 7905;
+ case WhiteBanner::WhiteBanner(9).ID: return 7906;
+ case WhiteBanner::WhiteBanner(10).ID: return 7907;
+ case WhiteBanner::WhiteBanner(11).ID: return 7908;
+ case WhiteBanner::WhiteBanner(12).ID: return 7909;
+ case WhiteBanner::WhiteBanner(13).ID: return 7910;
+ case WhiteBanner::WhiteBanner(14).ID: return 7911;
+ case WhiteBanner::WhiteBanner(15).ID: return 7912;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Head).ID: return 1049;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, true, WhiteBed::Part::Foot).ID: return 1050;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Head).ID: return 1051;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZM, false, WhiteBed::Part::Foot).ID: return 1052;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Head).ID: return 1053;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, true, WhiteBed::Part::Foot).ID: return 1054;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Head).ID: return 1055;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_ZP, false, WhiteBed::Part::Foot).ID: return 1056;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Head).ID: return 1057;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, true, WhiteBed::Part::Foot).ID: return 1058;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Head).ID: return 1059;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XM, false, WhiteBed::Part::Foot).ID: return 1060;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Head).ID: return 1061;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, true, WhiteBed::Part::Foot).ID: return 1062;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Head).ID: return 1063;
+ case WhiteBed::WhiteBed(eBlockFace::BLOCK_FACE_XP, false, WhiteBed::Part::Foot).ID: return 1064;
+ case WhiteCarpet::WhiteCarpet().ID: return 7866;
+ case WhiteConcrete::WhiteConcrete().ID: return 9438;
+ case WhiteConcretePowder::WhiteConcretePowder().ID: return 9454;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9374;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9375;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9376;
+ case WhiteGlazedTerracotta::WhiteGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9377;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9278;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9279;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9280;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9281;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9282;
+ case WhiteShulkerBox::WhiteShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9283;
+ case WhiteStainedGlass::WhiteStainedGlass().ID: return 4095;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, true).ID: return 6865;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, true, false).ID: return 6866;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, true).ID: return 6869;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, true, false, false).ID: return 6870;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, true).ID: return 6873;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, true, false).ID: return 6874;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, true).ID: return 6877;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(true, false, false, false).ID: return 6878;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, true).ID: return 6881;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, true, false).ID: return 6882;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, true).ID: return 6885;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, true, false, false).ID: return 6886;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, true).ID: return 6889;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, true, false).ID: return 6890;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, true).ID: return 6893;
+ case WhiteStainedGlassPane::WhiteStainedGlassPane(false, false, false, false).ID: return 6894;
+ case WhiteTerracotta::WhiteTerracotta().ID: return 6847;
+ case WhiteTulip::WhiteTulip().ID: return 1419;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8153;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8154;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8155;
+ case WhiteWallBanner::WhiteWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8156;
+ case WhiteWool::WhiteWool().ID: return 1384;
+ case WitherRose::WitherRose().ID: return 1423;
+ case WitherSkeletonSkull::WitherSkeletonSkull(0).ID: return 6510;
+ case WitherSkeletonSkull::WitherSkeletonSkull(1).ID: return 6511;
+ case WitherSkeletonSkull::WitherSkeletonSkull(2).ID: return 6512;
+ case WitherSkeletonSkull::WitherSkeletonSkull(3).ID: return 6513;
+ case WitherSkeletonSkull::WitherSkeletonSkull(4).ID: return 6514;
+ case WitherSkeletonSkull::WitherSkeletonSkull(5).ID: return 6515;
+ case WitherSkeletonSkull::WitherSkeletonSkull(6).ID: return 6516;
+ case WitherSkeletonSkull::WitherSkeletonSkull(7).ID: return 6517;
+ case WitherSkeletonSkull::WitherSkeletonSkull(8).ID: return 6518;
+ case WitherSkeletonSkull::WitherSkeletonSkull(9).ID: return 6519;
+ case WitherSkeletonSkull::WitherSkeletonSkull(10).ID: return 6520;
+ case WitherSkeletonSkull::WitherSkeletonSkull(11).ID: return 6521;
+ case WitherSkeletonSkull::WitherSkeletonSkull(12).ID: return 6522;
+ case WitherSkeletonSkull::WitherSkeletonSkull(13).ID: return 6523;
+ case WitherSkeletonSkull::WitherSkeletonSkull(14).ID: return 6524;
+ case WitherSkeletonSkull::WitherSkeletonSkull(15).ID: return 6525;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZM).ID: return 6526;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_ZP).ID: return 6527;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XM).ID: return 6528;
+ case WitherSkeletonWallSkull::WitherSkeletonWallSkull(eBlockFace::BLOCK_FACE_XP).ID: return 6529;
+ case YellowBanner::YellowBanner(0).ID: return 7961;
+ case YellowBanner::YellowBanner(1).ID: return 7962;
+ case YellowBanner::YellowBanner(2).ID: return 7963;
+ case YellowBanner::YellowBanner(3).ID: return 7964;
+ case YellowBanner::YellowBanner(4).ID: return 7965;
+ case YellowBanner::YellowBanner(5).ID: return 7966;
+ case YellowBanner::YellowBanner(6).ID: return 7967;
+ case YellowBanner::YellowBanner(7).ID: return 7968;
+ case YellowBanner::YellowBanner(8).ID: return 7969;
+ case YellowBanner::YellowBanner(9).ID: return 7970;
+ case YellowBanner::YellowBanner(10).ID: return 7971;
+ case YellowBanner::YellowBanner(11).ID: return 7972;
+ case YellowBanner::YellowBanner(12).ID: return 7973;
+ case YellowBanner::YellowBanner(13).ID: return 7974;
+ case YellowBanner::YellowBanner(14).ID: return 7975;
+ case YellowBanner::YellowBanner(15).ID: return 7976;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Head).ID: return 1113;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, true, YellowBed::Part::Foot).ID: return 1114;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Head).ID: return 1115;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZM, false, YellowBed::Part::Foot).ID: return 1116;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Head).ID: return 1117;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, true, YellowBed::Part::Foot).ID: return 1118;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Head).ID: return 1119;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_ZP, false, YellowBed::Part::Foot).ID: return 1120;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Head).ID: return 1121;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, true, YellowBed::Part::Foot).ID: return 1122;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Head).ID: return 1123;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XM, false, YellowBed::Part::Foot).ID: return 1124;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Head).ID: return 1125;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, true, YellowBed::Part::Foot).ID: return 1126;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Head).ID: return 1127;
+ case YellowBed::YellowBed(eBlockFace::BLOCK_FACE_XP, false, YellowBed::Part::Foot).ID: return 1128;
+ case YellowCarpet::YellowCarpet().ID: return 7870;
+ case YellowConcrete::YellowConcrete().ID: return 9442;
+ case YellowConcretePowder::YellowConcretePowder().ID: return 9458;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZM).ID: return 9390;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_ZP).ID: return 9391;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XM).ID: return 9392;
+ case YellowGlazedTerracotta::YellowGlazedTerracotta(eBlockFace::BLOCK_FACE_XP).ID: return 9393;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZM).ID: return 9302;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XP).ID: return 9303;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_ZP).ID: return 9304;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_XM).ID: return 9305;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YP).ID: return 9306;
+ case YellowShulkerBox::YellowShulkerBox(eBlockFace::BLOCK_FACE_YM).ID: return 9307;
+ case YellowStainedGlass::YellowStainedGlass().ID: return 4099;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, true).ID: return 6993;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, true, false).ID: return 6994;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, true).ID: return 6997;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, true, false, false).ID: return 6998;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, true).ID: return 7001;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, true, false).ID: return 7002;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, true).ID: return 7005;
+ case YellowStainedGlassPane::YellowStainedGlassPane(true, false, false, false).ID: return 7006;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, true).ID: return 7009;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, true, false).ID: return 7010;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, true).ID: return 7013;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, true, false, false).ID: return 7014;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, true).ID: return 7017;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, true, false).ID: return 7018;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, true).ID: return 7021;
+ case YellowStainedGlassPane::YellowStainedGlassPane(false, false, false, false).ID: return 7022;
+ case YellowTerracotta::YellowTerracotta().ID: return 6851;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZM).ID: return 8169;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_ZP).ID: return 8170;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XM).ID: return 8171;
+ case YellowWallBanner::YellowWallBanner(eBlockFace::BLOCK_FACE_XP).ID: return 8172;
+ case YellowWool::YellowWool().ID: return 1388;
+ case ZombieHead::ZombieHead(0).ID: return 6530;
+ case ZombieHead::ZombieHead(1).ID: return 6531;
+ case ZombieHead::ZombieHead(2).ID: return 6532;
+ case ZombieHead::ZombieHead(3).ID: return 6533;
+ case ZombieHead::ZombieHead(4).ID: return 6534;
+ case ZombieHead::ZombieHead(5).ID: return 6535;
+ case ZombieHead::ZombieHead(6).ID: return 6536;
+ case ZombieHead::ZombieHead(7).ID: return 6537;
+ case ZombieHead::ZombieHead(8).ID: return 6538;
+ case ZombieHead::ZombieHead(9).ID: return 6539;
+ case ZombieHead::ZombieHead(10).ID: return 6540;
+ case ZombieHead::ZombieHead(11).ID: return 6541;
+ case ZombieHead::ZombieHead(12).ID: return 6542;
+ case ZombieHead::ZombieHead(13).ID: return 6543;
+ case ZombieHead::ZombieHead(14).ID: return 6544;
+ case ZombieHead::ZombieHead(15).ID: return 6545;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZM).ID: return 6546;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_ZP).ID: return 6547;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XM).ID: return 6548;
+ case ZombieWallHead::ZombieWallHead(eBlockFace::BLOCK_FACE_XP).ID: return 6549;
default: return 0;
}
}
- UInt32 FromItem(const Item ID)
+ UInt32 From(const Item ID)
{
switch (ID)
{
diff --git a/src/Protocol/Palettes/Palette_1_16.h b/src/Protocol/Palettes/Palette_1_16.h
index 404af2d90..6e6e632ce 100644
--- a/src/Protocol/Palettes/Palette_1_16.h
+++ b/src/Protocol/Palettes/Palette_1_16.h
@@ -1,12 +1,13 @@
#pragma once
-#include "../../Registries/Items.h"
-#include "../../Registries/Statistics.h"
+#include "BlockState.h"
+#include "Registries/Items.h"
+#include "Registries/Statistics.h"
namespace Palette_1_16
{
- UInt32 FromBlock(short ID);
- UInt32 FromItem(Item ID);
+ UInt32 From(BlockState Block);
+ UInt32 From(Item ID);
UInt32 From(Statistic ID);
Item ToItem(UInt32 ID);
}
diff --git a/src/Protocol/Palettes/Upgrade.cpp b/src/Protocol/Palettes/Upgrade.cpp
index 8805a7d31..7dbeea8e5 100644
--- a/src/Protocol/Palettes/Upgrade.cpp
+++ b/src/Protocol/Palettes/Upgrade.cpp
@@ -1,11 +1,11 @@
#include "Globals.h"
#include "Upgrade.h"
-#include "../../Registries/Blocks.h"
+#include "Registries/BlockStates.h"
namespace PaletteUpgrade
{
- short FromBlock(BLOCKTYPE Block, NIBBLETYPE Meta)
+ BlockState FromBlock(const BLOCKTYPE Block, const NIBBLETYPE Meta)
{
using namespace Block;
@@ -1705,7 +1705,7 @@ namespace PaletteUpgrade
}
}
- Item FromItem(short Item, short Damage)
+ Item FromItem(const short Item, const short Damage)
{
switch ((Item << 16) | Damage)
{
@@ -2516,7 +2516,7 @@ namespace PaletteUpgrade
}
}
- std::pair<short, short> ToItem(Item ID)
+ std::pair<short, short> ToItem(const Item ID)
{
switch (ID)
{
diff --git a/src/Protocol/Palettes/Upgrade.h b/src/Protocol/Palettes/Upgrade.h
index 4d75009ee..f0aa87095 100644
--- a/src/Protocol/Palettes/Upgrade.h
+++ b/src/Protocol/Palettes/Upgrade.h
@@ -1,11 +1,12 @@
#pragma once
-#include "../../BlockType.h"
-#include "../../Registries/Items.h"
+#include "ChunkDef.h"
+#include "BlockState.h"
+#include "Registries/Items.h"
namespace PaletteUpgrade
{
- short FromBlock(BLOCKTYPE Block, NIBBLETYPE Meta);
+ BlockState FromBlock(BLOCKTYPE Block, NIBBLETYPE Meta);
Item FromItem(short Item, short Damage);
std::pair<short, short> ToItem(Item ID);
}
diff --git a/src/Protocol/Protocol_1_13.cpp b/src/Protocol/Protocol_1_13.cpp
index 84185a258..251f8cf55 100644
--- a/src/Protocol/Protocol_1_13.cpp
+++ b/src/Protocol/Protocol_1_13.cpp
@@ -648,7 +648,7 @@ std::pair<short, short> cProtocol_1_13::GetItemFromProtocolID(UInt32 a_ProtocolI
UInt32 cProtocol_1_13::GetProtocolBlockType(BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta)
{
- return Palette_1_13::FromBlock(PaletteUpgrade::FromBlock(a_BlockType, a_Meta));
+ return Palette_1_13::From(PaletteUpgrade::FromBlock(a_BlockType, a_Meta));
}
@@ -657,7 +657,7 @@ UInt32 cProtocol_1_13::GetProtocolBlockType(BLOCKTYPE a_BlockType, NIBBLETYPE a_
UInt32 cProtocol_1_13::GetProtocolItemType(short a_ItemID, short a_ItemDamage)
{
- return Palette_1_13::FromItem(PaletteUpgrade::FromItem(a_ItemID, a_ItemDamage));
+ return Palette_1_13::From(PaletteUpgrade::FromItem(a_ItemID, a_ItemDamage));
}
@@ -1364,7 +1364,7 @@ std::pair<short, short> cProtocol_1_13_1::GetItemFromProtocolID(UInt32 a_Protoco
UInt32 cProtocol_1_13_1::GetProtocolBlockType(BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta)
{
- return Palette_1_13_1::FromBlock(PaletteUpgrade::FromBlock(a_BlockType, a_Meta));
+ return Palette_1_13_1::From(PaletteUpgrade::FromBlock(a_BlockType, a_Meta));
}
@@ -1373,7 +1373,7 @@ UInt32 cProtocol_1_13_1::GetProtocolBlockType(BLOCKTYPE a_BlockType, NIBBLETYPE
UInt32 cProtocol_1_13_1::GetProtocolItemType(short a_ItemID, short a_ItemDamage)
{
- return Palette_1_13_1::FromItem(PaletteUpgrade::FromItem(a_ItemID, a_ItemDamage));
+ return Palette_1_13_1::From(PaletteUpgrade::FromItem(a_ItemID, a_ItemDamage));
}
diff --git a/src/Protocol/Protocol_1_14.cpp b/src/Protocol/Protocol_1_14.cpp
index f93a044d7..47d2162c2 100644
--- a/src/Protocol/Protocol_1_14.cpp
+++ b/src/Protocol/Protocol_1_14.cpp
@@ -196,7 +196,7 @@ std::pair<short, short> cProtocol_1_14::GetItemFromProtocolID(UInt32 a_ProtocolI
UInt32 cProtocol_1_14::GetProtocolBlockType(BLOCKTYPE a_BlockType, NIBBLETYPE a_Meta)
{
- return Palette_1_14::FromBlock(PaletteUpgrade::FromBlock(a_BlockType, a_Meta));
+ return Palette_1_14::From(PaletteUpgrade::FromBlock(a_BlockType, a_Meta));
}
@@ -205,7 +205,7 @@ UInt32 cProtocol_1_14::GetProtocolBlockType(BLOCKTYPE a_BlockType, NIBBLETYPE a_
UInt32 cProtocol_1_14::GetProtocolItemType(short a_ItemID, short a_ItemDamage)
{
- return Palette_1_14::FromItem(PaletteUpgrade::FromItem(a_ItemID, a_ItemDamage));
+ return Palette_1_14::From(PaletteUpgrade::FromItem(a_ItemID, a_ItemDamage));
}
diff --git a/src/Registries/Blocks.cpp b/src/Registries/BlockStates.cpp
index 6862202cd..fe0176a34 100644
--- a/src/Registries/Blocks.cpp
+++ b/src/Registries/BlockStates.cpp
@@ -1,798 +1,25 @@
-#include "Blocks.h"
+#include "BlockStates.h"
namespace Block
{
- enum Type Type(short ID)
- {
- switch (ID)
- {
- case 6442:case 6443:case 6444:case 6445:case 6446:case 6447:case 6448:case 6449:case 6450:case 6451:case 6452:case 6453:case 6454:case 6455:case 6456:case 6457:case 6458:case 6459:case 6460:case 6461:case 6462:case 6463:case 6464:case 6465: return Type::AcaciaButton;
- case 8930:case 8931:case 8932:case 8933:case 8934:case 8935:case 8936:case 8937:case 8938:case 8939:case 8940:case 8941:case 8942:case 8943:case 8944:case 8945:case 8946:case 8947:case 8948:case 8949:case 8950:case 8951:case 8952:case 8953:case 8954:case 8955:case 8956:case 8957:case 8958:case 8959:case 8960:case 8961:case 8962:case 8963:case 8964:case 8965:case 8966:case 8967:case 8968:case 8969:case 8970:case 8971:case 8972:case 8973:case 8974:case 8975:case 8976:case 8977:case 8978:case 8979:case 8980:case 8981:case 8982:case 8983:case 8984:case 8985:case 8986:case 8987:case 8988:case 8989:case 8990:case 8991:case 8992:case 8993: return Type::AcaciaDoor;
- case 8676:case 8677:case 8680:case 8681:case 8684:case 8685:case 8688:case 8689:case 8692:case 8693:case 8696:case 8697:case 8700:case 8701:case 8704:case 8705: return Type::AcaciaFence;
- case 8514:case 8515:case 8516:case 8517:case 8518:case 8519:case 8520:case 8521:case 8522:case 8523:case 8524:case 8525:case 8526:case 8527:case 8528:case 8529:case 8530:case 8531:case 8532:case 8533:case 8534:case 8535:case 8536:case 8537:case 8538:case 8539:case 8540:case 8541:case 8542:case 8543:case 8544:case 8545: return Type::AcaciaFenceGate;
- case 201:case 202:case 203:case 204:case 205:case 206:case 207:case 208:case 209:case 210:case 211:case 212:case 213:case 214: return Type::AcaciaLeaves;
- case 85:case 86:case 87: return Type::AcaciaLog;
- case 19: return Type::AcaciaPlanks;
- case 3881:case 3882: return Type::AcaciaPressurePlate;
- case 29:case 30: return Type::AcaciaSapling;
- case 3478:case 3480:case 3482:case 3484:case 3486:case 3488:case 3490:case 3492:case 3494:case 3496:case 3498:case 3500:case 3502:case 3504:case 3506:case 3508: return Type::AcaciaSign;
- case 8325:case 8327:case 8329: return Type::AcaciaSlab;
- case 7376:case 7378:case 7380:case 7382:case 7384:case 7386:case 7388:case 7390:case 7392:case 7394:case 7396:case 7398:case 7400:case 7402:case 7404:case 7406:case 7408:case 7410:case 7412:case 7414:case 7416:case 7418:case 7420:case 7422:case 7424:case 7426:case 7428:case 7430:case 7432:case 7434:case 7436:case 7438:case 7440:case 7442:case 7444:case 7446:case 7448:case 7450:case 7452:case 7454: return Type::AcaciaStairs;
- case 4368:case 4370:case 4372:case 4374:case 4376:case 4378:case 4380:case 4382:case 4384:case 4386:case 4388:case 4390:case 4392:case 4394:case 4396:case 4398:case 4400:case 4402:case 4404:case 4406:case 4408:case 4410:case 4412:case 4414:case 4416:case 4418:case 4420:case 4422:case 4424:case 4426:case 4428:case 4430: return Type::AcaciaTrapdoor;
- case 3760:case 3762:case 3764:case 3766: return Type::AcaciaWallSign;
- case 121:case 122:case 123: return Type::AcaciaWood;
- case 6823:case 6824:case 6825:case 6826:case 6827:case 6828:case 6829:case 6830:case 6831:case 6832:case 6833:case 6834: return Type::ActivatorRail;
- case -0: return Type::Air;
- case 1415: return Type::Allium;
- case 15827: return Type::AncientDebris;
- case 6: return Type::Andesite;
- case 10844:case 10846:case 10848: return Type::AndesiteSlab;
- case 10470:case 10472:case 10474:case 10476:case 10478:case 10480:case 10482:case 10484:case 10486:case 10488:case 10490:case 10492:case 10494:case 10496:case 10498:case 10500:case 10502:case 10504:case 10506:case 10508:case 10510:case 10512:case 10514:case 10516:case 10518:case 10520:case 10522:case 10524:case 10526:case 10528:case 10530:case 10532:case 10534:case 10536:case 10538:case 10540:case 10542:case 10544:case 10546:case 10548: return Type::AndesiteStairs;
- case 13138:case 13139:case 13140:case 13144:case 13145:case 13146:case 13150:case 13151:case 13152:case 13156:case 13157:case 13158:case 13162:case 13163:case 13164:case 13168:case 13169:case 13170:case 13174:case 13175:case 13176:case 13180:case 13181:case 13182:case 13186:case 13187:case 13188:case 13192:case 13193:case 13194:case 13198:case 13199:case 13200:case 13204:case 13205:case 13206:case 13210:case 13211:case 13212:case 13216:case 13217:case 13218:case 13222:case 13223:case 13224:case 13228:case 13229:case 13230:case 13234:case 13235:case 13236:case 13240:case 13241:case 13242:case 13246:case 13247:case 13248:case 13252:case 13253:case 13254:case 13258:case 13259:case 13260:case 13264:case 13265:case 13266:case 13270:case 13271:case 13272:case 13276:case 13277:case 13278:case 13282:case 13283:case 13284:case 13288:case 13289:case 13290:case 13294:case 13295:case 13296:case 13300:case 13301:case 13302:case 13306:case 13307:case 13308:case 13312:case 13313:case 13314:case 13318:case 13319:case 13320:case 13324:case 13325:case 13326:case 13330:case 13331:case 13332:case 13336:case 13337:case 13338:case 13342:case 13343:case 13344:case 13348:case 13349:case 13350:case 13354:case 13355:case 13356:case 13360:case 13361:case 13362:case 13366:case 13367:case 13368:case 13372:case 13373:case 13374:case 13378:case 13379:case 13380:case 13384:case 13385:case 13386:case 13390:case 13391:case 13392:case 13396:case 13397:case 13398:case 13402:case 13403:case 13404:case 13408:case 13409:case 13410:case 13414:case 13415:case 13416:case 13420:case 13421:case 13422:case 13426:case 13427:case 13428:case 13432:case 13433:case 13434:case 13438:case 13439:case 13440:case 13444:case 13445:case 13446:case 13450:case 13451:case 13452:case 13456:case 13457:case 13458: return Type::AndesiteWall;
- case 6610:case 6611:case 6612:case 6613: return Type::Anvil;
- case 4768:case 4769:case 4770:case 4771: return Type::AttachedMelonStem;
- case 4764:case 4765:case 4766:case 4767: return Type::AttachedPumpkinStem;
- case 1416: return Type::AzureBluet;
- case 9652:case 9653:case 9654:case 9655:case 9656:case 9657:case 9658:case 9659:case 9660:case 9661:case 9662:case 9663: return Type::Bamboo;
- case 9651: return Type::BambooSapling;
- case 14791:case 14792:case 14793:case 14794:case 14795:case 14796:case 14797:case 14798:case 14799:case 14800:case 14801:case 14802: return Type::Barrel;
- case 7536: return Type::Barrier;
- case 4002:case 4003:case 4004: return Type::Basalt;
- case 5656: return Type::Beacon;
- case 33: return Type::Bedrock;
- case 15776:case 15777:case 15778:case 15779:case 15780:case 15781:case 15782:case 15783:case 15784:case 15785:case 15786:case 15787:case 15788:case 15789:case 15790:case 15791:case 15792:case 15793:case 15794:case 15795:case 15796:case 15797:case 15798:case 15799: return Type::BeeNest;
- case 15800:case 15801:case 15802:case 15803:case 15804:case 15805:case 15806:case 15807:case 15808:case 15809:case 15810:case 15811:case 15812:case 15813:case 15814:case 15815:case 15816:case 15817:case 15818:case 15819:case 15820:case 15821:case 15822:case 15823: return Type::Beehive;
- case 9219:case 9220:case 9221:case 9222: return Type::Beetroots;
- case 14854:case 14855:case 14856:case 14857:case 14858:case 14859:case 14860:case 14861:case 14862:case 14863:case 14864:case 14865:case 14866:case 14867:case 14868:case 14869:case 14870:case 14871:case 14872:case 14873:case 14874:case 14875:case 14876:case 14877:case 14878:case 14879:case 14880:case 14881:case 14882:case 14883:case 14884:case 14885: return Type::Bell;
- case 6394:case 6395:case 6396:case 6397:case 6398:case 6399:case 6400:case 6401:case 6402:case 6403:case 6404:case 6405:case 6406:case 6407:case 6408:case 6409:case 6410:case 6411:case 6412:case 6413:case 6414:case 6415:case 6416:case 6417: return Type::BirchButton;
- case 8802:case 8803:case 8804:case 8805:case 8806:case 8807:case 8808:case 8809:case 8810:case 8811:case 8812:case 8813:case 8814:case 8815:case 8816:case 8817:case 8818:case 8819:case 8820:case 8821:case 8822:case 8823:case 8824:case 8825:case 8826:case 8827:case 8828:case 8829:case 8830:case 8831:case 8832:case 8833:case 8834:case 8835:case 8836:case 8837:case 8838:case 8839:case 8840:case 8841:case 8842:case 8843:case 8844:case 8845:case 8846:case 8847:case 8848:case 8849:case 8850:case 8851:case 8852:case 8853:case 8854:case 8855:case 8856:case 8857:case 8858:case 8859:case 8860:case 8861:case 8862:case 8863:case 8864:case 8865: return Type::BirchDoor;
- case 8612:case 8613:case 8616:case 8617:case 8620:case 8621:case 8624:case 8625:case 8628:case 8629:case 8632:case 8633:case 8636:case 8637:case 8640:case 8641: return Type::BirchFence;
- case 8450:case 8451:case 8452:case 8453:case 8454:case 8455:case 8456:case 8457:case 8458:case 8459:case 8460:case 8461:case 8462:case 8463:case 8464:case 8465:case 8466:case 8467:case 8468:case 8469:case 8470:case 8471:case 8472:case 8473:case 8474:case 8475:case 8476:case 8477:case 8478:case 8479:case 8480:case 8481: return Type::BirchFenceGate;
- case 173:case 174:case 175:case 176:case 177:case 178:case 179:case 180:case 181:case 182:case 183:case 184:case 185:case 186: return Type::BirchLeaves;
- case 79:case 80:case 81: return Type::BirchLog;
- case 17: return Type::BirchPlanks;
- case 3877:case 3878: return Type::BirchPressurePlate;
- case 25:case 26: return Type::BirchSapling;
- case 3446:case 3448:case 3450:case 3452:case 3454:case 3456:case 3458:case 3460:case 3462:case 3464:case 3466:case 3468:case 3470:case 3472:case 3474:case 3476: return Type::BirchSign;
- case 8313:case 8315:case 8317: return Type::BirchSlab;
- case 5485:case 5487:case 5489:case 5491:case 5493:case 5495:case 5497:case 5499:case 5501:case 5503:case 5505:case 5507:case 5509:case 5511:case 5513:case 5515:case 5517:case 5519:case 5521:case 5523:case 5525:case 5527:case 5529:case 5531:case 5533:case 5535:case 5537:case 5539:case 5541:case 5543:case 5545:case 5547:case 5549:case 5551:case 5553:case 5555:case 5557:case 5559:case 5561:case 5563: return Type::BirchStairs;
- case 4240:case 4242:case 4244:case 4246:case 4248:case 4250:case 4252:case 4254:case 4256:case 4258:case 4260:case 4262:case 4264:case 4266:case 4268:case 4270:case 4272:case 4274:case 4276:case 4278:case 4280:case 4282:case 4284:case 4286:case 4288:case 4290:case 4292:case 4294:case 4296:case 4298:case 4300:case 4302: return Type::BirchTrapdoor;
- case 3752:case 3754:case 3756:case 3758: return Type::BirchWallSign;
- case 115:case 116:case 117: return Type::BirchWood;
- case 8137:case 8138:case 8139:case 8140:case 8141:case 8142:case 8143:case 8144:case 8145:case 8146:case 8147:case 8148:case 8149:case 8150:case 8151:case 8152: return Type::BlackBanner;
- case 1289:case 1290:case 1291:case 1292:case 1293:case 1294:case 1295:case 1296:case 1297:case 1298:case 1299:case 1300:case 1301:case 1302:case 1303:case 1304: return Type::BlackBed;
- case 7881: return Type::BlackCarpet;
- case 9453: return Type::BlackConcrete;
- case 9469: return Type::BlackConcretePowder;
- case 9434:case 9435:case 9436:case 9437: return Type::BlackGlazedTerracotta;
- case 9368:case 9369:case 9370:case 9371:case 9372:case 9373: return Type::BlackShulkerBox;
- case 4110: return Type::BlackStainedGlass;
- case 7345:case 7346:case 7349:case 7350:case 7353:case 7354:case 7357:case 7358:case 7361:case 7362:case 7365:case 7366:case 7369:case 7370:case 7373:case 7374: return Type::BlackStainedGlassPane;
- case 6862: return Type::BlackTerracotta;
- case 8213:case 8214:case 8215:case 8216: return Type::BlackWallBanner;
- case 1399: return Type::BlackWool;
- case 15839: return Type::Blackstone;
- case 16245:case 16247:case 16249: return Type::BlackstoneSlab;
- case 15841:case 15843:case 15845:case 15847:case 15849:case 15851:case 15853:case 15855:case 15857:case 15859:case 15861:case 15863:case 15865:case 15867:case 15869:case 15871:case 15873:case 15875:case 15877:case 15879:case 15881:case 15883:case 15885:case 15887:case 15889:case 15891:case 15893:case 15895:case 15897:case 15899:case 15901:case 15903:case 15905:case 15907:case 15909:case 15911:case 15913:case 15915:case 15917:case 15919: return Type::BlackstoneStairs;
- case 15923:case 15924:case 15925:case 15929:case 15930:case 15931:case 15935:case 15936:case 15937:case 15941:case 15942:case 15943:case 15947:case 15948:case 15949:case 15953:case 15954:case 15955:case 15959:case 15960:case 15961:case 15965:case 15966:case 15967:case 15971:case 15972:case 15973:case 15977:case 15978:case 15979:case 15983:case 15984:case 15985:case 15989:case 15990:case 15991:case 15995:case 15996:case 15997:case 16001:case 16002:case 16003:case 16007:case 16008:case 16009:case 16013:case 16014:case 16015:case 16019:case 16020:case 16021:case 16025:case 16026:case 16027:case 16031:case 16032:case 16033:case 16037:case 16038:case 16039:case 16043:case 16044:case 16045:case 16049:case 16050:case 16051:case 16055:case 16056:case 16057:case 16061:case 16062:case 16063:case 16067:case 16068:case 16069:case 16073:case 16074:case 16075:case 16079:case 16080:case 16081:case 16085:case 16086:case 16087:case 16091:case 16092:case 16093:case 16097:case 16098:case 16099:case 16103:case 16104:case 16105:case 16109:case 16110:case 16111:case 16115:case 16116:case 16117:case 16121:case 16122:case 16123:case 16127:case 16128:case 16129:case 16133:case 16134:case 16135:case 16139:case 16140:case 16141:case 16145:case 16146:case 16147:case 16151:case 16152:case 16153:case 16157:case 16158:case 16159:case 16163:case 16164:case 16165:case 16169:case 16170:case 16171:case 16175:case 16176:case 16177:case 16181:case 16182:case 16183:case 16187:case 16188:case 16189:case 16193:case 16194:case 16195:case 16199:case 16200:case 16201:case 16205:case 16206:case 16207:case 16211:case 16212:case 16213:case 16217:case 16218:case 16219:case 16223:case 16224:case 16225:case 16229:case 16230:case 16231:case 16235:case 16236:case 16237:case 16241:case 16242:case 16243: return Type::BlackstoneWall;
- case 14811:case 14812:case 14813:case 14814:case 14815:case 14816:case 14817:case 14818: return Type::BlastFurnace;
- case 8073:case 8074:case 8075:case 8076:case 8077:case 8078:case 8079:case 8080:case 8081:case 8082:case 8083:case 8084:case 8085:case 8086:case 8087:case 8088: return Type::BlueBanner;
- case 1225:case 1226:case 1227:case 1228:case 1229:case 1230:case 1231:case 1232:case 1233:case 1234:case 1235:case 1236:case 1237:case 1238:case 1239:case 1240: return Type::BlueBed;
- case 7877: return Type::BlueCarpet;
- case 9449: return Type::BlueConcrete;
- case 9465: return Type::BlueConcretePowder;
- case 9418:case 9419:case 9420:case 9421: return Type::BlueGlazedTerracotta;
- case 9648: return Type::BlueIce;
- case 1414: return Type::BlueOrchid;
- case 9344:case 9345:case 9346:case 9347:case 9348:case 9349: return Type::BlueShulkerBox;
- case 4106: return Type::BlueStainedGlass;
- case 7217:case 7218:case 7221:case 7222:case 7225:case 7226:case 7229:case 7230:case 7233:case 7234:case 7237:case 7238:case 7241:case 7242:case 7245:case 7246: return Type::BlueStainedGlassPane;
- case 6858: return Type::BlueTerracotta;
- case 8197:case 8198:case 8199:case 8200: return Type::BlueWallBanner;
- case 1395: return Type::BlueWool;
- case 9256:case 9257:case 9258: return Type::BoneBlock;
- case 1432: return Type::Bookshelf;
- case 9533: return Type::BrainCoral;
- case 9516: return Type::BrainCoralBlock;
- case 9553: return Type::BrainCoralFan;
- case 9609:case 9611:case 9613:case 9615: return Type::BrainCoralWallFan;
- case 5133:case 5134:case 5135:case 5136:case 5137:case 5138:case 5139:case 5140: return Type::BrewingStand;
- case 8373:case 8375:case 8377: return Type::BrickSlab;
- case 4853:case 4855:case 4857:case 4859:case 4861:case 4863:case 4865:case 4867:case 4869:case 4871:case 4873:case 4875:case 4877:case 4879:case 4881:case 4883:case 4885:case 4887:case 4889:case 4891:case 4893:case 4895:case 4897:case 4899:case 4901:case 4903:case 4905:case 4907:case 4909:case 4911:case 4913:case 4915:case 4917:case 4919:case 4921:case 4923:case 4925:case 4927:case 4929:case 4931: return Type::BrickStairs;
- case 10870:case 10871:case 10872:case 10876:case 10877:case 10878:case 10882:case 10883:case 10884:case 10888:case 10889:case 10890:case 10894:case 10895:case 10896:case 10900:case 10901:case 10902:case 10906:case 10907:case 10908:case 10912:case 10913:case 10914:case 10918:case 10919:case 10920:case 10924:case 10925:case 10926:case 10930:case 10931:case 10932:case 10936:case 10937:case 10938:case 10942:case 10943:case 10944:case 10948:case 10949:case 10950:case 10954:case 10955:case 10956:case 10960:case 10961:case 10962:case 10966:case 10967:case 10968:case 10972:case 10973:case 10974:case 10978:case 10979:case 10980:case 10984:case 10985:case 10986:case 10990:case 10991:case 10992:case 10996:case 10997:case 10998:case 11002:case 11003:case 11004:case 11008:case 11009:case 11010:case 11014:case 11015:case 11016:case 11020:case 11021:case 11022:case 11026:case 11027:case 11028:case 11032:case 11033:case 11034:case 11038:case 11039:case 11040:case 11044:case 11045:case 11046:case 11050:case 11051:case 11052:case 11056:case 11057:case 11058:case 11062:case 11063:case 11064:case 11068:case 11069:case 11070:case 11074:case 11075:case 11076:case 11080:case 11081:case 11082:case 11086:case 11087:case 11088:case 11092:case 11093:case 11094:case 11098:case 11099:case 11100:case 11104:case 11105:case 11106:case 11110:case 11111:case 11112:case 11116:case 11117:case 11118:case 11122:case 11123:case 11124:case 11128:case 11129:case 11130:case 11134:case 11135:case 11136:case 11140:case 11141:case 11142:case 11146:case 11147:case 11148:case 11152:case 11153:case 11154:case 11158:case 11159:case 11160:case 11164:case 11165:case 11166:case 11170:case 11171:case 11172:case 11176:case 11177:case 11178:case 11182:case 11183:case 11184:case 11188:case 11189:case 11190: return Type::BrickWall;
- case 1429: return Type::Bricks;
- case 8089:case 8090:case 8091:case 8092:case 8093:case 8094:case 8095:case 8096:case 8097:case 8098:case 8099:case 8100:case 8101:case 8102:case 8103:case 8104: return Type::BrownBanner;
- case 1241:case 1242:case 1243:case 1244:case 1245:case 1246:case 1247:case 1248:case 1249:case 1250:case 1251:case 1252:case 1253:case 1254:case 1255:case 1256: return Type::BrownBed;
- case 7878: return Type::BrownCarpet;
- case 9450: return Type::BrownConcrete;
- case 9466: return Type::BrownConcretePowder;
- case 9422:case 9423:case 9424:case 9425: return Type::BrownGlazedTerracotta;
- case 1425: return Type::BrownMushroom;
- case 4505:case 4506:case 4507:case 4508:case 4509:case 4510:case 4511:case 4512:case 4513:case 4514:case 4515:case 4516:case 4517:case 4518:case 4519:case 4520:case 4521:case 4522:case 4523:case 4524:case 4525:case 4526:case 4527:case 4528:case 4529:case 4530:case 4531:case 4532:case 4533:case 4534:case 4535:case 4536:case 4537:case 4538:case 4539:case 4540:case 4541:case 4542:case 4543:case 4544:case 4545:case 4546:case 4547:case 4548:case 4549:case 4550:case 4551:case 4552:case 4553:case 4554:case 4555:case 4556:case 4557:case 4558:case 4559:case 4560:case 4561:case 4562:case 4563:case 4564:case 4565:case 4566:case 4567:case 4568: return Type::BrownMushroomBlock;
- case 9350:case 9351:case 9352:case 9353:case 9354:case 9355: return Type::BrownShulkerBox;
- case 4107: return Type::BrownStainedGlass;
- case 7249:case 7250:case 7253:case 7254:case 7257:case 7258:case 7261:case 7262:case 7265:case 7266:case 7269:case 7270:case 7273:case 7274:case 7277:case 7278: return Type::BrownStainedGlassPane;
- case 6859: return Type::BrownTerracotta;
- case 8201:case 8202:case 8203:case 8204: return Type::BrownWallBanner;
- case 1396: return Type::BrownWool;
- case 9667:case 9668: return Type::BubbleColumn;
- case 9535: return Type::BubbleCoral;
- case 9517: return Type::BubbleCoralBlock;
- case 9555: return Type::BubbleCoralFan;
- case 9617:case 9619:case 9621:case 9623: return Type::BubbleCoralWallFan;
- case 3931:case 3932:case 3933:case 3934:case 3935:case 3936:case 3937:case 3938:case 3939:case 3940:case 3941:case 3942:case 3943:case 3944:case 3945:case 3946: return Type::Cactus;
- case 4024:case 4025:case 4026:case 4027:case 4028:case 4029:case 4030: return Type::Cake;
- case 14891:case 14893:case 14895:case 14897:case 14899:case 14901:case 14903:case 14905:case 14907:case 14909:case 14911:case 14913:case 14915:case 14917:case 14919:case 14921: return Type::Campfire;
- case 6330:case 6331:case 6332:case 6333:case 6334:case 6335:case 6336:case 6337: return Type::Carrots;
- case 14819: return Type::CartographyTable;
- case 4016:case 4017:case 4018:case 4019: return Type::CarvedPumpkin;
- case 5141:case 5142:case 5143:case 5144: return Type::Cauldron;
- case 9666: return Type::CaveAir;
- case 4730: return Type::Chain;
- case 9237:case 9238:case 9239:case 9240:case 9241:case 9242:case 9243:case 9244:case 9245:case 9246:case 9247:case 9248: return Type::ChainCommandBlock;
- case 2035:case 2037:case 2039:case 2041:case 2043:case 2045:case 2047:case 2049:case 2051:case 2053:case 2055:case 2057: return Type::Chest;
- case 6614:case 6615:case 6616:case 6617: return Type::ChippedAnvil;
- case 17101: return Type::ChiseledNetherBricks;
- case 16253: return Type::ChiseledPolishedBlackstone;
- case 6739: return Type::ChiseledQuartzBlock;
- case 8218: return Type::ChiseledRedSandstone;
- case 247: return Type::ChiseledSandstone;
- case 4498: return Type::ChiseledStoneBricks;
- case 9128:case 9129:case 9130:case 9131:case 9132:case 9133: return Type::ChorusFlower;
- case 9064:case 9065:case 9066:case 9067:case 9068:case 9069:case 9070:case 9071:case 9072:case 9073:case 9074:case 9075:case 9076:case 9077:case 9078:case 9079:case 9080:case 9081:case 9082:case 9083:case 9084:case 9085:case 9086:case 9087:case 9088:case 9089:case 9090:case 9091:case 9092:case 9093:case 9094:case 9095:case 9096:case 9097:case 9098:case 9099:case 9100:case 9101:case 9102:case 9103:case 9104:case 9105:case 9106:case 9107:case 9108:case 9109:case 9110:case 9111:case 9112:case 9113:case 9114:case 9115:case 9116:case 9117:case 9118:case 9119:case 9120:case 9121:case 9122:case 9123:case 9124:case 9125:case 9126:case 9127: return Type::ChorusPlant;
- case 3947: return Type::Clay;
- case 7883: return Type::CoalBlock;
- case 71: return Type::CoalOre;
- case 11: return Type::CoarseDirt;
- case 14: return Type::Cobblestone;
- case 8367:case 8369:case 8371: return Type::CobblestoneSlab;
- case 3656:case 3658:case 3660:case 3662:case 3664:case 3666:case 3668:case 3670:case 3672:case 3674:case 3676:case 3678:case 3680:case 3682:case 3684:case 3686:case 3688:case 3690:case 3692:case 3694:case 3696:case 3698:case 3700:case 3702:case 3704:case 3706:case 3708:case 3710:case 3712:case 3714:case 3716:case 3718:case 3720:case 3722:case 3724:case 3726:case 3728:case 3730:case 3732:case 3734: return Type::CobblestoneStairs;
- case 5660:case 5661:case 5662:case 5666:case 5667:case 5668:case 5672:case 5673:case 5674:case 5678:case 5679:case 5680:case 5684:case 5685:case 5686:case 5690:case 5691:case 5692:case 5696:case 5697:case 5698:case 5702:case 5703:case 5704:case 5708:case 5709:case 5710:case 5714:case 5715:case 5716:case 5720:case 5721:case 5722:case 5726:case 5727:case 5728:case 5732:case 5733:case 5734:case 5738:case 5739:case 5740:case 5744:case 5745:case 5746:case 5750:case 5751:case 5752:case 5756:case 5757:case 5758:case 5762:case 5763:case 5764:case 5768:case 5769:case 5770:case 5774:case 5775:case 5776:case 5780:case 5781:case 5782:case 5786:case 5787:case 5788:case 5792:case 5793:case 5794:case 5798:case 5799:case 5800:case 5804:case 5805:case 5806:case 5810:case 5811:case 5812:case 5816:case 5817:case 5818:case 5822:case 5823:case 5824:case 5828:case 5829:case 5830:case 5834:case 5835:case 5836:case 5840:case 5841:case 5842:case 5846:case 5847:case 5848:case 5852:case 5853:case 5854:case 5858:case 5859:case 5860:case 5864:case 5865:case 5866:case 5870:case 5871:case 5872:case 5876:case 5877:case 5878:case 5882:case 5883:case 5884:case 5888:case 5889:case 5890:case 5894:case 5895:case 5896:case 5900:case 5901:case 5902:case 5906:case 5907:case 5908:case 5912:case 5913:case 5914:case 5918:case 5919:case 5920:case 5924:case 5925:case 5926:case 5930:case 5931:case 5932:case 5936:case 5937:case 5938:case 5942:case 5943:case 5944:case 5948:case 5949:case 5950:case 5954:case 5955:case 5956:case 5960:case 5961:case 5962:case 5966:case 5967:case 5968:case 5972:case 5973:case 5974:case 5978:case 5979:case 5980: return Type::CobblestoneWall;
- case 1341: return Type::Cobweb;
- case 5158:case 5159:case 5160:case 5161:case 5162:case 5163:case 5164:case 5165:case 5166:case 5167:case 5168:case 5169: return Type::Cocoa;
- case 5644:case 5645:case 5646:case 5647:case 5648:case 5649:case 5650:case 5651:case 5652:case 5653:case 5654:case 5655: return Type::CommandBlock;
- case 6678:case 6679:case 6680:case 6681:case 6682:case 6683:case 6684:case 6685:case 6686:case 6687:case 6688:case 6689:case 6690:case 6691:case 6692:case 6693: return Type::Comparator;
- case 15751:case 15752:case 15753:case 15754:case 15755:case 15756:case 15757:case 15758:case 15759: return Type::Composter;
- case 9650: return Type::Conduit;
- case 1422: return Type::Cornflower;
- case 17102: return Type::CrackedNetherBricks;
- case 16252: return Type::CrackedPolishedBlackstoneBricks;
- case 4497: return Type::CrackedStoneBricks;
- case 3356: return Type::CraftingTable;
- case 6570:case 6571:case 6572:case 6573:case 6574:case 6575:case 6576:case 6577:case 6578:case 6579:case 6580:case 6581:case 6582:case 6583:case 6584:case 6585: return Type::CreeperHead;
- case 6586:case 6587:case 6588:case 6589: return Type::CreeperWallHead;
- case 15479:case 15480:case 15481:case 15482:case 15483:case 15484:case 15485:case 15486:case 15487:case 15488:case 15489:case 15490:case 15491:case 15492:case 15493:case 15494:case 15495:case 15496:case 15497:case 15498:case 15499:case 15500:case 15501:case 15502: return Type::CrimsonButton;
- case 15527:case 15528:case 15529:case 15530:case 15531:case 15532:case 15533:case 15534:case 15535:case 15536:case 15537:case 15538:case 15539:case 15540:case 15541:case 15542:case 15543:case 15544:case 15545:case 15546:case 15547:case 15548:case 15549:case 15550:case 15551:case 15552:case 15553:case 15554:case 15555:case 15556:case 15557:case 15558:case 15559:case 15560:case 15561:case 15562:case 15563:case 15564:case 15565:case 15566:case 15567:case 15568:case 15569:case 15570:case 15571:case 15572:case 15573:case 15574:case 15575:case 15576:case 15577:case 15578:case 15579:case 15580:case 15581:case 15582:case 15583:case 15584:case 15585:case 15586:case 15587:case 15588:case 15589:case 15590: return Type::CrimsonDoor;
- case 15065:case 15066:case 15069:case 15070:case 15073:case 15074:case 15077:case 15078:case 15081:case 15082:case 15085:case 15086:case 15089:case 15090:case 15093:case 15094: return Type::CrimsonFence;
- case 15255:case 15256:case 15257:case 15258:case 15259:case 15260:case 15261:case 15262:case 15263:case 15264:case 15265:case 15266:case 15267:case 15268:case 15269:case 15270:case 15271:case 15272:case 15273:case 15274:case 15275:case 15276:case 15277:case 15278:case 15279:case 15280:case 15281:case 15282:case 15283:case 15284:case 15285:case 15286: return Type::CrimsonFenceGate;
- case 14988: return Type::CrimsonFungus;
- case 14981:case 14982:case 14983: return Type::CrimsonHyphae;
- case 14987: return Type::CrimsonNylium;
- case 15045: return Type::CrimsonPlanks;
- case 15059:case 15060: return Type::CrimsonPressurePlate;
- case 15044: return Type::CrimsonRoots;
- case 15656:case 15658:case 15660:case 15662:case 15664:case 15666:case 15668:case 15670:case 15672:case 15674:case 15676:case 15678:case 15680:case 15682:case 15684:case 15686: return Type::CrimsonSign;
- case 15048:case 15050:case 15052: return Type::CrimsonSlab;
- case 15320:case 15322:case 15324:case 15326:case 15328:case 15330:case 15332:case 15334:case 15336:case 15338:case 15340:case 15342:case 15344:case 15346:case 15348:case 15350:case 15352:case 15354:case 15356:case 15358:case 15360:case 15362:case 15364:case 15366:case 15368:case 15370:case 15372:case 15374:case 15376:case 15378:case 15380:case 15382:case 15384:case 15386:case 15388:case 15390:case 15392:case 15394:case 15396:case 15398: return Type::CrimsonStairs;
- case 14975:case 14976:case 14977: return Type::CrimsonStem;
- case 15128:case 15130:case 15132:case 15134:case 15136:case 15138:case 15140:case 15142:case 15144:case 15146:case 15148:case 15150:case 15152:case 15154:case 15156:case 15158:case 15160:case 15162:case 15164:case 15166:case 15168:case 15170:case 15172:case 15174:case 15176:case 15178:case 15180:case 15182:case 15184:case 15186:case 15188:case 15190: return Type::CrimsonTrapdoor;
- case 15720:case 15722:case 15724:case 15726: return Type::CrimsonWallSign;
- case 15828: return Type::CryingObsidian;
- case 8219: return Type::CutRedSandstone;
- case 8403:case 8405:case 8407: return Type::CutRedSandstoneSlab;
- case 248: return Type::CutSandstone;
- case 8355:case 8357:case 8359: return Type::CutSandstoneSlab;
- case 8041:case 8042:case 8043:case 8044:case 8045:case 8046:case 8047:case 8048:case 8049:case 8050:case 8051:case 8052:case 8053:case 8054:case 8055:case 8056: return Type::CyanBanner;
- case 1193:case 1194:case 1195:case 1196:case 1197:case 1198:case 1199:case 1200:case 1201:case 1202:case 1203:case 1204:case 1205:case 1206:case 1207:case 1208: return Type::CyanBed;
- case 7875: return Type::CyanCarpet;
- case 9447: return Type::CyanConcrete;
- case 9463: return Type::CyanConcretePowder;
- case 9410:case 9411:case 9412:case 9413: return Type::CyanGlazedTerracotta;
- case 9332:case 9333:case 9334:case 9335:case 9336:case 9337: return Type::CyanShulkerBox;
- case 4104: return Type::CyanStainedGlass;
- case 7153:case 7154:case 7157:case 7158:case 7161:case 7162:case 7165:case 7166:case 7169:case 7170:case 7173:case 7174:case 7177:case 7178:case 7181:case 7182: return Type::CyanStainedGlassPane;
- case 6856: return Type::CyanTerracotta;
- case 8189:case 8190:case 8191:case 8192: return Type::CyanWallBanner;
- case 1393: return Type::CyanWool;
- case 6618:case 6619:case 6620:case 6621: return Type::DamagedAnvil;
- case 1412: return Type::Dandelion;
- case 6466:case 6467:case 6468:case 6469:case 6470:case 6471:case 6472:case 6473:case 6474:case 6475:case 6476:case 6477:case 6478:case 6479:case 6480:case 6481:case 6482:case 6483:case 6484:case 6485:case 6486:case 6487:case 6488:case 6489: return Type::DarkOakButton;
- case 8994:case 8995:case 8996:case 8997:case 8998:case 8999:case 9000:case 9001:case 9002:case 9003:case 9004:case 9005:case 9006:case 9007:case 9008:case 9009:case 9010:case 9011:case 9012:case 9013:case 9014:case 9015:case 9016:case 9017:case 9018:case 9019:case 9020:case 9021:case 9022:case 9023:case 9024:case 9025:case 9026:case 9027:case 9028:case 9029:case 9030:case 9031:case 9032:case 9033:case 9034:case 9035:case 9036:case 9037:case 9038:case 9039:case 9040:case 9041:case 9042:case 9043:case 9044:case 9045:case 9046:case 9047:case 9048:case 9049:case 9050:case 9051:case 9052:case 9053:case 9054:case 9055:case 9056:case 9057: return Type::DarkOakDoor;
- case 8708:case 8709:case 8712:case 8713:case 8716:case 8717:case 8720:case 8721:case 8724:case 8725:case 8728:case 8729:case 8732:case 8733:case 8736:case 8737: return Type::DarkOakFence;
- case 8546:case 8547:case 8548:case 8549:case 8550:case 8551:case 8552:case 8553:case 8554:case 8555:case 8556:case 8557:case 8558:case 8559:case 8560:case 8561:case 8562:case 8563:case 8564:case 8565:case 8566:case 8567:case 8568:case 8569:case 8570:case 8571:case 8572:case 8573:case 8574:case 8575:case 8576:case 8577: return Type::DarkOakFenceGate;
- case 215:case 216:case 217:case 218:case 219:case 220:case 221:case 222:case 223:case 224:case 225:case 226:case 227:case 228: return Type::DarkOakLeaves;
- case 88:case 89:case 90: return Type::DarkOakLog;
- case 20: return Type::DarkOakPlanks;
- case 3883:case 3884: return Type::DarkOakPressurePlate;
- case 31:case 32: return Type::DarkOakSapling;
- case 3542:case 3544:case 3546:case 3548:case 3550:case 3552:case 3554:case 3556:case 3558:case 3560:case 3562:case 3564:case 3566:case 3568:case 3570:case 3572: return Type::DarkOakSign;
- case 8331:case 8333:case 8335: return Type::DarkOakSlab;
- case 7456:case 7458:case 7460:case 7462:case 7464:case 7466:case 7468:case 7470:case 7472:case 7474:case 7476:case 7478:case 7480:case 7482:case 7484:case 7486:case 7488:case 7490:case 7492:case 7494:case 7496:case 7498:case 7500:case 7502:case 7504:case 7506:case 7508:case 7510:case 7512:case 7514:case 7516:case 7518:case 7520:case 7522:case 7524:case 7526:case 7528:case 7530:case 7532:case 7534: return Type::DarkOakStairs;
- case 4432:case 4434:case 4436:case 4438:case 4440:case 4442:case 4444:case 4446:case 4448:case 4450:case 4452:case 4454:case 4456:case 4458:case 4460:case 4462:case 4464:case 4466:case 4468:case 4470:case 4472:case 4474:case 4476:case 4478:case 4480:case 4482:case 4484:case 4486:case 4488:case 4490:case 4492:case 4494: return Type::DarkOakTrapdoor;
- case 3776:case 3778:case 3780:case 3782: return Type::DarkOakWallSign;
- case 124:case 125:case 126: return Type::DarkOakWood;
- case 7603: return Type::DarkPrismarine;
- case 7857:case 7859:case 7861: return Type::DarkPrismarineSlab;
- case 7765:case 7767:case 7769:case 7771:case 7773:case 7775:case 7777:case 7779:case 7781:case 7783:case 7785:case 7787:case 7789:case 7791:case 7793:case 7795:case 7797:case 7799:case 7801:case 7803:case 7805:case 7807:case 7809:case 7811:case 7813:case 7815:case 7817:case 7819:case 7821:case 7823:case 7825:case 7827:case 7829:case 7831:case 7833:case 7835:case 7837:case 7839:case 7841:case 7843: return Type::DarkPrismarineStairs;
- case 6694:case 6695:case 6696:case 6697:case 6698:case 6699:case 6700:case 6701:case 6702:case 6703:case 6704:case 6705:case 6706:case 6707:case 6708:case 6709:case 6710:case 6711:case 6712:case 6713:case 6714:case 6715:case 6716:case 6717:case 6718:case 6719:case 6720:case 6721:case 6722:case 6723:case 6724:case 6725: return Type::DaylightDetector;
- case 9523: return Type::DeadBrainCoral;
- case 9511: return Type::DeadBrainCoralBlock;
- case 9543: return Type::DeadBrainCoralFan;
- case 9569:case 9571:case 9573:case 9575: return Type::DeadBrainCoralWallFan;
- case 9525: return Type::DeadBubbleCoral;
- case 9512: return Type::DeadBubbleCoralBlock;
- case 9545: return Type::DeadBubbleCoralFan;
- case 9577:case 9579:case 9581:case 9583: return Type::DeadBubbleCoralWallFan;
- case 1344: return Type::DeadBush;
- case 9527: return Type::DeadFireCoral;
- case 9513: return Type::DeadFireCoralBlock;
- case 9547: return Type::DeadFireCoralFan;
- case 9585:case 9587:case 9589:case 9591: return Type::DeadFireCoralWallFan;
- case 9529: return Type::DeadHornCoral;
- case 9514: return Type::DeadHornCoralBlock;
- case 9549: return Type::DeadHornCoralFan;
- case 9593:case 9595:case 9597:case 9599: return Type::DeadHornCoralWallFan;
- case 9521: return Type::DeadTubeCoral;
- case 9510: return Type::DeadTubeCoralBlock;
- case 9541: return Type::DeadTubeCoralFan;
- case 9561:case 9563:case 9565:case 9567: return Type::DeadTubeCoralWallFan;
- case 1317:case 1318:case 1319:case 1320:case 1321:case 1322:case 1323:case 1324:case 1325:case 1326:case 1327:case 1328: return Type::DetectorRail;
- case 3355: return Type::DiamondBlock;
- case 3354: return Type::DiamondOre;
- case 4: return Type::Diorite;
- case 10862:case 10864:case 10866: return Type::DioriteSlab;
- case 10710:case 10712:case 10714:case 10716:case 10718:case 10720:case 10722:case 10724:case 10726:case 10728:case 10730:case 10732:case 10734:case 10736:case 10738:case 10740:case 10742:case 10744:case 10746:case 10748:case 10750:case 10752:case 10754:case 10756:case 10758:case 10760:case 10762:case 10764:case 10766:case 10768:case 10770:case 10772:case 10774:case 10776:case 10778:case 10780:case 10782:case 10784:case 10786:case 10788: return Type::DioriteStairs;
- case 14434:case 14435:case 14436:case 14440:case 14441:case 14442:case 14446:case 14447:case 14448:case 14452:case 14453:case 14454:case 14458:case 14459:case 14460:case 14464:case 14465:case 14466:case 14470:case 14471:case 14472:case 14476:case 14477:case 14478:case 14482:case 14483:case 14484:case 14488:case 14489:case 14490:case 14494:case 14495:case 14496:case 14500:case 14501:case 14502:case 14506:case 14507:case 14508:case 14512:case 14513:case 14514:case 14518:case 14519:case 14520:case 14524:case 14525:case 14526:case 14530:case 14531:case 14532:case 14536:case 14537:case 14538:case 14542:case 14543:case 14544:case 14548:case 14549:case 14550:case 14554:case 14555:case 14556:case 14560:case 14561:case 14562:case 14566:case 14567:case 14568:case 14572:case 14573:case 14574:case 14578:case 14579:case 14580:case 14584:case 14585:case 14586:case 14590:case 14591:case 14592:case 14596:case 14597:case 14598:case 14602:case 14603:case 14604:case 14608:case 14609:case 14610:case 14614:case 14615:case 14616:case 14620:case 14621:case 14622:case 14626:case 14627:case 14628:case 14632:case 14633:case 14634:case 14638:case 14639:case 14640:case 14644:case 14645:case 14646:case 14650:case 14651:case 14652:case 14656:case 14657:case 14658:case 14662:case 14663:case 14664:case 14668:case 14669:case 14670:case 14674:case 14675:case 14676:case 14680:case 14681:case 14682:case 14686:case 14687:case 14688:case 14692:case 14693:case 14694:case 14698:case 14699:case 14700:case 14704:case 14705:case 14706:case 14710:case 14711:case 14712:case 14716:case 14717:case 14718:case 14722:case 14723:case 14724:case 14728:case 14729:case 14730:case 14734:case 14735:case 14736:case 14740:case 14741:case 14742:case 14746:case 14747:case 14748:case 14752:case 14753:case 14754: return Type::DioriteWall;
- case 10: return Type::Dirt;
- case 234:case 235:case 236:case 237:case 238:case 239:case 240:case 241:case 242:case 243:case 244:case 245: return Type::Dispenser;
- case 5155: return Type::DragonEgg;
- case 6590:case 6591:case 6592:case 6593:case 6594:case 6595:case 6596:case 6597:case 6598:case 6599:case 6600:case 6601:case 6602:case 6603:case 6604:case 6605: return Type::DragonHead;
- case 6606:case 6607:case 6608:case 6609: return Type::DragonWallHead;
- case 9497: return Type::DriedKelpBlock;
- case 6835:case 6836:case 6837:case 6838:case 6839:case 6840:case 6841:case 6842:case 6843:case 6844:case 6845:case 6846: return Type::Dropper;
- case 5403: return Type::EmeraldBlock;
- case 5250: return Type::EmeraldOre;
- case 5132: return Type::EnchantingTable;
- case 9224: return Type::EndGateway;
- case 5145: return Type::EndPortal;
- case 5146:case 5147:case 5148:case 5149:case 5150:case 5151:case 5152:case 5153: return Type::EndPortalFrame;
- case 9058:case 9059:case 9060:case 9061:case 9062:case 9063: return Type::EndRod;
- case 5154: return Type::EndStone;
- case 10820:case 10822:case 10824: return Type::EndStoneBrickSlab;
- case 10070:case 10072:case 10074:case 10076:case 10078:case 10080:case 10082:case 10084:case 10086:case 10088:case 10090:case 10092:case 10094:case 10096:case 10098:case 10100:case 10102:case 10104:case 10106:case 10108:case 10110:case 10112:case 10114:case 10116:case 10118:case 10120:case 10122:case 10124:case 10126:case 10128:case 10130:case 10132:case 10134:case 10136:case 10138:case 10140:case 10142:case 10144:case 10146:case 10148: return Type::EndStoneBrickStairs;
- case 14110:case 14111:case 14112:case 14116:case 14117:case 14118:case 14122:case 14123:case 14124:case 14128:case 14129:case 14130:case 14134:case 14135:case 14136:case 14140:case 14141:case 14142:case 14146:case 14147:case 14148:case 14152:case 14153:case 14154:case 14158:case 14159:case 14160:case 14164:case 14165:case 14166:case 14170:case 14171:case 14172:case 14176:case 14177:case 14178:case 14182:case 14183:case 14184:case 14188:case 14189:case 14190:case 14194:case 14195:case 14196:case 14200:case 14201:case 14202:case 14206:case 14207:case 14208:case 14212:case 14213:case 14214:case 14218:case 14219:case 14220:case 14224:case 14225:case 14226:case 14230:case 14231:case 14232:case 14236:case 14237:case 14238:case 14242:case 14243:case 14244:case 14248:case 14249:case 14250:case 14254:case 14255:case 14256:case 14260:case 14261:case 14262:case 14266:case 14267:case 14268:case 14272:case 14273:case 14274:case 14278:case 14279:case 14280:case 14284:case 14285:case 14286:case 14290:case 14291:case 14292:case 14296:case 14297:case 14298:case 14302:case 14303:case 14304:case 14308:case 14309:case 14310:case 14314:case 14315:case 14316:case 14320:case 14321:case 14322:case 14326:case 14327:case 14328:case 14332:case 14333:case 14334:case 14338:case 14339:case 14340:case 14344:case 14345:case 14346:case 14350:case 14351:case 14352:case 14356:case 14357:case 14358:case 14362:case 14363:case 14364:case 14368:case 14369:case 14370:case 14374:case 14375:case 14376:case 14380:case 14381:case 14382:case 14386:case 14387:case 14388:case 14392:case 14393:case 14394:case 14398:case 14399:case 14400:case 14404:case 14405:case 14406:case 14410:case 14411:case 14412:case 14416:case 14417:case 14418:case 14422:case 14423:case 14424:case 14428:case 14429:case 14430: return Type::EndStoneBrickWall;
- case 9218: return Type::EndStoneBricks;
- case 5252:case 5254:case 5256:case 5258: return Type::EnderChest;
- case 3365:case 3366:case 3367:case 3368:case 3369:case 3370:case 3371:case 3372: return Type::Farmland;
- case 1343: return Type::Fern;
- case 1440:case 1441:case 1442:case 1443:case 1444:case 1445:case 1446:case 1447:case 1448:case 1449:case 1450:case 1451:case 1452:case 1453:case 1454:case 1455:case 1456:case 1457:case 1458:case 1459:case 1460:case 1461:case 1462:case 1463:case 1464:case 1465:case 1466:case 1467:case 1468:case 1469:case 1470:case 1471:case 1472:case 1473:case 1474:case 1475:case 1476:case 1477:case 1478:case 1479:case 1480:case 1481:case 1482:case 1483:case 1484:case 1485:case 1486:case 1487:case 1488:case 1489:case 1490:case 1491:case 1492:case 1493:case 1494:case 1495:case 1496:case 1497:case 1498:case 1499:case 1500:case 1501:case 1502:case 1503:case 1504:case 1505:case 1506:case 1507:case 1508:case 1509:case 1510:case 1511:case 1512:case 1513:case 1514:case 1515:case 1516:case 1517:case 1518:case 1519:case 1520:case 1521:case 1522:case 1523:case 1524:case 1525:case 1526:case 1527:case 1528:case 1529:case 1530:case 1531:case 1532:case 1533:case 1534:case 1535:case 1536:case 1537:case 1538:case 1539:case 1540:case 1541:case 1542:case 1543:case 1544:case 1545:case 1546:case 1547:case 1548:case 1549:case 1550:case 1551:case 1552:case 1553:case 1554:case 1555:case 1556:case 1557:case 1558:case 1559:case 1560:case 1561:case 1562:case 1563:case 1564:case 1565:case 1566:case 1567:case 1568:case 1569:case 1570:case 1571:case 1572:case 1573:case 1574:case 1575:case 1576:case 1577:case 1578:case 1579:case 1580:case 1581:case 1582:case 1583:case 1584:case 1585:case 1586:case 1587:case 1588:case 1589:case 1590:case 1591:case 1592:case 1593:case 1594:case 1595:case 1596:case 1597:case 1598:case 1599:case 1600:case 1601:case 1602:case 1603:case 1604:case 1605:case 1606:case 1607:case 1608:case 1609:case 1610:case 1611:case 1612:case 1613:case 1614:case 1615:case 1616:case 1617:case 1618:case 1619:case 1620:case 1621:case 1622:case 1623:case 1624:case 1625:case 1626:case 1627:case 1628:case 1629:case 1630:case 1631:case 1632:case 1633:case 1634:case 1635:case 1636:case 1637:case 1638:case 1639:case 1640:case 1641:case 1642:case 1643:case 1644:case 1645:case 1646:case 1647:case 1648:case 1649:case 1650:case 1651:case 1652:case 1653:case 1654:case 1655:case 1656:case 1657:case 1658:case 1659:case 1660:case 1661:case 1662:case 1663:case 1664:case 1665:case 1666:case 1667:case 1668:case 1669:case 1670:case 1671:case 1672:case 1673:case 1674:case 1675:case 1676:case 1677:case 1678:case 1679:case 1680:case 1681:case 1682:case 1683:case 1684:case 1685:case 1686:case 1687:case 1688:case 1689:case 1690:case 1691:case 1692:case 1693:case 1694:case 1695:case 1696:case 1697:case 1698:case 1699:case 1700:case 1701:case 1702:case 1703:case 1704:case 1705:case 1706:case 1707:case 1708:case 1709:case 1710:case 1711:case 1712:case 1713:case 1714:case 1715:case 1716:case 1717:case 1718:case 1719:case 1720:case 1721:case 1722:case 1723:case 1724:case 1725:case 1726:case 1727:case 1728:case 1729:case 1730:case 1731:case 1732:case 1733:case 1734:case 1735:case 1736:case 1737:case 1738:case 1739:case 1740:case 1741:case 1742:case 1743:case 1744:case 1745:case 1746:case 1747:case 1748:case 1749:case 1750:case 1751:case 1752:case 1753:case 1754:case 1755:case 1756:case 1757:case 1758:case 1759:case 1760:case 1761:case 1762:case 1763:case 1764:case 1765:case 1766:case 1767:case 1768:case 1769:case 1770:case 1771:case 1772:case 1773:case 1774:case 1775:case 1776:case 1777:case 1778:case 1779:case 1780:case 1781:case 1782:case 1783:case 1784:case 1785:case 1786:case 1787:case 1788:case 1789:case 1790:case 1791:case 1792:case 1793:case 1794:case 1795:case 1796:case 1797:case 1798:case 1799:case 1800:case 1801:case 1802:case 1803:case 1804:case 1805:case 1806:case 1807:case 1808:case 1809:case 1810:case 1811:case 1812:case 1813:case 1814:case 1815:case 1816:case 1817:case 1818:case 1819:case 1820:case 1821:case 1822:case 1823:case 1824:case 1825:case 1826:case 1827:case 1828:case 1829:case 1830:case 1831:case 1832:case 1833:case 1834:case 1835:case 1836:case 1837:case 1838:case 1839:case 1840:case 1841:case 1842:case 1843:case 1844:case 1845:case 1846:case 1847:case 1848:case 1849:case 1850:case 1851:case 1852:case 1853:case 1854:case 1855:case 1856:case 1857:case 1858:case 1859:case 1860:case 1861:case 1862:case 1863:case 1864:case 1865:case 1866:case 1867:case 1868:case 1869:case 1870:case 1871:case 1872:case 1873:case 1874:case 1875:case 1876:case 1877:case 1878:case 1879:case 1880:case 1881:case 1882:case 1883:case 1884:case 1885:case 1886:case 1887:case 1888:case 1889:case 1890:case 1891:case 1892:case 1893:case 1894:case 1895:case 1896:case 1897:case 1898:case 1899:case 1900:case 1901:case 1902:case 1903:case 1904:case 1905:case 1906:case 1907:case 1908:case 1909:case 1910:case 1911:case 1912:case 1913:case 1914:case 1915:case 1916:case 1917:case 1918:case 1919:case 1920:case 1921:case 1922:case 1923:case 1924:case 1925:case 1926:case 1927:case 1928:case 1929:case 1930:case 1931:case 1932:case 1933:case 1934:case 1935:case 1936:case 1937:case 1938:case 1939:case 1940:case 1941:case 1942:case 1943:case 1944:case 1945:case 1946:case 1947:case 1948:case 1949:case 1950:case 1951: return Type::Fire;
- case 9537: return Type::FireCoral;
- case 9518: return Type::FireCoralBlock;
- case 9557: return Type::FireCoralFan;
- case 9625:case 9627:case 9629:case 9631: return Type::FireCoralWallFan;
- case 14820: return Type::FletchingTable;
- case 6305: return Type::FlowerPot;
- case 9249:case 9250:case 9251:case 9252: return Type::FrostedIce;
- case 3373:case 3374:case 3375:case 3376:case 3377:case 3378:case 3379:case 3380: return Type::Furnace;
- case 16664: return Type::GildedBlackstone;
- case 231: return Type::Glass;
- case 4733:case 4734:case 4737:case 4738:case 4741:case 4742:case 4745:case 4746:case 4749:case 4750:case 4753:case 4754:case 4757:case 4758:case 4761:case 4762: return Type::GlassPane;
- case 4013: return Type::Glowstone;
- case 1427: return Type::GoldBlock;
- case 69: return Type::GoldOre;
- case 2: return Type::Granite;
- case 10838:case 10840:case 10842: return Type::GraniteSlab;
- case 10390:case 10392:case 10394:case 10396:case 10398:case 10400:case 10402:case 10404:case 10406:case 10408:case 10410:case 10412:case 10414:case 10416:case 10418:case 10420:case 10422:case 10424:case 10426:case 10428:case 10430:case 10432:case 10434:case 10436:case 10438:case 10440:case 10442:case 10444:case 10446:case 10448:case 10450:case 10452:case 10454:case 10456:case 10458:case 10460:case 10462:case 10464:case 10466:case 10468: return Type::GraniteStairs;
- case 12166:case 12167:case 12168:case 12172:case 12173:case 12174:case 12178:case 12179:case 12180:case 12184:case 12185:case 12186:case 12190:case 12191:case 12192:case 12196:case 12197:case 12198:case 12202:case 12203:case 12204:case 12208:case 12209:case 12210:case 12214:case 12215:case 12216:case 12220:case 12221:case 12222:case 12226:case 12227:case 12228:case 12232:case 12233:case 12234:case 12238:case 12239:case 12240:case 12244:case 12245:case 12246:case 12250:case 12251:case 12252:case 12256:case 12257:case 12258:case 12262:case 12263:case 12264:case 12268:case 12269:case 12270:case 12274:case 12275:case 12276:case 12280:case 12281:case 12282:case 12286:case 12287:case 12288:case 12292:case 12293:case 12294:case 12298:case 12299:case 12300:case 12304:case 12305:case 12306:case 12310:case 12311:case 12312:case 12316:case 12317:case 12318:case 12322:case 12323:case 12324:case 12328:case 12329:case 12330:case 12334:case 12335:case 12336:case 12340:case 12341:case 12342:case 12346:case 12347:case 12348:case 12352:case 12353:case 12354:case 12358:case 12359:case 12360:case 12364:case 12365:case 12366:case 12370:case 12371:case 12372:case 12376:case 12377:case 12378:case 12382:case 12383:case 12384:case 12388:case 12389:case 12390:case 12394:case 12395:case 12396:case 12400:case 12401:case 12402:case 12406:case 12407:case 12408:case 12412:case 12413:case 12414:case 12418:case 12419:case 12420:case 12424:case 12425:case 12426:case 12430:case 12431:case 12432:case 12436:case 12437:case 12438:case 12442:case 12443:case 12444:case 12448:case 12449:case 12450:case 12454:case 12455:case 12456:case 12460:case 12461:case 12462:case 12466:case 12467:case 12468:case 12472:case 12473:case 12474:case 12478:case 12479:case 12480:case 12484:case 12485:case 12486: return Type::GraniteWall;
- case 1342: return Type::Grass;
- case 8:case 9: return Type::GrassBlock;
- case 9223: return Type::GrassPath;
- case 68: return Type::Gravel;
- case 8009:case 8010:case 8011:case 8012:case 8013:case 8014:case 8015:case 8016:case 8017:case 8018:case 8019:case 8020:case 8021:case 8022:case 8023:case 8024: return Type::GrayBanner;
- case 1161:case 1162:case 1163:case 1164:case 1165:case 1166:case 1167:case 1168:case 1169:case 1170:case 1171:case 1172:case 1173:case 1174:case 1175:case 1176: return Type::GrayBed;
- case 7873: return Type::GrayCarpet;
- case 9445: return Type::GrayConcrete;
- case 9461: return Type::GrayConcretePowder;
- case 9402:case 9403:case 9404:case 9405: return Type::GrayGlazedTerracotta;
- case 9320:case 9321:case 9322:case 9323:case 9324:case 9325: return Type::GrayShulkerBox;
- case 4102: return Type::GrayStainedGlass;
- case 7089:case 7090:case 7093:case 7094:case 7097:case 7098:case 7101:case 7102:case 7105:case 7106:case 7109:case 7110:case 7113:case 7114:case 7117:case 7118: return Type::GrayStainedGlassPane;
- case 6854: return Type::GrayTerracotta;
- case 8181:case 8182:case 8183:case 8184: return Type::GrayWallBanner;
- case 1391: return Type::GrayWool;
- case 8105:case 8106:case 8107:case 8108:case 8109:case 8110:case 8111:case 8112:case 8113:case 8114:case 8115:case 8116:case 8117:case 8118:case 8119:case 8120: return Type::GreenBanner;
- case 1257:case 1258:case 1259:case 1260:case 1261:case 1262:case 1263:case 1264:case 1265:case 1266:case 1267:case 1268:case 1269:case 1270:case 1271:case 1272: return Type::GreenBed;
- case 7879: return Type::GreenCarpet;
- case 9451: return Type::GreenConcrete;
- case 9467: return Type::GreenConcretePowder;
- case 9426:case 9427:case 9428:case 9429: return Type::GreenGlazedTerracotta;
- case 9356:case 9357:case 9358:case 9359:case 9360:case 9361: return Type::GreenShulkerBox;
- case 4108: return Type::GreenStainedGlass;
- case 7281:case 7282:case 7285:case 7286:case 7289:case 7290:case 7293:case 7294:case 7297:case 7298:case 7301:case 7302:case 7305:case 7306:case 7309:case 7310: return Type::GreenStainedGlassPane;
- case 6860: return Type::GreenTerracotta;
- case 8205:case 8206:case 8207:case 8208: return Type::GreenWallBanner;
- case 1397: return Type::GreenWool;
- case 14821:case 14822:case 14823:case 14824:case 14825:case 14826:case 14827:case 14828:case 14829:case 14830:case 14831:case 14832: return Type::Grindstone;
- case 7863:case 7864:case 7865: return Type::HayBale;
- case 6662:case 6663:case 6664:case 6665:case 6666:case 6667:case 6668:case 6669:case 6670:case 6671:case 6672:case 6673:case 6674:case 6675:case 6676:case 6677: return Type::HeavyWeightedPressurePlate;
- case 15824: return Type::HoneyBlock;
- case 15825: return Type::HoneycombBlock;
- case 6728:case 6729:case 6730:case 6731:case 6732:case 6733:case 6734:case 6735:case 6736:case 6737: return Type::Hopper;
- case 9539: return Type::HornCoral;
- case 9519: return Type::HornCoralBlock;
- case 9559: return Type::HornCoralFan;
- case 9633:case 9635:case 9637:case 9639: return Type::HornCoralWallFan;
- case 3929: return Type::Ice;
- case 4504: return Type::InfestedChiseledStoneBricks;
- case 4500: return Type::InfestedCobblestone;
- case 4503: return Type::InfestedCrackedStoneBricks;
- case 4502: return Type::InfestedMossyStoneBricks;
- case 4499: return Type::InfestedStone;
- case 4501: return Type::InfestedStoneBricks;
- case 4699:case 4700:case 4703:case 4704:case 4707:case 4708:case 4711:case 4712:case 4715:case 4716:case 4719:case 4720:case 4723:case 4724:case 4727:case 4728: return Type::IronBars;
- case 1428: return Type::IronBlock;
- case 3809:case 3810:case 3811:case 3812:case 3813:case 3814:case 3815:case 3816:case 3817:case 3818:case 3819:case 3820:case 3821:case 3822:case 3823:case 3824:case 3825:case 3826:case 3827:case 3828:case 3829:case 3830:case 3831:case 3832:case 3833:case 3834:case 3835:case 3836:case 3837:case 3838:case 3839:case 3840:case 3841:case 3842:case 3843:case 3844:case 3845:case 3846:case 3847:case 3848:case 3849:case 3850:case 3851:case 3852:case 3853:case 3854:case 3855:case 3856:case 3857:case 3858:case 3859:case 3860:case 3861:case 3862:case 3863:case 3864:case 3865:case 3866:case 3867:case 3868:case 3869:case 3870:case 3871:case 3872: return Type::IronDoor;
- case 70: return Type::IronOre;
- case 7538:case 7540:case 7542:case 7544:case 7546:case 7548:case 7550:case 7552:case 7554:case 7556:case 7558:case 7560:case 7562:case 7564:case 7566:case 7568:case 7570:case 7572:case 7574:case 7576:case 7578:case 7580:case 7582:case 7584:case 7586:case 7588:case 7590:case 7592:case 7594:case 7596:case 7598:case 7600: return Type::IronTrapdoor;
- case 4020:case 4021:case 4022:case 4023: return Type::JackOLantern;
- case 15739:case 15740:case 15741:case 15742:case 15743:case 15744:case 15745:case 15746:case 15747:case 15748:case 15749:case 15750: return Type::Jigsaw;
- case 3964:case 3965: return Type::Jukebox;
- case 6418:case 6419:case 6420:case 6421:case 6422:case 6423:case 6424:case 6425:case 6426:case 6427:case 6428:case 6429:case 6430:case 6431:case 6432:case 6433:case 6434:case 6435:case 6436:case 6437:case 6438:case 6439:case 6440:case 6441: return Type::JungleButton;
- case 8866:case 8867:case 8868:case 8869:case 8870:case 8871:case 8872:case 8873:case 8874:case 8875:case 8876:case 8877:case 8878:case 8879:case 8880:case 8881:case 8882:case 8883:case 8884:case 8885:case 8886:case 8887:case 8888:case 8889:case 8890:case 8891:case 8892:case 8893:case 8894:case 8895:case 8896:case 8897:case 8898:case 8899:case 8900:case 8901:case 8902:case 8903:case 8904:case 8905:case 8906:case 8907:case 8908:case 8909:case 8910:case 8911:case 8912:case 8913:case 8914:case 8915:case 8916:case 8917:case 8918:case 8919:case 8920:case 8921:case 8922:case 8923:case 8924:case 8925:case 8926:case 8927:case 8928:case 8929: return Type::JungleDoor;
- case 8644:case 8645:case 8648:case 8649:case 8652:case 8653:case 8656:case 8657:case 8660:case 8661:case 8664:case 8665:case 8668:case 8669:case 8672:case 8673: return Type::JungleFence;
- case 8482:case 8483:case 8484:case 8485:case 8486:case 8487:case 8488:case 8489:case 8490:case 8491:case 8492:case 8493:case 8494:case 8495:case 8496:case 8497:case 8498:case 8499:case 8500:case 8501:case 8502:case 8503:case 8504:case 8505:case 8506:case 8507:case 8508:case 8509:case 8510:case 8511:case 8512:case 8513: return Type::JungleFenceGate;
- case 187:case 188:case 189:case 190:case 191:case 192:case 193:case 194:case 195:case 196:case 197:case 198:case 199:case 200: return Type::JungleLeaves;
- case 82:case 83:case 84: return Type::JungleLog;
- case 18: return Type::JunglePlanks;
- case 3879:case 3880: return Type::JunglePressurePlate;
- case 27:case 28: return Type::JungleSapling;
- case 3510:case 3512:case 3514:case 3516:case 3518:case 3520:case 3522:case 3524:case 3526:case 3528:case 3530:case 3532:case 3534:case 3536:case 3538:case 3540: return Type::JungleSign;
- case 8319:case 8321:case 8323: return Type::JungleSlab;
- case 5565:case 5567:case 5569:case 5571:case 5573:case 5575:case 5577:case 5579:case 5581:case 5583:case 5585:case 5587:case 5589:case 5591:case 5593:case 5595:case 5597:case 5599:case 5601:case 5603:case 5605:case 5607:case 5609:case 5611:case 5613:case 5615:case 5617:case 5619:case 5621:case 5623:case 5625:case 5627:case 5629:case 5631:case 5633:case 5635:case 5637:case 5639:case 5641:case 5643: return Type::JungleStairs;
- case 4304:case 4306:case 4308:case 4310:case 4312:case 4314:case 4316:case 4318:case 4320:case 4322:case 4324:case 4326:case 4328:case 4330:case 4332:case 4334:case 4336:case 4338:case 4340:case 4342:case 4344:case 4346:case 4348:case 4350:case 4352:case 4354:case 4356:case 4358:case 4360:case 4362:case 4364:case 4366: return Type::JungleTrapdoor;
- case 3768:case 3770:case 3772:case 3774: return Type::JungleWallSign;
- case 118:case 119:case 120: return Type::JungleWood;
- case 9470:case 9471:case 9472:case 9473:case 9474:case 9475:case 9476:case 9477:case 9478:case 9479:case 9480:case 9481:case 9482:case 9483:case 9484:case 9485:case 9486:case 9487:case 9488:case 9489:case 9490:case 9491:case 9492:case 9493:case 9494:case 9495: return Type::Kelp;
- case 9496: return Type::KelpPlant;
- case 3638:case 3640:case 3642:case 3644: return Type::Ladder;
- case 14886:case 14887: return Type::Lantern;
- case 233: return Type::LapisBlock;
- case 232: return Type::LapisOre;
- case 7895:case 7896: return Type::LargeFern;
- case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 65: return Type::Lava;
- case 14833:case 14834:case 14835:case 14836:case 14837:case 14838:case 14839:case 14840:case 14841:case 14842:case 14843:case 14844:case 14845:case 14846:case 14847:case 14848: return Type::Lectern;
- case 3783:case 3784:case 3785:case 3786:case 3787:case 3788:case 3789:case 3790:case 3791:case 3792:case 3793:case 3794:case 3795:case 3796:case 3797:case 3798:case 3799:case 3800:case 3801:case 3802:case 3803:case 3804:case 3805:case 3806: return Type::Lever;
- case 7945:case 7946:case 7947:case 7948:case 7949:case 7950:case 7951:case 7952:case 7953:case 7954:case 7955:case 7956:case 7957:case 7958:case 7959:case 7960: return Type::LightBlueBanner;
- case 1097:case 1098:case 1099:case 1100:case 1101:case 1102:case 1103:case 1104:case 1105:case 1106:case 1107:case 1108:case 1109:case 1110:case 1111:case 1112: return Type::LightBlueBed;
- case 7869: return Type::LightBlueCarpet;
- case 9441: return Type::LightBlueConcrete;
- case 9457: return Type::LightBlueConcretePowder;
- case 9386:case 9387:case 9388:case 9389: return Type::LightBlueGlazedTerracotta;
- case 9296:case 9297:case 9298:case 9299:case 9300:case 9301: return Type::LightBlueShulkerBox;
- case 4098: return Type::LightBlueStainedGlass;
- case 6961:case 6962:case 6965:case 6966:case 6969:case 6970:case 6973:case 6974:case 6977:case 6978:case 6981:case 6982:case 6985:case 6986:case 6989:case 6990: return Type::LightBlueStainedGlassPane;
- case 6850: return Type::LightBlueTerracotta;
- case 8165:case 8166:case 8167:case 8168: return Type::LightBlueWallBanner;
- case 1387: return Type::LightBlueWool;
- case 8025:case 8026:case 8027:case 8028:case 8029:case 8030:case 8031:case 8032:case 8033:case 8034:case 8035:case 8036:case 8037:case 8038:case 8039:case 8040: return Type::LightGrayBanner;
- case 1177:case 1178:case 1179:case 1180:case 1181:case 1182:case 1183:case 1184:case 1185:case 1186:case 1187:case 1188:case 1189:case 1190:case 1191:case 1192: return Type::LightGrayBed;
- case 7874: return Type::LightGrayCarpet;
- case 9446: return Type::LightGrayConcrete;
- case 9462: return Type::LightGrayConcretePowder;
- case 9406:case 9407:case 9408:case 9409: return Type::LightGrayGlazedTerracotta;
- case 9326:case 9327:case 9328:case 9329:case 9330:case 9331: return Type::LightGrayShulkerBox;
- case 4103: return Type::LightGrayStainedGlass;
- case 7121:case 7122:case 7125:case 7126:case 7129:case 7130:case 7133:case 7134:case 7137:case 7138:case 7141:case 7142:case 7145:case 7146:case 7149:case 7150: return Type::LightGrayStainedGlassPane;
- case 6855: return Type::LightGrayTerracotta;
- case 8185:case 8186:case 8187:case 8188: return Type::LightGrayWallBanner;
- case 1392: return Type::LightGrayWool;
- case 6646:case 6647:case 6648:case 6649:case 6650:case 6651:case 6652:case 6653:case 6654:case 6655:case 6656:case 6657:case 6658:case 6659:case 6660:case 6661: return Type::LightWeightedPressurePlate;
- case 7887:case 7888: return Type::Lilac;
- case 1424: return Type::LilyOfTheValley;
- case 5014: return Type::LilyPad;
- case 7977:case 7978:case 7979:case 7980:case 7981:case 7982:case 7983:case 7984:case 7985:case 7986:case 7987:case 7988:case 7989:case 7990:case 7991:case 7992: return Type::LimeBanner;
- case 1129:case 1130:case 1131:case 1132:case 1133:case 1134:case 1135:case 1136:case 1137:case 1138:case 1139:case 1140:case 1141:case 1142:case 1143:case 1144: return Type::LimeBed;
- case 7871: return Type::LimeCarpet;
- case 9443: return Type::LimeConcrete;
- case 9459: return Type::LimeConcretePowder;
- case 9394:case 9395:case 9396:case 9397: return Type::LimeGlazedTerracotta;
- case 9308:case 9309:case 9310:case 9311:case 9312:case 9313: return Type::LimeShulkerBox;
- case 4100: return Type::LimeStainedGlass;
- case 7025:case 7026:case 7029:case 7030:case 7033:case 7034:case 7037:case 7038:case 7041:case 7042:case 7045:case 7046:case 7049:case 7050:case 7053:case 7054: return Type::LimeStainedGlassPane;
- case 6852: return Type::LimeTerracotta;
- case 8173:case 8174:case 8175:case 8176: return Type::LimeWallBanner;
- case 1389: return Type::LimeWool;
- case 15838: return Type::Lodestone;
- case 14787:case 14788:case 14789:case 14790: return Type::Loom;
- case 7929:case 7930:case 7931:case 7932:case 7933:case 7934:case 7935:case 7936:case 7937:case 7938:case 7939:case 7940:case 7941:case 7942:case 7943:case 7944: return Type::MagentaBanner;
- case 1081:case 1082:case 1083:case 1084:case 1085:case 1086:case 1087:case 1088:case 1089:case 1090:case 1091:case 1092:case 1093:case 1094:case 1095:case 1096: return Type::MagentaBed;
- case 7868: return Type::MagentaCarpet;
- case 9440: return Type::MagentaConcrete;
- case 9456: return Type::MagentaConcretePowder;
- case 9382:case 9383:case 9384:case 9385: return Type::MagentaGlazedTerracotta;
- case 9290:case 9291:case 9292:case 9293:case 9294:case 9295: return Type::MagentaShulkerBox;
- case 4097: return Type::MagentaStainedGlass;
- case 6929:case 6930:case 6933:case 6934:case 6937:case 6938:case 6941:case 6942:case 6945:case 6946:case 6949:case 6950:case 6953:case 6954:case 6957:case 6958: return Type::MagentaStainedGlassPane;
- case 6849: return Type::MagentaTerracotta;
- case 8161:case 8162:case 8163:case 8164: return Type::MagentaWallBanner;
- case 1386: return Type::MagentaWool;
- case 9253: return Type::MagmaBlock;
- case 4763: return Type::Melon;
- case 4780:case 4781:case 4782:case 4783:case 4784:case 4785:case 4786:case 4787: return Type::MelonStem;
- case 1433: return Type::MossyCobblestone;
- case 10814:case 10816:case 10818: return Type::MossyCobblestoneSlab;
- case 9990:case 9992:case 9994:case 9996:case 9998:case 10000:case 10002:case 10004:case 10006:case 10008:case 10010:case 10012:case 10014:case 10016:case 10018:case 10020:case 10022:case 10024:case 10026:case 10028:case 10030:case 10032:case 10034:case 10036:case 10038:case 10040:case 10042:case 10044:case 10046:case 10048:case 10050:case 10052:case 10054:case 10056:case 10058:case 10060:case 10062:case 10064:case 10066:case 10068: return Type::MossyCobblestoneStairs;
- case 5984:case 5985:case 5986:case 5990:case 5991:case 5992:case 5996:case 5997:case 5998:case 6002:case 6003:case 6004:case 6008:case 6009:case 6010:case 6014:case 6015:case 6016:case 6020:case 6021:case 6022:case 6026:case 6027:case 6028:case 6032:case 6033:case 6034:case 6038:case 6039:case 6040:case 6044:case 6045:case 6046:case 6050:case 6051:case 6052:case 6056:case 6057:case 6058:case 6062:case 6063:case 6064:case 6068:case 6069:case 6070:case 6074:case 6075:case 6076:case 6080:case 6081:case 6082:case 6086:case 6087:case 6088:case 6092:case 6093:case 6094:case 6098:case 6099:case 6100:case 6104:case 6105:case 6106:case 6110:case 6111:case 6112:case 6116:case 6117:case 6118:case 6122:case 6123:case 6124:case 6128:case 6129:case 6130:case 6134:case 6135:case 6136:case 6140:case 6141:case 6142:case 6146:case 6147:case 6148:case 6152:case 6153:case 6154:case 6158:case 6159:case 6160:case 6164:case 6165:case 6166:case 6170:case 6171:case 6172:case 6176:case 6177:case 6178:case 6182:case 6183:case 6184:case 6188:case 6189:case 6190:case 6194:case 6195:case 6196:case 6200:case 6201:case 6202:case 6206:case 6207:case 6208:case 6212:case 6213:case 6214:case 6218:case 6219:case 6220:case 6224:case 6225:case 6226:case 6230:case 6231:case 6232:case 6236:case 6237:case 6238:case 6242:case 6243:case 6244:case 6248:case 6249:case 6250:case 6254:case 6255:case 6256:case 6260:case 6261:case 6262:case 6266:case 6267:case 6268:case 6272:case 6273:case 6274:case 6278:case 6279:case 6280:case 6284:case 6285:case 6286:case 6290:case 6291:case 6292:case 6296:case 6297:case 6298:case 6302:case 6303:case 6304: return Type::MossyCobblestoneWall;
- case 10802:case 10804:case 10806: return Type::MossyStoneBrickSlab;
- case 9830:case 9832:case 9834:case 9836:case 9838:case 9840:case 9842:case 9844:case 9846:case 9848:case 9850:case 9852:case 9854:case 9856:case 9858:case 9860:case 9862:case 9864:case 9866:case 9868:case 9870:case 9872:case 9874:case 9876:case 9878:case 9880:case 9882:case 9884:case 9886:case 9888:case 9890:case 9892:case 9894:case 9896:case 9898:case 9900:case 9902:case 9904:case 9906:case 9908: return Type::MossyStoneBrickStairs;
- case 11842:case 11843:case 11844:case 11848:case 11849:case 11850:case 11854:case 11855:case 11856:case 11860:case 11861:case 11862:case 11866:case 11867:case 11868:case 11872:case 11873:case 11874:case 11878:case 11879:case 11880:case 11884:case 11885:case 11886:case 11890:case 11891:case 11892:case 11896:case 11897:case 11898:case 11902:case 11903:case 11904:case 11908:case 11909:case 11910:case 11914:case 11915:case 11916:case 11920:case 11921:case 11922:case 11926:case 11927:case 11928:case 11932:case 11933:case 11934:case 11938:case 11939:case 11940:case 11944:case 11945:case 11946:case 11950:case 11951:case 11952:case 11956:case 11957:case 11958:case 11962:case 11963:case 11964:case 11968:case 11969:case 11970:case 11974:case 11975:case 11976:case 11980:case 11981:case 11982:case 11986:case 11987:case 11988:case 11992:case 11993:case 11994:case 11998:case 11999:case 12000:case 12004:case 12005:case 12006:case 12010:case 12011:case 12012:case 12016:case 12017:case 12018:case 12022:case 12023:case 12024:case 12028:case 12029:case 12030:case 12034:case 12035:case 12036:case 12040:case 12041:case 12042:case 12046:case 12047:case 12048:case 12052:case 12053:case 12054:case 12058:case 12059:case 12060:case 12064:case 12065:case 12066:case 12070:case 12071:case 12072:case 12076:case 12077:case 12078:case 12082:case 12083:case 12084:case 12088:case 12089:case 12090:case 12094:case 12095:case 12096:case 12100:case 12101:case 12102:case 12106:case 12107:case 12108:case 12112:case 12113:case 12114:case 12118:case 12119:case 12120:case 12124:case 12125:case 12126:case 12130:case 12131:case 12132:case 12136:case 12137:case 12138:case 12142:case 12143:case 12144:case 12148:case 12149:case 12150:case 12154:case 12155:case 12156:case 12160:case 12161:case 12162: return Type::MossyStoneBrickWall;
- case 4496: return Type::MossyStoneBricks;
- case 1400:case 1401:case 1402:case 1403:case 1404:case 1405:case 1406:case 1407:case 1408:case 1409:case 1410:case 1411: return Type::MovingPiston;
- case 4633:case 4634:case 4635:case 4636:case 4637:case 4638:case 4639:case 4640:case 4641:case 4642:case 4643:case 4644:case 4645:case 4646:case 4647:case 4648:case 4649:case 4650:case 4651:case 4652:case 4653:case 4654:case 4655:case 4656:case 4657:case 4658:case 4659:case 4660:case 4661:case 4662:case 4663:case 4664:case 4665:case 4666:case 4667:case 4668:case 4669:case 4670:case 4671:case 4672:case 4673:case 4674:case 4675:case 4676:case 4677:case 4678:case 4679:case 4680:case 4681:case 4682:case 4683:case 4684:case 4685:case 4686:case 4687:case 4688:case 4689:case 4690:case 4691:case 4692:case 4693:case 4694:case 4695:case 4696: return Type::MushroomStem;
- case 5012:case 5013: return Type::Mycelium;
- case 5018:case 5019:case 5022:case 5023:case 5026:case 5027:case 5030:case 5031:case 5034:case 5035:case 5038:case 5039:case 5042:case 5043:case 5046:case 5047: return Type::NetherBrickFence;
- case 8385:case 8387:case 8389: return Type::NetherBrickSlab;
- case 5049:case 5051:case 5053:case 5055:case 5057:case 5059:case 5061:case 5063:case 5065:case 5067:case 5069:case 5071:case 5073:case 5075:case 5077:case 5079:case 5081:case 5083:case 5085:case 5087:case 5089:case 5091:case 5093:case 5095:case 5097:case 5099:case 5101:case 5103:case 5105:case 5107:case 5109:case 5111:case 5113:case 5115:case 5117:case 5119:case 5121:case 5123:case 5125:case 5127: return Type::NetherBrickStairs;
- case 12814:case 12815:case 12816:case 12820:case 12821:case 12822:case 12826:case 12827:case 12828:case 12832:case 12833:case 12834:case 12838:case 12839:case 12840:case 12844:case 12845:case 12846:case 12850:case 12851:case 12852:case 12856:case 12857:case 12858:case 12862:case 12863:case 12864:case 12868:case 12869:case 12870:case 12874:case 12875:case 12876:case 12880:case 12881:case 12882:case 12886:case 12887:case 12888:case 12892:case 12893:case 12894:case 12898:case 12899:case 12900:case 12904:case 12905:case 12906:case 12910:case 12911:case 12912:case 12916:case 12917:case 12918:case 12922:case 12923:case 12924:case 12928:case 12929:case 12930:case 12934:case 12935:case 12936:case 12940:case 12941:case 12942:case 12946:case 12947:case 12948:case 12952:case 12953:case 12954:case 12958:case 12959:case 12960:case 12964:case 12965:case 12966:case 12970:case 12971:case 12972:case 12976:case 12977:case 12978:case 12982:case 12983:case 12984:case 12988:case 12989:case 12990:case 12994:case 12995:case 12996:case 13000:case 13001:case 13002:case 13006:case 13007:case 13008:case 13012:case 13013:case 13014:case 13018:case 13019:case 13020:case 13024:case 13025:case 13026:case 13030:case 13031:case 13032:case 13036:case 13037:case 13038:case 13042:case 13043:case 13044:case 13048:case 13049:case 13050:case 13054:case 13055:case 13056:case 13060:case 13061:case 13062:case 13066:case 13067:case 13068:case 13072:case 13073:case 13074:case 13078:case 13079:case 13080:case 13084:case 13085:case 13086:case 13090:case 13091:case 13092:case 13096:case 13097:case 13098:case 13102:case 13103:case 13104:case 13108:case 13109:case 13110:case 13114:case 13115:case 13116:case 13120:case 13121:case 13122:case 13126:case 13127:case 13128:case 13132:case 13133:case 13134: return Type::NetherBrickWall;
- case 5015: return Type::NetherBricks;
- case 72: return Type::NetherGoldOre;
- case 4014:case 4015: return Type::NetherPortal;
- case 6727: return Type::NetherQuartzOre;
- case 14974: return Type::NetherSprouts;
- case 5128:case 5129:case 5130:case 5131: return Type::NetherWart;
- case 9254: return Type::NetherWartBlock;
- case 15826: return Type::NetheriteBlock;
- case 3999: return Type::Netherrack;
- case 249:case 250:case 251:case 252:case 253:case 254:case 255:case 256:case 257:case 258:case 259:case 260:case 261:case 262:case 263:case 264:case 265:case 266:case 267:case 268:case 269:case 270:case 271:case 272:case 273:case 274:case 275:case 276:case 277:case 278:case 279:case 280:case 281:case 282:case 283:case 284:case 285:case 286:case 287:case 288:case 289:case 290:case 291:case 292:case 293:case 294:case 295:case 296:case 297:case 298:case 299:case 300:case 301:case 302:case 303:case 304:case 305:case 306:case 307:case 308:case 309:case 310:case 311:case 312:case 313:case 314:case 315:case 316:case 317:case 318:case 319:case 320:case 321:case 322:case 323:case 324:case 325:case 326:case 327:case 328:case 329:case 330:case 331:case 332:case 333:case 334:case 335:case 336:case 337:case 338:case 339:case 340:case 341:case 342:case 343:case 344:case 345:case 346:case 347:case 348:case 349:case 350:case 351:case 352:case 353:case 354:case 355:case 356:case 357:case 358:case 359:case 360:case 361:case 362:case 363:case 364:case 365:case 366:case 367:case 368:case 369:case 370:case 371:case 372:case 373:case 374:case 375:case 376:case 377:case 378:case 379:case 380:case 381:case 382:case 383:case 384:case 385:case 386:case 387:case 388:case 389:case 390:case 391:case 392:case 393:case 394:case 395:case 396:case 397:case 398:case 399:case 400:case 401:case 402:case 403:case 404:case 405:case 406:case 407:case 408:case 409:case 410:case 411:case 412:case 413:case 414:case 415:case 416:case 417:case 418:case 419:case 420:case 421:case 422:case 423:case 424:case 425:case 426:case 427:case 428:case 429:case 430:case 431:case 432:case 433:case 434:case 435:case 436:case 437:case 438:case 439:case 440:case 441:case 442:case 443:case 444:case 445:case 446:case 447:case 448:case 449:case 450:case 451:case 452:case 453:case 454:case 455:case 456:case 457:case 458:case 459:case 460:case 461:case 462:case 463:case 464:case 465:case 466:case 467:case 468:case 469:case 470:case 471:case 472:case 473:case 474:case 475:case 476:case 477:case 478:case 479:case 480:case 481:case 482:case 483:case 484:case 485:case 486:case 487:case 488:case 489:case 490:case 491:case 492:case 493:case 494:case 495:case 496:case 497:case 498:case 499:case 500:case 501:case 502:case 503:case 504:case 505:case 506:case 507:case 508:case 509:case 510:case 511:case 512:case 513:case 514:case 515:case 516:case 517:case 518:case 519:case 520:case 521:case 522:case 523:case 524:case 525:case 526:case 527:case 528:case 529:case 530:case 531:case 532:case 533:case 534:case 535:case 536:case 537:case 538:case 539:case 540:case 541:case 542:case 543:case 544:case 545:case 546:case 547:case 548:case 549:case 550:case 551:case 552:case 553:case 554:case 555:case 556:case 557:case 558:case 559:case 560:case 561:case 562:case 563:case 564:case 565:case 566:case 567:case 568:case 569:case 570:case 571:case 572:case 573:case 574:case 575:case 576:case 577:case 578:case 579:case 580:case 581:case 582:case 583:case 584:case 585:case 586:case 587:case 588:case 589:case 590:case 591:case 592:case 593:case 594:case 595:case 596:case 597:case 598:case 599:case 600:case 601:case 602:case 603:case 604:case 605:case 606:case 607:case 608:case 609:case 610:case 611:case 612:case 613:case 614:case 615:case 616:case 617:case 618:case 619:case 620:case 621:case 622:case 623:case 624:case 625:case 626:case 627:case 628:case 629:case 630:case 631:case 632:case 633:case 634:case 635:case 636:case 637:case 638:case 639:case 640:case 641:case 642:case 643:case 644:case 645:case 646:case 647:case 648:case 649:case 650:case 651:case 652:case 653:case 654:case 655:case 656:case 657:case 658:case 659:case 660:case 661:case 662:case 663:case 664:case 665:case 666:case 667:case 668:case 669:case 670:case 671:case 672:case 673:case 674:case 675:case 676:case 677:case 678:case 679:case 680:case 681:case 682:case 683:case 684:case 685:case 686:case 687:case 688:case 689:case 690:case 691:case 692:case 693:case 694:case 695:case 696:case 697:case 698:case 699:case 700:case 701:case 702:case 703:case 704:case 705:case 706:case 707:case 708:case 709:case 710:case 711:case 712:case 713:case 714:case 715:case 716:case 717:case 718:case 719:case 720:case 721:case 722:case 723:case 724:case 725:case 726:case 727:case 728:case 729:case 730:case 731:case 732:case 733:case 734:case 735:case 736:case 737:case 738:case 739:case 740:case 741:case 742:case 743:case 744:case 745:case 746:case 747:case 748:case 749:case 750:case 751:case 752:case 753:case 754:case 755:case 756:case 757:case 758:case 759:case 760:case 761:case 762:case 763:case 764:case 765:case 766:case 767:case 768:case 769:case 770:case 771:case 772:case 773:case 774:case 775:case 776:case 777:case 778:case 779:case 780:case 781:case 782:case 783:case 784:case 785:case 786:case 787:case 788:case 789:case 790:case 791:case 792:case 793:case 794:case 795:case 796:case 797:case 798:case 799:case 800:case 801:case 802:case 803:case 804:case 805:case 806:case 807:case 808:case 809:case 810:case 811:case 812:case 813:case 814:case 815:case 816:case 817:case 818:case 819:case 820:case 821:case 822:case 823:case 824:case 825:case 826:case 827:case 828:case 829:case 830:case 831:case 832:case 833:case 834:case 835:case 836:case 837:case 838:case 839:case 840:case 841:case 842:case 843:case 844:case 845:case 846:case 847:case 848:case 849:case 850:case 851:case 852:case 853:case 854:case 855:case 856:case 857:case 858:case 859:case 860:case 861:case 862:case 863:case 864:case 865:case 866:case 867:case 868:case 869:case 870:case 871:case 872:case 873:case 874:case 875:case 876:case 877:case 878:case 879:case 880:case 881:case 882:case 883:case 884:case 885:case 886:case 887:case 888:case 889:case 890:case 891:case 892:case 893:case 894:case 895:case 896:case 897:case 898:case 899:case 900:case 901:case 902:case 903:case 904:case 905:case 906:case 907:case 908:case 909:case 910:case 911:case 912:case 913:case 914:case 915:case 916:case 917:case 918:case 919:case 920:case 921:case 922:case 923:case 924:case 925:case 926:case 927:case 928:case 929:case 930:case 931:case 932:case 933:case 934:case 935:case 936:case 937:case 938:case 939:case 940:case 941:case 942:case 943:case 944:case 945:case 946:case 947:case 948:case 949:case 950:case 951:case 952:case 953:case 954:case 955:case 956:case 957:case 958:case 959:case 960:case 961:case 962:case 963:case 964:case 965:case 966:case 967:case 968:case 969:case 970:case 971:case 972:case 973:case 974:case 975:case 976:case 977:case 978:case 979:case 980:case 981:case 982:case 983:case 984:case 985:case 986:case 987:case 988:case 989:case 990:case 991:case 992:case 993:case 994:case 995:case 996:case 997:case 998:case 999:case 1000:case 1001:case 1002:case 1003:case 1004:case 1005:case 1006:case 1007:case 1008:case 1009:case 1010:case 1011:case 1012:case 1013:case 1014:case 1015:case 1016:case 1017:case 1018:case 1019:case 1020:case 1021:case 1022:case 1023:case 1024:case 1025:case 1026:case 1027:case 1028:case 1029:case 1030:case 1031:case 1032:case 1033:case 1034:case 1035:case 1036:case 1037:case 1038:case 1039:case 1040:case 1041:case 1042:case 1043:case 1044:case 1045:case 1046:case 1047:case 1048: return Type::NoteBlock;
- case 6346:case 6347:case 6348:case 6349:case 6350:case 6351:case 6352:case 6353:case 6354:case 6355:case 6356:case 6357:case 6358:case 6359:case 6360:case 6361:case 6362:case 6363:case 6364:case 6365:case 6366:case 6367:case 6368:case 6369: return Type::OakButton;
- case 3573:case 3574:case 3575:case 3576:case 3577:case 3578:case 3579:case 3580:case 3581:case 3582:case 3583:case 3584:case 3585:case 3586:case 3587:case 3588:case 3589:case 3590:case 3591:case 3592:case 3593:case 3594:case 3595:case 3596:case 3597:case 3598:case 3599:case 3600:case 3601:case 3602:case 3603:case 3604:case 3605:case 3606:case 3607:case 3608:case 3609:case 3610:case 3611:case 3612:case 3613:case 3614:case 3615:case 3616:case 3617:case 3618:case 3619:case 3620:case 3621:case 3622:case 3623:case 3624:case 3625:case 3626:case 3627:case 3628:case 3629:case 3630:case 3631:case 3632:case 3633:case 3634:case 3635:case 3636: return Type::OakDoor;
- case 3968:case 3969:case 3972:case 3973:case 3976:case 3977:case 3980:case 3981:case 3984:case 3985:case 3988:case 3989:case 3992:case 3993:case 3996:case 3997: return Type::OakFence;
- case 4820:case 4821:case 4822:case 4823:case 4824:case 4825:case 4826:case 4827:case 4828:case 4829:case 4830:case 4831:case 4832:case 4833:case 4834:case 4835:case 4836:case 4837:case 4838:case 4839:case 4840:case 4841:case 4842:case 4843:case 4844:case 4845:case 4846:case 4847:case 4848:case 4849:case 4850:case 4851: return Type::OakFenceGate;
- case 145:case 146:case 147:case 148:case 149:case 150:case 151:case 152:case 153:case 154:case 155:case 156:case 157:case 158: return Type::OakLeaves;
- case 73:case 74:case 75: return Type::OakLog;
- case 15: return Type::OakPlanks;
- case 3873:case 3874: return Type::OakPressurePlate;
- case 21:case 22: return Type::OakSapling;
- case 3382:case 3384:case 3386:case 3388:case 3390:case 3392:case 3394:case 3396:case 3398:case 3400:case 3402:case 3404:case 3406:case 3408:case 3410:case 3412: return Type::OakSign;
- case 8301:case 8303:case 8305: return Type::OakSlab;
- case 1955:case 1957:case 1959:case 1961:case 1963:case 1965:case 1967:case 1969:case 1971:case 1973:case 1975:case 1977:case 1979:case 1981:case 1983:case 1985:case 1987:case 1989:case 1991:case 1993:case 1995:case 1997:case 1999:case 2001:case 2003:case 2005:case 2007:case 2009:case 2011:case 2013:case 2015:case 2017:case 2019:case 2021:case 2023:case 2025:case 2027:case 2029:case 2031:case 2033: return Type::OakStairs;
- case 4112:case 4114:case 4116:case 4118:case 4120:case 4122:case 4124:case 4126:case 4128:case 4130:case 4132:case 4134:case 4136:case 4138:case 4140:case 4142:case 4144:case 4146:case 4148:case 4150:case 4152:case 4154:case 4156:case 4158:case 4160:case 4162:case 4164:case 4166:case 4168:case 4170:case 4172:case 4174: return Type::OakTrapdoor;
- case 3736:case 3738:case 3740:case 3742: return Type::OakWallSign;
- case 109:case 110:case 111: return Type::OakWood;
- case 9260:case 9261:case 9262:case 9263:case 9264:case 9265:case 9266:case 9267:case 9268:case 9269:case 9270:case 9271: return Type::Observer;
- case 1434: return Type::Obsidian;
- case 7913:case 7914:case 7915:case 7916:case 7917:case 7918:case 7919:case 7920:case 7921:case 7922:case 7923:case 7924:case 7925:case 7926:case 7927:case 7928: return Type::OrangeBanner;
- case 1065:case 1066:case 1067:case 1068:case 1069:case 1070:case 1071:case 1072:case 1073:case 1074:case 1075:case 1076:case 1077:case 1078:case 1079:case 1080: return Type::OrangeBed;
- case 7867: return Type::OrangeCarpet;
- case 9439: return Type::OrangeConcrete;
- case 9455: return Type::OrangeConcretePowder;
- case 9378:case 9379:case 9380:case 9381: return Type::OrangeGlazedTerracotta;
- case 9284:case 9285:case 9286:case 9287:case 9288:case 9289: return Type::OrangeShulkerBox;
- case 4096: return Type::OrangeStainedGlass;
- case 6897:case 6898:case 6901:case 6902:case 6905:case 6906:case 6909:case 6910:case 6913:case 6914:case 6917:case 6918:case 6921:case 6922:case 6925:case 6926: return Type::OrangeStainedGlassPane;
- case 6848: return Type::OrangeTerracotta;
- case 1418: return Type::OrangeTulip;
- case 8157:case 8158:case 8159:case 8160: return Type::OrangeWallBanner;
- case 1385: return Type::OrangeWool;
- case 1421: return Type::OxeyeDaisy;
- case 7884: return Type::PackedIce;
- case 7891:case 7892: return Type::Peony;
- case 8361:case 8363:case 8365: return Type::PetrifiedOakSlab;
- case 7993:case 7994:case 7995:case 7996:case 7997:case 7998:case 7999:case 8000:case 8001:case 8002:case 8003:case 8004:case 8005:case 8006:case 8007:case 8008: return Type::PinkBanner;
- case 1145:case 1146:case 1147:case 1148:case 1149:case 1150:case 1151:case 1152:case 1153:case 1154:case 1155:case 1156:case 1157:case 1158:case 1159:case 1160: return Type::PinkBed;
- case 7872: return Type::PinkCarpet;
- case 9444: return Type::PinkConcrete;
- case 9460: return Type::PinkConcretePowder;
- case 9398:case 9399:case 9400:case 9401: return Type::PinkGlazedTerracotta;
- case 9314:case 9315:case 9316:case 9317:case 9318:case 9319: return Type::PinkShulkerBox;
- case 4101: return Type::PinkStainedGlass;
- case 7057:case 7058:case 7061:case 7062:case 7065:case 7066:case 7069:case 7070:case 7073:case 7074:case 7077:case 7078:case 7081:case 7082:case 7085:case 7086: return Type::PinkStainedGlassPane;
- case 6853: return Type::PinkTerracotta;
- case 1420: return Type::PinkTulip;
- case 8177:case 8178:case 8179:case 8180: return Type::PinkWallBanner;
- case 1390: return Type::PinkWool;
- case 1348:case 1349:case 1350:case 1351:case 1352:case 1353:case 1354:case 1355:case 1356:case 1357:case 1358:case 1359: return Type::Piston;
- case 1360:case 1361:case 1362:case 1363:case 1364:case 1365:case 1366:case 1367:case 1368:case 1369:case 1370:case 1371:case 1372:case 1373:case 1374:case 1375:case 1376:case 1377:case 1378:case 1379:case 1380:case 1381:case 1382:case 1383: return Type::PistonHead;
- case 6550:case 6551:case 6552:case 6553:case 6554:case 6555:case 6556:case 6557:case 6558:case 6559:case 6560:case 6561:case 6562:case 6563:case 6564:case 6565: return Type::PlayerHead;
- case 6566:case 6567:case 6568:case 6569: return Type::PlayerWallHead;
- case 12:case 13: return Type::Podzol;
- case 7: return Type::PolishedAndesite;
- case 10856:case 10858:case 10860: return Type::PolishedAndesiteSlab;
- case 10630:case 10632:case 10634:case 10636:case 10638:case 10640:case 10642:case 10644:case 10646:case 10648:case 10650:case 10652:case 10654:case 10656:case 10658:case 10660:case 10662:case 10664:case 10666:case 10668:case 10670:case 10672:case 10674:case 10676:case 10678:case 10680:case 10682:case 10684:case 10686:case 10688:case 10690:case 10692:case 10694:case 10696:case 10698:case 10700:case 10702:case 10704:case 10706:case 10708: return Type::PolishedAndesiteStairs;
- case 4005:case 4006:case 4007: return Type::PolishedBasalt;
- case 16250: return Type::PolishedBlackstone;
- case 16255:case 16257:case 16259: return Type::PolishedBlackstoneBrickSlab;
- case 16261:case 16263:case 16265:case 16267:case 16269:case 16271:case 16273:case 16275:case 16277:case 16279:case 16281:case 16283:case 16285:case 16287:case 16289:case 16291:case 16293:case 16295:case 16297:case 16299:case 16301:case 16303:case 16305:case 16307:case 16309:case 16311:case 16313:case 16315:case 16317:case 16319:case 16321:case 16323:case 16325:case 16327:case 16329:case 16331:case 16333:case 16335:case 16337:case 16339: return Type::PolishedBlackstoneBrickStairs;
- case 16343:case 16344:case 16345:case 16349:case 16350:case 16351:case 16355:case 16356:case 16357:case 16361:case 16362:case 16363:case 16367:case 16368:case 16369:case 16373:case 16374:case 16375:case 16379:case 16380:case 16381:case 16385:case 16386:case 16387:case 16391:case 16392:case 16393:case 16397:case 16398:case 16399:case 16403:case 16404:case 16405:case 16409:case 16410:case 16411:case 16415:case 16416:case 16417:case 16421:case 16422:case 16423:case 16427:case 16428:case 16429:case 16433:case 16434:case 16435:case 16439:case 16440:case 16441:case 16445:case 16446:case 16447:case 16451:case 16452:case 16453:case 16457:case 16458:case 16459:case 16463:case 16464:case 16465:case 16469:case 16470:case 16471:case 16475:case 16476:case 16477:case 16481:case 16482:case 16483:case 16487:case 16488:case 16489:case 16493:case 16494:case 16495:case 16499:case 16500:case 16501:case 16505:case 16506:case 16507:case 16511:case 16512:case 16513:case 16517:case 16518:case 16519:case 16523:case 16524:case 16525:case 16529:case 16530:case 16531:case 16535:case 16536:case 16537:case 16541:case 16542:case 16543:case 16547:case 16548:case 16549:case 16553:case 16554:case 16555:case 16559:case 16560:case 16561:case 16565:case 16566:case 16567:case 16571:case 16572:case 16573:case 16577:case 16578:case 16579:case 16583:case 16584:case 16585:case 16589:case 16590:case 16591:case 16595:case 16596:case 16597:case 16601:case 16602:case 16603:case 16607:case 16608:case 16609:case 16613:case 16614:case 16615:case 16619:case 16620:case 16621:case 16625:case 16626:case 16627:case 16631:case 16632:case 16633:case 16637:case 16638:case 16639:case 16643:case 16644:case 16645:case 16649:case 16650:case 16651:case 16655:case 16656:case 16657:case 16661:case 16662:case 16663: return Type::PolishedBlackstoneBrickWall;
- case 16251: return Type::PolishedBlackstoneBricks;
- case 16753:case 16754:case 16755:case 16756:case 16757:case 16758:case 16759:case 16760:case 16761:case 16762:case 16763:case 16764:case 16765:case 16766:case 16767:case 16768:case 16769:case 16770:case 16771:case 16772:case 16773:case 16774:case 16775:case 16776: return Type::PolishedBlackstoneButton;
- case 16751:case 16752: return Type::PolishedBlackstonePressurePlate;
- case 16746:case 16748:case 16750: return Type::PolishedBlackstoneSlab;
- case 16666:case 16668:case 16670:case 16672:case 16674:case 16676:case 16678:case 16680:case 16682:case 16684:case 16686:case 16688:case 16690:case 16692:case 16694:case 16696:case 16698:case 16700:case 16702:case 16704:case 16706:case 16708:case 16710:case 16712:case 16714:case 16716:case 16718:case 16720:case 16722:case 16724:case 16726:case 16728:case 16730:case 16732:case 16734:case 16736:case 16738:case 16740:case 16742:case 16744: return Type::PolishedBlackstoneStairs;
- case 16780:case 16781:case 16782:case 16786:case 16787:case 16788:case 16792:case 16793:case 16794:case 16798:case 16799:case 16800:case 16804:case 16805:case 16806:case 16810:case 16811:case 16812:case 16816:case 16817:case 16818:case 16822:case 16823:case 16824:case 16828:case 16829:case 16830:case 16834:case 16835:case 16836:case 16840:case 16841:case 16842:case 16846:case 16847:case 16848:case 16852:case 16853:case 16854:case 16858:case 16859:case 16860:case 16864:case 16865:case 16866:case 16870:case 16871:case 16872:case 16876:case 16877:case 16878:case 16882:case 16883:case 16884:case 16888:case 16889:case 16890:case 16894:case 16895:case 16896:case 16900:case 16901:case 16902:case 16906:case 16907:case 16908:case 16912:case 16913:case 16914:case 16918:case 16919:case 16920:case 16924:case 16925:case 16926:case 16930:case 16931:case 16932:case 16936:case 16937:case 16938:case 16942:case 16943:case 16944:case 16948:case 16949:case 16950:case 16954:case 16955:case 16956:case 16960:case 16961:case 16962:case 16966:case 16967:case 16968:case 16972:case 16973:case 16974:case 16978:case 16979:case 16980:case 16984:case 16985:case 16986:case 16990:case 16991:case 16992:case 16996:case 16997:case 16998:case 17002:case 17003:case 17004:case 17008:case 17009:case 17010:case 17014:case 17015:case 17016:case 17020:case 17021:case 17022:case 17026:case 17027:case 17028:case 17032:case 17033:case 17034:case 17038:case 17039:case 17040:case 17044:case 17045:case 17046:case 17050:case 17051:case 17052:case 17056:case 17057:case 17058:case 17062:case 17063:case 17064:case 17068:case 17069:case 17070:case 17074:case 17075:case 17076:case 17080:case 17081:case 17082:case 17086:case 17087:case 17088:case 17092:case 17093:case 17094:case 17098:case 17099:case 17100: return Type::PolishedBlackstoneWall;
- case 5: return Type::PolishedDiorite;
- case 10808:case 10810:case 10812: return Type::PolishedDioriteSlab;
- case 9910:case 9912:case 9914:case 9916:case 9918:case 9920:case 9922:case 9924:case 9926:case 9928:case 9930:case 9932:case 9934:case 9936:case 9938:case 9940:case 9942:case 9944:case 9946:case 9948:case 9950:case 9952:case 9954:case 9956:case 9958:case 9960:case 9962:case 9964:case 9966:case 9968:case 9970:case 9972:case 9974:case 9976:case 9978:case 9980:case 9982:case 9984:case 9986:case 9988: return Type::PolishedDioriteStairs;
- case 3: return Type::PolishedGranite;
- case 10790:case 10792:case 10794: return Type::PolishedGraniteSlab;
- case 9670:case 9672:case 9674:case 9676:case 9678:case 9680:case 9682:case 9684:case 9686:case 9688:case 9690:case 9692:case 9694:case 9696:case 9698:case 9700:case 9702:case 9704:case 9706:case 9708:case 9710:case 9712:case 9714:case 9716:case 9718:case 9720:case 9722:case 9724:case 9726:case 9728:case 9730:case 9732:case 9734:case 9736:case 9738:case 9740:case 9742:case 9744:case 9746:case 9748: return Type::PolishedGraniteStairs;
- case 1413: return Type::Poppy;
- case 6338:case 6339:case 6340:case 6341:case 6342:case 6343:case 6344:case 6345: return Type::Potatoes;
- case 6310: return Type::PottedAcaciaSapling;
- case 6316: return Type::PottedAllium;
- case 6317: return Type::PottedAzureBluet;
- case 9664: return Type::PottedBamboo;
- case 6308: return Type::PottedBirchSapling;
- case 6315: return Type::PottedBlueOrchid;
- case 6327: return Type::PottedBrownMushroom;
- case 6329: return Type::PottedCactus;
- case 6323: return Type::PottedCornflower;
- case 15834: return Type::PottedCrimsonFungus;
- case 15836: return Type::PottedCrimsonRoots;
- case 6313: return Type::PottedDandelion;
- case 6311: return Type::PottedDarkOakSapling;
- case 6328: return Type::PottedDeadBush;
- case 6312: return Type::PottedFern;
- case 6309: return Type::PottedJungleSapling;
- case 6324: return Type::PottedLilyOfTheValley;
- case 6306: return Type::PottedOakSapling;
- case 6319: return Type::PottedOrangeTulip;
- case 6322: return Type::PottedOxeyeDaisy;
- case 6321: return Type::PottedPinkTulip;
- case 6314: return Type::PottedPoppy;
- case 6326: return Type::PottedRedMushroom;
- case 6318: return Type::PottedRedTulip;
- case 6307: return Type::PottedSpruceSapling;
- case 15835: return Type::PottedWarpedFungus;
- case 15837: return Type::PottedWarpedRoots;
- case 6320: return Type::PottedWhiteTulip;
- case 6325: return Type::PottedWitherRose;
- case 1305:case 1306:case 1307:case 1308:case 1309:case 1310:case 1311:case 1312:case 1313:case 1314:case 1315:case 1316: return Type::PoweredRail;
- case 7601: return Type::Prismarine;
- case 7851:case 7853:case 7855: return Type::PrismarineBrickSlab;
- case 7685:case 7687:case 7689:case 7691:case 7693:case 7695:case 7697:case 7699:case 7701:case 7703:case 7705:case 7707:case 7709:case 7711:case 7713:case 7715:case 7717:case 7719:case 7721:case 7723:case 7725:case 7727:case 7729:case 7731:case 7733:case 7735:case 7737:case 7739:case 7741:case 7743:case 7745:case 7747:case 7749:case 7751:case 7753:case 7755:case 7757:case 7759:case 7761:case 7763: return Type::PrismarineBrickStairs;
- case 7602: return Type::PrismarineBricks;
- case 7845:case 7847:case 7849: return Type::PrismarineSlab;
- case 7605:case 7607:case 7609:case 7611:case 7613:case 7615:case 7617:case 7619:case 7621:case 7623:case 7625:case 7627:case 7629:case 7631:case 7633:case 7635:case 7637:case 7639:case 7641:case 7643:case 7645:case 7647:case 7649:case 7651:case 7653:case 7655:case 7657:case 7659:case 7661:case 7663:case 7665:case 7667:case 7669:case 7671:case 7673:case 7675:case 7677:case 7679:case 7681:case 7683: return Type::PrismarineStairs;
- case 11194:case 11195:case 11196:case 11200:case 11201:case 11202:case 11206:case 11207:case 11208:case 11212:case 11213:case 11214:case 11218:case 11219:case 11220:case 11224:case 11225:case 11226:case 11230:case 11231:case 11232:case 11236:case 11237:case 11238:case 11242:case 11243:case 11244:case 11248:case 11249:case 11250:case 11254:case 11255:case 11256:case 11260:case 11261:case 11262:case 11266:case 11267:case 11268:case 11272:case 11273:case 11274:case 11278:case 11279:case 11280:case 11284:case 11285:case 11286:case 11290:case 11291:case 11292:case 11296:case 11297:case 11298:case 11302:case 11303:case 11304:case 11308:case 11309:case 11310:case 11314:case 11315:case 11316:case 11320:case 11321:case 11322:case 11326:case 11327:case 11328:case 11332:case 11333:case 11334:case 11338:case 11339:case 11340:case 11344:case 11345:case 11346:case 11350:case 11351:case 11352:case 11356:case 11357:case 11358:case 11362:case 11363:case 11364:case 11368:case 11369:case 11370:case 11374:case 11375:case 11376:case 11380:case 11381:case 11382:case 11386:case 11387:case 11388:case 11392:case 11393:case 11394:case 11398:case 11399:case 11400:case 11404:case 11405:case 11406:case 11410:case 11411:case 11412:case 11416:case 11417:case 11418:case 11422:case 11423:case 11424:case 11428:case 11429:case 11430:case 11434:case 11435:case 11436:case 11440:case 11441:case 11442:case 11446:case 11447:case 11448:case 11452:case 11453:case 11454:case 11458:case 11459:case 11460:case 11464:case 11465:case 11466:case 11470:case 11471:case 11472:case 11476:case 11477:case 11478:case 11482:case 11483:case 11484:case 11488:case 11489:case 11490:case 11494:case 11495:case 11496:case 11500:case 11501:case 11502:case 11506:case 11507:case 11508:case 11512:case 11513:case 11514: return Type::PrismarineWall;
- case 3998: return Type::Pumpkin;
- case 4772:case 4773:case 4774:case 4775:case 4776:case 4777:case 4778:case 4779: return Type::PumpkinStem;
- case 8057:case 8058:case 8059:case 8060:case 8061:case 8062:case 8063:case 8064:case 8065:case 8066:case 8067:case 8068:case 8069:case 8070:case 8071:case 8072: return Type::PurpleBanner;
- case 1209:case 1210:case 1211:case 1212:case 1213:case 1214:case 1215:case 1216:case 1217:case 1218:case 1219:case 1220:case 1221:case 1222:case 1223:case 1224: return Type::PurpleBed;
- case 7876: return Type::PurpleCarpet;
- case 9448: return Type::PurpleConcrete;
- case 9464: return Type::PurpleConcretePowder;
- case 9414:case 9415:case 9416:case 9417: return Type::PurpleGlazedTerracotta;
- case 9338:case 9339:case 9340:case 9341:case 9342:case 9343: return Type::PurpleShulkerBox;
- case 4105: return Type::PurpleStainedGlass;
- case 7185:case 7186:case 7189:case 7190:case 7193:case 7194:case 7197:case 7198:case 7201:case 7202:case 7205:case 7206:case 7209:case 7210:case 7213:case 7214: return Type::PurpleStainedGlassPane;
- case 6857: return Type::PurpleTerracotta;
- case 8193:case 8194:case 8195:case 8196: return Type::PurpleWallBanner;
- case 1394: return Type::PurpleWool;
- case 9134: return Type::PurpurBlock;
- case 9135:case 9136:case 9137: return Type::PurpurPillar;
- case 8409:case 8411:case 8413: return Type::PurpurSlab;
- case 9139:case 9141:case 9143:case 9145:case 9147:case 9149:case 9151:case 9153:case 9155:case 9157:case 9159:case 9161:case 9163:case 9165:case 9167:case 9169:case 9171:case 9173:case 9175:case 9177:case 9179:case 9181:case 9183:case 9185:case 9187:case 9189:case 9191:case 9193:case 9195:case 9197:case 9199:case 9201:case 9203:case 9205:case 9207:case 9209:case 9211:case 9213:case 9215:case 9217: return Type::PurpurStairs;
- case 6738: return Type::QuartzBlock;
- case 17103: return Type::QuartzBricks;
- case 6740:case 6741:case 6742: return Type::QuartzPillar;
- case 8391:case 8393:case 8395: return Type::QuartzSlab;
- case 6744:case 6746:case 6748:case 6750:case 6752:case 6754:case 6756:case 6758:case 6760:case 6762:case 6764:case 6766:case 6768:case 6770:case 6772:case 6774:case 6776:case 6778:case 6780:case 6782:case 6784:case 6786:case 6788:case 6790:case 6792:case 6794:case 6796:case 6798:case 6800:case 6802:case 6804:case 6806:case 6808:case 6810:case 6812:case 6814:case 6816:case 6818:case 6820:case 6822: return Type::QuartzStairs;
- case 3645:case 3646:case 3647:case 3648:case 3649:case 3650:case 3651:case 3652:case 3653:case 3654: return Type::Rail;
- case 8121:case 8122:case 8123:case 8124:case 8125:case 8126:case 8127:case 8128:case 8129:case 8130:case 8131:case 8132:case 8133:case 8134:case 8135:case 8136: return Type::RedBanner;
- case 1273:case 1274:case 1275:case 1276:case 1277:case 1278:case 1279:case 1280:case 1281:case 1282:case 1283:case 1284:case 1285:case 1286:case 1287:case 1288: return Type::RedBed;
- case 7880: return Type::RedCarpet;
- case 9452: return Type::RedConcrete;
- case 9468: return Type::RedConcretePowder;
- case 9430:case 9431:case 9432:case 9433: return Type::RedGlazedTerracotta;
- case 1426: return Type::RedMushroom;
- case 4569:case 4570:case 4571:case 4572:case 4573:case 4574:case 4575:case 4576:case 4577:case 4578:case 4579:case 4580:case 4581:case 4582:case 4583:case 4584:case 4585:case 4586:case 4587:case 4588:case 4589:case 4590:case 4591:case 4592:case 4593:case 4594:case 4595:case 4596:case 4597:case 4598:case 4599:case 4600:case 4601:case 4602:case 4603:case 4604:case 4605:case 4606:case 4607:case 4608:case 4609:case 4610:case 4611:case 4612:case 4613:case 4614:case 4615:case 4616:case 4617:case 4618:case 4619:case 4620:case 4621:case 4622:case 4623:case 4624:case 4625:case 4626:case 4627:case 4628:case 4629:case 4630:case 4631:case 4632: return Type::RedMushroomBlock;
- case 10850:case 10852:case 10854: return Type::RedNetherBrickSlab;
- case 10550:case 10552:case 10554:case 10556:case 10558:case 10560:case 10562:case 10564:case 10566:case 10568:case 10570:case 10572:case 10574:case 10576:case 10578:case 10580:case 10582:case 10584:case 10586:case 10588:case 10590:case 10592:case 10594:case 10596:case 10598:case 10600:case 10602:case 10604:case 10606:case 10608:case 10610:case 10612:case 10614:case 10616:case 10618:case 10620:case 10622:case 10624:case 10626:case 10628: return Type::RedNetherBrickStairs;
- case 13462:case 13463:case 13464:case 13468:case 13469:case 13470:case 13474:case 13475:case 13476:case 13480:case 13481:case 13482:case 13486:case 13487:case 13488:case 13492:case 13493:case 13494:case 13498:case 13499:case 13500:case 13504:case 13505:case 13506:case 13510:case 13511:case 13512:case 13516:case 13517:case 13518:case 13522:case 13523:case 13524:case 13528:case 13529:case 13530:case 13534:case 13535:case 13536:case 13540:case 13541:case 13542:case 13546:case 13547:case 13548:case 13552:case 13553:case 13554:case 13558:case 13559:case 13560:case 13564:case 13565:case 13566:case 13570:case 13571:case 13572:case 13576:case 13577:case 13578:case 13582:case 13583:case 13584:case 13588:case 13589:case 13590:case 13594:case 13595:case 13596:case 13600:case 13601:case 13602:case 13606:case 13607:case 13608:case 13612:case 13613:case 13614:case 13618:case 13619:case 13620:case 13624:case 13625:case 13626:case 13630:case 13631:case 13632:case 13636:case 13637:case 13638:case 13642:case 13643:case 13644:case 13648:case 13649:case 13650:case 13654:case 13655:case 13656:case 13660:case 13661:case 13662:case 13666:case 13667:case 13668:case 13672:case 13673:case 13674:case 13678:case 13679:case 13680:case 13684:case 13685:case 13686:case 13690:case 13691:case 13692:case 13696:case 13697:case 13698:case 13702:case 13703:case 13704:case 13708:case 13709:case 13710:case 13714:case 13715:case 13716:case 13720:case 13721:case 13722:case 13726:case 13727:case 13728:case 13732:case 13733:case 13734:case 13738:case 13739:case 13740:case 13744:case 13745:case 13746:case 13750:case 13751:case 13752:case 13756:case 13757:case 13758:case 13762:case 13763:case 13764:case 13768:case 13769:case 13770:case 13774:case 13775:case 13776:case 13780:case 13781:case 13782: return Type::RedNetherBrickWall;
- case 9255: return Type::RedNetherBricks;
- case 67: return Type::RedSand;
- case 8217: return Type::RedSandstone;
- case 8397:case 8399:case 8401: return Type::RedSandstoneSlab;
- case 8221:case 8223:case 8225:case 8227:case 8229:case 8231:case 8233:case 8235:case 8237:case 8239:case 8241:case 8243:case 8245:case 8247:case 8249:case 8251:case 8253:case 8255:case 8257:case 8259:case 8261:case 8263:case 8265:case 8267:case 8269:case 8271:case 8273:case 8275:case 8277:case 8279:case 8281:case 8283:case 8285:case 8287:case 8289:case 8291:case 8293:case 8295:case 8297:case 8299: return Type::RedSandstoneStairs;
- case 11518:case 11519:case 11520:case 11524:case 11525:case 11526:case 11530:case 11531:case 11532:case 11536:case 11537:case 11538:case 11542:case 11543:case 11544:case 11548:case 11549:case 11550:case 11554:case 11555:case 11556:case 11560:case 11561:case 11562:case 11566:case 11567:case 11568:case 11572:case 11573:case 11574:case 11578:case 11579:case 11580:case 11584:case 11585:case 11586:case 11590:case 11591:case 11592:case 11596:case 11597:case 11598:case 11602:case 11603:case 11604:case 11608:case 11609:case 11610:case 11614:case 11615:case 11616:case 11620:case 11621:case 11622:case 11626:case 11627:case 11628:case 11632:case 11633:case 11634:case 11638:case 11639:case 11640:case 11644:case 11645:case 11646:case 11650:case 11651:case 11652:case 11656:case 11657:case 11658:case 11662:case 11663:case 11664:case 11668:case 11669:case 11670:case 11674:case 11675:case 11676:case 11680:case 11681:case 11682:case 11686:case 11687:case 11688:case 11692:case 11693:case 11694:case 11698:case 11699:case 11700:case 11704:case 11705:case 11706:case 11710:case 11711:case 11712:case 11716:case 11717:case 11718:case 11722:case 11723:case 11724:case 11728:case 11729:case 11730:case 11734:case 11735:case 11736:case 11740:case 11741:case 11742:case 11746:case 11747:case 11748:case 11752:case 11753:case 11754:case 11758:case 11759:case 11760:case 11764:case 11765:case 11766:case 11770:case 11771:case 11772:case 11776:case 11777:case 11778:case 11782:case 11783:case 11784:case 11788:case 11789:case 11790:case 11794:case 11795:case 11796:case 11800:case 11801:case 11802:case 11806:case 11807:case 11808:case 11812:case 11813:case 11814:case 11818:case 11819:case 11820:case 11824:case 11825:case 11826:case 11830:case 11831:case 11832:case 11836:case 11837:case 11838: return Type::RedSandstoneWall;
- case 9362:case 9363:case 9364:case 9365:case 9366:case 9367: return Type::RedShulkerBox;
- case 4109: return Type::RedStainedGlass;
- case 7313:case 7314:case 7317:case 7318:case 7321:case 7322:case 7325:case 7326:case 7329:case 7330:case 7333:case 7334:case 7337:case 7338:case 7341:case 7342: return Type::RedStainedGlassPane;
- case 6861: return Type::RedTerracotta;
- case 1417: return Type::RedTulip;
- case 8209:case 8210:case 8211:case 8212: return Type::RedWallBanner;
- case 1398: return Type::RedWool;
- case 6726: return Type::RedstoneBlock;
- case 5156:case 5157: return Type::RedstoneLamp;
- case 3885:case 3886: return Type::RedstoneOre;
- case 3887:case 3888: return Type::RedstoneTorch;
- case 3889:case 3890:case 3891:case 3892:case 3893:case 3894:case 3895:case 3896: return Type::RedstoneWallTorch;
- case 2058:case 2059:case 2060:case 2061:case 2062:case 2063:case 2064:case 2065:case 2066:case 2067:case 2068:case 2069:case 2070:case 2071:case 2072:case 2073:case 2074:case 2075:case 2076:case 2077:case 2078:case 2079:case 2080:case 2081:case 2082:case 2083:case 2084:case 2085:case 2086:case 2087:case 2088:case 2089:case 2090:case 2091:case 2092:case 2093:case 2094:case 2095:case 2096:case 2097:case 2098:case 2099:case 2100:case 2101:case 2102:case 2103:case 2104:case 2105:case 2106:case 2107:case 2108:case 2109:case 2110:case 2111:case 2112:case 2113:case 2114:case 2115:case 2116:case 2117:case 2118:case 2119:case 2120:case 2121:case 2122:case 2123:case 2124:case 2125:case 2126:case 2127:case 2128:case 2129:case 2130:case 2131:case 2132:case 2133:case 2134:case 2135:case 2136:case 2137:case 2138:case 2139:case 2140:case 2141:case 2142:case 2143:case 2144:case 2145:case 2146:case 2147:case 2148:case 2149:case 2150:case 2151:case 2152:case 2153:case 2154:case 2155:case 2156:case 2157:case 2158:case 2159:case 2160:case 2161:case 2162:case 2163:case 2164:case 2165:case 2166:case 2167:case 2168:case 2169:case 2170:case 2171:case 2172:case 2173:case 2174:case 2175:case 2176:case 2177:case 2178:case 2179:case 2180:case 2181:case 2182:case 2183:case 2184:case 2185:case 2186:case 2187:case 2188:case 2189:case 2190:case 2191:case 2192:case 2193:case 2194:case 2195:case 2196:case 2197:case 2198:case 2199:case 2200:case 2201:case 2202:case 2203:case 2204:case 2205:case 2206:case 2207:case 2208:case 2209:case 2210:case 2211:case 2212:case 2213:case 2214:case 2215:case 2216:case 2217:case 2218:case 2219:case 2220:case 2221:case 2222:case 2223:case 2224:case 2225:case 2226:case 2227:case 2228:case 2229:case 2230:case 2231:case 2232:case 2233:case 2234:case 2235:case 2236:case 2237:case 2238:case 2239:case 2240:case 2241:case 2242:case 2243:case 2244:case 2245:case 2246:case 2247:case 2248:case 2249:case 2250:case 2251:case 2252:case 2253:case 2254:case 2255:case 2256:case 2257:case 2258:case 2259:case 2260:case 2261:case 2262:case 2263:case 2264:case 2265:case 2266:case 2267:case 2268:case 2269:case 2270:case 2271:case 2272:case 2273:case 2274:case 2275:case 2276:case 2277:case 2278:case 2279:case 2280:case 2281:case 2282:case 2283:case 2284:case 2285:case 2286:case 2287:case 2288:case 2289:case 2290:case 2291:case 2292:case 2293:case 2294:case 2295:case 2296:case 2297:case 2298:case 2299:case 2300:case 2301:case 2302:case 2303:case 2304:case 2305:case 2306:case 2307:case 2308:case 2309:case 2310:case 2311:case 2312:case 2313:case 2314:case 2315:case 2316:case 2317:case 2318:case 2319:case 2320:case 2321:case 2322:case 2323:case 2324:case 2325:case 2326:case 2327:case 2328:case 2329:case 2330:case 2331:case 2332:case 2333:case 2334:case 2335:case 2336:case 2337:case 2338:case 2339:case 2340:case 2341:case 2342:case 2343:case 2344:case 2345:case 2346:case 2347:case 2348:case 2349:case 2350:case 2351:case 2352:case 2353:case 2354:case 2355:case 2356:case 2357:case 2358:case 2359:case 2360:case 2361:case 2362:case 2363:case 2364:case 2365:case 2366:case 2367:case 2368:case 2369:case 2370:case 2371:case 2372:case 2373:case 2374:case 2375:case 2376:case 2377:case 2378:case 2379:case 2380:case 2381:case 2382:case 2383:case 2384:case 2385:case 2386:case 2387:case 2388:case 2389:case 2390:case 2391:case 2392:case 2393:case 2394:case 2395:case 2396:case 2397:case 2398:case 2399:case 2400:case 2401:case 2402:case 2403:case 2404:case 2405:case 2406:case 2407:case 2408:case 2409:case 2410:case 2411:case 2412:case 2413:case 2414:case 2415:case 2416:case 2417:case 2418:case 2419:case 2420:case 2421:case 2422:case 2423:case 2424:case 2425:case 2426:case 2427:case 2428:case 2429:case 2430:case 2431:case 2432:case 2433:case 2434:case 2435:case 2436:case 2437:case 2438:case 2439:case 2440:case 2441:case 2442:case 2443:case 2444:case 2445:case 2446:case 2447:case 2448:case 2449:case 2450:case 2451:case 2452:case 2453:case 2454:case 2455:case 2456:case 2457:case 2458:case 2459:case 2460:case 2461:case 2462:case 2463:case 2464:case 2465:case 2466:case 2467:case 2468:case 2469:case 2470:case 2471:case 2472:case 2473:case 2474:case 2475:case 2476:case 2477:case 2478:case 2479:case 2480:case 2481:case 2482:case 2483:case 2484:case 2485:case 2486:case 2487:case 2488:case 2489:case 2490:case 2491:case 2492:case 2493:case 2494:case 2495:case 2496:case 2497:case 2498:case 2499:case 2500:case 2501:case 2502:case 2503:case 2504:case 2505:case 2506:case 2507:case 2508:case 2509:case 2510:case 2511:case 2512:case 2513:case 2514:case 2515:case 2516:case 2517:case 2518:case 2519:case 2520:case 2521:case 2522:case 2523:case 2524:case 2525:case 2526:case 2527:case 2528:case 2529:case 2530:case 2531:case 2532:case 2533:case 2534:case 2535:case 2536:case 2537:case 2538:case 2539:case 2540:case 2541:case 2542:case 2543:case 2544:case 2545:case 2546:case 2547:case 2548:case 2549:case 2550:case 2551:case 2552:case 2553:case 2554:case 2555:case 2556:case 2557:case 2558:case 2559:case 2560:case 2561:case 2562:case 2563:case 2564:case 2565:case 2566:case 2567:case 2568:case 2569:case 2570:case 2571:case 2572:case 2573:case 2574:case 2575:case 2576:case 2577:case 2578:case 2579:case 2580:case 2581:case 2582:case 2583:case 2584:case 2585:case 2586:case 2587:case 2588:case 2589:case 2590:case 2591:case 2592:case 2593:case 2594:case 2595:case 2596:case 2597:case 2598:case 2599:case 2600:case 2601:case 2602:case 2603:case 2604:case 2605:case 2606:case 2607:case 2608:case 2609:case 2610:case 2611:case 2612:case 2613:case 2614:case 2615:case 2616:case 2617:case 2618:case 2619:case 2620:case 2621:case 2622:case 2623:case 2624:case 2625:case 2626:case 2627:case 2628:case 2629:case 2630:case 2631:case 2632:case 2633:case 2634:case 2635:case 2636:case 2637:case 2638:case 2639:case 2640:case 2641:case 2642:case 2643:case 2644:case 2645:case 2646:case 2647:case 2648:case 2649:case 2650:case 2651:case 2652:case 2653:case 2654:case 2655:case 2656:case 2657:case 2658:case 2659:case 2660:case 2661:case 2662:case 2663:case 2664:case 2665:case 2666:case 2667:case 2668:case 2669:case 2670:case 2671:case 2672:case 2673:case 2674:case 2675:case 2676:case 2677:case 2678:case 2679:case 2680:case 2681:case 2682:case 2683:case 2684:case 2685:case 2686:case 2687:case 2688:case 2689:case 2690:case 2691:case 2692:case 2693:case 2694:case 2695:case 2696:case 2697:case 2698:case 2699:case 2700:case 2701:case 2702:case 2703:case 2704:case 2705:case 2706:case 2707:case 2708:case 2709:case 2710:case 2711:case 2712:case 2713:case 2714:case 2715:case 2716:case 2717:case 2718:case 2719:case 2720:case 2721:case 2722:case 2723:case 2724:case 2725:case 2726:case 2727:case 2728:case 2729:case 2730:case 2731:case 2732:case 2733:case 2734:case 2735:case 2736:case 2737:case 2738:case 2739:case 2740:case 2741:case 2742:case 2743:case 2744:case 2745:case 2746:case 2747:case 2748:case 2749:case 2750:case 2751:case 2752:case 2753:case 2754:case 2755:case 2756:case 2757:case 2758:case 2759:case 2760:case 2761:case 2762:case 2763:case 2764:case 2765:case 2766:case 2767:case 2768:case 2769:case 2770:case 2771:case 2772:case 2773:case 2774:case 2775:case 2776:case 2777:case 2778:case 2779:case 2780:case 2781:case 2782:case 2783:case 2784:case 2785:case 2786:case 2787:case 2788:case 2789:case 2790:case 2791:case 2792:case 2793:case 2794:case 2795:case 2796:case 2797:case 2798:case 2799:case 2800:case 2801:case 2802:case 2803:case 2804:case 2805:case 2806:case 2807:case 2808:case 2809:case 2810:case 2811:case 2812:case 2813:case 2814:case 2815:case 2816:case 2817:case 2818:case 2819:case 2820:case 2821:case 2822:case 2823:case 2824:case 2825:case 2826:case 2827:case 2828:case 2829:case 2830:case 2831:case 2832:case 2833:case 2834:case 2835:case 2836:case 2837:case 2838:case 2839:case 2840:case 2841:case 2842:case 2843:case 2844:case 2845:case 2846:case 2847:case 2848:case 2849:case 2850:case 2851:case 2852:case 2853:case 2854:case 2855:case 2856:case 2857:case 2858:case 2859:case 2860:case 2861:case 2862:case 2863:case 2864:case 2865:case 2866:case 2867:case 2868:case 2869:case 2870:case 2871:case 2872:case 2873:case 2874:case 2875:case 2876:case 2877:case 2878:case 2879:case 2880:case 2881:case 2882:case 2883:case 2884:case 2885:case 2886:case 2887:case 2888:case 2889:case 2890:case 2891:case 2892:case 2893:case 2894:case 2895:case 2896:case 2897:case 2898:case 2899:case 2900:case 2901:case 2902:case 2903:case 2904:case 2905:case 2906:case 2907:case 2908:case 2909:case 2910:case 2911:case 2912:case 2913:case 2914:case 2915:case 2916:case 2917:case 2918:case 2919:case 2920:case 2921:case 2922:case 2923:case 2924:case 2925:case 2926:case 2927:case 2928:case 2929:case 2930:case 2931:case 2932:case 2933:case 2934:case 2935:case 2936:case 2937:case 2938:case 2939:case 2940:case 2941:case 2942:case 2943:case 2944:case 2945:case 2946:case 2947:case 2948:case 2949:case 2950:case 2951:case 2952:case 2953:case 2954:case 2955:case 2956:case 2957:case 2958:case 2959:case 2960:case 2961:case 2962:case 2963:case 2964:case 2965:case 2966:case 2967:case 2968:case 2969:case 2970:case 2971:case 2972:case 2973:case 2974:case 2975:case 2976:case 2977:case 2978:case 2979:case 2980:case 2981:case 2982:case 2983:case 2984:case 2985:case 2986:case 2987:case 2988:case 2989:case 2990:case 2991:case 2992:case 2993:case 2994:case 2995:case 2996:case 2997:case 2998:case 2999:case 3000:case 3001:case 3002:case 3003:case 3004:case 3005:case 3006:case 3007:case 3008:case 3009:case 3010:case 3011:case 3012:case 3013:case 3014:case 3015:case 3016:case 3017:case 3018:case 3019:case 3020:case 3021:case 3022:case 3023:case 3024:case 3025:case 3026:case 3027:case 3028:case 3029:case 3030:case 3031:case 3032:case 3033:case 3034:case 3035:case 3036:case 3037:case 3038:case 3039:case 3040:case 3041:case 3042:case 3043:case 3044:case 3045:case 3046:case 3047:case 3048:case 3049:case 3050:case 3051:case 3052:case 3053:case 3054:case 3055:case 3056:case 3057:case 3058:case 3059:case 3060:case 3061:case 3062:case 3063:case 3064:case 3065:case 3066:case 3067:case 3068:case 3069:case 3070:case 3071:case 3072:case 3073:case 3074:case 3075:case 3076:case 3077:case 3078:case 3079:case 3080:case 3081:case 3082:case 3083:case 3084:case 3085:case 3086:case 3087:case 3088:case 3089:case 3090:case 3091:case 3092:case 3093:case 3094:case 3095:case 3096:case 3097:case 3098:case 3099:case 3100:case 3101:case 3102:case 3103:case 3104:case 3105:case 3106:case 3107:case 3108:case 3109:case 3110:case 3111:case 3112:case 3113:case 3114:case 3115:case 3116:case 3117:case 3118:case 3119:case 3120:case 3121:case 3122:case 3123:case 3124:case 3125:case 3126:case 3127:case 3128:case 3129:case 3130:case 3131:case 3132:case 3133:case 3134:case 3135:case 3136:case 3137:case 3138:case 3139:case 3140:case 3141:case 3142:case 3143:case 3144:case 3145:case 3146:case 3147:case 3148:case 3149:case 3150:case 3151:case 3152:case 3153:case 3154:case 3155:case 3156:case 3157:case 3158:case 3159:case 3160:case 3161:case 3162:case 3163:case 3164:case 3165:case 3166:case 3167:case 3168:case 3169:case 3170:case 3171:case 3172:case 3173:case 3174:case 3175:case 3176:case 3177:case 3178:case 3179:case 3180:case 3181:case 3182:case 3183:case 3184:case 3185:case 3186:case 3187:case 3188:case 3189:case 3190:case 3191:case 3192:case 3193:case 3194:case 3195:case 3196:case 3197:case 3198:case 3199:case 3200:case 3201:case 3202:case 3203:case 3204:case 3205:case 3206:case 3207:case 3208:case 3209:case 3210:case 3211:case 3212:case 3213:case 3214:case 3215:case 3216:case 3217:case 3218:case 3219:case 3220:case 3221:case 3222:case 3223:case 3224:case 3225:case 3226:case 3227:case 3228:case 3229:case 3230:case 3231:case 3232:case 3233:case 3234:case 3235:case 3236:case 3237:case 3238:case 3239:case 3240:case 3241:case 3242:case 3243:case 3244:case 3245:case 3246:case 3247:case 3248:case 3249:case 3250:case 3251:case 3252:case 3253:case 3254:case 3255:case 3256:case 3257:case 3258:case 3259:case 3260:case 3261:case 3262:case 3263:case 3264:case 3265:case 3266:case 3267:case 3268:case 3269:case 3270:case 3271:case 3272:case 3273:case 3274:case 3275:case 3276:case 3277:case 3278:case 3279:case 3280:case 3281:case 3282:case 3283:case 3284:case 3285:case 3286:case 3287:case 3288:case 3289:case 3290:case 3291:case 3292:case 3293:case 3294:case 3295:case 3296:case 3297:case 3298:case 3299:case 3300:case 3301:case 3302:case 3303:case 3304:case 3305:case 3306:case 3307:case 3308:case 3309:case 3310:case 3311:case 3312:case 3313:case 3314:case 3315:case 3316:case 3317:case 3318:case 3319:case 3320:case 3321:case 3322:case 3323:case 3324:case 3325:case 3326:case 3327:case 3328:case 3329:case 3330:case 3331:case 3332:case 3333:case 3334:case 3335:case 3336:case 3337:case 3338:case 3339:case 3340:case 3341:case 3342:case 3343:case 3344:case 3345:case 3346:case 3347:case 3348:case 3349:case 3350:case 3351:case 3352:case 3353: return Type::RedstoneWire;
- case 4031:case 4032:case 4033:case 4034:case 4035:case 4036:case 4037:case 4038:case 4039:case 4040:case 4041:case 4042:case 4043:case 4044:case 4045:case 4046:case 4047:case 4048:case 4049:case 4050:case 4051:case 4052:case 4053:case 4054:case 4055:case 4056:case 4057:case 4058:case 4059:case 4060:case 4061:case 4062:case 4063:case 4064:case 4065:case 4066:case 4067:case 4068:case 4069:case 4070:case 4071:case 4072:case 4073:case 4074:case 4075:case 4076:case 4077:case 4078:case 4079:case 4080:case 4081:case 4082:case 4083:case 4084:case 4085:case 4086:case 4087:case 4088:case 4089:case 4090:case 4091:case 4092:case 4093:case 4094: return Type::Repeater;
- case 9225:case 9226:case 9227:case 9228:case 9229:case 9230:case 9231:case 9232:case 9233:case 9234:case 9235:case 9236: return Type::RepeatingCommandBlock;
- case 15829:case 15830:case 15831:case 15832:case 15833: return Type::RespawnAnchor;
- case 7889:case 7890: return Type::RoseBush;
- case 66: return Type::Sand;
- case 246: return Type::Sandstone;
- case 8349:case 8351:case 8353: return Type::SandstoneSlab;
- case 5171:case 5173:case 5175:case 5177:case 5179:case 5181:case 5183:case 5185:case 5187:case 5189:case 5191:case 5193:case 5195:case 5197:case 5199:case 5201:case 5203:case 5205:case 5207:case 5209:case 5211:case 5213:case 5215:case 5217:case 5219:case 5221:case 5223:case 5225:case 5227:case 5229:case 5231:case 5233:case 5235:case 5237:case 5239:case 5241:case 5243:case 5245:case 5247:case 5249: return Type::SandstoneStairs;
- case 13786:case 13787:case 13788:case 13792:case 13793:case 13794:case 13798:case 13799:case 13800:case 13804:case 13805:case 13806:case 13810:case 13811:case 13812:case 13816:case 13817:case 13818:case 13822:case 13823:case 13824:case 13828:case 13829:case 13830:case 13834:case 13835:case 13836:case 13840:case 13841:case 13842:case 13846:case 13847:case 13848:case 13852:case 13853:case 13854:case 13858:case 13859:case 13860:case 13864:case 13865:case 13866:case 13870:case 13871:case 13872:case 13876:case 13877:case 13878:case 13882:case 13883:case 13884:case 13888:case 13889:case 13890:case 13894:case 13895:case 13896:case 13900:case 13901:case 13902:case 13906:case 13907:case 13908:case 13912:case 13913:case 13914:case 13918:case 13919:case 13920:case 13924:case 13925:case 13926:case 13930:case 13931:case 13932:case 13936:case 13937:case 13938:case 13942:case 13943:case 13944:case 13948:case 13949:case 13950:case 13954:case 13955:case 13956:case 13960:case 13961:case 13962:case 13966:case 13967:case 13968:case 13972:case 13973:case 13974:case 13978:case 13979:case 13980:case 13984:case 13985:case 13986:case 13990:case 13991:case 13992:case 13996:case 13997:case 13998:case 14002:case 14003:case 14004:case 14008:case 14009:case 14010:case 14014:case 14015:case 14016:case 14020:case 14021:case 14022:case 14026:case 14027:case 14028:case 14032:case 14033:case 14034:case 14038:case 14039:case 14040:case 14044:case 14045:case 14046:case 14050:case 14051:case 14052:case 14056:case 14057:case 14058:case 14062:case 14063:case 14064:case 14068:case 14069:case 14070:case 14074:case 14075:case 14076:case 14080:case 14081:case 14082:case 14086:case 14087:case 14088:case 14092:case 14093:case 14094:case 14098:case 14099:case 14100:case 14104:case 14105:case 14106: return Type::SandstoneWall;
- case 14756:case 14758:case 14760:case 14762:case 14764:case 14766:case 14768:case 14770:case 14772:case 14774:case 14776:case 14778:case 14780:case 14782:case 14784:case 14786: return Type::Scaffolding;
- case 7862: return Type::SeaLantern;
- case 9641:case 9643:case 9645:case 9647: return Type::SeaPickle;
- case 1345: return Type::Seagrass;
- case 14989: return Type::Shroomlight;
- case 9272:case 9273:case 9274:case 9275:case 9276:case 9277: return Type::ShulkerBox;
- case 6490:case 6491:case 6492:case 6493:case 6494:case 6495:case 6496:case 6497:case 6498:case 6499:case 6500:case 6501:case 6502:case 6503:case 6504:case 6505: return Type::SkeletonSkull;
- case 6506:case 6507:case 6508:case 6509: return Type::SkeletonWallSkull;
- case 7535: return Type::SlimeBlock;
- case 14849: return Type::SmithingTable;
- case 14803:case 14804:case 14805:case 14806:case 14807:case 14808:case 14809:case 14810: return Type::Smoker;
- case 8416: return Type::SmoothQuartz;
- case 10832:case 10834:case 10836: return Type::SmoothQuartzSlab;
- case 10310:case 10312:case 10314:case 10316:case 10318:case 10320:case 10322:case 10324:case 10326:case 10328:case 10330:case 10332:case 10334:case 10336:case 10338:case 10340:case 10342:case 10344:case 10346:case 10348:case 10350:case 10352:case 10354:case 10356:case 10358:case 10360:case 10362:case 10364:case 10366:case 10368:case 10370:case 10372:case 10374:case 10376:case 10378:case 10380:case 10382:case 10384:case 10386:case 10388: return Type::SmoothQuartzStairs;
- case 8417: return Type::SmoothRedSandstone;
- case 10796:case 10798:case 10800: return Type::SmoothRedSandstoneSlab;
- case 9750:case 9752:case 9754:case 9756:case 9758:case 9760:case 9762:case 9764:case 9766:case 9768:case 9770:case 9772:case 9774:case 9776:case 9778:case 9780:case 9782:case 9784:case 9786:case 9788:case 9790:case 9792:case 9794:case 9796:case 9798:case 9800:case 9802:case 9804:case 9806:case 9808:case 9810:case 9812:case 9814:case 9816:case 9818:case 9820:case 9822:case 9824:case 9826:case 9828: return Type::SmoothRedSandstoneStairs;
- case 8415: return Type::SmoothSandstone;
- case 10826:case 10828:case 10830: return Type::SmoothSandstoneSlab;
- case 10230:case 10232:case 10234:case 10236:case 10238:case 10240:case 10242:case 10244:case 10246:case 10248:case 10250:case 10252:case 10254:case 10256:case 10258:case 10260:case 10262:case 10264:case 10266:case 10268:case 10270:case 10272:case 10274:case 10276:case 10278:case 10280:case 10282:case 10284:case 10286:case 10288:case 10290:case 10292:case 10294:case 10296:case 10298:case 10300:case 10302:case 10304:case 10306:case 10308: return Type::SmoothSandstoneStairs;
- case 8414: return Type::SmoothStone;
- case 8343:case 8345:case 8347: return Type::SmoothStoneSlab;
- case 3921:case 3922:case 3923:case 3924:case 3925:case 3926:case 3927:case 3928: return Type::Snow;
- case 3930: return Type::SnowBlock;
- case 14923:case 14925:case 14927:case 14929:case 14931:case 14933:case 14935:case 14937:case 14939:case 14941:case 14943:case 14945:case 14947:case 14949:case 14951:case 14953: return Type::SoulCampfire;
- case 1952: return Type::SoulFire;
- case 14888:case 14889: return Type::SoulLantern;
- case 4000: return Type::SoulSand;
- case 4001: return Type::SoulSoil;
- case 4008: return Type::SoulTorch;
- case 4009:case 4010:case 4011:case 4012: return Type::SoulWallTorch;
- case 1953: return Type::Spawner;
- case 229: return Type::Sponge;
- case 6370:case 6371:case 6372:case 6373:case 6374:case 6375:case 6376:case 6377:case 6378:case 6379:case 6380:case 6381:case 6382:case 6383:case 6384:case 6385:case 6386:case 6387:case 6388:case 6389:case 6390:case 6391:case 6392:case 6393: return Type::SpruceButton;
- case 8738:case 8739:case 8740:case 8741:case 8742:case 8743:case 8744:case 8745:case 8746:case 8747:case 8748:case 8749:case 8750:case 8751:case 8752:case 8753:case 8754:case 8755:case 8756:case 8757:case 8758:case 8759:case 8760:case 8761:case 8762:case 8763:case 8764:case 8765:case 8766:case 8767:case 8768:case 8769:case 8770:case 8771:case 8772:case 8773:case 8774:case 8775:case 8776:case 8777:case 8778:case 8779:case 8780:case 8781:case 8782:case 8783:case 8784:case 8785:case 8786:case 8787:case 8788:case 8789:case 8790:case 8791:case 8792:case 8793:case 8794:case 8795:case 8796:case 8797:case 8798:case 8799:case 8800:case 8801: return Type::SpruceDoor;
- case 8580:case 8581:case 8584:case 8585:case 8588:case 8589:case 8592:case 8593:case 8596:case 8597:case 8600:case 8601:case 8604:case 8605:case 8608:case 8609: return Type::SpruceFence;
- case 8418:case 8419:case 8420:case 8421:case 8422:case 8423:case 8424:case 8425:case 8426:case 8427:case 8428:case 8429:case 8430:case 8431:case 8432:case 8433:case 8434:case 8435:case 8436:case 8437:case 8438:case 8439:case 8440:case 8441:case 8442:case 8443:case 8444:case 8445:case 8446:case 8447:case 8448:case 8449: return Type::SpruceFenceGate;
- case 159:case 160:case 161:case 162:case 163:case 164:case 165:case 166:case 167:case 168:case 169:case 170:case 171:case 172: return Type::SpruceLeaves;
- case 76:case 77:case 78: return Type::SpruceLog;
- case 16: return Type::SprucePlanks;
- case 3875:case 3876: return Type::SprucePressurePlate;
- case 23:case 24: return Type::SpruceSapling;
- case 3414:case 3416:case 3418:case 3420:case 3422:case 3424:case 3426:case 3428:case 3430:case 3432:case 3434:case 3436:case 3438:case 3440:case 3442:case 3444: return Type::SpruceSign;
- case 8307:case 8309:case 8311: return Type::SpruceSlab;
- case 5405:case 5407:case 5409:case 5411:case 5413:case 5415:case 5417:case 5419:case 5421:case 5423:case 5425:case 5427:case 5429:case 5431:case 5433:case 5435:case 5437:case 5439:case 5441:case 5443:case 5445:case 5447:case 5449:case 5451:case 5453:case 5455:case 5457:case 5459:case 5461:case 5463:case 5465:case 5467:case 5469:case 5471:case 5473:case 5475:case 5477:case 5479:case 5481:case 5483: return Type::SpruceStairs;
- case 4176:case 4178:case 4180:case 4182:case 4184:case 4186:case 4188:case 4190:case 4192:case 4194:case 4196:case 4198:case 4200:case 4202:case 4204:case 4206:case 4208:case 4210:case 4212:case 4214:case 4216:case 4218:case 4220:case 4222:case 4224:case 4226:case 4228:case 4230:case 4232:case 4234:case 4236:case 4238: return Type::SpruceTrapdoor;
- case 3744:case 3746:case 3748:case 3750: return Type::SpruceWallSign;
- case 112:case 113:case 114: return Type::SpruceWood;
- case 1329:case 1330:case 1331:case 1332:case 1333:case 1334:case 1335:case 1336:case 1337:case 1338:case 1339:case 1340: return Type::StickyPiston;
- case 1: return Type::Stone;
- case 8379:case 8381:case 8383: return Type::StoneBrickSlab;
- case 4933:case 4935:case 4937:case 4939:case 4941:case 4943:case 4945:case 4947:case 4949:case 4951:case 4953:case 4955:case 4957:case 4959:case 4961:case 4963:case 4965:case 4967:case 4969:case 4971:case 4973:case 4975:case 4977:case 4979:case 4981:case 4983:case 4985:case 4987:case 4989:case 4991:case 4993:case 4995:case 4997:case 4999:case 5001:case 5003:case 5005:case 5007:case 5009:case 5011: return Type::StoneBrickStairs;
- case 12490:case 12491:case 12492:case 12496:case 12497:case 12498:case 12502:case 12503:case 12504:case 12508:case 12509:case 12510:case 12514:case 12515:case 12516:case 12520:case 12521:case 12522:case 12526:case 12527:case 12528:case 12532:case 12533:case 12534:case 12538:case 12539:case 12540:case 12544:case 12545:case 12546:case 12550:case 12551:case 12552:case 12556:case 12557:case 12558:case 12562:case 12563:case 12564:case 12568:case 12569:case 12570:case 12574:case 12575:case 12576:case 12580:case 12581:case 12582:case 12586:case 12587:case 12588:case 12592:case 12593:case 12594:case 12598:case 12599:case 12600:case 12604:case 12605:case 12606:case 12610:case 12611:case 12612:case 12616:case 12617:case 12618:case 12622:case 12623:case 12624:case 12628:case 12629:case 12630:case 12634:case 12635:case 12636:case 12640:case 12641:case 12642:case 12646:case 12647:case 12648:case 12652:case 12653:case 12654:case 12658:case 12659:case 12660:case 12664:case 12665:case 12666:case 12670:case 12671:case 12672:case 12676:case 12677:case 12678:case 12682:case 12683:case 12684:case 12688:case 12689:case 12690:case 12694:case 12695:case 12696:case 12700:case 12701:case 12702:case 12706:case 12707:case 12708:case 12712:case 12713:case 12714:case 12718:case 12719:case 12720:case 12724:case 12725:case 12726:case 12730:case 12731:case 12732:case 12736:case 12737:case 12738:case 12742:case 12743:case 12744:case 12748:case 12749:case 12750:case 12754:case 12755:case 12756:case 12760:case 12761:case 12762:case 12766:case 12767:case 12768:case 12772:case 12773:case 12774:case 12778:case 12779:case 12780:case 12784:case 12785:case 12786:case 12790:case 12791:case 12792:case 12796:case 12797:case 12798:case 12802:case 12803:case 12804:case 12808:case 12809:case 12810: return Type::StoneBrickWall;
- case 4495: return Type::StoneBricks;
- case 3897:case 3898:case 3899:case 3900:case 3901:case 3902:case 3903:case 3904:case 3905:case 3906:case 3907:case 3908:case 3909:case 3910:case 3911:case 3912:case 3913:case 3914:case 3915:case 3916:case 3917:case 3918:case 3919:case 3920: return Type::StoneButton;
- case 3807:case 3808: return Type::StonePressurePlate;
- case 8337:case 8339:case 8341: return Type::StoneSlab;
- case 10150:case 10152:case 10154:case 10156:case 10158:case 10160:case 10162:case 10164:case 10166:case 10168:case 10170:case 10172:case 10174:case 10176:case 10178:case 10180:case 10182:case 10184:case 10186:case 10188:case 10190:case 10192:case 10194:case 10196:case 10198:case 10200:case 10202:case 10204:case 10206:case 10208:case 10210:case 10212:case 10214:case 10216:case 10218:case 10220:case 10222:case 10224:case 10226:case 10228: return Type::StoneStairs;
- case 14850:case 14851:case 14852:case 14853: return Type::Stonecutter;
- case 100:case 101:case 102: return Type::StrippedAcaciaLog;
- case 139:case 140:case 141: return Type::StrippedAcaciaWood;
- case 94:case 95:case 96: return Type::StrippedBirchLog;
- case 133:case 134:case 135: return Type::StrippedBirchWood;
- case 14984:case 14985:case 14986: return Type::StrippedCrimsonHyphae;
- case 14978:case 14979:case 14980: return Type::StrippedCrimsonStem;
- case 103:case 104:case 105: return Type::StrippedDarkOakLog;
- case 142:case 143:case 144: return Type::StrippedDarkOakWood;
- case 97:case 98:case 99: return Type::StrippedJungleLog;
- case 136:case 137:case 138: return Type::StrippedJungleWood;
- case 106:case 107:case 108: return Type::StrippedOakLog;
- case 127:case 128:case 129: return Type::StrippedOakWood;
- case 91:case 92:case 93: return Type::StrippedSpruceLog;
- case 130:case 131:case 132: return Type::StrippedSpruceWood;
- case 14967:case 14968:case 14969: return Type::StrippedWarpedHyphae;
- case 14961:case 14962:case 14963: return Type::StrippedWarpedStem;
- case 15735:case 15736:case 15737:case 15738: return Type::StructureBlock;
- case 9259: return Type::StructureVoid;
- case 3948:case 3949:case 3950:case 3951:case 3952:case 3953:case 3954:case 3955:case 3956:case 3957:case 3958:case 3959:case 3960:case 3961:case 3962:case 3963: return Type::SugarCane;
- case 7885:case 7886: return Type::Sunflower;
- case 14954:case 14955:case 14956:case 14957: return Type::SweetBerryBush;
- case 1430:case 1431: return Type::TNT;
- case 7893:case 7894: return Type::TallGrass;
- case 1346:case 1347: return Type::TallSeagrass;
- case 15760:case 15761:case 15762:case 15763:case 15764:case 15765:case 15766:case 15767:case 15768:case 15769:case 15770:case 15771:case 15772:case 15773:case 15774:case 15775: return Type::Target;
- case 7882: return Type::Terracotta;
- case 1435: return Type::Torch;
- case 6623:case 6625:case 6627:case 6629:case 6631:case 6633:case 6635:case 6637:case 6639:case 6641:case 6643:case 6645: return Type::TrappedChest;
- case 5275:case 5276:case 5277:case 5278:case 5279:case 5280:case 5281:case 5282:case 5283:case 5284:case 5285:case 5286:case 5287:case 5288:case 5289:case 5290:case 5291:case 5292:case 5293:case 5294:case 5295:case 5296:case 5297:case 5298:case 5299:case 5300:case 5301:case 5302:case 5303:case 5304:case 5305:case 5306:case 5307:case 5308:case 5309:case 5310:case 5311:case 5312:case 5313:case 5314:case 5315:case 5316:case 5317:case 5318:case 5319:case 5320:case 5321:case 5322:case 5323:case 5324:case 5325:case 5326:case 5327:case 5328:case 5329:case 5330:case 5331:case 5332:case 5333:case 5334:case 5335:case 5336:case 5337:case 5338:case 5339:case 5340:case 5341:case 5342:case 5343:case 5344:case 5345:case 5346:case 5347:case 5348:case 5349:case 5350:case 5351:case 5352:case 5353:case 5354:case 5355:case 5356:case 5357:case 5358:case 5359:case 5360:case 5361:case 5362:case 5363:case 5364:case 5365:case 5366:case 5367:case 5368:case 5369:case 5370:case 5371:case 5372:case 5373:case 5374:case 5375:case 5376:case 5377:case 5378:case 5379:case 5380:case 5381:case 5382:case 5383:case 5384:case 5385:case 5386:case 5387:case 5388:case 5389:case 5390:case 5391:case 5392:case 5393:case 5394:case 5395:case 5396:case 5397:case 5398:case 5399:case 5400:case 5401:case 5402: return Type::Tripwire;
- case 5259:case 5260:case 5261:case 5262:case 5263:case 5264:case 5265:case 5266:case 5267:case 5268:case 5269:case 5270:case 5271:case 5272:case 5273:case 5274: return Type::TripwireHook;
- case 9531: return Type::TubeCoral;
- case 9515: return Type::TubeCoralBlock;
- case 9551: return Type::TubeCoralFan;
- case 9601:case 9603:case 9605:case 9607: return Type::TubeCoralWallFan;
- case 9498:case 9499:case 9500:case 9501:case 9502:case 9503:case 9504:case 9505:case 9506:case 9507:case 9508:case 9509: return Type::TurtleEgg;
- case 15017:case 15018:case 15019:case 15020:case 15021:case 15022:case 15023:case 15024:case 15025:case 15026:case 15027:case 15028:case 15029:case 15030:case 15031:case 15032:case 15033:case 15034:case 15035:case 15036:case 15037:case 15038:case 15039:case 15040:case 15041:case 15042: return Type::TwistingVines;
- case 15043: return Type::TwistingVinesPlant;
- case 4788:case 4789:case 4790:case 4791:case 4792:case 4793:case 4794:case 4795:case 4796:case 4797:case 4798:case 4799:case 4800:case 4801:case 4802:case 4803:case 4804:case 4805:case 4806:case 4807:case 4808:case 4809:case 4810:case 4811:case 4812:case 4813:case 4814:case 4815:case 4816:case 4817:case 4818:case 4819: return Type::Vine;
- case 9665: return Type::VoidAir;
- case 1436:case 1437:case 1438:case 1439: return Type::WallTorch;
- case 15503:case 15504:case 15505:case 15506:case 15507:case 15508:case 15509:case 15510:case 15511:case 15512:case 15513:case 15514:case 15515:case 15516:case 15517:case 15518:case 15519:case 15520:case 15521:case 15522:case 15523:case 15524:case 15525:case 15526: return Type::WarpedButton;
- case 15591:case 15592:case 15593:case 15594:case 15595:case 15596:case 15597:case 15598:case 15599:case 15600:case 15601:case 15602:case 15603:case 15604:case 15605:case 15606:case 15607:case 15608:case 15609:case 15610:case 15611:case 15612:case 15613:case 15614:case 15615:case 15616:case 15617:case 15618:case 15619:case 15620:case 15621:case 15622:case 15623:case 15624:case 15625:case 15626:case 15627:case 15628:case 15629:case 15630:case 15631:case 15632:case 15633:case 15634:case 15635:case 15636:case 15637:case 15638:case 15639:case 15640:case 15641:case 15642:case 15643:case 15644:case 15645:case 15646:case 15647:case 15648:case 15649:case 15650:case 15651:case 15652:case 15653:case 15654: return Type::WarpedDoor;
- case 15097:case 15098:case 15101:case 15102:case 15105:case 15106:case 15109:case 15110:case 15113:case 15114:case 15117:case 15118:case 15121:case 15122:case 15125:case 15126: return Type::WarpedFence;
- case 15287:case 15288:case 15289:case 15290:case 15291:case 15292:case 15293:case 15294:case 15295:case 15296:case 15297:case 15298:case 15299:case 15300:case 15301:case 15302:case 15303:case 15304:case 15305:case 15306:case 15307:case 15308:case 15309:case 15310:case 15311:case 15312:case 15313:case 15314:case 15315:case 15316:case 15317:case 15318: return Type::WarpedFenceGate;
- case 14971: return Type::WarpedFungus;
- case 14964:case 14965:case 14966: return Type::WarpedHyphae;
- case 14970: return Type::WarpedNylium;
- case 15046: return Type::WarpedPlanks;
- case 15061:case 15062: return Type::WarpedPressurePlate;
- case 14973: return Type::WarpedRoots;
- case 15688:case 15690:case 15692:case 15694:case 15696:case 15698:case 15700:case 15702:case 15704:case 15706:case 15708:case 15710:case 15712:case 15714:case 15716:case 15718: return Type::WarpedSign;
- case 15054:case 15056:case 15058: return Type::WarpedSlab;
- case 15400:case 15402:case 15404:case 15406:case 15408:case 15410:case 15412:case 15414:case 15416:case 15418:case 15420:case 15422:case 15424:case 15426:case 15428:case 15430:case 15432:case 15434:case 15436:case 15438:case 15440:case 15442:case 15444:case 15446:case 15448:case 15450:case 15452:case 15454:case 15456:case 15458:case 15460:case 15462:case 15464:case 15466:case 15468:case 15470:case 15472:case 15474:case 15476:case 15478: return Type::WarpedStairs;
- case 14958:case 14959:case 14960: return Type::WarpedStem;
- case 15192:case 15194:case 15196:case 15198:case 15200:case 15202:case 15204:case 15206:case 15208:case 15210:case 15212:case 15214:case 15216:case 15218:case 15220:case 15222:case 15224:case 15226:case 15228:case 15230:case 15232:case 15234:case 15236:case 15238:case 15240:case 15242:case 15244:case 15246:case 15248:case 15250:case 15252:case 15254: return Type::WarpedTrapdoor;
- case 15728:case 15730:case 15732:case 15734: return Type::WarpedWallSign;
- case 14972: return Type::WarpedWartBlock;
- case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 48:case 49: return Type::Water;
- case 14990:case 14991:case 14992:case 14993:case 14994:case 14995:case 14996:case 14997:case 14998:case 14999:case 15000:case 15001:case 15002:case 15003:case 15004:case 15005:case 15006:case 15007:case 15008:case 15009:case 15010:case 15011:case 15012:case 15013:case 15014:case 15015: return Type::WeepingVines;
- case 15016: return Type::WeepingVinesPlant;
- case 230: return Type::WetSponge;
- case 3357:case 3358:case 3359:case 3360:case 3361:case 3362:case 3363:case 3364: return Type::Wheat;
- case 7897:case 7898:case 7899:case 7900:case 7901:case 7902:case 7903:case 7904:case 7905:case 7906:case 7907:case 7908:case 7909:case 7910:case 7911:case 7912: return Type::WhiteBanner;
- case 1049:case 1050:case 1051:case 1052:case 1053:case 1054:case 1055:case 1056:case 1057:case 1058:case 1059:case 1060:case 1061:case 1062:case 1063:case 1064: return Type::WhiteBed;
- case 7866: return Type::WhiteCarpet;
- case 9438: return Type::WhiteConcrete;
- case 9454: return Type::WhiteConcretePowder;
- case 9374:case 9375:case 9376:case 9377: return Type::WhiteGlazedTerracotta;
- case 9278:case 9279:case 9280:case 9281:case 9282:case 9283: return Type::WhiteShulkerBox;
- case 4095: return Type::WhiteStainedGlass;
- case 6865:case 6866:case 6869:case 6870:case 6873:case 6874:case 6877:case 6878:case 6881:case 6882:case 6885:case 6886:case 6889:case 6890:case 6893:case 6894: return Type::WhiteStainedGlassPane;
- case 6847: return Type::WhiteTerracotta;
- case 1419: return Type::WhiteTulip;
- case 8153:case 8154:case 8155:case 8156: return Type::WhiteWallBanner;
- case 1384: return Type::WhiteWool;
- case 1423: return Type::WitherRose;
- case 6510:case 6511:case 6512:case 6513:case 6514:case 6515:case 6516:case 6517:case 6518:case 6519:case 6520:case 6521:case 6522:case 6523:case 6524:case 6525: return Type::WitherSkeletonSkull;
- case 6526:case 6527:case 6528:case 6529: return Type::WitherSkeletonWallSkull;
- case 7961:case 7962:case 7963:case 7964:case 7965:case 7966:case 7967:case 7968:case 7969:case 7970:case 7971:case 7972:case 7973:case 7974:case 7975:case 7976: return Type::YellowBanner;
- case 1113:case 1114:case 1115:case 1116:case 1117:case 1118:case 1119:case 1120:case 1121:case 1122:case 1123:case 1124:case 1125:case 1126:case 1127:case 1128: return Type::YellowBed;
- case 7870: return Type::YellowCarpet;
- case 9442: return Type::YellowConcrete;
- case 9458: return Type::YellowConcretePowder;
- case 9390:case 9391:case 9392:case 9393: return Type::YellowGlazedTerracotta;
- case 9302:case 9303:case 9304:case 9305:case 9306:case 9307: return Type::YellowShulkerBox;
- case 4099: return Type::YellowStainedGlass;
- case 6993:case 6994:case 6997:case 6998:case 7001:case 7002:case 7005:case 7006:case 7009:case 7010:case 7013:case 7014:case 7017:case 7018:case 7021:case 7022: return Type::YellowStainedGlassPane;
- case 6851: return Type::YellowTerracotta;
- case 8169:case 8170:case 8171:case 8172: return Type::YellowWallBanner;
- case 1388: return Type::YellowWool;
- case 6530:case 6531:case 6532:case 6533:case 6534:case 6535:case 6536:case 6537:case 6538:case 6539:case 6540:case 6541:case 6542:case 6543:case 6544:case 6545: return Type::ZombieHead;
- default: return Type::ZombieWallHead;
- }
- }
- bool Is(short ID, enum Type Type)
- {
- return Block::Type(ID) == Type;
- }
namespace AcaciaButton
{
- short AcaciaButton()
+ BlockState AcaciaButton()
{
return 6451;
}
- enum Face Face(short ID)
+ enum Face Face(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6458: case 6459: case 6460: case 6461: case 6462: case 6463: case 6464: case 6465: return Face::Ceiling;
case 6442: case 6443: case 6444: case 6445: case 6446: case 6447: case 6448: case 6449: return Face::Floor;
default: return Face::Wall;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6446: case 6447: case 6454: case 6455: case 6462: case 6463: return eBlockFace::BLOCK_FACE_XM;
case 6448: case 6449: case 6456: case 6457: case 6464: case 6465: return eBlockFace::BLOCK_FACE_XP;
@@ -800,9 +27,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6443: case 6445: case 6447: case 6449: case 6451: case 6453: case 6455: case 6457: case 6459: case 6461: case 6463: case 6465: return false;
default: return true;
@@ -811,13 +38,13 @@ namespace Block
}
namespace AcaciaDoor
{
- short AcaciaDoor()
+ BlockState AcaciaDoor()
{
return 8941;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8962: case 8963: case 8964: case 8965: case 8966: case 8967: case 8968: case 8969: case 8970: case 8971: case 8972: case 8973: case 8974: case 8975: case 8976: case 8977: return eBlockFace::BLOCK_FACE_XM;
case 8978: case 8979: case 8980: case 8981: case 8982: case 8983: case 8984: case 8985: case 8986: case 8987: case 8988: case 8989: case 8990: case 8991: case 8992: case 8993: return eBlockFace::BLOCK_FACE_XP;
@@ -825,33 +52,33 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8938: case 8939: case 8940: case 8941: case 8942: case 8943: case 8944: case 8945: case 8954: case 8955: case 8956: case 8957: case 8958: case 8959: case 8960: case 8961: case 8970: case 8971: case 8972: case 8973: case 8974: case 8975: case 8976: case 8977: case 8986: case 8987: case 8988: case 8989: case 8990: case 8991: case 8992: case 8993: return Half::Lower;
default: return Half::Upper;
}
}
- enum Hinge Hinge(short ID)
+ enum Hinge Hinge(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8930: case 8931: case 8932: case 8933: case 8938: case 8939: case 8940: case 8941: case 8946: case 8947: case 8948: case 8949: case 8954: case 8955: case 8956: case 8957: case 8962: case 8963: case 8964: case 8965: case 8970: case 8971: case 8972: case 8973: case 8978: case 8979: case 8980: case 8981: case 8986: case 8987: case 8988: case 8989: return Hinge::Left;
default: return Hinge::Right;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8932: case 8933: case 8936: case 8937: case 8940: case 8941: case 8944: case 8945: case 8948: case 8949: case 8952: case 8953: case 8956: case 8957: case 8960: case 8961: case 8964: case 8965: case 8968: case 8969: case 8972: case 8973: case 8976: case 8977: case 8980: case 8981: case 8984: case 8985: case 8988: case 8989: case 8992: case 8993: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8931: case 8933: case 8935: case 8937: case 8939: case 8941: case 8943: case 8945: case 8947: case 8949: case 8951: case 8953: case 8955: case 8957: case 8959: case 8961: case 8963: case 8965: case 8967: case 8969: case 8971: case 8973: case 8975: case 8977: case 8979: case 8981: case 8983: case 8985: case 8987: case 8989: case 8991: case 8993: return false;
default: return true;
@@ -860,37 +87,37 @@ namespace Block
}
namespace AcaciaFence
{
- short AcaciaFence()
+ BlockState AcaciaFence()
{
return 8705;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8692: case 8693: case 8696: case 8697: case 8700: case 8701: case 8704: case 8705: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8684: case 8685: case 8688: case 8689: case 8700: case 8701: case 8704: case 8705: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8680: case 8681: case 8688: case 8689: case 8696: case 8697: case 8704: case 8705: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8677: case 8681: case 8685: case 8689: case 8693: case 8697: case 8701: case 8705: return false;
default: return true;
@@ -899,13 +126,13 @@ namespace Block
}
namespace AcaciaFenceGate
{
- short AcaciaFenceGate()
+ BlockState AcaciaFenceGate()
{
return 8521;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8530: case 8531: case 8532: case 8533: case 8534: case 8535: case 8536: case 8537: return eBlockFace::BLOCK_FACE_XM;
case 8538: case 8539: case 8540: case 8541: case 8542: case 8543: case 8544: case 8545: return eBlockFace::BLOCK_FACE_XP;
@@ -913,25 +140,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool InWall(short ID)
+ bool InWall(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8518: case 8519: case 8520: case 8521: case 8526: case 8527: case 8528: case 8529: case 8534: case 8535: case 8536: case 8537: case 8542: case 8543: case 8544: case 8545: return false;
default: return true;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8516: case 8517: case 8520: case 8521: case 8524: case 8525: case 8528: case 8529: case 8532: case 8533: case 8536: case 8537: case 8540: case 8541: case 8544: case 8545: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8515: case 8517: case 8519: case 8521: case 8523: case 8525: case 8527: case 8529: case 8531: case 8533: case 8535: case 8537: case 8539: case 8541: case 8543: case 8545: return false;
default: return true;
@@ -940,13 +167,13 @@ namespace Block
}
namespace AcaciaLeaves
{
- short AcaciaLeaves()
+ BlockState AcaciaLeaves()
{
return 214;
}
- unsigned char Distance(short ID)
+ unsigned char Distance(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 201: case 202: return 1;
case 203: case 204: return 2;
@@ -957,9 +184,9 @@ namespace Block
default: return 7;
}
}
- bool Persistent(short ID)
+ bool Persistent(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 202: case 204: case 206: case 208: case 210: case 212: case 214: return false;
default: return true;
@@ -968,13 +195,13 @@ namespace Block
}
namespace AcaciaLog
{
- short AcaciaLog()
+ BlockState AcaciaLog()
{
return 86;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 85: return Axis::X;
case 86: return Axis::Y;
@@ -987,13 +214,13 @@ namespace Block
}
namespace AcaciaPressurePlate
{
- short AcaciaPressurePlate()
+ BlockState AcaciaPressurePlate()
{
return 3882;
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3882: return false;
default: return true;
@@ -1002,13 +229,13 @@ namespace Block
}
namespace AcaciaSapling
{
- short AcaciaSapling()
+ BlockState AcaciaSapling()
{
return 29;
}
- unsigned char Stage(short ID)
+ unsigned char Stage(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 29: return 0;
default: return 1;
@@ -1017,13 +244,13 @@ namespace Block
}
namespace AcaciaSign
{
- short AcaciaSign()
+ BlockState AcaciaSign()
{
return 3478;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3478: return 0;
case 3480: return 1;
@@ -1046,13 +273,13 @@ namespace Block
}
namespace AcaciaSlab
{
- short AcaciaSlab()
+ BlockState AcaciaSlab()
{
return 8327;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8327: return Type::Bottom;
case 8329: return Type::Double;
@@ -1062,13 +289,13 @@ namespace Block
}
namespace AcaciaStairs
{
- short AcaciaStairs()
+ BlockState AcaciaStairs()
{
return 7386;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7416: case 7418: case 7420: case 7422: case 7424: case 7426: case 7428: case 7430: case 7432: case 7434: return eBlockFace::BLOCK_FACE_XM;
case 7436: case 7438: case 7440: case 7442: case 7444: case 7446: case 7448: case 7450: case 7452: case 7454: return eBlockFace::BLOCK_FACE_XP;
@@ -1076,17 +303,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7386: case 7388: case 7390: case 7392: case 7394: case 7406: case 7408: case 7410: case 7412: case 7414: case 7426: case 7428: case 7430: case 7432: case 7434: case 7446: case 7448: case 7450: case 7452: case 7454: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7378: case 7388: case 7398: case 7408: case 7418: case 7428: case 7438: case 7448: return Shape::InnerLeft;
case 7380: case 7390: case 7400: case 7410: case 7420: case 7430: case 7440: case 7450: return Shape::InnerRight;
@@ -1098,13 +325,13 @@ namespace Block
}
namespace AcaciaTrapdoor
{
- short AcaciaTrapdoor()
+ BlockState AcaciaTrapdoor()
{
return 4382;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4400: case 4402: case 4404: case 4406: case 4408: case 4410: case 4412: case 4414: return eBlockFace::BLOCK_FACE_XM;
case 4416: case 4418: case 4420: case 4422: case 4424: case 4426: case 4428: case 4430: return eBlockFace::BLOCK_FACE_XP;
@@ -1112,25 +339,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4376: case 4378: case 4380: case 4382: case 4392: case 4394: case 4396: case 4398: case 4408: case 4410: case 4412: case 4414: case 4424: case 4426: case 4428: case 4430: return Half::Bottom;
default: return Half::Top;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4372: case 4374: case 4380: case 4382: case 4388: case 4390: case 4396: case 4398: case 4404: case 4406: case 4412: case 4414: case 4420: case 4422: case 4428: case 4430: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4370: case 4374: case 4378: case 4382: case 4386: case 4390: case 4394: case 4398: case 4402: case 4406: case 4410: case 4414: case 4418: case 4422: case 4426: case 4430: return false;
default: return true;
@@ -1139,13 +366,13 @@ namespace Block
}
namespace AcaciaWallSign
{
- short AcaciaWallSign()
+ BlockState AcaciaWallSign()
{
return 3760;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3764: return eBlockFace::BLOCK_FACE_XM;
case 3766: return eBlockFace::BLOCK_FACE_XP;
@@ -1156,13 +383,13 @@ namespace Block
}
namespace AcaciaWood
{
- short AcaciaWood()
+ BlockState AcaciaWood()
{
return 122;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 121: return Axis::X;
case 122: return Axis::Y;
@@ -1172,21 +399,21 @@ namespace Block
}
namespace ActivatorRail
{
- short ActivatorRail()
+ BlockState ActivatorRail()
{
return 6829;
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6829: case 6830: case 6831: case 6832: case 6833: case 6834: return false;
default: return true;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6825: case 6831: return Shape::AscendingEast;
case 6827: case 6833: return Shape::AscendingNorth;
@@ -1211,13 +438,13 @@ namespace Block
}
namespace AndesiteSlab
{
- short AndesiteSlab()
+ BlockState AndesiteSlab()
{
return 10846;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10846: return Type::Bottom;
case 10848: return Type::Double;
@@ -1227,13 +454,13 @@ namespace Block
}
namespace AndesiteStairs
{
- short AndesiteStairs()
+ BlockState AndesiteStairs()
{
return 10480;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10510: case 10512: case 10514: case 10516: case 10518: case 10520: case 10522: case 10524: case 10526: case 10528: return eBlockFace::BLOCK_FACE_XM;
case 10530: case 10532: case 10534: case 10536: case 10538: case 10540: case 10542: case 10544: case 10546: case 10548: return eBlockFace::BLOCK_FACE_XP;
@@ -1241,17 +468,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10480: case 10482: case 10484: case 10486: case 10488: case 10500: case 10502: case 10504: case 10506: case 10508: case 10520: case 10522: case 10524: case 10526: case 10528: case 10540: case 10542: case 10544: case 10546: case 10548: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10472: case 10482: case 10492: case 10502: case 10512: case 10522: case 10532: case 10542: return Shape::InnerLeft;
case 10474: case 10484: case 10494: case 10504: case 10514: case 10524: case 10534: case 10544: return Shape::InnerRight;
@@ -1263,48 +490,48 @@ namespace Block
}
namespace AndesiteWall
{
- short AndesiteWall()
+ BlockState AndesiteWall()
{
return 13138;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13246: case 13247: case 13248: case 13252: case 13253: case 13254: case 13258: case 13259: case 13260: case 13264: case 13265: case 13266: case 13270: case 13271: case 13272: case 13276: case 13277: case 13278: case 13282: case 13283: case 13284: case 13288: case 13289: case 13290: case 13294: case 13295: case 13296: case 13300: case 13301: case 13302: case 13306: case 13307: case 13308: case 13312: case 13313: case 13314: case 13318: case 13319: case 13320: case 13324: case 13325: case 13326: case 13330: case 13331: case 13332: case 13336: case 13337: case 13338: case 13342: case 13343: case 13344: case 13348: case 13349: case 13350: return East::Low;
case 13138: case 13139: case 13140: case 13144: case 13145: case 13146: case 13150: case 13151: case 13152: case 13156: case 13157: case 13158: case 13162: case 13163: case 13164: case 13168: case 13169: case 13170: case 13174: case 13175: case 13176: case 13180: case 13181: case 13182: case 13186: case 13187: case 13188: case 13192: case 13193: case 13194: case 13198: case 13199: case 13200: case 13204: case 13205: case 13206: case 13210: case 13211: case 13212: case 13216: case 13217: case 13218: case 13222: case 13223: case 13224: case 13228: case 13229: case 13230: case 13234: case 13235: case 13236: case 13240: case 13241: case 13242: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13174: case 13175: case 13176: case 13180: case 13181: case 13182: case 13186: case 13187: case 13188: case 13192: case 13193: case 13194: case 13198: case 13199: case 13200: case 13204: case 13205: case 13206: case 13282: case 13283: case 13284: case 13288: case 13289: case 13290: case 13294: case 13295: case 13296: case 13300: case 13301: case 13302: case 13306: case 13307: case 13308: case 13312: case 13313: case 13314: case 13390: case 13391: case 13392: case 13396: case 13397: case 13398: case 13402: case 13403: case 13404: case 13408: case 13409: case 13410: case 13414: case 13415: case 13416: case 13420: case 13421: case 13422: return North::Low;
case 13138: case 13139: case 13140: case 13144: case 13145: case 13146: case 13150: case 13151: case 13152: case 13156: case 13157: case 13158: case 13162: case 13163: case 13164: case 13168: case 13169: case 13170: case 13246: case 13247: case 13248: case 13252: case 13253: case 13254: case 13258: case 13259: case 13260: case 13264: case 13265: case 13266: case 13270: case 13271: case 13272: case 13276: case 13277: case 13278: case 13354: case 13355: case 13356: case 13360: case 13361: case 13362: case 13366: case 13367: case 13368: case 13372: case 13373: case 13374: case 13378: case 13379: case 13380: case 13384: case 13385: case 13386: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13150: case 13151: case 13152: case 13156: case 13157: case 13158: case 13186: case 13187: case 13188: case 13192: case 13193: case 13194: case 13222: case 13223: case 13224: case 13228: case 13229: case 13230: case 13258: case 13259: case 13260: case 13264: case 13265: case 13266: case 13294: case 13295: case 13296: case 13300: case 13301: case 13302: case 13330: case 13331: case 13332: case 13336: case 13337: case 13338: case 13366: case 13367: case 13368: case 13372: case 13373: case 13374: case 13402: case 13403: case 13404: case 13408: case 13409: case 13410: case 13438: case 13439: case 13440: case 13444: case 13445: case 13446: return South::Low;
case 13138: case 13139: case 13140: case 13144: case 13145: case 13146: case 13174: case 13175: case 13176: case 13180: case 13181: case 13182: case 13210: case 13211: case 13212: case 13216: case 13217: case 13218: case 13246: case 13247: case 13248: case 13252: case 13253: case 13254: case 13282: case 13283: case 13284: case 13288: case 13289: case 13290: case 13318: case 13319: case 13320: case 13324: case 13325: case 13326: case 13354: case 13355: case 13356: case 13360: case 13361: case 13362: case 13390: case 13391: case 13392: case 13396: case 13397: case 13398: case 13426: case 13427: case 13428: case 13432: case 13433: case 13434: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13144: case 13145: case 13146: case 13156: case 13157: case 13158: case 13168: case 13169: case 13170: case 13180: case 13181: case 13182: case 13192: case 13193: case 13194: case 13204: case 13205: case 13206: case 13216: case 13217: case 13218: case 13228: case 13229: case 13230: case 13240: case 13241: case 13242: case 13252: case 13253: case 13254: case 13264: case 13265: case 13266: case 13276: case 13277: case 13278: case 13288: case 13289: case 13290: case 13300: case 13301: case 13302: case 13312: case 13313: case 13314: case 13324: case 13325: case 13326: case 13336: case 13337: case 13338: case 13348: case 13349: case 13350: case 13360: case 13361: case 13362: case 13372: case 13373: case 13374: case 13384: case 13385: case 13386: case 13396: case 13397: case 13398: case 13408: case 13409: case 13410: case 13420: case 13421: case 13422: case 13432: case 13433: case 13434: case 13444: case 13445: case 13446: case 13456: case 13457: case 13458: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13139: case 13145: case 13151: case 13157: case 13163: case 13169: case 13175: case 13181: case 13187: case 13193: case 13199: case 13205: case 13211: case 13217: case 13223: case 13229: case 13235: case 13241: case 13247: case 13253: case 13259: case 13265: case 13271: case 13277: case 13283: case 13289: case 13295: case 13301: case 13307: case 13313: case 13319: case 13325: case 13331: case 13337: case 13343: case 13349: case 13355: case 13361: case 13367: case 13373: case 13379: case 13385: case 13391: case 13397: case 13403: case 13409: case 13415: case 13421: case 13427: case 13433: case 13439: case 13445: case 13451: case 13457: return West::Low;
case 13138: case 13144: case 13150: case 13156: case 13162: case 13168: case 13174: case 13180: case 13186: case 13192: case 13198: case 13204: case 13210: case 13216: case 13222: case 13228: case 13234: case 13240: case 13246: case 13252: case 13258: case 13264: case 13270: case 13276: case 13282: case 13288: case 13294: case 13300: case 13306: case 13312: case 13318: case 13324: case 13330: case 13336: case 13342: case 13348: case 13354: case 13360: case 13366: case 13372: case 13378: case 13384: case 13390: case 13396: case 13402: case 13408: case 13414: case 13420: case 13426: case 13432: case 13438: case 13444: case 13450: case 13456: return West::None;
@@ -1314,13 +541,13 @@ namespace Block
}
namespace Anvil
{
- short Anvil()
+ BlockState Anvil()
{
return 6610;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6612: return eBlockFace::BLOCK_FACE_XM;
case 6613: return eBlockFace::BLOCK_FACE_XP;
@@ -1331,13 +558,13 @@ namespace Block
}
namespace AttachedMelonStem
{
- short AttachedMelonStem()
+ BlockState AttachedMelonStem()
{
return 4768;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4770: return eBlockFace::BLOCK_FACE_XM;
case 4771: return eBlockFace::BLOCK_FACE_XP;
@@ -1348,13 +575,13 @@ namespace Block
}
namespace AttachedPumpkinStem
{
- short AttachedPumpkinStem()
+ BlockState AttachedPumpkinStem()
{
return 4764;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4766: return eBlockFace::BLOCK_FACE_XM;
case 4767: return eBlockFace::BLOCK_FACE_XP;
@@ -1368,30 +595,30 @@ namespace Block
}
namespace Bamboo
{
- short Bamboo()
+ BlockState Bamboo()
{
return 9652;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9652: case 9653: case 9654: case 9655: case 9656: case 9657: return 0;
default: return 1;
}
}
- enum Leaves Leaves(short ID)
+ enum Leaves Leaves(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9656: case 9657: case 9662: case 9663: return Leaves::Large;
case 9652: case 9653: case 9658: case 9659: return Leaves::None;
default: return Leaves::Small;
}
}
- unsigned char Stage(short ID)
+ unsigned char Stage(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9652: case 9654: case 9656: case 9658: case 9660: case 9662: return 0;
default: return 1;
@@ -1403,13 +630,13 @@ namespace Block
}
namespace Barrel
{
- short Barrel()
+ BlockState Barrel()
{
return 14792;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14797: case 14798: return eBlockFace::BLOCK_FACE_XM;
case 14793: case 14794: return eBlockFace::BLOCK_FACE_XP;
@@ -1419,9 +646,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14792: case 14794: case 14796: case 14798: case 14800: case 14802: return false;
default: return true;
@@ -1433,13 +660,13 @@ namespace Block
}
namespace Basalt
{
- short Basalt()
+ BlockState Basalt()
{
return 4003;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4002: return Axis::X;
case 4003: return Axis::Y;
@@ -1455,13 +682,13 @@ namespace Block
}
namespace BeeNest
{
- short BeeNest()
+ BlockState BeeNest()
{
return 15776;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15788: case 15789: case 15790: case 15791: case 15792: case 15793: return eBlockFace::BLOCK_FACE_XM;
case 15794: case 15795: case 15796: case 15797: case 15798: case 15799: return eBlockFace::BLOCK_FACE_XP;
@@ -1469,9 +696,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- unsigned char HoneyLevel(short ID)
+ unsigned char HoneyLevel(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15776: case 15782: case 15788: case 15794: return 0;
case 15777: case 15783: case 15789: case 15795: return 1;
@@ -1484,13 +711,13 @@ namespace Block
}
namespace Beehive
{
- short Beehive()
+ BlockState Beehive()
{
return 15800;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15812: case 15813: case 15814: case 15815: case 15816: case 15817: return eBlockFace::BLOCK_FACE_XM;
case 15818: case 15819: case 15820: case 15821: case 15822: case 15823: return eBlockFace::BLOCK_FACE_XP;
@@ -1498,9 +725,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- unsigned char HoneyLevel(short ID)
+ unsigned char HoneyLevel(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15800: case 15806: case 15812: case 15818: return 0;
case 15801: case 15807: case 15813: case 15819: return 1;
@@ -1513,13 +740,13 @@ namespace Block
}
namespace Beetroots
{
- short Beetroots()
+ BlockState Beetroots()
{
return 9219;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9219: return 0;
case 9220: return 1;
@@ -1530,13 +757,13 @@ namespace Block
}
namespace Bell
{
- short Bell()
+ BlockState Bell()
{
return 14855;
}
- enum Attachment Attachment(short ID)
+ enum Attachment Attachment(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14862: case 14863: case 14864: case 14865: case 14866: case 14867: case 14868: case 14869: return Attachment::Ceiling;
case 14878: case 14879: case 14880: case 14881: case 14882: case 14883: case 14884: case 14885: return Attachment::DoubleWall;
@@ -1544,9 +771,9 @@ namespace Block
default: return Attachment::SingleWall;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14858: case 14859: case 14866: case 14867: case 14874: case 14875: case 14882: case 14883: return eBlockFace::BLOCK_FACE_XM;
case 14860: case 14861: case 14868: case 14869: case 14876: case 14877: case 14884: case 14885: return eBlockFace::BLOCK_FACE_XP;
@@ -1554,9 +781,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14855: case 14857: case 14859: case 14861: case 14863: case 14865: case 14867: case 14869: case 14871: case 14873: case 14875: case 14877: case 14879: case 14881: case 14883: case 14885: return false;
default: return true;
@@ -1565,22 +792,22 @@ namespace Block
}
namespace BirchButton
{
- short BirchButton()
+ BlockState BirchButton()
{
return 6403;
}
- enum Face Face(short ID)
+ enum Face Face(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6410: case 6411: case 6412: case 6413: case 6414: case 6415: case 6416: case 6417: return Face::Ceiling;
case 6394: case 6395: case 6396: case 6397: case 6398: case 6399: case 6400: case 6401: return Face::Floor;
default: return Face::Wall;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6398: case 6399: case 6406: case 6407: case 6414: case 6415: return eBlockFace::BLOCK_FACE_XM;
case 6400: case 6401: case 6408: case 6409: case 6416: case 6417: return eBlockFace::BLOCK_FACE_XP;
@@ -1588,9 +815,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6395: case 6397: case 6399: case 6401: case 6403: case 6405: case 6407: case 6409: case 6411: case 6413: case 6415: case 6417: return false;
default: return true;
@@ -1599,13 +826,13 @@ namespace Block
}
namespace BirchDoor
{
- short BirchDoor()
+ BlockState BirchDoor()
{
return 8813;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8834: case 8835: case 8836: case 8837: case 8838: case 8839: case 8840: case 8841: case 8842: case 8843: case 8844: case 8845: case 8846: case 8847: case 8848: case 8849: return eBlockFace::BLOCK_FACE_XM;
case 8850: case 8851: case 8852: case 8853: case 8854: case 8855: case 8856: case 8857: case 8858: case 8859: case 8860: case 8861: case 8862: case 8863: case 8864: case 8865: return eBlockFace::BLOCK_FACE_XP;
@@ -1613,33 +840,33 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8810: case 8811: case 8812: case 8813: case 8814: case 8815: case 8816: case 8817: case 8826: case 8827: case 8828: case 8829: case 8830: case 8831: case 8832: case 8833: case 8842: case 8843: case 8844: case 8845: case 8846: case 8847: case 8848: case 8849: case 8858: case 8859: case 8860: case 8861: case 8862: case 8863: case 8864: case 8865: return Half::Lower;
default: return Half::Upper;
}
}
- enum Hinge Hinge(short ID)
+ enum Hinge Hinge(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8802: case 8803: case 8804: case 8805: case 8810: case 8811: case 8812: case 8813: case 8818: case 8819: case 8820: case 8821: case 8826: case 8827: case 8828: case 8829: case 8834: case 8835: case 8836: case 8837: case 8842: case 8843: case 8844: case 8845: case 8850: case 8851: case 8852: case 8853: case 8858: case 8859: case 8860: case 8861: return Hinge::Left;
default: return Hinge::Right;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8804: case 8805: case 8808: case 8809: case 8812: case 8813: case 8816: case 8817: case 8820: case 8821: case 8824: case 8825: case 8828: case 8829: case 8832: case 8833: case 8836: case 8837: case 8840: case 8841: case 8844: case 8845: case 8848: case 8849: case 8852: case 8853: case 8856: case 8857: case 8860: case 8861: case 8864: case 8865: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8803: case 8805: case 8807: case 8809: case 8811: case 8813: case 8815: case 8817: case 8819: case 8821: case 8823: case 8825: case 8827: case 8829: case 8831: case 8833: case 8835: case 8837: case 8839: case 8841: case 8843: case 8845: case 8847: case 8849: case 8851: case 8853: case 8855: case 8857: case 8859: case 8861: case 8863: case 8865: return false;
default: return true;
@@ -1648,37 +875,37 @@ namespace Block
}
namespace BirchFence
{
- short BirchFence()
+ BlockState BirchFence()
{
return 8641;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8628: case 8629: case 8632: case 8633: case 8636: case 8637: case 8640: case 8641: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8620: case 8621: case 8624: case 8625: case 8636: case 8637: case 8640: case 8641: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8616: case 8617: case 8624: case 8625: case 8632: case 8633: case 8640: case 8641: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8613: case 8617: case 8621: case 8625: case 8629: case 8633: case 8637: case 8641: return false;
default: return true;
@@ -1687,13 +914,13 @@ namespace Block
}
namespace BirchFenceGate
{
- short BirchFenceGate()
+ BlockState BirchFenceGate()
{
return 8457;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8466: case 8467: case 8468: case 8469: case 8470: case 8471: case 8472: case 8473: return eBlockFace::BLOCK_FACE_XM;
case 8474: case 8475: case 8476: case 8477: case 8478: case 8479: case 8480: case 8481: return eBlockFace::BLOCK_FACE_XP;
@@ -1701,25 +928,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool InWall(short ID)
+ bool InWall(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8454: case 8455: case 8456: case 8457: case 8462: case 8463: case 8464: case 8465: case 8470: case 8471: case 8472: case 8473: case 8478: case 8479: case 8480: case 8481: return false;
default: return true;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8452: case 8453: case 8456: case 8457: case 8460: case 8461: case 8464: case 8465: case 8468: case 8469: case 8472: case 8473: case 8476: case 8477: case 8480: case 8481: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8451: case 8453: case 8455: case 8457: case 8459: case 8461: case 8463: case 8465: case 8467: case 8469: case 8471: case 8473: case 8475: case 8477: case 8479: case 8481: return false;
default: return true;
@@ -1728,13 +955,13 @@ namespace Block
}
namespace BirchLeaves
{
- short BirchLeaves()
+ BlockState BirchLeaves()
{
return 186;
}
- unsigned char Distance(short ID)
+ unsigned char Distance(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 173: case 174: return 1;
case 175: case 176: return 2;
@@ -1745,9 +972,9 @@ namespace Block
default: return 7;
}
}
- bool Persistent(short ID)
+ bool Persistent(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 174: case 176: case 178: case 180: case 182: case 184: case 186: return false;
default: return true;
@@ -1756,13 +983,13 @@ namespace Block
}
namespace BirchLog
{
- short BirchLog()
+ BlockState BirchLog()
{
return 80;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 79: return Axis::X;
case 80: return Axis::Y;
@@ -1775,13 +1002,13 @@ namespace Block
}
namespace BirchPressurePlate
{
- short BirchPressurePlate()
+ BlockState BirchPressurePlate()
{
return 3878;
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3878: return false;
default: return true;
@@ -1790,13 +1017,13 @@ namespace Block
}
namespace BirchSapling
{
- short BirchSapling()
+ BlockState BirchSapling()
{
return 25;
}
- unsigned char Stage(short ID)
+ unsigned char Stage(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 25: return 0;
default: return 1;
@@ -1805,13 +1032,13 @@ namespace Block
}
namespace BirchSign
{
- short BirchSign()
+ BlockState BirchSign()
{
return 3446;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3446: return 0;
case 3448: return 1;
@@ -1834,13 +1061,13 @@ namespace Block
}
namespace BirchSlab
{
- short BirchSlab()
+ BlockState BirchSlab()
{
return 8315;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8315: return Type::Bottom;
case 8317: return Type::Double;
@@ -1850,13 +1077,13 @@ namespace Block
}
namespace BirchStairs
{
- short BirchStairs()
+ BlockState BirchStairs()
{
return 5495;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5525: case 5527: case 5529: case 5531: case 5533: case 5535: case 5537: case 5539: case 5541: case 5543: return eBlockFace::BLOCK_FACE_XM;
case 5545: case 5547: case 5549: case 5551: case 5553: case 5555: case 5557: case 5559: case 5561: case 5563: return eBlockFace::BLOCK_FACE_XP;
@@ -1864,17 +1091,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5495: case 5497: case 5499: case 5501: case 5503: case 5515: case 5517: case 5519: case 5521: case 5523: case 5535: case 5537: case 5539: case 5541: case 5543: case 5555: case 5557: case 5559: case 5561: case 5563: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5487: case 5497: case 5507: case 5517: case 5527: case 5537: case 5547: case 5557: return Shape::InnerLeft;
case 5489: case 5499: case 5509: case 5519: case 5529: case 5539: case 5549: case 5559: return Shape::InnerRight;
@@ -1886,13 +1113,13 @@ namespace Block
}
namespace BirchTrapdoor
{
- short BirchTrapdoor()
+ BlockState BirchTrapdoor()
{
return 4254;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4272: case 4274: case 4276: case 4278: case 4280: case 4282: case 4284: case 4286: return eBlockFace::BLOCK_FACE_XM;
case 4288: case 4290: case 4292: case 4294: case 4296: case 4298: case 4300: case 4302: return eBlockFace::BLOCK_FACE_XP;
@@ -1900,25 +1127,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4248: case 4250: case 4252: case 4254: case 4264: case 4266: case 4268: case 4270: case 4280: case 4282: case 4284: case 4286: case 4296: case 4298: case 4300: case 4302: return Half::Bottom;
default: return Half::Top;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4244: case 4246: case 4252: case 4254: case 4260: case 4262: case 4268: case 4270: case 4276: case 4278: case 4284: case 4286: case 4292: case 4294: case 4300: case 4302: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4242: case 4246: case 4250: case 4254: case 4258: case 4262: case 4266: case 4270: case 4274: case 4278: case 4282: case 4286: case 4290: case 4294: case 4298: case 4302: return false;
default: return true;
@@ -1927,13 +1154,13 @@ namespace Block
}
namespace BirchWallSign
{
- short BirchWallSign()
+ BlockState BirchWallSign()
{
return 3752;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3756: return eBlockFace::BLOCK_FACE_XM;
case 3758: return eBlockFace::BLOCK_FACE_XP;
@@ -1944,13 +1171,13 @@ namespace Block
}
namespace BirchWood
{
- short BirchWood()
+ BlockState BirchWood()
{
return 116;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 115: return Axis::X;
case 116: return Axis::Y;
@@ -1960,13 +1187,13 @@ namespace Block
}
namespace BlackBanner
{
- short BlackBanner()
+ BlockState BlackBanner()
{
return 8137;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8137: return 0;
case 8138: return 1;
@@ -1989,13 +1216,13 @@ namespace Block
}
namespace BlackBed
{
- short BlackBed()
+ BlockState BlackBed()
{
return 1292;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1297: case 1298: case 1299: case 1300: return eBlockFace::BLOCK_FACE_XM;
case 1301: case 1302: case 1303: case 1304: return eBlockFace::BLOCK_FACE_XP;
@@ -2003,17 +1230,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1291: case 1292: case 1295: case 1296: case 1299: case 1300: case 1303: case 1304: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1290: case 1292: case 1294: case 1296: case 1298: case 1300: case 1302: case 1304: return Part::Foot;
default: return Part::Head;
@@ -2031,13 +1258,13 @@ namespace Block
}
namespace BlackGlazedTerracotta
{
- short BlackGlazedTerracotta()
+ BlockState BlackGlazedTerracotta()
{
return 9434;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9436: return eBlockFace::BLOCK_FACE_XM;
case 9437: return eBlockFace::BLOCK_FACE_XP;
@@ -2048,13 +1275,13 @@ namespace Block
}
namespace BlackShulkerBox
{
- short BlackShulkerBox()
+ BlockState BlackShulkerBox()
{
return 9372;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9371: return eBlockFace::BLOCK_FACE_XM;
case 9369: return eBlockFace::BLOCK_FACE_XP;
@@ -2070,37 +1297,37 @@ namespace Block
}
namespace BlackStainedGlassPane
{
- short BlackStainedGlassPane()
+ BlockState BlackStainedGlassPane()
{
return 7374;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7361: case 7362: case 7365: case 7366: case 7369: case 7370: case 7373: case 7374: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7353: case 7354: case 7357: case 7358: case 7369: case 7370: case 7373: case 7374: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7349: case 7350: case 7357: case 7358: case 7365: case 7366: case 7373: case 7374: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7346: case 7350: case 7354: case 7358: case 7362: case 7366: case 7370: case 7374: return false;
default: return true;
@@ -2112,13 +1339,13 @@ namespace Block
}
namespace BlackWallBanner
{
- short BlackWallBanner()
+ BlockState BlackWallBanner()
{
return 8213;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8215: return eBlockFace::BLOCK_FACE_XM;
case 8216: return eBlockFace::BLOCK_FACE_XP;
@@ -2135,13 +1362,13 @@ namespace Block
}
namespace BlackstoneSlab
{
- short BlackstoneSlab()
+ BlockState BlackstoneSlab()
{
return 16247;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16247: return Type::Bottom;
case 16249: return Type::Double;
@@ -2151,13 +1378,13 @@ namespace Block
}
namespace BlackstoneStairs
{
- short BlackstoneStairs()
+ BlockState BlackstoneStairs()
{
return 15851;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15881: case 15883: case 15885: case 15887: case 15889: case 15891: case 15893: case 15895: case 15897: case 15899: return eBlockFace::BLOCK_FACE_XM;
case 15901: case 15903: case 15905: case 15907: case 15909: case 15911: case 15913: case 15915: case 15917: case 15919: return eBlockFace::BLOCK_FACE_XP;
@@ -2165,17 +1392,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15851: case 15853: case 15855: case 15857: case 15859: case 15871: case 15873: case 15875: case 15877: case 15879: case 15891: case 15893: case 15895: case 15897: case 15899: case 15911: case 15913: case 15915: case 15917: case 15919: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15843: case 15853: case 15863: case 15873: case 15883: case 15893: case 15903: case 15913: return Shape::InnerLeft;
case 15845: case 15855: case 15865: case 15875: case 15885: case 15895: case 15905: case 15915: return Shape::InnerRight;
@@ -2187,48 +1414,48 @@ namespace Block
}
namespace BlackstoneWall
{
- short BlackstoneWall()
+ BlockState BlackstoneWall()
{
return 15923;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16031: case 16032: case 16033: case 16037: case 16038: case 16039: case 16043: case 16044: case 16045: case 16049: case 16050: case 16051: case 16055: case 16056: case 16057: case 16061: case 16062: case 16063: case 16067: case 16068: case 16069: case 16073: case 16074: case 16075: case 16079: case 16080: case 16081: case 16085: case 16086: case 16087: case 16091: case 16092: case 16093: case 16097: case 16098: case 16099: case 16103: case 16104: case 16105: case 16109: case 16110: case 16111: case 16115: case 16116: case 16117: case 16121: case 16122: case 16123: case 16127: case 16128: case 16129: case 16133: case 16134: case 16135: return East::Low;
case 15923: case 15924: case 15925: case 15929: case 15930: case 15931: case 15935: case 15936: case 15937: case 15941: case 15942: case 15943: case 15947: case 15948: case 15949: case 15953: case 15954: case 15955: case 15959: case 15960: case 15961: case 15965: case 15966: case 15967: case 15971: case 15972: case 15973: case 15977: case 15978: case 15979: case 15983: case 15984: case 15985: case 15989: case 15990: case 15991: case 15995: case 15996: case 15997: case 16001: case 16002: case 16003: case 16007: case 16008: case 16009: case 16013: case 16014: case 16015: case 16019: case 16020: case 16021: case 16025: case 16026: case 16027: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15959: case 15960: case 15961: case 15965: case 15966: case 15967: case 15971: case 15972: case 15973: case 15977: case 15978: case 15979: case 15983: case 15984: case 15985: case 15989: case 15990: case 15991: case 16067: case 16068: case 16069: case 16073: case 16074: case 16075: case 16079: case 16080: case 16081: case 16085: case 16086: case 16087: case 16091: case 16092: case 16093: case 16097: case 16098: case 16099: case 16175: case 16176: case 16177: case 16181: case 16182: case 16183: case 16187: case 16188: case 16189: case 16193: case 16194: case 16195: case 16199: case 16200: case 16201: case 16205: case 16206: case 16207: return North::Low;
case 15923: case 15924: case 15925: case 15929: case 15930: case 15931: case 15935: case 15936: case 15937: case 15941: case 15942: case 15943: case 15947: case 15948: case 15949: case 15953: case 15954: case 15955: case 16031: case 16032: case 16033: case 16037: case 16038: case 16039: case 16043: case 16044: case 16045: case 16049: case 16050: case 16051: case 16055: case 16056: case 16057: case 16061: case 16062: case 16063: case 16139: case 16140: case 16141: case 16145: case 16146: case 16147: case 16151: case 16152: case 16153: case 16157: case 16158: case 16159: case 16163: case 16164: case 16165: case 16169: case 16170: case 16171: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15935: case 15936: case 15937: case 15941: case 15942: case 15943: case 15971: case 15972: case 15973: case 15977: case 15978: case 15979: case 16007: case 16008: case 16009: case 16013: case 16014: case 16015: case 16043: case 16044: case 16045: case 16049: case 16050: case 16051: case 16079: case 16080: case 16081: case 16085: case 16086: case 16087: case 16115: case 16116: case 16117: case 16121: case 16122: case 16123: case 16151: case 16152: case 16153: case 16157: case 16158: case 16159: case 16187: case 16188: case 16189: case 16193: case 16194: case 16195: case 16223: case 16224: case 16225: case 16229: case 16230: case 16231: return South::Low;
case 15923: case 15924: case 15925: case 15929: case 15930: case 15931: case 15959: case 15960: case 15961: case 15965: case 15966: case 15967: case 15995: case 15996: case 15997: case 16001: case 16002: case 16003: case 16031: case 16032: case 16033: case 16037: case 16038: case 16039: case 16067: case 16068: case 16069: case 16073: case 16074: case 16075: case 16103: case 16104: case 16105: case 16109: case 16110: case 16111: case 16139: case 16140: case 16141: case 16145: case 16146: case 16147: case 16175: case 16176: case 16177: case 16181: case 16182: case 16183: case 16211: case 16212: case 16213: case 16217: case 16218: case 16219: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15929: case 15930: case 15931: case 15941: case 15942: case 15943: case 15953: case 15954: case 15955: case 15965: case 15966: case 15967: case 15977: case 15978: case 15979: case 15989: case 15990: case 15991: case 16001: case 16002: case 16003: case 16013: case 16014: case 16015: case 16025: case 16026: case 16027: case 16037: case 16038: case 16039: case 16049: case 16050: case 16051: case 16061: case 16062: case 16063: case 16073: case 16074: case 16075: case 16085: case 16086: case 16087: case 16097: case 16098: case 16099: case 16109: case 16110: case 16111: case 16121: case 16122: case 16123: case 16133: case 16134: case 16135: case 16145: case 16146: case 16147: case 16157: case 16158: case 16159: case 16169: case 16170: case 16171: case 16181: case 16182: case 16183: case 16193: case 16194: case 16195: case 16205: case 16206: case 16207: case 16217: case 16218: case 16219: case 16229: case 16230: case 16231: case 16241: case 16242: case 16243: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15924: case 15930: case 15936: case 15942: case 15948: case 15954: case 15960: case 15966: case 15972: case 15978: case 15984: case 15990: case 15996: case 16002: case 16008: case 16014: case 16020: case 16026: case 16032: case 16038: case 16044: case 16050: case 16056: case 16062: case 16068: case 16074: case 16080: case 16086: case 16092: case 16098: case 16104: case 16110: case 16116: case 16122: case 16128: case 16134: case 16140: case 16146: case 16152: case 16158: case 16164: case 16170: case 16176: case 16182: case 16188: case 16194: case 16200: case 16206: case 16212: case 16218: case 16224: case 16230: case 16236: case 16242: return West::Low;
case 15923: case 15929: case 15935: case 15941: case 15947: case 15953: case 15959: case 15965: case 15971: case 15977: case 15983: case 15989: case 15995: case 16001: case 16007: case 16013: case 16019: case 16025: case 16031: case 16037: case 16043: case 16049: case 16055: case 16061: case 16067: case 16073: case 16079: case 16085: case 16091: case 16097: case 16103: case 16109: case 16115: case 16121: case 16127: case 16133: case 16139: case 16145: case 16151: case 16157: case 16163: case 16169: case 16175: case 16181: case 16187: case 16193: case 16199: case 16205: case 16211: case 16217: case 16223: case 16229: case 16235: case 16241: return West::None;
@@ -2238,13 +1465,13 @@ namespace Block
}
namespace BlastFurnace
{
- short BlastFurnace()
+ BlockState BlastFurnace()
{
return 14812;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14815: case 14816: return eBlockFace::BLOCK_FACE_XM;
case 14817: case 14818: return eBlockFace::BLOCK_FACE_XP;
@@ -2252,9 +1479,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Lit(short ID)
+ bool Lit(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14812: case 14814: case 14816: case 14818: return false;
default: return true;
@@ -2263,13 +1490,13 @@ namespace Block
}
namespace BlueBanner
{
- short BlueBanner()
+ BlockState BlueBanner()
{
return 8073;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8073: return 0;
case 8074: return 1;
@@ -2292,13 +1519,13 @@ namespace Block
}
namespace BlueBed
{
- short BlueBed()
+ BlockState BlueBed()
{
return 1228;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1233: case 1234: case 1235: case 1236: return eBlockFace::BLOCK_FACE_XM;
case 1237: case 1238: case 1239: case 1240: return eBlockFace::BLOCK_FACE_XP;
@@ -2306,17 +1533,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1227: case 1228: case 1231: case 1232: case 1235: case 1236: case 1239: case 1240: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1226: case 1228: case 1230: case 1232: case 1234: case 1236: case 1238: case 1240: return Part::Foot;
default: return Part::Head;
@@ -2334,13 +1561,13 @@ namespace Block
}
namespace BlueGlazedTerracotta
{
- short BlueGlazedTerracotta()
+ BlockState BlueGlazedTerracotta()
{
return 9418;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9420: return eBlockFace::BLOCK_FACE_XM;
case 9421: return eBlockFace::BLOCK_FACE_XP;
@@ -2357,13 +1584,13 @@ namespace Block
}
namespace BlueShulkerBox
{
- short BlueShulkerBox()
+ BlockState BlueShulkerBox()
{
return 9348;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9347: return eBlockFace::BLOCK_FACE_XM;
case 9345: return eBlockFace::BLOCK_FACE_XP;
@@ -2379,37 +1606,37 @@ namespace Block
}
namespace BlueStainedGlassPane
{
- short BlueStainedGlassPane()
+ BlockState BlueStainedGlassPane()
{
return 7246;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7233: case 7234: case 7237: case 7238: case 7241: case 7242: case 7245: case 7246: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7225: case 7226: case 7229: case 7230: case 7241: case 7242: case 7245: case 7246: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7221: case 7222: case 7229: case 7230: case 7237: case 7238: case 7245: case 7246: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7218: case 7222: case 7226: case 7230: case 7234: case 7238: case 7242: case 7246: return false;
default: return true;
@@ -2421,13 +1648,13 @@ namespace Block
}
namespace BlueWallBanner
{
- short BlueWallBanner()
+ BlockState BlueWallBanner()
{
return 8197;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8199: return eBlockFace::BLOCK_FACE_XM;
case 8200: return eBlockFace::BLOCK_FACE_XP;
@@ -2441,13 +1668,13 @@ namespace Block
}
namespace BoneBlock
{
- short BoneBlock()
+ BlockState BoneBlock()
{
return 9257;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9256: return Axis::X;
case 9257: return Axis::Y;
@@ -2469,13 +1696,13 @@ namespace Block
}
namespace BrainCoralWallFan
{
- short BrainCoralWallFan()
+ BlockState BrainCoralWallFan()
{
return 9608;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9613: return eBlockFace::BLOCK_FACE_XM;
case 9615: return eBlockFace::BLOCK_FACE_XP;
@@ -2486,29 +1713,29 @@ namespace Block
}
namespace BrewingStand
{
- short BrewingStand()
+ BlockState BrewingStand()
{
return 5140;
}
- bool HasBottle_0(short ID)
+ bool HasBottle_0(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5137: case 5138: case 5139: case 5140: return false;
default: return true;
}
}
- bool HasBottle_1(short ID)
+ bool HasBottle_1(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5135: case 5136: case 5139: case 5140: return false;
default: return true;
}
}
- bool HasBottle_2(short ID)
+ bool HasBottle_2(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5134: case 5136: case 5138: case 5140: return false;
default: return true;
@@ -2517,13 +1744,13 @@ namespace Block
}
namespace BrickSlab
{
- short BrickSlab()
+ BlockState BrickSlab()
{
return 8375;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8375: return Type::Bottom;
case 8377: return Type::Double;
@@ -2533,13 +1760,13 @@ namespace Block
}
namespace BrickStairs
{
- short BrickStairs()
+ BlockState BrickStairs()
{
return 4863;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4893: case 4895: case 4897: case 4899: case 4901: case 4903: case 4905: case 4907: case 4909: case 4911: return eBlockFace::BLOCK_FACE_XM;
case 4913: case 4915: case 4917: case 4919: case 4921: case 4923: case 4925: case 4927: case 4929: case 4931: return eBlockFace::BLOCK_FACE_XP;
@@ -2547,17 +1774,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4863: case 4865: case 4867: case 4869: case 4871: case 4883: case 4885: case 4887: case 4889: case 4891: case 4903: case 4905: case 4907: case 4909: case 4911: case 4923: case 4925: case 4927: case 4929: case 4931: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4855: case 4865: case 4875: case 4885: case 4895: case 4905: case 4915: case 4925: return Shape::InnerLeft;
case 4857: case 4867: case 4877: case 4887: case 4897: case 4907: case 4917: case 4927: return Shape::InnerRight;
@@ -2569,48 +1796,48 @@ namespace Block
}
namespace BrickWall
{
- short BrickWall()
+ BlockState BrickWall()
{
return 10870;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10978: case 10979: case 10980: case 10984: case 10985: case 10986: case 10990: case 10991: case 10992: case 10996: case 10997: case 10998: case 11002: case 11003: case 11004: case 11008: case 11009: case 11010: case 11014: case 11015: case 11016: case 11020: case 11021: case 11022: case 11026: case 11027: case 11028: case 11032: case 11033: case 11034: case 11038: case 11039: case 11040: case 11044: case 11045: case 11046: case 11050: case 11051: case 11052: case 11056: case 11057: case 11058: case 11062: case 11063: case 11064: case 11068: case 11069: case 11070: case 11074: case 11075: case 11076: case 11080: case 11081: case 11082: return East::Low;
case 10870: case 10871: case 10872: case 10876: case 10877: case 10878: case 10882: case 10883: case 10884: case 10888: case 10889: case 10890: case 10894: case 10895: case 10896: case 10900: case 10901: case 10902: case 10906: case 10907: case 10908: case 10912: case 10913: case 10914: case 10918: case 10919: case 10920: case 10924: case 10925: case 10926: case 10930: case 10931: case 10932: case 10936: case 10937: case 10938: case 10942: case 10943: case 10944: case 10948: case 10949: case 10950: case 10954: case 10955: case 10956: case 10960: case 10961: case 10962: case 10966: case 10967: case 10968: case 10972: case 10973: case 10974: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10906: case 10907: case 10908: case 10912: case 10913: case 10914: case 10918: case 10919: case 10920: case 10924: case 10925: case 10926: case 10930: case 10931: case 10932: case 10936: case 10937: case 10938: case 11014: case 11015: case 11016: case 11020: case 11021: case 11022: case 11026: case 11027: case 11028: case 11032: case 11033: case 11034: case 11038: case 11039: case 11040: case 11044: case 11045: case 11046: case 11122: case 11123: case 11124: case 11128: case 11129: case 11130: case 11134: case 11135: case 11136: case 11140: case 11141: case 11142: case 11146: case 11147: case 11148: case 11152: case 11153: case 11154: return North::Low;
case 10870: case 10871: case 10872: case 10876: case 10877: case 10878: case 10882: case 10883: case 10884: case 10888: case 10889: case 10890: case 10894: case 10895: case 10896: case 10900: case 10901: case 10902: case 10978: case 10979: case 10980: case 10984: case 10985: case 10986: case 10990: case 10991: case 10992: case 10996: case 10997: case 10998: case 11002: case 11003: case 11004: case 11008: case 11009: case 11010: case 11086: case 11087: case 11088: case 11092: case 11093: case 11094: case 11098: case 11099: case 11100: case 11104: case 11105: case 11106: case 11110: case 11111: case 11112: case 11116: case 11117: case 11118: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10882: case 10883: case 10884: case 10888: case 10889: case 10890: case 10918: case 10919: case 10920: case 10924: case 10925: case 10926: case 10954: case 10955: case 10956: case 10960: case 10961: case 10962: case 10990: case 10991: case 10992: case 10996: case 10997: case 10998: case 11026: case 11027: case 11028: case 11032: case 11033: case 11034: case 11062: case 11063: case 11064: case 11068: case 11069: case 11070: case 11098: case 11099: case 11100: case 11104: case 11105: case 11106: case 11134: case 11135: case 11136: case 11140: case 11141: case 11142: case 11170: case 11171: case 11172: case 11176: case 11177: case 11178: return South::Low;
case 10870: case 10871: case 10872: case 10876: case 10877: case 10878: case 10906: case 10907: case 10908: case 10912: case 10913: case 10914: case 10942: case 10943: case 10944: case 10948: case 10949: case 10950: case 10978: case 10979: case 10980: case 10984: case 10985: case 10986: case 11014: case 11015: case 11016: case 11020: case 11021: case 11022: case 11050: case 11051: case 11052: case 11056: case 11057: case 11058: case 11086: case 11087: case 11088: case 11092: case 11093: case 11094: case 11122: case 11123: case 11124: case 11128: case 11129: case 11130: case 11158: case 11159: case 11160: case 11164: case 11165: case 11166: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10876: case 10877: case 10878: case 10888: case 10889: case 10890: case 10900: case 10901: case 10902: case 10912: case 10913: case 10914: case 10924: case 10925: case 10926: case 10936: case 10937: case 10938: case 10948: case 10949: case 10950: case 10960: case 10961: case 10962: case 10972: case 10973: case 10974: case 10984: case 10985: case 10986: case 10996: case 10997: case 10998: case 11008: case 11009: case 11010: case 11020: case 11021: case 11022: case 11032: case 11033: case 11034: case 11044: case 11045: case 11046: case 11056: case 11057: case 11058: case 11068: case 11069: case 11070: case 11080: case 11081: case 11082: case 11092: case 11093: case 11094: case 11104: case 11105: case 11106: case 11116: case 11117: case 11118: case 11128: case 11129: case 11130: case 11140: case 11141: case 11142: case 11152: case 11153: case 11154: case 11164: case 11165: case 11166: case 11176: case 11177: case 11178: case 11188: case 11189: case 11190: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10871: case 10877: case 10883: case 10889: case 10895: case 10901: case 10907: case 10913: case 10919: case 10925: case 10931: case 10937: case 10943: case 10949: case 10955: case 10961: case 10967: case 10973: case 10979: case 10985: case 10991: case 10997: case 11003: case 11009: case 11015: case 11021: case 11027: case 11033: case 11039: case 11045: case 11051: case 11057: case 11063: case 11069: case 11075: case 11081: case 11087: case 11093: case 11099: case 11105: case 11111: case 11117: case 11123: case 11129: case 11135: case 11141: case 11147: case 11153: case 11159: case 11165: case 11171: case 11177: case 11183: case 11189: return West::Low;
case 10870: case 10876: case 10882: case 10888: case 10894: case 10900: case 10906: case 10912: case 10918: case 10924: case 10930: case 10936: case 10942: case 10948: case 10954: case 10960: case 10966: case 10972: case 10978: case 10984: case 10990: case 10996: case 11002: case 11008: case 11014: case 11020: case 11026: case 11032: case 11038: case 11044: case 11050: case 11056: case 11062: case 11068: case 11074: case 11080: case 11086: case 11092: case 11098: case 11104: case 11110: case 11116: case 11122: case 11128: case 11134: case 11140: case 11146: case 11152: case 11158: case 11164: case 11170: case 11176: case 11182: case 11188: return West::None;
@@ -2623,13 +1850,13 @@ namespace Block
}
namespace BrownBanner
{
- short BrownBanner()
+ BlockState BrownBanner()
{
return 8089;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8089: return 0;
case 8090: return 1;
@@ -2652,13 +1879,13 @@ namespace Block
}
namespace BrownBed
{
- short BrownBed()
+ BlockState BrownBed()
{
return 1244;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1249: case 1250: case 1251: case 1252: return eBlockFace::BLOCK_FACE_XM;
case 1253: case 1254: case 1255: case 1256: return eBlockFace::BLOCK_FACE_XP;
@@ -2666,17 +1893,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1243: case 1244: case 1247: case 1248: case 1251: case 1252: case 1255: case 1256: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1242: case 1244: case 1246: case 1248: case 1250: case 1252: case 1254: case 1256: return Part::Foot;
default: return Part::Head;
@@ -2694,13 +1921,13 @@ namespace Block
}
namespace BrownGlazedTerracotta
{
- short BrownGlazedTerracotta()
+ BlockState BrownGlazedTerracotta()
{
return 9422;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9424: return eBlockFace::BLOCK_FACE_XM;
case 9425: return eBlockFace::BLOCK_FACE_XP;
@@ -2714,53 +1941,53 @@ namespace Block
}
namespace BrownMushroomBlock
{
- short BrownMushroomBlock()
+ BlockState BrownMushroomBlock()
{
return 4505;
}
- bool Down(short ID)
+ bool Down(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4537: case 4538: case 4539: case 4540: case 4541: case 4542: case 4543: case 4544: case 4545: case 4546: case 4547: case 4548: case 4549: case 4550: case 4551: case 4552: case 4553: case 4554: case 4555: case 4556: case 4557: case 4558: case 4559: case 4560: case 4561: case 4562: case 4563: case 4564: case 4565: case 4566: case 4567: case 4568: return false;
default: return true;
}
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4521: case 4522: case 4523: case 4524: case 4525: case 4526: case 4527: case 4528: case 4529: case 4530: case 4531: case 4532: case 4533: case 4534: case 4535: case 4536: case 4553: case 4554: case 4555: case 4556: case 4557: case 4558: case 4559: case 4560: case 4561: case 4562: case 4563: case 4564: case 4565: case 4566: case 4567: case 4568: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4513: case 4514: case 4515: case 4516: case 4517: case 4518: case 4519: case 4520: case 4529: case 4530: case 4531: case 4532: case 4533: case 4534: case 4535: case 4536: case 4545: case 4546: case 4547: case 4548: case 4549: case 4550: case 4551: case 4552: case 4561: case 4562: case 4563: case 4564: case 4565: case 4566: case 4567: case 4568: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4509: case 4510: case 4511: case 4512: case 4517: case 4518: case 4519: case 4520: case 4525: case 4526: case 4527: case 4528: case 4533: case 4534: case 4535: case 4536: case 4541: case 4542: case 4543: case 4544: case 4549: case 4550: case 4551: case 4552: case 4557: case 4558: case 4559: case 4560: case 4565: case 4566: case 4567: case 4568: return false;
default: return true;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4507: case 4508: case 4511: case 4512: case 4515: case 4516: case 4519: case 4520: case 4523: case 4524: case 4527: case 4528: case 4531: case 4532: case 4535: case 4536: case 4539: case 4540: case 4543: case 4544: case 4547: case 4548: case 4551: case 4552: case 4555: case 4556: case 4559: case 4560: case 4563: case 4564: case 4567: case 4568: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4506: case 4508: case 4510: case 4512: case 4514: case 4516: case 4518: case 4520: case 4522: case 4524: case 4526: case 4528: case 4530: case 4532: case 4534: case 4536: case 4538: case 4540: case 4542: case 4544: case 4546: case 4548: case 4550: case 4552: case 4554: case 4556: case 4558: case 4560: case 4562: case 4564: case 4566: case 4568: return false;
default: return true;
@@ -2769,13 +1996,13 @@ namespace Block
}
namespace BrownShulkerBox
{
- short BrownShulkerBox()
+ BlockState BrownShulkerBox()
{
return 9354;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9353: return eBlockFace::BLOCK_FACE_XM;
case 9351: return eBlockFace::BLOCK_FACE_XP;
@@ -2791,37 +2018,37 @@ namespace Block
}
namespace BrownStainedGlassPane
{
- short BrownStainedGlassPane()
+ BlockState BrownStainedGlassPane()
{
return 7278;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7265: case 7266: case 7269: case 7270: case 7273: case 7274: case 7277: case 7278: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7257: case 7258: case 7261: case 7262: case 7273: case 7274: case 7277: case 7278: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7253: case 7254: case 7261: case 7262: case 7269: case 7270: case 7277: case 7278: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7250: case 7254: case 7258: case 7262: case 7266: case 7270: case 7274: case 7278: return false;
default: return true;
@@ -2833,13 +2060,13 @@ namespace Block
}
namespace BrownWallBanner
{
- short BrownWallBanner()
+ BlockState BrownWallBanner()
{
return 8201;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8203: return eBlockFace::BLOCK_FACE_XM;
case 8204: return eBlockFace::BLOCK_FACE_XP;
@@ -2853,13 +2080,13 @@ namespace Block
}
namespace BubbleColumn
{
- short BubbleColumn()
+ BlockState BubbleColumn()
{
return 9667;
}
- bool Drag(short ID)
+ bool Drag(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9668: return false;
default: return true;
@@ -2877,13 +2104,13 @@ namespace Block
}
namespace BubbleCoralWallFan
{
- short BubbleCoralWallFan()
+ BlockState BubbleCoralWallFan()
{
return 9616;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9621: return eBlockFace::BLOCK_FACE_XM;
case 9623: return eBlockFace::BLOCK_FACE_XP;
@@ -2894,13 +2121,13 @@ namespace Block
}
namespace Cactus
{
- short Cactus()
+ BlockState Cactus()
{
return 3931;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3931: return 0;
case 3932: return 1;
@@ -2923,13 +2150,13 @@ namespace Block
}
namespace Cake
{
- short Cake()
+ BlockState Cake()
{
return 4024;
}
- unsigned char Bites(short ID)
+ unsigned char Bites(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4024: return 0;
case 4025: return 1;
@@ -2943,13 +2170,13 @@ namespace Block
}
namespace Campfire
{
- short Campfire()
+ BlockState Campfire()
{
return 14893;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14907: case 14909: case 14911: case 14913: return eBlockFace::BLOCK_FACE_XM;
case 14915: case 14917: case 14919: case 14921: return eBlockFace::BLOCK_FACE_XP;
@@ -2957,17 +2184,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Lit(short ID)
+ bool Lit(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14895: case 14897: case 14903: case 14905: case 14911: case 14913: case 14919: case 14921: return false;
default: return true;
}
}
- bool SignalFire(short ID)
+ bool SignalFire(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14893: case 14897: case 14901: case 14905: case 14909: case 14913: case 14917: case 14921: return false;
default: return true;
@@ -2976,13 +2203,13 @@ namespace Block
}
namespace Carrots
{
- short Carrots()
+ BlockState Carrots()
{
return 6330;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6330: return 0;
case 6331: return 1;
@@ -3000,13 +2227,13 @@ namespace Block
}
namespace CarvedPumpkin
{
- short CarvedPumpkin()
+ BlockState CarvedPumpkin()
{
return 4016;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4018: return eBlockFace::BLOCK_FACE_XM;
case 4019: return eBlockFace::BLOCK_FACE_XP;
@@ -3017,13 +2244,13 @@ namespace Block
}
namespace Cauldron
{
- short Cauldron()
+ BlockState Cauldron()
{
return 5141;
}
- unsigned char Level(short ID)
+ unsigned char Level(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5141: return 0;
case 5142: return 1;
@@ -3040,21 +2267,21 @@ namespace Block
}
namespace ChainCommandBlock
{
- short ChainCommandBlock()
+ BlockState ChainCommandBlock()
{
return 9243;
}
- bool Conditional(short ID)
+ bool Conditional(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9243: case 9244: case 9245: case 9246: case 9247: case 9248: return false;
default: return true;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9240: case 9246: return eBlockFace::BLOCK_FACE_XM;
case 9238: case 9244: return eBlockFace::BLOCK_FACE_XP;
@@ -3067,13 +2294,13 @@ namespace Block
}
namespace Chest
{
- short Chest()
+ BlockState Chest()
{
return 2035;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 2047: case 2049: case 2051: return eBlockFace::BLOCK_FACE_XM;
case 2053: case 2055: case 2057: return eBlockFace::BLOCK_FACE_XP;
@@ -3081,9 +2308,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 2037: case 2043: case 2049: case 2055: return Type::Left;
case 2039: case 2045: case 2051: case 2057: return Type::Right;
@@ -3093,13 +2320,13 @@ namespace Block
}
namespace ChippedAnvil
{
- short ChippedAnvil()
+ BlockState ChippedAnvil()
{
return 6614;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6616: return eBlockFace::BLOCK_FACE_XM;
case 6617: return eBlockFace::BLOCK_FACE_XP;
@@ -3128,13 +2355,13 @@ namespace Block
}
namespace ChorusFlower
{
- short ChorusFlower()
+ BlockState ChorusFlower()
{
return 9128;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9128: return 0;
case 9129: return 1;
@@ -3147,53 +2374,53 @@ namespace Block
}
namespace ChorusPlant
{
- short ChorusPlant()
+ BlockState ChorusPlant()
{
return 9127;
}
- bool Down(short ID)
+ bool Down(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9096: case 9097: case 9098: case 9099: case 9100: case 9101: case 9102: case 9103: case 9104: case 9105: case 9106: case 9107: case 9108: case 9109: case 9110: case 9111: case 9112: case 9113: case 9114: case 9115: case 9116: case 9117: case 9118: case 9119: case 9120: case 9121: case 9122: case 9123: case 9124: case 9125: case 9126: case 9127: return false;
default: return true;
}
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9080: case 9081: case 9082: case 9083: case 9084: case 9085: case 9086: case 9087: case 9088: case 9089: case 9090: case 9091: case 9092: case 9093: case 9094: case 9095: case 9112: case 9113: case 9114: case 9115: case 9116: case 9117: case 9118: case 9119: case 9120: case 9121: case 9122: case 9123: case 9124: case 9125: case 9126: case 9127: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9072: case 9073: case 9074: case 9075: case 9076: case 9077: case 9078: case 9079: case 9088: case 9089: case 9090: case 9091: case 9092: case 9093: case 9094: case 9095: case 9104: case 9105: case 9106: case 9107: case 9108: case 9109: case 9110: case 9111: case 9120: case 9121: case 9122: case 9123: case 9124: case 9125: case 9126: case 9127: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9068: case 9069: case 9070: case 9071: case 9076: case 9077: case 9078: case 9079: case 9084: case 9085: case 9086: case 9087: case 9092: case 9093: case 9094: case 9095: case 9100: case 9101: case 9102: case 9103: case 9108: case 9109: case 9110: case 9111: case 9116: case 9117: case 9118: case 9119: case 9124: case 9125: case 9126: case 9127: return false;
default: return true;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9066: case 9067: case 9070: case 9071: case 9074: case 9075: case 9078: case 9079: case 9082: case 9083: case 9086: case 9087: case 9090: case 9091: case 9094: case 9095: case 9098: case 9099: case 9102: case 9103: case 9106: case 9107: case 9110: case 9111: case 9114: case 9115: case 9118: case 9119: case 9122: case 9123: case 9126: case 9127: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9065: case 9067: case 9069: case 9071: case 9073: case 9075: case 9077: case 9079: case 9081: case 9083: case 9085: case 9087: case 9089: case 9091: case 9093: case 9095: case 9097: case 9099: case 9101: case 9103: case 9105: case 9107: case 9109: case 9111: case 9113: case 9115: case 9117: case 9119: case 9121: case 9123: case 9125: case 9127: return false;
default: return true;
@@ -3217,13 +2444,13 @@ namespace Block
}
namespace CobblestoneSlab
{
- short CobblestoneSlab()
+ BlockState CobblestoneSlab()
{
return 8369;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8369: return Type::Bottom;
case 8371: return Type::Double;
@@ -3233,13 +2460,13 @@ namespace Block
}
namespace CobblestoneStairs
{
- short CobblestoneStairs()
+ BlockState CobblestoneStairs()
{
return 3666;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3696: case 3698: case 3700: case 3702: case 3704: case 3706: case 3708: case 3710: case 3712: case 3714: return eBlockFace::BLOCK_FACE_XM;
case 3716: case 3718: case 3720: case 3722: case 3724: case 3726: case 3728: case 3730: case 3732: case 3734: return eBlockFace::BLOCK_FACE_XP;
@@ -3247,17 +2474,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3666: case 3668: case 3670: case 3672: case 3674: case 3686: case 3688: case 3690: case 3692: case 3694: case 3706: case 3708: case 3710: case 3712: case 3714: case 3726: case 3728: case 3730: case 3732: case 3734: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3658: case 3668: case 3678: case 3688: case 3698: case 3708: case 3718: case 3728: return Shape::InnerLeft;
case 3660: case 3670: case 3680: case 3690: case 3700: case 3710: case 3720: case 3730: return Shape::InnerRight;
@@ -3269,48 +2496,48 @@ namespace Block
}
namespace CobblestoneWall
{
- short CobblestoneWall()
+ BlockState CobblestoneWall()
{
return 5660;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5768: case 5769: case 5770: case 5774: case 5775: case 5776: case 5780: case 5781: case 5782: case 5786: case 5787: case 5788: case 5792: case 5793: case 5794: case 5798: case 5799: case 5800: case 5804: case 5805: case 5806: case 5810: case 5811: case 5812: case 5816: case 5817: case 5818: case 5822: case 5823: case 5824: case 5828: case 5829: case 5830: case 5834: case 5835: case 5836: case 5840: case 5841: case 5842: case 5846: case 5847: case 5848: case 5852: case 5853: case 5854: case 5858: case 5859: case 5860: case 5864: case 5865: case 5866: case 5870: case 5871: case 5872: return East::Low;
case 5660: case 5661: case 5662: case 5666: case 5667: case 5668: case 5672: case 5673: case 5674: case 5678: case 5679: case 5680: case 5684: case 5685: case 5686: case 5690: case 5691: case 5692: case 5696: case 5697: case 5698: case 5702: case 5703: case 5704: case 5708: case 5709: case 5710: case 5714: case 5715: case 5716: case 5720: case 5721: case 5722: case 5726: case 5727: case 5728: case 5732: case 5733: case 5734: case 5738: case 5739: case 5740: case 5744: case 5745: case 5746: case 5750: case 5751: case 5752: case 5756: case 5757: case 5758: case 5762: case 5763: case 5764: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5696: case 5697: case 5698: case 5702: case 5703: case 5704: case 5708: case 5709: case 5710: case 5714: case 5715: case 5716: case 5720: case 5721: case 5722: case 5726: case 5727: case 5728: case 5804: case 5805: case 5806: case 5810: case 5811: case 5812: case 5816: case 5817: case 5818: case 5822: case 5823: case 5824: case 5828: case 5829: case 5830: case 5834: case 5835: case 5836: case 5912: case 5913: case 5914: case 5918: case 5919: case 5920: case 5924: case 5925: case 5926: case 5930: case 5931: case 5932: case 5936: case 5937: case 5938: case 5942: case 5943: case 5944: return North::Low;
case 5660: case 5661: case 5662: case 5666: case 5667: case 5668: case 5672: case 5673: case 5674: case 5678: case 5679: case 5680: case 5684: case 5685: case 5686: case 5690: case 5691: case 5692: case 5768: case 5769: case 5770: case 5774: case 5775: case 5776: case 5780: case 5781: case 5782: case 5786: case 5787: case 5788: case 5792: case 5793: case 5794: case 5798: case 5799: case 5800: case 5876: case 5877: case 5878: case 5882: case 5883: case 5884: case 5888: case 5889: case 5890: case 5894: case 5895: case 5896: case 5900: case 5901: case 5902: case 5906: case 5907: case 5908: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5672: case 5673: case 5674: case 5678: case 5679: case 5680: case 5708: case 5709: case 5710: case 5714: case 5715: case 5716: case 5744: case 5745: case 5746: case 5750: case 5751: case 5752: case 5780: case 5781: case 5782: case 5786: case 5787: case 5788: case 5816: case 5817: case 5818: case 5822: case 5823: case 5824: case 5852: case 5853: case 5854: case 5858: case 5859: case 5860: case 5888: case 5889: case 5890: case 5894: case 5895: case 5896: case 5924: case 5925: case 5926: case 5930: case 5931: case 5932: case 5960: case 5961: case 5962: case 5966: case 5967: case 5968: return South::Low;
case 5660: case 5661: case 5662: case 5666: case 5667: case 5668: case 5696: case 5697: case 5698: case 5702: case 5703: case 5704: case 5732: case 5733: case 5734: case 5738: case 5739: case 5740: case 5768: case 5769: case 5770: case 5774: case 5775: case 5776: case 5804: case 5805: case 5806: case 5810: case 5811: case 5812: case 5840: case 5841: case 5842: case 5846: case 5847: case 5848: case 5876: case 5877: case 5878: case 5882: case 5883: case 5884: case 5912: case 5913: case 5914: case 5918: case 5919: case 5920: case 5948: case 5949: case 5950: case 5954: case 5955: case 5956: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5666: case 5667: case 5668: case 5678: case 5679: case 5680: case 5690: case 5691: case 5692: case 5702: case 5703: case 5704: case 5714: case 5715: case 5716: case 5726: case 5727: case 5728: case 5738: case 5739: case 5740: case 5750: case 5751: case 5752: case 5762: case 5763: case 5764: case 5774: case 5775: case 5776: case 5786: case 5787: case 5788: case 5798: case 5799: case 5800: case 5810: case 5811: case 5812: case 5822: case 5823: case 5824: case 5834: case 5835: case 5836: case 5846: case 5847: case 5848: case 5858: case 5859: case 5860: case 5870: case 5871: case 5872: case 5882: case 5883: case 5884: case 5894: case 5895: case 5896: case 5906: case 5907: case 5908: case 5918: case 5919: case 5920: case 5930: case 5931: case 5932: case 5942: case 5943: case 5944: case 5954: case 5955: case 5956: case 5966: case 5967: case 5968: case 5978: case 5979: case 5980: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5661: case 5667: case 5673: case 5679: case 5685: case 5691: case 5697: case 5703: case 5709: case 5715: case 5721: case 5727: case 5733: case 5739: case 5745: case 5751: case 5757: case 5763: case 5769: case 5775: case 5781: case 5787: case 5793: case 5799: case 5805: case 5811: case 5817: case 5823: case 5829: case 5835: case 5841: case 5847: case 5853: case 5859: case 5865: case 5871: case 5877: case 5883: case 5889: case 5895: case 5901: case 5907: case 5913: case 5919: case 5925: case 5931: case 5937: case 5943: case 5949: case 5955: case 5961: case 5967: case 5973: case 5979: return West::Low;
case 5660: case 5666: case 5672: case 5678: case 5684: case 5690: case 5696: case 5702: case 5708: case 5714: case 5720: case 5726: case 5732: case 5738: case 5744: case 5750: case 5756: case 5762: case 5768: case 5774: case 5780: case 5786: case 5792: case 5798: case 5804: case 5810: case 5816: case 5822: case 5828: case 5834: case 5840: case 5846: case 5852: case 5858: case 5864: case 5870: case 5876: case 5882: case 5888: case 5894: case 5900: case 5906: case 5912: case 5918: case 5924: case 5930: case 5936: case 5942: case 5948: case 5954: case 5960: case 5966: case 5972: case 5978: return West::None;
@@ -3323,22 +2550,22 @@ namespace Block
}
namespace Cocoa
{
- short Cocoa()
+ BlockState Cocoa()
{
return 5158;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5158: case 5159: case 5160: case 5161: return 0;
case 5162: case 5163: case 5164: case 5165: return 1;
default: return 2;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5160: case 5164: case 5168: return eBlockFace::BLOCK_FACE_XM;
case 5161: case 5165: case 5169: return eBlockFace::BLOCK_FACE_XP;
@@ -3349,21 +2576,21 @@ namespace Block
}
namespace CommandBlock
{
- short CommandBlock()
+ BlockState CommandBlock()
{
return 5650;
}
- bool Conditional(short ID)
+ bool Conditional(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5650: case 5651: case 5652: case 5653: case 5654: case 5655: return false;
default: return true;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5647: case 5653: return eBlockFace::BLOCK_FACE_XM;
case 5645: case 5651: return eBlockFace::BLOCK_FACE_XP;
@@ -3376,13 +2603,13 @@ namespace Block
}
namespace Comparator
{
- short Comparator()
+ BlockState Comparator()
{
return 6679;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6686: case 6687: case 6688: case 6689: return eBlockFace::BLOCK_FACE_XM;
case 6690: case 6691: case 6692: case 6693: return eBlockFace::BLOCK_FACE_XP;
@@ -3390,17 +2617,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Mode Mode(short ID)
+ enum Mode Mode(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6678: case 6679: case 6682: case 6683: case 6686: case 6687: case 6690: case 6691: return Mode::Compare;
default: return Mode::Subtract;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6679: case 6681: case 6683: case 6685: case 6687: case 6689: case 6691: case 6693: return false;
default: return true;
@@ -3409,13 +2636,13 @@ namespace Block
}
namespace Composter
{
- short Composter()
+ BlockState Composter()
{
return 15751;
}
- unsigned char Level(short ID)
+ unsigned char Level(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15751: return 0;
case 15752: return 1;
@@ -3449,13 +2676,13 @@ namespace Block
}
namespace CreeperHead
{
- short CreeperHead()
+ BlockState CreeperHead()
{
return 6570;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6570: return 0;
case 6571: return 1;
@@ -3478,13 +2705,13 @@ namespace Block
}
namespace CreeperWallHead
{
- short CreeperWallHead()
+ BlockState CreeperWallHead()
{
return 6586;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6588: return eBlockFace::BLOCK_FACE_XM;
case 6589: return eBlockFace::BLOCK_FACE_XP;
@@ -3495,22 +2722,22 @@ namespace Block
}
namespace CrimsonButton
{
- short CrimsonButton()
+ BlockState CrimsonButton()
{
return 15488;
}
- enum Face Face(short ID)
+ enum Face Face(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15495: case 15496: case 15497: case 15498: case 15499: case 15500: case 15501: case 15502: return Face::Ceiling;
case 15479: case 15480: case 15481: case 15482: case 15483: case 15484: case 15485: case 15486: return Face::Floor;
default: return Face::Wall;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15483: case 15484: case 15491: case 15492: case 15499: case 15500: return eBlockFace::BLOCK_FACE_XM;
case 15485: case 15486: case 15493: case 15494: case 15501: case 15502: return eBlockFace::BLOCK_FACE_XP;
@@ -3518,9 +2745,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15480: case 15482: case 15484: case 15486: case 15488: case 15490: case 15492: case 15494: case 15496: case 15498: case 15500: case 15502: return false;
default: return true;
@@ -3529,13 +2756,13 @@ namespace Block
}
namespace CrimsonDoor
{
- short CrimsonDoor()
+ BlockState CrimsonDoor()
{
return 15538;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15559: case 15560: case 15561: case 15562: case 15563: case 15564: case 15565: case 15566: case 15567: case 15568: case 15569: case 15570: case 15571: case 15572: case 15573: case 15574: return eBlockFace::BLOCK_FACE_XM;
case 15575: case 15576: case 15577: case 15578: case 15579: case 15580: case 15581: case 15582: case 15583: case 15584: case 15585: case 15586: case 15587: case 15588: case 15589: case 15590: return eBlockFace::BLOCK_FACE_XP;
@@ -3543,33 +2770,33 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15535: case 15536: case 15537: case 15538: case 15539: case 15540: case 15541: case 15542: case 15551: case 15552: case 15553: case 15554: case 15555: case 15556: case 15557: case 15558: case 15567: case 15568: case 15569: case 15570: case 15571: case 15572: case 15573: case 15574: case 15583: case 15584: case 15585: case 15586: case 15587: case 15588: case 15589: case 15590: return Half::Lower;
default: return Half::Upper;
}
}
- enum Hinge Hinge(short ID)
+ enum Hinge Hinge(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15527: case 15528: case 15529: case 15530: case 15535: case 15536: case 15537: case 15538: case 15543: case 15544: case 15545: case 15546: case 15551: case 15552: case 15553: case 15554: case 15559: case 15560: case 15561: case 15562: case 15567: case 15568: case 15569: case 15570: case 15575: case 15576: case 15577: case 15578: case 15583: case 15584: case 15585: case 15586: return Hinge::Left;
default: return Hinge::Right;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15529: case 15530: case 15533: case 15534: case 15537: case 15538: case 15541: case 15542: case 15545: case 15546: case 15549: case 15550: case 15553: case 15554: case 15557: case 15558: case 15561: case 15562: case 15565: case 15566: case 15569: case 15570: case 15573: case 15574: case 15577: case 15578: case 15581: case 15582: case 15585: case 15586: case 15589: case 15590: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15528: case 15530: case 15532: case 15534: case 15536: case 15538: case 15540: case 15542: case 15544: case 15546: case 15548: case 15550: case 15552: case 15554: case 15556: case 15558: case 15560: case 15562: case 15564: case 15566: case 15568: case 15570: case 15572: case 15574: case 15576: case 15578: case 15580: case 15582: case 15584: case 15586: case 15588: case 15590: return false;
default: return true;
@@ -3578,37 +2805,37 @@ namespace Block
}
namespace CrimsonFence
{
- short CrimsonFence()
+ BlockState CrimsonFence()
{
return 15094;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15081: case 15082: case 15085: case 15086: case 15089: case 15090: case 15093: case 15094: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15073: case 15074: case 15077: case 15078: case 15089: case 15090: case 15093: case 15094: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15069: case 15070: case 15077: case 15078: case 15085: case 15086: case 15093: case 15094: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15066: case 15070: case 15074: case 15078: case 15082: case 15086: case 15090: case 15094: return false;
default: return true;
@@ -3617,13 +2844,13 @@ namespace Block
}
namespace CrimsonFenceGate
{
- short CrimsonFenceGate()
+ BlockState CrimsonFenceGate()
{
return 15262;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15271: case 15272: case 15273: case 15274: case 15275: case 15276: case 15277: case 15278: return eBlockFace::BLOCK_FACE_XM;
case 15279: case 15280: case 15281: case 15282: case 15283: case 15284: case 15285: case 15286: return eBlockFace::BLOCK_FACE_XP;
@@ -3631,25 +2858,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool InWall(short ID)
+ bool InWall(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15259: case 15260: case 15261: case 15262: case 15267: case 15268: case 15269: case 15270: case 15275: case 15276: case 15277: case 15278: case 15283: case 15284: case 15285: case 15286: return false;
default: return true;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15257: case 15258: case 15261: case 15262: case 15265: case 15266: case 15269: case 15270: case 15273: case 15274: case 15277: case 15278: case 15281: case 15282: case 15285: case 15286: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15256: case 15258: case 15260: case 15262: case 15264: case 15266: case 15268: case 15270: case 15272: case 15274: case 15276: case 15278: case 15280: case 15282: case 15284: case 15286: return false;
default: return true;
@@ -3661,13 +2888,13 @@ namespace Block
}
namespace CrimsonHyphae
{
- short CrimsonHyphae()
+ BlockState CrimsonHyphae()
{
return 14982;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14981: return Axis::X;
case 14982: return Axis::Y;
@@ -3683,13 +2910,13 @@ namespace Block
}
namespace CrimsonPressurePlate
{
- short CrimsonPressurePlate()
+ BlockState CrimsonPressurePlate()
{
return 15060;
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15060: return false;
default: return true;
@@ -3701,13 +2928,13 @@ namespace Block
}
namespace CrimsonSign
{
- short CrimsonSign()
+ BlockState CrimsonSign()
{
return 15656;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15656: return 0;
case 15658: return 1;
@@ -3730,13 +2957,13 @@ namespace Block
}
namespace CrimsonSlab
{
- short CrimsonSlab()
+ BlockState CrimsonSlab()
{
return 15050;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15050: return Type::Bottom;
case 15052: return Type::Double;
@@ -3746,13 +2973,13 @@ namespace Block
}
namespace CrimsonStairs
{
- short CrimsonStairs()
+ BlockState CrimsonStairs()
{
return 15330;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15360: case 15362: case 15364: case 15366: case 15368: case 15370: case 15372: case 15374: case 15376: case 15378: return eBlockFace::BLOCK_FACE_XM;
case 15380: case 15382: case 15384: case 15386: case 15388: case 15390: case 15392: case 15394: case 15396: case 15398: return eBlockFace::BLOCK_FACE_XP;
@@ -3760,17 +2987,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15330: case 15332: case 15334: case 15336: case 15338: case 15350: case 15352: case 15354: case 15356: case 15358: case 15370: case 15372: case 15374: case 15376: case 15378: case 15390: case 15392: case 15394: case 15396: case 15398: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15322: case 15332: case 15342: case 15352: case 15362: case 15372: case 15382: case 15392: return Shape::InnerLeft;
case 15324: case 15334: case 15344: case 15354: case 15364: case 15374: case 15384: case 15394: return Shape::InnerRight;
@@ -3782,13 +3009,13 @@ namespace Block
}
namespace CrimsonStem
{
- short CrimsonStem()
+ BlockState CrimsonStem()
{
return 14976;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14975: return Axis::X;
case 14976: return Axis::Y;
@@ -3798,13 +3025,13 @@ namespace Block
}
namespace CrimsonTrapdoor
{
- short CrimsonTrapdoor()
+ BlockState CrimsonTrapdoor()
{
return 15142;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15160: case 15162: case 15164: case 15166: case 15168: case 15170: case 15172: case 15174: return eBlockFace::BLOCK_FACE_XM;
case 15176: case 15178: case 15180: case 15182: case 15184: case 15186: case 15188: case 15190: return eBlockFace::BLOCK_FACE_XP;
@@ -3812,25 +3039,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15136: case 15138: case 15140: case 15142: case 15152: case 15154: case 15156: case 15158: case 15168: case 15170: case 15172: case 15174: case 15184: case 15186: case 15188: case 15190: return Half::Bottom;
default: return Half::Top;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15132: case 15134: case 15140: case 15142: case 15148: case 15150: case 15156: case 15158: case 15164: case 15166: case 15172: case 15174: case 15180: case 15182: case 15188: case 15190: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15130: case 15134: case 15138: case 15142: case 15146: case 15150: case 15154: case 15158: case 15162: case 15166: case 15170: case 15174: case 15178: case 15182: case 15186: case 15190: return false;
default: return true;
@@ -3839,13 +3066,13 @@ namespace Block
}
namespace CrimsonWallSign
{
- short CrimsonWallSign()
+ BlockState CrimsonWallSign()
{
return 15720;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15724: return eBlockFace::BLOCK_FACE_XM;
case 15726: return eBlockFace::BLOCK_FACE_XP;
@@ -3862,13 +3089,13 @@ namespace Block
}
namespace CutRedSandstoneSlab
{
- short CutRedSandstoneSlab()
+ BlockState CutRedSandstoneSlab()
{
return 8405;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8405: return Type::Bottom;
case 8407: return Type::Double;
@@ -3881,13 +3108,13 @@ namespace Block
}
namespace CutSandstoneSlab
{
- short CutSandstoneSlab()
+ BlockState CutSandstoneSlab()
{
return 8357;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8357: return Type::Bottom;
case 8359: return Type::Double;
@@ -3897,13 +3124,13 @@ namespace Block
}
namespace CyanBanner
{
- short CyanBanner()
+ BlockState CyanBanner()
{
return 8041;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8041: return 0;
case 8042: return 1;
@@ -3926,13 +3153,13 @@ namespace Block
}
namespace CyanBed
{
- short CyanBed()
+ BlockState CyanBed()
{
return 1196;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1201: case 1202: case 1203: case 1204: return eBlockFace::BLOCK_FACE_XM;
case 1205: case 1206: case 1207: case 1208: return eBlockFace::BLOCK_FACE_XP;
@@ -3940,17 +3167,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1195: case 1196: case 1199: case 1200: case 1203: case 1204: case 1207: case 1208: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1194: case 1196: case 1198: case 1200: case 1202: case 1204: case 1206: case 1208: return Part::Foot;
default: return Part::Head;
@@ -3968,13 +3195,13 @@ namespace Block
}
namespace CyanGlazedTerracotta
{
- short CyanGlazedTerracotta()
+ BlockState CyanGlazedTerracotta()
{
return 9410;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9412: return eBlockFace::BLOCK_FACE_XM;
case 9413: return eBlockFace::BLOCK_FACE_XP;
@@ -3985,13 +3212,13 @@ namespace Block
}
namespace CyanShulkerBox
{
- short CyanShulkerBox()
+ BlockState CyanShulkerBox()
{
return 9336;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9335: return eBlockFace::BLOCK_FACE_XM;
case 9333: return eBlockFace::BLOCK_FACE_XP;
@@ -4007,37 +3234,37 @@ namespace Block
}
namespace CyanStainedGlassPane
{
- short CyanStainedGlassPane()
+ BlockState CyanStainedGlassPane()
{
return 7182;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7169: case 7170: case 7173: case 7174: case 7177: case 7178: case 7181: case 7182: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7161: case 7162: case 7165: case 7166: case 7177: case 7178: case 7181: case 7182: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7157: case 7158: case 7165: case 7166: case 7173: case 7174: case 7181: case 7182: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7154: case 7158: case 7162: case 7166: case 7170: case 7174: case 7178: case 7182: return false;
default: return true;
@@ -4049,13 +3276,13 @@ namespace Block
}
namespace CyanWallBanner
{
- short CyanWallBanner()
+ BlockState CyanWallBanner()
{
return 8189;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8191: return eBlockFace::BLOCK_FACE_XM;
case 8192: return eBlockFace::BLOCK_FACE_XP;
@@ -4069,13 +3296,13 @@ namespace Block
}
namespace DamagedAnvil
{
- short DamagedAnvil()
+ BlockState DamagedAnvil()
{
return 6618;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6620: return eBlockFace::BLOCK_FACE_XM;
case 6621: return eBlockFace::BLOCK_FACE_XP;
@@ -4089,22 +3316,22 @@ namespace Block
}
namespace DarkOakButton
{
- short DarkOakButton()
+ BlockState DarkOakButton()
{
return 6475;
}
- enum Face Face(short ID)
+ enum Face Face(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6482: case 6483: case 6484: case 6485: case 6486: case 6487: case 6488: case 6489: return Face::Ceiling;
case 6466: case 6467: case 6468: case 6469: case 6470: case 6471: case 6472: case 6473: return Face::Floor;
default: return Face::Wall;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6470: case 6471: case 6478: case 6479: case 6486: case 6487: return eBlockFace::BLOCK_FACE_XM;
case 6472: case 6473: case 6480: case 6481: case 6488: case 6489: return eBlockFace::BLOCK_FACE_XP;
@@ -4112,9 +3339,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6467: case 6469: case 6471: case 6473: case 6475: case 6477: case 6479: case 6481: case 6483: case 6485: case 6487: case 6489: return false;
default: return true;
@@ -4123,13 +3350,13 @@ namespace Block
}
namespace DarkOakDoor
{
- short DarkOakDoor()
+ BlockState DarkOakDoor()
{
return 9005;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9026: case 9027: case 9028: case 9029: case 9030: case 9031: case 9032: case 9033: case 9034: case 9035: case 9036: case 9037: case 9038: case 9039: case 9040: case 9041: return eBlockFace::BLOCK_FACE_XM;
case 9042: case 9043: case 9044: case 9045: case 9046: case 9047: case 9048: case 9049: case 9050: case 9051: case 9052: case 9053: case 9054: case 9055: case 9056: case 9057: return eBlockFace::BLOCK_FACE_XP;
@@ -4137,33 +3364,33 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9002: case 9003: case 9004: case 9005: case 9006: case 9007: case 9008: case 9009: case 9018: case 9019: case 9020: case 9021: case 9022: case 9023: case 9024: case 9025: case 9034: case 9035: case 9036: case 9037: case 9038: case 9039: case 9040: case 9041: case 9050: case 9051: case 9052: case 9053: case 9054: case 9055: case 9056: case 9057: return Half::Lower;
default: return Half::Upper;
}
}
- enum Hinge Hinge(short ID)
+ enum Hinge Hinge(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8994: case 8995: case 8996: case 8997: case 9002: case 9003: case 9004: case 9005: case 9010: case 9011: case 9012: case 9013: case 9018: case 9019: case 9020: case 9021: case 9026: case 9027: case 9028: case 9029: case 9034: case 9035: case 9036: case 9037: case 9042: case 9043: case 9044: case 9045: case 9050: case 9051: case 9052: case 9053: return Hinge::Left;
default: return Hinge::Right;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8996: case 8997: case 9000: case 9001: case 9004: case 9005: case 9008: case 9009: case 9012: case 9013: case 9016: case 9017: case 9020: case 9021: case 9024: case 9025: case 9028: case 9029: case 9032: case 9033: case 9036: case 9037: case 9040: case 9041: case 9044: case 9045: case 9048: case 9049: case 9052: case 9053: case 9056: case 9057: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8995: case 8997: case 8999: case 9001: case 9003: case 9005: case 9007: case 9009: case 9011: case 9013: case 9015: case 9017: case 9019: case 9021: case 9023: case 9025: case 9027: case 9029: case 9031: case 9033: case 9035: case 9037: case 9039: case 9041: case 9043: case 9045: case 9047: case 9049: case 9051: case 9053: case 9055: case 9057: return false;
default: return true;
@@ -4172,37 +3399,37 @@ namespace Block
}
namespace DarkOakFence
{
- short DarkOakFence()
+ BlockState DarkOakFence()
{
return 8737;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8724: case 8725: case 8728: case 8729: case 8732: case 8733: case 8736: case 8737: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8716: case 8717: case 8720: case 8721: case 8732: case 8733: case 8736: case 8737: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8712: case 8713: case 8720: case 8721: case 8728: case 8729: case 8736: case 8737: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8709: case 8713: case 8717: case 8721: case 8725: case 8729: case 8733: case 8737: return false;
default: return true;
@@ -4211,13 +3438,13 @@ namespace Block
}
namespace DarkOakFenceGate
{
- short DarkOakFenceGate()
+ BlockState DarkOakFenceGate()
{
return 8553;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8562: case 8563: case 8564: case 8565: case 8566: case 8567: case 8568: case 8569: return eBlockFace::BLOCK_FACE_XM;
case 8570: case 8571: case 8572: case 8573: case 8574: case 8575: case 8576: case 8577: return eBlockFace::BLOCK_FACE_XP;
@@ -4225,25 +3452,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool InWall(short ID)
+ bool InWall(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8550: case 8551: case 8552: case 8553: case 8558: case 8559: case 8560: case 8561: case 8566: case 8567: case 8568: case 8569: case 8574: case 8575: case 8576: case 8577: return false;
default: return true;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8548: case 8549: case 8552: case 8553: case 8556: case 8557: case 8560: case 8561: case 8564: case 8565: case 8568: case 8569: case 8572: case 8573: case 8576: case 8577: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8547: case 8549: case 8551: case 8553: case 8555: case 8557: case 8559: case 8561: case 8563: case 8565: case 8567: case 8569: case 8571: case 8573: case 8575: case 8577: return false;
default: return true;
@@ -4252,13 +3479,13 @@ namespace Block
}
namespace DarkOakLeaves
{
- short DarkOakLeaves()
+ BlockState DarkOakLeaves()
{
return 228;
}
- unsigned char Distance(short ID)
+ unsigned char Distance(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 215: case 216: return 1;
case 217: case 218: return 2;
@@ -4269,9 +3496,9 @@ namespace Block
default: return 7;
}
}
- bool Persistent(short ID)
+ bool Persistent(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 216: case 218: case 220: case 222: case 224: case 226: case 228: return false;
default: return true;
@@ -4280,13 +3507,13 @@ namespace Block
}
namespace DarkOakLog
{
- short DarkOakLog()
+ BlockState DarkOakLog()
{
return 89;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 88: return Axis::X;
case 89: return Axis::Y;
@@ -4299,13 +3526,13 @@ namespace Block
}
namespace DarkOakPressurePlate
{
- short DarkOakPressurePlate()
+ BlockState DarkOakPressurePlate()
{
return 3884;
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3884: return false;
default: return true;
@@ -4314,13 +3541,13 @@ namespace Block
}
namespace DarkOakSapling
{
- short DarkOakSapling()
+ BlockState DarkOakSapling()
{
return 31;
}
- unsigned char Stage(short ID)
+ unsigned char Stage(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 31: return 0;
default: return 1;
@@ -4329,13 +3556,13 @@ namespace Block
}
namespace DarkOakSign
{
- short DarkOakSign()
+ BlockState DarkOakSign()
{
return 3542;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3542: return 0;
case 3544: return 1;
@@ -4358,13 +3585,13 @@ namespace Block
}
namespace DarkOakSlab
{
- short DarkOakSlab()
+ BlockState DarkOakSlab()
{
return 8333;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8333: return Type::Bottom;
case 8335: return Type::Double;
@@ -4374,13 +3601,13 @@ namespace Block
}
namespace DarkOakStairs
{
- short DarkOakStairs()
+ BlockState DarkOakStairs()
{
return 7466;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7496: case 7498: case 7500: case 7502: case 7504: case 7506: case 7508: case 7510: case 7512: case 7514: return eBlockFace::BLOCK_FACE_XM;
case 7516: case 7518: case 7520: case 7522: case 7524: case 7526: case 7528: case 7530: case 7532: case 7534: return eBlockFace::BLOCK_FACE_XP;
@@ -4388,17 +3615,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7466: case 7468: case 7470: case 7472: case 7474: case 7486: case 7488: case 7490: case 7492: case 7494: case 7506: case 7508: case 7510: case 7512: case 7514: case 7526: case 7528: case 7530: case 7532: case 7534: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7458: case 7468: case 7478: case 7488: case 7498: case 7508: case 7518: case 7528: return Shape::InnerLeft;
case 7460: case 7470: case 7480: case 7490: case 7500: case 7510: case 7520: case 7530: return Shape::InnerRight;
@@ -4410,13 +3637,13 @@ namespace Block
}
namespace DarkOakTrapdoor
{
- short DarkOakTrapdoor()
+ BlockState DarkOakTrapdoor()
{
return 4446;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4464: case 4466: case 4468: case 4470: case 4472: case 4474: case 4476: case 4478: return eBlockFace::BLOCK_FACE_XM;
case 4480: case 4482: case 4484: case 4486: case 4488: case 4490: case 4492: case 4494: return eBlockFace::BLOCK_FACE_XP;
@@ -4424,25 +3651,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4440: case 4442: case 4444: case 4446: case 4456: case 4458: case 4460: case 4462: case 4472: case 4474: case 4476: case 4478: case 4488: case 4490: case 4492: case 4494: return Half::Bottom;
default: return Half::Top;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4436: case 4438: case 4444: case 4446: case 4452: case 4454: case 4460: case 4462: case 4468: case 4470: case 4476: case 4478: case 4484: case 4486: case 4492: case 4494: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4434: case 4438: case 4442: case 4446: case 4450: case 4454: case 4458: case 4462: case 4466: case 4470: case 4474: case 4478: case 4482: case 4486: case 4490: case 4494: return false;
default: return true;
@@ -4451,13 +3678,13 @@ namespace Block
}
namespace DarkOakWallSign
{
- short DarkOakWallSign()
+ BlockState DarkOakWallSign()
{
return 3776;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3780: return eBlockFace::BLOCK_FACE_XM;
case 3782: return eBlockFace::BLOCK_FACE_XP;
@@ -4468,13 +3695,13 @@ namespace Block
}
namespace DarkOakWood
{
- short DarkOakWood()
+ BlockState DarkOakWood()
{
return 125;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 124: return Axis::X;
case 125: return Axis::Y;
@@ -4487,13 +3714,13 @@ namespace Block
}
namespace DarkPrismarineSlab
{
- short DarkPrismarineSlab()
+ BlockState DarkPrismarineSlab()
{
return 7859;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7859: return Type::Bottom;
case 7861: return Type::Double;
@@ -4503,13 +3730,13 @@ namespace Block
}
namespace DarkPrismarineStairs
{
- short DarkPrismarineStairs()
+ BlockState DarkPrismarineStairs()
{
return 7775;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7805: case 7807: case 7809: case 7811: case 7813: case 7815: case 7817: case 7819: case 7821: case 7823: return eBlockFace::BLOCK_FACE_XM;
case 7825: case 7827: case 7829: case 7831: case 7833: case 7835: case 7837: case 7839: case 7841: case 7843: return eBlockFace::BLOCK_FACE_XP;
@@ -4517,17 +3744,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7775: case 7777: case 7779: case 7781: case 7783: case 7795: case 7797: case 7799: case 7801: case 7803: case 7815: case 7817: case 7819: case 7821: case 7823: case 7835: case 7837: case 7839: case 7841: case 7843: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7767: case 7777: case 7787: case 7797: case 7807: case 7817: case 7827: case 7837: return Shape::InnerLeft;
case 7769: case 7779: case 7789: case 7799: case 7809: case 7819: case 7829: case 7839: return Shape::InnerRight;
@@ -4539,21 +3766,21 @@ namespace Block
}
namespace DaylightDetector
{
- short DaylightDetector()
+ BlockState DaylightDetector()
{
return 6710;
}
- bool Inverted(short ID)
+ bool Inverted(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6710: case 6711: case 6712: case 6713: case 6714: case 6715: case 6716: case 6717: case 6718: case 6719: case 6720: case 6721: case 6722: case 6723: case 6724: case 6725: return false;
default: return true;
}
}
- unsigned char Power(short ID)
+ unsigned char Power(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6694: case 6710: return 0;
case 6695: case 6711: return 1;
@@ -4585,13 +3812,13 @@ namespace Block
}
namespace DeadBrainCoralWallFan
{
- short DeadBrainCoralWallFan()
+ BlockState DeadBrainCoralWallFan()
{
return 9568;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9573: return eBlockFace::BLOCK_FACE_XM;
case 9575: return eBlockFace::BLOCK_FACE_XP;
@@ -4611,13 +3838,13 @@ namespace Block
}
namespace DeadBubbleCoralWallFan
{
- short DeadBubbleCoralWallFan()
+ BlockState DeadBubbleCoralWallFan()
{
return 9576;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9581: return eBlockFace::BLOCK_FACE_XM;
case 9583: return eBlockFace::BLOCK_FACE_XP;
@@ -4640,13 +3867,13 @@ namespace Block
}
namespace DeadFireCoralWallFan
{
- short DeadFireCoralWallFan()
+ BlockState DeadFireCoralWallFan()
{
return 9584;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9589: return eBlockFace::BLOCK_FACE_XM;
case 9591: return eBlockFace::BLOCK_FACE_XP;
@@ -4666,13 +3893,13 @@ namespace Block
}
namespace DeadHornCoralWallFan
{
- short DeadHornCoralWallFan()
+ BlockState DeadHornCoralWallFan()
{
return 9592;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9597: return eBlockFace::BLOCK_FACE_XM;
case 9599: return eBlockFace::BLOCK_FACE_XP;
@@ -4692,13 +3919,13 @@ namespace Block
}
namespace DeadTubeCoralWallFan
{
- short DeadTubeCoralWallFan()
+ BlockState DeadTubeCoralWallFan()
{
return 9560;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9565: return eBlockFace::BLOCK_FACE_XM;
case 9567: return eBlockFace::BLOCK_FACE_XP;
@@ -4709,21 +3936,21 @@ namespace Block
}
namespace DetectorRail
{
- short DetectorRail()
+ BlockState DetectorRail()
{
return 1323;
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1323: case 1324: case 1325: case 1326: case 1327: case 1328: return false;
default: return true;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1319: case 1325: return Shape::AscendingEast;
case 1321: case 1327: return Shape::AscendingNorth;
@@ -4745,13 +3972,13 @@ namespace Block
}
namespace DioriteSlab
{
- short DioriteSlab()
+ BlockState DioriteSlab()
{
return 10864;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10864: return Type::Bottom;
case 10866: return Type::Double;
@@ -4761,13 +3988,13 @@ namespace Block
}
namespace DioriteStairs
{
- short DioriteStairs()
+ BlockState DioriteStairs()
{
return 10720;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10750: case 10752: case 10754: case 10756: case 10758: case 10760: case 10762: case 10764: case 10766: case 10768: return eBlockFace::BLOCK_FACE_XM;
case 10770: case 10772: case 10774: case 10776: case 10778: case 10780: case 10782: case 10784: case 10786: case 10788: return eBlockFace::BLOCK_FACE_XP;
@@ -4775,17 +4002,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10720: case 10722: case 10724: case 10726: case 10728: case 10740: case 10742: case 10744: case 10746: case 10748: case 10760: case 10762: case 10764: case 10766: case 10768: case 10780: case 10782: case 10784: case 10786: case 10788: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10712: case 10722: case 10732: case 10742: case 10752: case 10762: case 10772: case 10782: return Shape::InnerLeft;
case 10714: case 10724: case 10734: case 10744: case 10754: case 10764: case 10774: case 10784: return Shape::InnerRight;
@@ -4797,48 +4024,48 @@ namespace Block
}
namespace DioriteWall
{
- short DioriteWall()
+ BlockState DioriteWall()
{
return 14434;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14542: case 14543: case 14544: case 14548: case 14549: case 14550: case 14554: case 14555: case 14556: case 14560: case 14561: case 14562: case 14566: case 14567: case 14568: case 14572: case 14573: case 14574: case 14578: case 14579: case 14580: case 14584: case 14585: case 14586: case 14590: case 14591: case 14592: case 14596: case 14597: case 14598: case 14602: case 14603: case 14604: case 14608: case 14609: case 14610: case 14614: case 14615: case 14616: case 14620: case 14621: case 14622: case 14626: case 14627: case 14628: case 14632: case 14633: case 14634: case 14638: case 14639: case 14640: case 14644: case 14645: case 14646: return East::Low;
case 14434: case 14435: case 14436: case 14440: case 14441: case 14442: case 14446: case 14447: case 14448: case 14452: case 14453: case 14454: case 14458: case 14459: case 14460: case 14464: case 14465: case 14466: case 14470: case 14471: case 14472: case 14476: case 14477: case 14478: case 14482: case 14483: case 14484: case 14488: case 14489: case 14490: case 14494: case 14495: case 14496: case 14500: case 14501: case 14502: case 14506: case 14507: case 14508: case 14512: case 14513: case 14514: case 14518: case 14519: case 14520: case 14524: case 14525: case 14526: case 14530: case 14531: case 14532: case 14536: case 14537: case 14538: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14470: case 14471: case 14472: case 14476: case 14477: case 14478: case 14482: case 14483: case 14484: case 14488: case 14489: case 14490: case 14494: case 14495: case 14496: case 14500: case 14501: case 14502: case 14578: case 14579: case 14580: case 14584: case 14585: case 14586: case 14590: case 14591: case 14592: case 14596: case 14597: case 14598: case 14602: case 14603: case 14604: case 14608: case 14609: case 14610: case 14686: case 14687: case 14688: case 14692: case 14693: case 14694: case 14698: case 14699: case 14700: case 14704: case 14705: case 14706: case 14710: case 14711: case 14712: case 14716: case 14717: case 14718: return North::Low;
case 14434: case 14435: case 14436: case 14440: case 14441: case 14442: case 14446: case 14447: case 14448: case 14452: case 14453: case 14454: case 14458: case 14459: case 14460: case 14464: case 14465: case 14466: case 14542: case 14543: case 14544: case 14548: case 14549: case 14550: case 14554: case 14555: case 14556: case 14560: case 14561: case 14562: case 14566: case 14567: case 14568: case 14572: case 14573: case 14574: case 14650: case 14651: case 14652: case 14656: case 14657: case 14658: case 14662: case 14663: case 14664: case 14668: case 14669: case 14670: case 14674: case 14675: case 14676: case 14680: case 14681: case 14682: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14446: case 14447: case 14448: case 14452: case 14453: case 14454: case 14482: case 14483: case 14484: case 14488: case 14489: case 14490: case 14518: case 14519: case 14520: case 14524: case 14525: case 14526: case 14554: case 14555: case 14556: case 14560: case 14561: case 14562: case 14590: case 14591: case 14592: case 14596: case 14597: case 14598: case 14626: case 14627: case 14628: case 14632: case 14633: case 14634: case 14662: case 14663: case 14664: case 14668: case 14669: case 14670: case 14698: case 14699: case 14700: case 14704: case 14705: case 14706: case 14734: case 14735: case 14736: case 14740: case 14741: case 14742: return South::Low;
case 14434: case 14435: case 14436: case 14440: case 14441: case 14442: case 14470: case 14471: case 14472: case 14476: case 14477: case 14478: case 14506: case 14507: case 14508: case 14512: case 14513: case 14514: case 14542: case 14543: case 14544: case 14548: case 14549: case 14550: case 14578: case 14579: case 14580: case 14584: case 14585: case 14586: case 14614: case 14615: case 14616: case 14620: case 14621: case 14622: case 14650: case 14651: case 14652: case 14656: case 14657: case 14658: case 14686: case 14687: case 14688: case 14692: case 14693: case 14694: case 14722: case 14723: case 14724: case 14728: case 14729: case 14730: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14440: case 14441: case 14442: case 14452: case 14453: case 14454: case 14464: case 14465: case 14466: case 14476: case 14477: case 14478: case 14488: case 14489: case 14490: case 14500: case 14501: case 14502: case 14512: case 14513: case 14514: case 14524: case 14525: case 14526: case 14536: case 14537: case 14538: case 14548: case 14549: case 14550: case 14560: case 14561: case 14562: case 14572: case 14573: case 14574: case 14584: case 14585: case 14586: case 14596: case 14597: case 14598: case 14608: case 14609: case 14610: case 14620: case 14621: case 14622: case 14632: case 14633: case 14634: case 14644: case 14645: case 14646: case 14656: case 14657: case 14658: case 14668: case 14669: case 14670: case 14680: case 14681: case 14682: case 14692: case 14693: case 14694: case 14704: case 14705: case 14706: case 14716: case 14717: case 14718: case 14728: case 14729: case 14730: case 14740: case 14741: case 14742: case 14752: case 14753: case 14754: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14435: case 14441: case 14447: case 14453: case 14459: case 14465: case 14471: case 14477: case 14483: case 14489: case 14495: case 14501: case 14507: case 14513: case 14519: case 14525: case 14531: case 14537: case 14543: case 14549: case 14555: case 14561: case 14567: case 14573: case 14579: case 14585: case 14591: case 14597: case 14603: case 14609: case 14615: case 14621: case 14627: case 14633: case 14639: case 14645: case 14651: case 14657: case 14663: case 14669: case 14675: case 14681: case 14687: case 14693: case 14699: case 14705: case 14711: case 14717: case 14723: case 14729: case 14735: case 14741: case 14747: case 14753: return West::Low;
case 14434: case 14440: case 14446: case 14452: case 14458: case 14464: case 14470: case 14476: case 14482: case 14488: case 14494: case 14500: case 14506: case 14512: case 14518: case 14524: case 14530: case 14536: case 14542: case 14548: case 14554: case 14560: case 14566: case 14572: case 14578: case 14584: case 14590: case 14596: case 14602: case 14608: case 14614: case 14620: case 14626: case 14632: case 14638: case 14644: case 14650: case 14656: case 14662: case 14668: case 14674: case 14680: case 14686: case 14692: case 14698: case 14704: case 14710: case 14716: case 14722: case 14728: case 14734: case 14740: case 14746: case 14752: return West::None;
@@ -4851,13 +4078,13 @@ namespace Block
}
namespace Dispenser
{
- short Dispenser()
+ BlockState Dispenser()
{
return 235;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 240: case 241: return eBlockFace::BLOCK_FACE_XM;
case 236: case 237: return eBlockFace::BLOCK_FACE_XP;
@@ -4867,9 +4094,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Triggered(short ID)
+ bool Triggered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 235: case 237: case 239: case 241: case 243: case 245: return false;
default: return true;
@@ -4881,13 +4108,13 @@ namespace Block
}
namespace DragonHead
{
- short DragonHead()
+ BlockState DragonHead()
{
return 6590;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6590: return 0;
case 6591: return 1;
@@ -4910,13 +4137,13 @@ namespace Block
}
namespace DragonWallHead
{
- short DragonWallHead()
+ BlockState DragonWallHead()
{
return 6606;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6608: return eBlockFace::BLOCK_FACE_XM;
case 6609: return eBlockFace::BLOCK_FACE_XP;
@@ -4930,13 +4157,13 @@ namespace Block
}
namespace Dropper
{
- short Dropper()
+ BlockState Dropper()
{
return 6836;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6841: case 6842: return eBlockFace::BLOCK_FACE_XM;
case 6837: case 6838: return eBlockFace::BLOCK_FACE_XP;
@@ -4946,9 +4173,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Triggered(short ID)
+ bool Triggered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6836: case 6838: case 6840: case 6842: case 6844: case 6846: return false;
default: return true;
@@ -4972,21 +4199,21 @@ namespace Block
}
namespace EndPortalFrame
{
- short EndPortalFrame()
+ BlockState EndPortalFrame()
{
return 5150;
}
- bool Eye(short ID)
+ bool Eye(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5150: case 5151: case 5152: case 5153: return false;
default: return true;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5148: case 5152: return eBlockFace::BLOCK_FACE_XM;
case 5149: case 5153: return eBlockFace::BLOCK_FACE_XP;
@@ -4997,13 +4224,13 @@ namespace Block
}
namespace EndRod
{
- short EndRod()
+ BlockState EndRod()
{
return 9062;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9061: return eBlockFace::BLOCK_FACE_XM;
case 9059: return eBlockFace::BLOCK_FACE_XP;
@@ -5019,13 +4246,13 @@ namespace Block
}
namespace EndStoneBrickSlab
{
- short EndStoneBrickSlab()
+ BlockState EndStoneBrickSlab()
{
return 10822;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10822: return Type::Bottom;
case 10824: return Type::Double;
@@ -5035,13 +4262,13 @@ namespace Block
}
namespace EndStoneBrickStairs
{
- short EndStoneBrickStairs()
+ BlockState EndStoneBrickStairs()
{
return 10080;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10110: case 10112: case 10114: case 10116: case 10118: case 10120: case 10122: case 10124: case 10126: case 10128: return eBlockFace::BLOCK_FACE_XM;
case 10130: case 10132: case 10134: case 10136: case 10138: case 10140: case 10142: case 10144: case 10146: case 10148: return eBlockFace::BLOCK_FACE_XP;
@@ -5049,17 +4276,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10080: case 10082: case 10084: case 10086: case 10088: case 10100: case 10102: case 10104: case 10106: case 10108: case 10120: case 10122: case 10124: case 10126: case 10128: case 10140: case 10142: case 10144: case 10146: case 10148: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10072: case 10082: case 10092: case 10102: case 10112: case 10122: case 10132: case 10142: return Shape::InnerLeft;
case 10074: case 10084: case 10094: case 10104: case 10114: case 10124: case 10134: case 10144: return Shape::InnerRight;
@@ -5071,48 +4298,48 @@ namespace Block
}
namespace EndStoneBrickWall
{
- short EndStoneBrickWall()
+ BlockState EndStoneBrickWall()
{
return 14110;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14218: case 14219: case 14220: case 14224: case 14225: case 14226: case 14230: case 14231: case 14232: case 14236: case 14237: case 14238: case 14242: case 14243: case 14244: case 14248: case 14249: case 14250: case 14254: case 14255: case 14256: case 14260: case 14261: case 14262: case 14266: case 14267: case 14268: case 14272: case 14273: case 14274: case 14278: case 14279: case 14280: case 14284: case 14285: case 14286: case 14290: case 14291: case 14292: case 14296: case 14297: case 14298: case 14302: case 14303: case 14304: case 14308: case 14309: case 14310: case 14314: case 14315: case 14316: case 14320: case 14321: case 14322: return East::Low;
case 14110: case 14111: case 14112: case 14116: case 14117: case 14118: case 14122: case 14123: case 14124: case 14128: case 14129: case 14130: case 14134: case 14135: case 14136: case 14140: case 14141: case 14142: case 14146: case 14147: case 14148: case 14152: case 14153: case 14154: case 14158: case 14159: case 14160: case 14164: case 14165: case 14166: case 14170: case 14171: case 14172: case 14176: case 14177: case 14178: case 14182: case 14183: case 14184: case 14188: case 14189: case 14190: case 14194: case 14195: case 14196: case 14200: case 14201: case 14202: case 14206: case 14207: case 14208: case 14212: case 14213: case 14214: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14146: case 14147: case 14148: case 14152: case 14153: case 14154: case 14158: case 14159: case 14160: case 14164: case 14165: case 14166: case 14170: case 14171: case 14172: case 14176: case 14177: case 14178: case 14254: case 14255: case 14256: case 14260: case 14261: case 14262: case 14266: case 14267: case 14268: case 14272: case 14273: case 14274: case 14278: case 14279: case 14280: case 14284: case 14285: case 14286: case 14362: case 14363: case 14364: case 14368: case 14369: case 14370: case 14374: case 14375: case 14376: case 14380: case 14381: case 14382: case 14386: case 14387: case 14388: case 14392: case 14393: case 14394: return North::Low;
case 14110: case 14111: case 14112: case 14116: case 14117: case 14118: case 14122: case 14123: case 14124: case 14128: case 14129: case 14130: case 14134: case 14135: case 14136: case 14140: case 14141: case 14142: case 14218: case 14219: case 14220: case 14224: case 14225: case 14226: case 14230: case 14231: case 14232: case 14236: case 14237: case 14238: case 14242: case 14243: case 14244: case 14248: case 14249: case 14250: case 14326: case 14327: case 14328: case 14332: case 14333: case 14334: case 14338: case 14339: case 14340: case 14344: case 14345: case 14346: case 14350: case 14351: case 14352: case 14356: case 14357: case 14358: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14122: case 14123: case 14124: case 14128: case 14129: case 14130: case 14158: case 14159: case 14160: case 14164: case 14165: case 14166: case 14194: case 14195: case 14196: case 14200: case 14201: case 14202: case 14230: case 14231: case 14232: case 14236: case 14237: case 14238: case 14266: case 14267: case 14268: case 14272: case 14273: case 14274: case 14302: case 14303: case 14304: case 14308: case 14309: case 14310: case 14338: case 14339: case 14340: case 14344: case 14345: case 14346: case 14374: case 14375: case 14376: case 14380: case 14381: case 14382: case 14410: case 14411: case 14412: case 14416: case 14417: case 14418: return South::Low;
case 14110: case 14111: case 14112: case 14116: case 14117: case 14118: case 14146: case 14147: case 14148: case 14152: case 14153: case 14154: case 14182: case 14183: case 14184: case 14188: case 14189: case 14190: case 14218: case 14219: case 14220: case 14224: case 14225: case 14226: case 14254: case 14255: case 14256: case 14260: case 14261: case 14262: case 14290: case 14291: case 14292: case 14296: case 14297: case 14298: case 14326: case 14327: case 14328: case 14332: case 14333: case 14334: case 14362: case 14363: case 14364: case 14368: case 14369: case 14370: case 14398: case 14399: case 14400: case 14404: case 14405: case 14406: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14116: case 14117: case 14118: case 14128: case 14129: case 14130: case 14140: case 14141: case 14142: case 14152: case 14153: case 14154: case 14164: case 14165: case 14166: case 14176: case 14177: case 14178: case 14188: case 14189: case 14190: case 14200: case 14201: case 14202: case 14212: case 14213: case 14214: case 14224: case 14225: case 14226: case 14236: case 14237: case 14238: case 14248: case 14249: case 14250: case 14260: case 14261: case 14262: case 14272: case 14273: case 14274: case 14284: case 14285: case 14286: case 14296: case 14297: case 14298: case 14308: case 14309: case 14310: case 14320: case 14321: case 14322: case 14332: case 14333: case 14334: case 14344: case 14345: case 14346: case 14356: case 14357: case 14358: case 14368: case 14369: case 14370: case 14380: case 14381: case 14382: case 14392: case 14393: case 14394: case 14404: case 14405: case 14406: case 14416: case 14417: case 14418: case 14428: case 14429: case 14430: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14111: case 14117: case 14123: case 14129: case 14135: case 14141: case 14147: case 14153: case 14159: case 14165: case 14171: case 14177: case 14183: case 14189: case 14195: case 14201: case 14207: case 14213: case 14219: case 14225: case 14231: case 14237: case 14243: case 14249: case 14255: case 14261: case 14267: case 14273: case 14279: case 14285: case 14291: case 14297: case 14303: case 14309: case 14315: case 14321: case 14327: case 14333: case 14339: case 14345: case 14351: case 14357: case 14363: case 14369: case 14375: case 14381: case 14387: case 14393: case 14399: case 14405: case 14411: case 14417: case 14423: case 14429: return West::Low;
case 14110: case 14116: case 14122: case 14128: case 14134: case 14140: case 14146: case 14152: case 14158: case 14164: case 14170: case 14176: case 14182: case 14188: case 14194: case 14200: case 14206: case 14212: case 14218: case 14224: case 14230: case 14236: case 14242: case 14248: case 14254: case 14260: case 14266: case 14272: case 14278: case 14284: case 14290: case 14296: case 14302: case 14308: case 14314: case 14320: case 14326: case 14332: case 14338: case 14344: case 14350: case 14356: case 14362: case 14368: case 14374: case 14380: case 14386: case 14392: case 14398: case 14404: case 14410: case 14416: case 14422: case 14428: return West::None;
@@ -5125,13 +4352,13 @@ namespace Block
}
namespace EnderChest
{
- short EnderChest()
+ BlockState EnderChest()
{
return 5252;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5256: return eBlockFace::BLOCK_FACE_XM;
case 5258: return eBlockFace::BLOCK_FACE_XP;
@@ -5142,13 +4369,13 @@ namespace Block
}
namespace Farmland
{
- short Farmland()
+ BlockState Farmland()
{
return 3365;
}
- unsigned char Moisture(short ID)
+ unsigned char Moisture(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3365: return 0;
case 3366: return 1;
@@ -5166,13 +4393,13 @@ namespace Block
}
namespace Fire
{
- short Fire()
+ BlockState Fire()
{
return 1471;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1440: case 1441: case 1442: case 1443: case 1444: case 1445: case 1446: case 1447: case 1448: case 1449: case 1450: case 1451: case 1452: case 1453: case 1454: case 1455: case 1456: case 1457: case 1458: case 1459: case 1460: case 1461: case 1462: case 1463: case 1464: case 1465: case 1466: case 1467: case 1468: case 1469: case 1470: case 1471: return 0;
case 1472: case 1473: case 1474: case 1475: case 1476: case 1477: case 1478: case 1479: case 1480: case 1481: case 1482: case 1483: case 1484: case 1485: case 1486: case 1487: case 1488: case 1489: case 1490: case 1491: case 1492: case 1493: case 1494: case 1495: case 1496: case 1497: case 1498: case 1499: case 1500: case 1501: case 1502: case 1503: return 1;
@@ -5192,41 +4419,41 @@ namespace Block
default: return 9;
}
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1456: case 1457: case 1458: case 1459: case 1460: case 1461: case 1462: case 1463: case 1464: case 1465: case 1466: case 1467: case 1468: case 1469: case 1470: case 1471: case 1488: case 1489: case 1490: case 1491: case 1492: case 1493: case 1494: case 1495: case 1496: case 1497: case 1498: case 1499: case 1500: case 1501: case 1502: case 1503: case 1520: case 1521: case 1522: case 1523: case 1524: case 1525: case 1526: case 1527: case 1528: case 1529: case 1530: case 1531: case 1532: case 1533: case 1534: case 1535: case 1552: case 1553: case 1554: case 1555: case 1556: case 1557: case 1558: case 1559: case 1560: case 1561: case 1562: case 1563: case 1564: case 1565: case 1566: case 1567: case 1584: case 1585: case 1586: case 1587: case 1588: case 1589: case 1590: case 1591: case 1592: case 1593: case 1594: case 1595: case 1596: case 1597: case 1598: case 1599: case 1616: case 1617: case 1618: case 1619: case 1620: case 1621: case 1622: case 1623: case 1624: case 1625: case 1626: case 1627: case 1628: case 1629: case 1630: case 1631: case 1648: case 1649: case 1650: case 1651: case 1652: case 1653: case 1654: case 1655: case 1656: case 1657: case 1658: case 1659: case 1660: case 1661: case 1662: case 1663: case 1680: case 1681: case 1682: case 1683: case 1684: case 1685: case 1686: case 1687: case 1688: case 1689: case 1690: case 1691: case 1692: case 1693: case 1694: case 1695: case 1712: case 1713: case 1714: case 1715: case 1716: case 1717: case 1718: case 1719: case 1720: case 1721: case 1722: case 1723: case 1724: case 1725: case 1726: case 1727: case 1744: case 1745: case 1746: case 1747: case 1748: case 1749: case 1750: case 1751: case 1752: case 1753: case 1754: case 1755: case 1756: case 1757: case 1758: case 1759: case 1776: case 1777: case 1778: case 1779: case 1780: case 1781: case 1782: case 1783: case 1784: case 1785: case 1786: case 1787: case 1788: case 1789: case 1790: case 1791: case 1808: case 1809: case 1810: case 1811: case 1812: case 1813: case 1814: case 1815: case 1816: case 1817: case 1818: case 1819: case 1820: case 1821: case 1822: case 1823: case 1840: case 1841: case 1842: case 1843: case 1844: case 1845: case 1846: case 1847: case 1848: case 1849: case 1850: case 1851: case 1852: case 1853: case 1854: case 1855: case 1872: case 1873: case 1874: case 1875: case 1876: case 1877: case 1878: case 1879: case 1880: case 1881: case 1882: case 1883: case 1884: case 1885: case 1886: case 1887: case 1904: case 1905: case 1906: case 1907: case 1908: case 1909: case 1910: case 1911: case 1912: case 1913: case 1914: case 1915: case 1916: case 1917: case 1918: case 1919: case 1936: case 1937: case 1938: case 1939: case 1940: case 1941: case 1942: case 1943: case 1944: case 1945: case 1946: case 1947: case 1948: case 1949: case 1950: case 1951: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1448: case 1449: case 1450: case 1451: case 1452: case 1453: case 1454: case 1455: case 1464: case 1465: case 1466: case 1467: case 1468: case 1469: case 1470: case 1471: case 1480: case 1481: case 1482: case 1483: case 1484: case 1485: case 1486: case 1487: case 1496: case 1497: case 1498: case 1499: case 1500: case 1501: case 1502: case 1503: case 1512: case 1513: case 1514: case 1515: case 1516: case 1517: case 1518: case 1519: case 1528: case 1529: case 1530: case 1531: case 1532: case 1533: case 1534: case 1535: case 1544: case 1545: case 1546: case 1547: case 1548: case 1549: case 1550: case 1551: case 1560: case 1561: case 1562: case 1563: case 1564: case 1565: case 1566: case 1567: case 1576: case 1577: case 1578: case 1579: case 1580: case 1581: case 1582: case 1583: case 1592: case 1593: case 1594: case 1595: case 1596: case 1597: case 1598: case 1599: case 1608: case 1609: case 1610: case 1611: case 1612: case 1613: case 1614: case 1615: case 1624: case 1625: case 1626: case 1627: case 1628: case 1629: case 1630: case 1631: case 1640: case 1641: case 1642: case 1643: case 1644: case 1645: case 1646: case 1647: case 1656: case 1657: case 1658: case 1659: case 1660: case 1661: case 1662: case 1663: case 1672: case 1673: case 1674: case 1675: case 1676: case 1677: case 1678: case 1679: case 1688: case 1689: case 1690: case 1691: case 1692: case 1693: case 1694: case 1695: case 1704: case 1705: case 1706: case 1707: case 1708: case 1709: case 1710: case 1711: case 1720: case 1721: case 1722: case 1723: case 1724: case 1725: case 1726: case 1727: case 1736: case 1737: case 1738: case 1739: case 1740: case 1741: case 1742: case 1743: case 1752: case 1753: case 1754: case 1755: case 1756: case 1757: case 1758: case 1759: case 1768: case 1769: case 1770: case 1771: case 1772: case 1773: case 1774: case 1775: case 1784: case 1785: case 1786: case 1787: case 1788: case 1789: case 1790: case 1791: case 1800: case 1801: case 1802: case 1803: case 1804: case 1805: case 1806: case 1807: case 1816: case 1817: case 1818: case 1819: case 1820: case 1821: case 1822: case 1823: case 1832: case 1833: case 1834: case 1835: case 1836: case 1837: case 1838: case 1839: case 1848: case 1849: case 1850: case 1851: case 1852: case 1853: case 1854: case 1855: case 1864: case 1865: case 1866: case 1867: case 1868: case 1869: case 1870: case 1871: case 1880: case 1881: case 1882: case 1883: case 1884: case 1885: case 1886: case 1887: case 1896: case 1897: case 1898: case 1899: case 1900: case 1901: case 1902: case 1903: case 1912: case 1913: case 1914: case 1915: case 1916: case 1917: case 1918: case 1919: case 1928: case 1929: case 1930: case 1931: case 1932: case 1933: case 1934: case 1935: case 1944: case 1945: case 1946: case 1947: case 1948: case 1949: case 1950: case 1951: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1444: case 1445: case 1446: case 1447: case 1452: case 1453: case 1454: case 1455: case 1460: case 1461: case 1462: case 1463: case 1468: case 1469: case 1470: case 1471: case 1476: case 1477: case 1478: case 1479: case 1484: case 1485: case 1486: case 1487: case 1492: case 1493: case 1494: case 1495: case 1500: case 1501: case 1502: case 1503: case 1508: case 1509: case 1510: case 1511: case 1516: case 1517: case 1518: case 1519: case 1524: case 1525: case 1526: case 1527: case 1532: case 1533: case 1534: case 1535: case 1540: case 1541: case 1542: case 1543: case 1548: case 1549: case 1550: case 1551: case 1556: case 1557: case 1558: case 1559: case 1564: case 1565: case 1566: case 1567: case 1572: case 1573: case 1574: case 1575: case 1580: case 1581: case 1582: case 1583: case 1588: case 1589: case 1590: case 1591: case 1596: case 1597: case 1598: case 1599: case 1604: case 1605: case 1606: case 1607: case 1612: case 1613: case 1614: case 1615: case 1620: case 1621: case 1622: case 1623: case 1628: case 1629: case 1630: case 1631: case 1636: case 1637: case 1638: case 1639: case 1644: case 1645: case 1646: case 1647: case 1652: case 1653: case 1654: case 1655: case 1660: case 1661: case 1662: case 1663: case 1668: case 1669: case 1670: case 1671: case 1676: case 1677: case 1678: case 1679: case 1684: case 1685: case 1686: case 1687: case 1692: case 1693: case 1694: case 1695: case 1700: case 1701: case 1702: case 1703: case 1708: case 1709: case 1710: case 1711: case 1716: case 1717: case 1718: case 1719: case 1724: case 1725: case 1726: case 1727: case 1732: case 1733: case 1734: case 1735: case 1740: case 1741: case 1742: case 1743: case 1748: case 1749: case 1750: case 1751: case 1756: case 1757: case 1758: case 1759: case 1764: case 1765: case 1766: case 1767: case 1772: case 1773: case 1774: case 1775: case 1780: case 1781: case 1782: case 1783: case 1788: case 1789: case 1790: case 1791: case 1796: case 1797: case 1798: case 1799: case 1804: case 1805: case 1806: case 1807: case 1812: case 1813: case 1814: case 1815: case 1820: case 1821: case 1822: case 1823: case 1828: case 1829: case 1830: case 1831: case 1836: case 1837: case 1838: case 1839: case 1844: case 1845: case 1846: case 1847: case 1852: case 1853: case 1854: case 1855: case 1860: case 1861: case 1862: case 1863: case 1868: case 1869: case 1870: case 1871: case 1876: case 1877: case 1878: case 1879: case 1884: case 1885: case 1886: case 1887: case 1892: case 1893: case 1894: case 1895: case 1900: case 1901: case 1902: case 1903: case 1908: case 1909: case 1910: case 1911: case 1916: case 1917: case 1918: case 1919: case 1924: case 1925: case 1926: case 1927: case 1932: case 1933: case 1934: case 1935: case 1940: case 1941: case 1942: case 1943: case 1948: case 1949: case 1950: case 1951: return false;
default: return true;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1442: case 1443: case 1446: case 1447: case 1450: case 1451: case 1454: case 1455: case 1458: case 1459: case 1462: case 1463: case 1466: case 1467: case 1470: case 1471: case 1474: case 1475: case 1478: case 1479: case 1482: case 1483: case 1486: case 1487: case 1490: case 1491: case 1494: case 1495: case 1498: case 1499: case 1502: case 1503: case 1506: case 1507: case 1510: case 1511: case 1514: case 1515: case 1518: case 1519: case 1522: case 1523: case 1526: case 1527: case 1530: case 1531: case 1534: case 1535: case 1538: case 1539: case 1542: case 1543: case 1546: case 1547: case 1550: case 1551: case 1554: case 1555: case 1558: case 1559: case 1562: case 1563: case 1566: case 1567: case 1570: case 1571: case 1574: case 1575: case 1578: case 1579: case 1582: case 1583: case 1586: case 1587: case 1590: case 1591: case 1594: case 1595: case 1598: case 1599: case 1602: case 1603: case 1606: case 1607: case 1610: case 1611: case 1614: case 1615: case 1618: case 1619: case 1622: case 1623: case 1626: case 1627: case 1630: case 1631: case 1634: case 1635: case 1638: case 1639: case 1642: case 1643: case 1646: case 1647: case 1650: case 1651: case 1654: case 1655: case 1658: case 1659: case 1662: case 1663: case 1666: case 1667: case 1670: case 1671: case 1674: case 1675: case 1678: case 1679: case 1682: case 1683: case 1686: case 1687: case 1690: case 1691: case 1694: case 1695: case 1698: case 1699: case 1702: case 1703: case 1706: case 1707: case 1710: case 1711: case 1714: case 1715: case 1718: case 1719: case 1722: case 1723: case 1726: case 1727: case 1730: case 1731: case 1734: case 1735: case 1738: case 1739: case 1742: case 1743: case 1746: case 1747: case 1750: case 1751: case 1754: case 1755: case 1758: case 1759: case 1762: case 1763: case 1766: case 1767: case 1770: case 1771: case 1774: case 1775: case 1778: case 1779: case 1782: case 1783: case 1786: case 1787: case 1790: case 1791: case 1794: case 1795: case 1798: case 1799: case 1802: case 1803: case 1806: case 1807: case 1810: case 1811: case 1814: case 1815: case 1818: case 1819: case 1822: case 1823: case 1826: case 1827: case 1830: case 1831: case 1834: case 1835: case 1838: case 1839: case 1842: case 1843: case 1846: case 1847: case 1850: case 1851: case 1854: case 1855: case 1858: case 1859: case 1862: case 1863: case 1866: case 1867: case 1870: case 1871: case 1874: case 1875: case 1878: case 1879: case 1882: case 1883: case 1886: case 1887: case 1890: case 1891: case 1894: case 1895: case 1898: case 1899: case 1902: case 1903: case 1906: case 1907: case 1910: case 1911: case 1914: case 1915: case 1918: case 1919: case 1922: case 1923: case 1926: case 1927: case 1930: case 1931: case 1934: case 1935: case 1938: case 1939: case 1942: case 1943: case 1946: case 1947: case 1950: case 1951: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1441: case 1443: case 1445: case 1447: case 1449: case 1451: case 1453: case 1455: case 1457: case 1459: case 1461: case 1463: case 1465: case 1467: case 1469: case 1471: case 1473: case 1475: case 1477: case 1479: case 1481: case 1483: case 1485: case 1487: case 1489: case 1491: case 1493: case 1495: case 1497: case 1499: case 1501: case 1503: case 1505: case 1507: case 1509: case 1511: case 1513: case 1515: case 1517: case 1519: case 1521: case 1523: case 1525: case 1527: case 1529: case 1531: case 1533: case 1535: case 1537: case 1539: case 1541: case 1543: case 1545: case 1547: case 1549: case 1551: case 1553: case 1555: case 1557: case 1559: case 1561: case 1563: case 1565: case 1567: case 1569: case 1571: case 1573: case 1575: case 1577: case 1579: case 1581: case 1583: case 1585: case 1587: case 1589: case 1591: case 1593: case 1595: case 1597: case 1599: case 1601: case 1603: case 1605: case 1607: case 1609: case 1611: case 1613: case 1615: case 1617: case 1619: case 1621: case 1623: case 1625: case 1627: case 1629: case 1631: case 1633: case 1635: case 1637: case 1639: case 1641: case 1643: case 1645: case 1647: case 1649: case 1651: case 1653: case 1655: case 1657: case 1659: case 1661: case 1663: case 1665: case 1667: case 1669: case 1671: case 1673: case 1675: case 1677: case 1679: case 1681: case 1683: case 1685: case 1687: case 1689: case 1691: case 1693: case 1695: case 1697: case 1699: case 1701: case 1703: case 1705: case 1707: case 1709: case 1711: case 1713: case 1715: case 1717: case 1719: case 1721: case 1723: case 1725: case 1727: case 1729: case 1731: case 1733: case 1735: case 1737: case 1739: case 1741: case 1743: case 1745: case 1747: case 1749: case 1751: case 1753: case 1755: case 1757: case 1759: case 1761: case 1763: case 1765: case 1767: case 1769: case 1771: case 1773: case 1775: case 1777: case 1779: case 1781: case 1783: case 1785: case 1787: case 1789: case 1791: case 1793: case 1795: case 1797: case 1799: case 1801: case 1803: case 1805: case 1807: case 1809: case 1811: case 1813: case 1815: case 1817: case 1819: case 1821: case 1823: case 1825: case 1827: case 1829: case 1831: case 1833: case 1835: case 1837: case 1839: case 1841: case 1843: case 1845: case 1847: case 1849: case 1851: case 1853: case 1855: case 1857: case 1859: case 1861: case 1863: case 1865: case 1867: case 1869: case 1871: case 1873: case 1875: case 1877: case 1879: case 1881: case 1883: case 1885: case 1887: case 1889: case 1891: case 1893: case 1895: case 1897: case 1899: case 1901: case 1903: case 1905: case 1907: case 1909: case 1911: case 1913: case 1915: case 1917: case 1919: case 1921: case 1923: case 1925: case 1927: case 1929: case 1931: case 1933: case 1935: case 1937: case 1939: case 1941: case 1943: case 1945: case 1947: case 1949: case 1951: return false;
default: return true;
@@ -5244,13 +4471,13 @@ namespace Block
}
namespace FireCoralWallFan
{
- short FireCoralWallFan()
+ BlockState FireCoralWallFan()
{
return 9624;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9629: return eBlockFace::BLOCK_FACE_XM;
case 9631: return eBlockFace::BLOCK_FACE_XP;
@@ -5267,13 +4494,13 @@ namespace Block
}
namespace FrostedIce
{
- short FrostedIce()
+ BlockState FrostedIce()
{
return 9249;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9249: return 0;
case 9250: return 1;
@@ -5284,13 +4511,13 @@ namespace Block
}
namespace Furnace
{
- short Furnace()
+ BlockState Furnace()
{
return 3374;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3377: case 3378: return eBlockFace::BLOCK_FACE_XM;
case 3379: case 3380: return eBlockFace::BLOCK_FACE_XP;
@@ -5298,9 +4525,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Lit(short ID)
+ bool Lit(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3374: case 3376: case 3378: case 3380: return false;
default: return true;
@@ -5315,37 +4542,37 @@ namespace Block
}
namespace GlassPane
{
- short GlassPane()
+ BlockState GlassPane()
{
return 4762;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4749: case 4750: case 4753: case 4754: case 4757: case 4758: case 4761: case 4762: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4741: case 4742: case 4745: case 4746: case 4757: case 4758: case 4761: case 4762: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4737: case 4738: case 4745: case 4746: case 4753: case 4754: case 4761: case 4762: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4734: case 4738: case 4742: case 4746: case 4750: case 4754: case 4758: case 4762: return false;
default: return true;
@@ -5366,13 +4593,13 @@ namespace Block
}
namespace GraniteSlab
{
- short GraniteSlab()
+ BlockState GraniteSlab()
{
return 10840;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10840: return Type::Bottom;
case 10842: return Type::Double;
@@ -5382,13 +4609,13 @@ namespace Block
}
namespace GraniteStairs
{
- short GraniteStairs()
+ BlockState GraniteStairs()
{
return 10400;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10430: case 10432: case 10434: case 10436: case 10438: case 10440: case 10442: case 10444: case 10446: case 10448: return eBlockFace::BLOCK_FACE_XM;
case 10450: case 10452: case 10454: case 10456: case 10458: case 10460: case 10462: case 10464: case 10466: case 10468: return eBlockFace::BLOCK_FACE_XP;
@@ -5396,17 +4623,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10400: case 10402: case 10404: case 10406: case 10408: case 10420: case 10422: case 10424: case 10426: case 10428: case 10440: case 10442: case 10444: case 10446: case 10448: case 10460: case 10462: case 10464: case 10466: case 10468: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10392: case 10402: case 10412: case 10422: case 10432: case 10442: case 10452: case 10462: return Shape::InnerLeft;
case 10394: case 10404: case 10414: case 10424: case 10434: case 10444: case 10454: case 10464: return Shape::InnerRight;
@@ -5418,48 +4645,48 @@ namespace Block
}
namespace GraniteWall
{
- short GraniteWall()
+ BlockState GraniteWall()
{
return 12166;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12274: case 12275: case 12276: case 12280: case 12281: case 12282: case 12286: case 12287: case 12288: case 12292: case 12293: case 12294: case 12298: case 12299: case 12300: case 12304: case 12305: case 12306: case 12310: case 12311: case 12312: case 12316: case 12317: case 12318: case 12322: case 12323: case 12324: case 12328: case 12329: case 12330: case 12334: case 12335: case 12336: case 12340: case 12341: case 12342: case 12346: case 12347: case 12348: case 12352: case 12353: case 12354: case 12358: case 12359: case 12360: case 12364: case 12365: case 12366: case 12370: case 12371: case 12372: case 12376: case 12377: case 12378: return East::Low;
case 12166: case 12167: case 12168: case 12172: case 12173: case 12174: case 12178: case 12179: case 12180: case 12184: case 12185: case 12186: case 12190: case 12191: case 12192: case 12196: case 12197: case 12198: case 12202: case 12203: case 12204: case 12208: case 12209: case 12210: case 12214: case 12215: case 12216: case 12220: case 12221: case 12222: case 12226: case 12227: case 12228: case 12232: case 12233: case 12234: case 12238: case 12239: case 12240: case 12244: case 12245: case 12246: case 12250: case 12251: case 12252: case 12256: case 12257: case 12258: case 12262: case 12263: case 12264: case 12268: case 12269: case 12270: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12202: case 12203: case 12204: case 12208: case 12209: case 12210: case 12214: case 12215: case 12216: case 12220: case 12221: case 12222: case 12226: case 12227: case 12228: case 12232: case 12233: case 12234: case 12310: case 12311: case 12312: case 12316: case 12317: case 12318: case 12322: case 12323: case 12324: case 12328: case 12329: case 12330: case 12334: case 12335: case 12336: case 12340: case 12341: case 12342: case 12418: case 12419: case 12420: case 12424: case 12425: case 12426: case 12430: case 12431: case 12432: case 12436: case 12437: case 12438: case 12442: case 12443: case 12444: case 12448: case 12449: case 12450: return North::Low;
case 12166: case 12167: case 12168: case 12172: case 12173: case 12174: case 12178: case 12179: case 12180: case 12184: case 12185: case 12186: case 12190: case 12191: case 12192: case 12196: case 12197: case 12198: case 12274: case 12275: case 12276: case 12280: case 12281: case 12282: case 12286: case 12287: case 12288: case 12292: case 12293: case 12294: case 12298: case 12299: case 12300: case 12304: case 12305: case 12306: case 12382: case 12383: case 12384: case 12388: case 12389: case 12390: case 12394: case 12395: case 12396: case 12400: case 12401: case 12402: case 12406: case 12407: case 12408: case 12412: case 12413: case 12414: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12178: case 12179: case 12180: case 12184: case 12185: case 12186: case 12214: case 12215: case 12216: case 12220: case 12221: case 12222: case 12250: case 12251: case 12252: case 12256: case 12257: case 12258: case 12286: case 12287: case 12288: case 12292: case 12293: case 12294: case 12322: case 12323: case 12324: case 12328: case 12329: case 12330: case 12358: case 12359: case 12360: case 12364: case 12365: case 12366: case 12394: case 12395: case 12396: case 12400: case 12401: case 12402: case 12430: case 12431: case 12432: case 12436: case 12437: case 12438: case 12466: case 12467: case 12468: case 12472: case 12473: case 12474: return South::Low;
case 12166: case 12167: case 12168: case 12172: case 12173: case 12174: case 12202: case 12203: case 12204: case 12208: case 12209: case 12210: case 12238: case 12239: case 12240: case 12244: case 12245: case 12246: case 12274: case 12275: case 12276: case 12280: case 12281: case 12282: case 12310: case 12311: case 12312: case 12316: case 12317: case 12318: case 12346: case 12347: case 12348: case 12352: case 12353: case 12354: case 12382: case 12383: case 12384: case 12388: case 12389: case 12390: case 12418: case 12419: case 12420: case 12424: case 12425: case 12426: case 12454: case 12455: case 12456: case 12460: case 12461: case 12462: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12172: case 12173: case 12174: case 12184: case 12185: case 12186: case 12196: case 12197: case 12198: case 12208: case 12209: case 12210: case 12220: case 12221: case 12222: case 12232: case 12233: case 12234: case 12244: case 12245: case 12246: case 12256: case 12257: case 12258: case 12268: case 12269: case 12270: case 12280: case 12281: case 12282: case 12292: case 12293: case 12294: case 12304: case 12305: case 12306: case 12316: case 12317: case 12318: case 12328: case 12329: case 12330: case 12340: case 12341: case 12342: case 12352: case 12353: case 12354: case 12364: case 12365: case 12366: case 12376: case 12377: case 12378: case 12388: case 12389: case 12390: case 12400: case 12401: case 12402: case 12412: case 12413: case 12414: case 12424: case 12425: case 12426: case 12436: case 12437: case 12438: case 12448: case 12449: case 12450: case 12460: case 12461: case 12462: case 12472: case 12473: case 12474: case 12484: case 12485: case 12486: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12167: case 12173: case 12179: case 12185: case 12191: case 12197: case 12203: case 12209: case 12215: case 12221: case 12227: case 12233: case 12239: case 12245: case 12251: case 12257: case 12263: case 12269: case 12275: case 12281: case 12287: case 12293: case 12299: case 12305: case 12311: case 12317: case 12323: case 12329: case 12335: case 12341: case 12347: case 12353: case 12359: case 12365: case 12371: case 12377: case 12383: case 12389: case 12395: case 12401: case 12407: case 12413: case 12419: case 12425: case 12431: case 12437: case 12443: case 12449: case 12455: case 12461: case 12467: case 12473: case 12479: case 12485: return West::Low;
case 12166: case 12172: case 12178: case 12184: case 12190: case 12196: case 12202: case 12208: case 12214: case 12220: case 12226: case 12232: case 12238: case 12244: case 12250: case 12256: case 12262: case 12268: case 12274: case 12280: case 12286: case 12292: case 12298: case 12304: case 12310: case 12316: case 12322: case 12328: case 12334: case 12340: case 12346: case 12352: case 12358: case 12364: case 12370: case 12376: case 12382: case 12388: case 12394: case 12400: case 12406: case 12412: case 12418: case 12424: case 12430: case 12436: case 12442: case 12448: case 12454: case 12460: case 12466: case 12472: case 12478: case 12484: return West::None;
@@ -5472,13 +4699,13 @@ namespace Block
}
namespace GrassBlock
{
- short GrassBlock()
+ BlockState GrassBlock()
{
return 9;
}
- bool Snowy(short ID)
+ bool Snowy(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9: return false;
default: return true;
@@ -5493,13 +4720,13 @@ namespace Block
}
namespace GrayBanner
{
- short GrayBanner()
+ BlockState GrayBanner()
{
return 8009;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8009: return 0;
case 8010: return 1;
@@ -5522,13 +4749,13 @@ namespace Block
}
namespace GrayBed
{
- short GrayBed()
+ BlockState GrayBed()
{
return 1164;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1169: case 1170: case 1171: case 1172: return eBlockFace::BLOCK_FACE_XM;
case 1173: case 1174: case 1175: case 1176: return eBlockFace::BLOCK_FACE_XP;
@@ -5536,17 +4763,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1163: case 1164: case 1167: case 1168: case 1171: case 1172: case 1175: case 1176: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1162: case 1164: case 1166: case 1168: case 1170: case 1172: case 1174: case 1176: return Part::Foot;
default: return Part::Head;
@@ -5564,13 +4791,13 @@ namespace Block
}
namespace GrayGlazedTerracotta
{
- short GrayGlazedTerracotta()
+ BlockState GrayGlazedTerracotta()
{
return 9402;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9404: return eBlockFace::BLOCK_FACE_XM;
case 9405: return eBlockFace::BLOCK_FACE_XP;
@@ -5581,13 +4808,13 @@ namespace Block
}
namespace GrayShulkerBox
{
- short GrayShulkerBox()
+ BlockState GrayShulkerBox()
{
return 9324;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9323: return eBlockFace::BLOCK_FACE_XM;
case 9321: return eBlockFace::BLOCK_FACE_XP;
@@ -5603,37 +4830,37 @@ namespace Block
}
namespace GrayStainedGlassPane
{
- short GrayStainedGlassPane()
+ BlockState GrayStainedGlassPane()
{
return 7118;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7105: case 7106: case 7109: case 7110: case 7113: case 7114: case 7117: case 7118: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7097: case 7098: case 7101: case 7102: case 7113: case 7114: case 7117: case 7118: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7093: case 7094: case 7101: case 7102: case 7109: case 7110: case 7117: case 7118: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7090: case 7094: case 7098: case 7102: case 7106: case 7110: case 7114: case 7118: return false;
default: return true;
@@ -5645,13 +4872,13 @@ namespace Block
}
namespace GrayWallBanner
{
- short GrayWallBanner()
+ BlockState GrayWallBanner()
{
return 8181;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8183: return eBlockFace::BLOCK_FACE_XM;
case 8184: return eBlockFace::BLOCK_FACE_XP;
@@ -5665,13 +4892,13 @@ namespace Block
}
namespace GreenBanner
{
- short GreenBanner()
+ BlockState GreenBanner()
{
return 8105;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8105: return 0;
case 8106: return 1;
@@ -5694,13 +4921,13 @@ namespace Block
}
namespace GreenBed
{
- short GreenBed()
+ BlockState GreenBed()
{
return 1260;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1265: case 1266: case 1267: case 1268: return eBlockFace::BLOCK_FACE_XM;
case 1269: case 1270: case 1271: case 1272: return eBlockFace::BLOCK_FACE_XP;
@@ -5708,17 +4935,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1259: case 1260: case 1263: case 1264: case 1267: case 1268: case 1271: case 1272: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1258: case 1260: case 1262: case 1264: case 1266: case 1268: case 1270: case 1272: return Part::Foot;
default: return Part::Head;
@@ -5736,13 +4963,13 @@ namespace Block
}
namespace GreenGlazedTerracotta
{
- short GreenGlazedTerracotta()
+ BlockState GreenGlazedTerracotta()
{
return 9426;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9428: return eBlockFace::BLOCK_FACE_XM;
case 9429: return eBlockFace::BLOCK_FACE_XP;
@@ -5753,13 +4980,13 @@ namespace Block
}
namespace GreenShulkerBox
{
- short GreenShulkerBox()
+ BlockState GreenShulkerBox()
{
return 9360;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9359: return eBlockFace::BLOCK_FACE_XM;
case 9357: return eBlockFace::BLOCK_FACE_XP;
@@ -5775,37 +5002,37 @@ namespace Block
}
namespace GreenStainedGlassPane
{
- short GreenStainedGlassPane()
+ BlockState GreenStainedGlassPane()
{
return 7310;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7297: case 7298: case 7301: case 7302: case 7305: case 7306: case 7309: case 7310: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7289: case 7290: case 7293: case 7294: case 7305: case 7306: case 7309: case 7310: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7285: case 7286: case 7293: case 7294: case 7301: case 7302: case 7309: case 7310: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7282: case 7286: case 7290: case 7294: case 7298: case 7302: case 7306: case 7310: return false;
default: return true;
@@ -5817,13 +5044,13 @@ namespace Block
}
namespace GreenWallBanner
{
- short GreenWallBanner()
+ BlockState GreenWallBanner()
{
return 8205;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8207: return eBlockFace::BLOCK_FACE_XM;
case 8208: return eBlockFace::BLOCK_FACE_XP;
@@ -5837,22 +5064,22 @@ namespace Block
}
namespace Grindstone
{
- short Grindstone()
+ BlockState Grindstone()
{
return 14825;
}
- enum Face Face(short ID)
+ enum Face Face(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14829: case 14830: case 14831: case 14832: return Face::Ceiling;
case 14821: case 14822: case 14823: case 14824: return Face::Floor;
default: return Face::Wall;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14823: case 14827: case 14831: return eBlockFace::BLOCK_FACE_XM;
case 14824: case 14828: case 14832: return eBlockFace::BLOCK_FACE_XP;
@@ -5863,13 +5090,13 @@ namespace Block
}
namespace HayBale
{
- short HayBale()
+ BlockState HayBale()
{
return 7864;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7863: return Axis::X;
case 7864: return Axis::Y;
@@ -5879,13 +5106,13 @@ namespace Block
}
namespace HeavyWeightedPressurePlate
{
- short HeavyWeightedPressurePlate()
+ BlockState HeavyWeightedPressurePlate()
{
return 6662;
}
- unsigned char Power(short ID)
+ unsigned char Power(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6662: return 0;
case 6663: return 1;
@@ -5914,21 +5141,21 @@ namespace Block
}
namespace Hopper
{
- short Hopper()
+ BlockState Hopper()
{
return 6728;
}
- bool Enabled(short ID)
+ bool Enabled(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6733: case 6734: case 6735: case 6736: case 6737: return false;
default: return true;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6731: case 6736: return eBlockFace::BLOCK_FACE_XM;
case 6732: case 6737: return eBlockFace::BLOCK_FACE_XP;
@@ -5949,13 +5176,13 @@ namespace Block
}
namespace HornCoralWallFan
{
- short HornCoralWallFan()
+ BlockState HornCoralWallFan()
{
return 9632;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9637: return eBlockFace::BLOCK_FACE_XM;
case 9639: return eBlockFace::BLOCK_FACE_XP;
@@ -5987,37 +5214,37 @@ namespace Block
}
namespace IronBars
{
- short IronBars()
+ BlockState IronBars()
{
return 4728;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4715: case 4716: case 4719: case 4720: case 4723: case 4724: case 4727: case 4728: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4707: case 4708: case 4711: case 4712: case 4723: case 4724: case 4727: case 4728: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4703: case 4704: case 4711: case 4712: case 4719: case 4720: case 4727: case 4728: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4700: case 4704: case 4708: case 4712: case 4716: case 4720: case 4724: case 4728: return false;
default: return true;
@@ -6029,13 +5256,13 @@ namespace Block
}
namespace IronDoor
{
- short IronDoor()
+ BlockState IronDoor()
{
return 3820;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3841: case 3842: case 3843: case 3844: case 3845: case 3846: case 3847: case 3848: case 3849: case 3850: case 3851: case 3852: case 3853: case 3854: case 3855: case 3856: return eBlockFace::BLOCK_FACE_XM;
case 3857: case 3858: case 3859: case 3860: case 3861: case 3862: case 3863: case 3864: case 3865: case 3866: case 3867: case 3868: case 3869: case 3870: case 3871: case 3872: return eBlockFace::BLOCK_FACE_XP;
@@ -6043,33 +5270,33 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3817: case 3818: case 3819: case 3820: case 3821: case 3822: case 3823: case 3824: case 3833: case 3834: case 3835: case 3836: case 3837: case 3838: case 3839: case 3840: case 3849: case 3850: case 3851: case 3852: case 3853: case 3854: case 3855: case 3856: case 3865: case 3866: case 3867: case 3868: case 3869: case 3870: case 3871: case 3872: return Half::Lower;
default: return Half::Upper;
}
}
- enum Hinge Hinge(short ID)
+ enum Hinge Hinge(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3809: case 3810: case 3811: case 3812: case 3817: case 3818: case 3819: case 3820: case 3825: case 3826: case 3827: case 3828: case 3833: case 3834: case 3835: case 3836: case 3841: case 3842: case 3843: case 3844: case 3849: case 3850: case 3851: case 3852: case 3857: case 3858: case 3859: case 3860: case 3865: case 3866: case 3867: case 3868: return Hinge::Left;
default: return Hinge::Right;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3811: case 3812: case 3815: case 3816: case 3819: case 3820: case 3823: case 3824: case 3827: case 3828: case 3831: case 3832: case 3835: case 3836: case 3839: case 3840: case 3843: case 3844: case 3847: case 3848: case 3851: case 3852: case 3855: case 3856: case 3859: case 3860: case 3863: case 3864: case 3867: case 3868: case 3871: case 3872: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3810: case 3812: case 3814: case 3816: case 3818: case 3820: case 3822: case 3824: case 3826: case 3828: case 3830: case 3832: case 3834: case 3836: case 3838: case 3840: case 3842: case 3844: case 3846: case 3848: case 3850: case 3852: case 3854: case 3856: case 3858: case 3860: case 3862: case 3864: case 3866: case 3868: case 3870: case 3872: return false;
default: return true;
@@ -6081,13 +5308,13 @@ namespace Block
}
namespace IronTrapdoor
{
- short IronTrapdoor()
+ BlockState IronTrapdoor()
{
return 7552;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7570: case 7572: case 7574: case 7576: case 7578: case 7580: case 7582: case 7584: return eBlockFace::BLOCK_FACE_XM;
case 7586: case 7588: case 7590: case 7592: case 7594: case 7596: case 7598: case 7600: return eBlockFace::BLOCK_FACE_XP;
@@ -6095,25 +5322,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7546: case 7548: case 7550: case 7552: case 7562: case 7564: case 7566: case 7568: case 7578: case 7580: case 7582: case 7584: case 7594: case 7596: case 7598: case 7600: return Half::Bottom;
default: return Half::Top;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7542: case 7544: case 7550: case 7552: case 7558: case 7560: case 7566: case 7568: case 7574: case 7576: case 7582: case 7584: case 7590: case 7592: case 7598: case 7600: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7540: case 7544: case 7548: case 7552: case 7556: case 7560: case 7564: case 7568: case 7572: case 7576: case 7580: case 7584: case 7588: case 7592: case 7596: case 7600: return false;
default: return true;
@@ -6122,13 +5349,13 @@ namespace Block
}
namespace JackOLantern
{
- short JackOLantern()
+ BlockState JackOLantern()
{
return 4020;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4022: return eBlockFace::BLOCK_FACE_XM;
case 4023: return eBlockFace::BLOCK_FACE_XP;
@@ -6139,13 +5366,13 @@ namespace Block
}
namespace Jigsaw
{
- short Jigsaw()
+ BlockState Jigsaw()
{
return 15749;
}
- enum Orientation Orientation(short ID)
+ enum Orientation Orientation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15739: return Orientation::DownEast;
case 15740: return Orientation::DownNorth;
@@ -6164,13 +5391,13 @@ namespace Block
}
namespace Jukebox
{
- short Jukebox()
+ BlockState Jukebox()
{
return 3965;
}
- bool HasRecord(short ID)
+ bool HasRecord(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3965: return false;
default: return true;
@@ -6179,22 +5406,22 @@ namespace Block
}
namespace JungleButton
{
- short JungleButton()
+ BlockState JungleButton()
{
return 6427;
}
- enum Face Face(short ID)
+ enum Face Face(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6434: case 6435: case 6436: case 6437: case 6438: case 6439: case 6440: case 6441: return Face::Ceiling;
case 6418: case 6419: case 6420: case 6421: case 6422: case 6423: case 6424: case 6425: return Face::Floor;
default: return Face::Wall;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6422: case 6423: case 6430: case 6431: case 6438: case 6439: return eBlockFace::BLOCK_FACE_XM;
case 6424: case 6425: case 6432: case 6433: case 6440: case 6441: return eBlockFace::BLOCK_FACE_XP;
@@ -6202,9 +5429,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6419: case 6421: case 6423: case 6425: case 6427: case 6429: case 6431: case 6433: case 6435: case 6437: case 6439: case 6441: return false;
default: return true;
@@ -6213,13 +5440,13 @@ namespace Block
}
namespace JungleDoor
{
- short JungleDoor()
+ BlockState JungleDoor()
{
return 8877;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8898: case 8899: case 8900: case 8901: case 8902: case 8903: case 8904: case 8905: case 8906: case 8907: case 8908: case 8909: case 8910: case 8911: case 8912: case 8913: return eBlockFace::BLOCK_FACE_XM;
case 8914: case 8915: case 8916: case 8917: case 8918: case 8919: case 8920: case 8921: case 8922: case 8923: case 8924: case 8925: case 8926: case 8927: case 8928: case 8929: return eBlockFace::BLOCK_FACE_XP;
@@ -6227,33 +5454,33 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8874: case 8875: case 8876: case 8877: case 8878: case 8879: case 8880: case 8881: case 8890: case 8891: case 8892: case 8893: case 8894: case 8895: case 8896: case 8897: case 8906: case 8907: case 8908: case 8909: case 8910: case 8911: case 8912: case 8913: case 8922: case 8923: case 8924: case 8925: case 8926: case 8927: case 8928: case 8929: return Half::Lower;
default: return Half::Upper;
}
}
- enum Hinge Hinge(short ID)
+ enum Hinge Hinge(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8866: case 8867: case 8868: case 8869: case 8874: case 8875: case 8876: case 8877: case 8882: case 8883: case 8884: case 8885: case 8890: case 8891: case 8892: case 8893: case 8898: case 8899: case 8900: case 8901: case 8906: case 8907: case 8908: case 8909: case 8914: case 8915: case 8916: case 8917: case 8922: case 8923: case 8924: case 8925: return Hinge::Left;
default: return Hinge::Right;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8868: case 8869: case 8872: case 8873: case 8876: case 8877: case 8880: case 8881: case 8884: case 8885: case 8888: case 8889: case 8892: case 8893: case 8896: case 8897: case 8900: case 8901: case 8904: case 8905: case 8908: case 8909: case 8912: case 8913: case 8916: case 8917: case 8920: case 8921: case 8924: case 8925: case 8928: case 8929: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8867: case 8869: case 8871: case 8873: case 8875: case 8877: case 8879: case 8881: case 8883: case 8885: case 8887: case 8889: case 8891: case 8893: case 8895: case 8897: case 8899: case 8901: case 8903: case 8905: case 8907: case 8909: case 8911: case 8913: case 8915: case 8917: case 8919: case 8921: case 8923: case 8925: case 8927: case 8929: return false;
default: return true;
@@ -6262,37 +5489,37 @@ namespace Block
}
namespace JungleFence
{
- short JungleFence()
+ BlockState JungleFence()
{
return 8673;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8660: case 8661: case 8664: case 8665: case 8668: case 8669: case 8672: case 8673: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8652: case 8653: case 8656: case 8657: case 8668: case 8669: case 8672: case 8673: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8648: case 8649: case 8656: case 8657: case 8664: case 8665: case 8672: case 8673: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8645: case 8649: case 8653: case 8657: case 8661: case 8665: case 8669: case 8673: return false;
default: return true;
@@ -6301,13 +5528,13 @@ namespace Block
}
namespace JungleFenceGate
{
- short JungleFenceGate()
+ BlockState JungleFenceGate()
{
return 8489;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8498: case 8499: case 8500: case 8501: case 8502: case 8503: case 8504: case 8505: return eBlockFace::BLOCK_FACE_XM;
case 8506: case 8507: case 8508: case 8509: case 8510: case 8511: case 8512: case 8513: return eBlockFace::BLOCK_FACE_XP;
@@ -6315,25 +5542,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool InWall(short ID)
+ bool InWall(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8486: case 8487: case 8488: case 8489: case 8494: case 8495: case 8496: case 8497: case 8502: case 8503: case 8504: case 8505: case 8510: case 8511: case 8512: case 8513: return false;
default: return true;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8484: case 8485: case 8488: case 8489: case 8492: case 8493: case 8496: case 8497: case 8500: case 8501: case 8504: case 8505: case 8508: case 8509: case 8512: case 8513: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8483: case 8485: case 8487: case 8489: case 8491: case 8493: case 8495: case 8497: case 8499: case 8501: case 8503: case 8505: case 8507: case 8509: case 8511: case 8513: return false;
default: return true;
@@ -6342,13 +5569,13 @@ namespace Block
}
namespace JungleLeaves
{
- short JungleLeaves()
+ BlockState JungleLeaves()
{
return 200;
}
- unsigned char Distance(short ID)
+ unsigned char Distance(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 187: case 188: return 1;
case 189: case 190: return 2;
@@ -6359,9 +5586,9 @@ namespace Block
default: return 7;
}
}
- bool Persistent(short ID)
+ bool Persistent(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 188: case 190: case 192: case 194: case 196: case 198: case 200: return false;
default: return true;
@@ -6370,13 +5597,13 @@ namespace Block
}
namespace JungleLog
{
- short JungleLog()
+ BlockState JungleLog()
{
return 83;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 82: return Axis::X;
case 83: return Axis::Y;
@@ -6389,13 +5616,13 @@ namespace Block
}
namespace JunglePressurePlate
{
- short JunglePressurePlate()
+ BlockState JunglePressurePlate()
{
return 3880;
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3880: return false;
default: return true;
@@ -6404,13 +5631,13 @@ namespace Block
}
namespace JungleSapling
{
- short JungleSapling()
+ BlockState JungleSapling()
{
return 27;
}
- unsigned char Stage(short ID)
+ unsigned char Stage(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 27: return 0;
default: return 1;
@@ -6419,13 +5646,13 @@ namespace Block
}
namespace JungleSign
{
- short JungleSign()
+ BlockState JungleSign()
{
return 3510;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3510: return 0;
case 3512: return 1;
@@ -6448,13 +5675,13 @@ namespace Block
}
namespace JungleSlab
{
- short JungleSlab()
+ BlockState JungleSlab()
{
return 8321;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8321: return Type::Bottom;
case 8323: return Type::Double;
@@ -6464,13 +5691,13 @@ namespace Block
}
namespace JungleStairs
{
- short JungleStairs()
+ BlockState JungleStairs()
{
return 5575;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5605: case 5607: case 5609: case 5611: case 5613: case 5615: case 5617: case 5619: case 5621: case 5623: return eBlockFace::BLOCK_FACE_XM;
case 5625: case 5627: case 5629: case 5631: case 5633: case 5635: case 5637: case 5639: case 5641: case 5643: return eBlockFace::BLOCK_FACE_XP;
@@ -6478,17 +5705,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5575: case 5577: case 5579: case 5581: case 5583: case 5595: case 5597: case 5599: case 5601: case 5603: case 5615: case 5617: case 5619: case 5621: case 5623: case 5635: case 5637: case 5639: case 5641: case 5643: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5567: case 5577: case 5587: case 5597: case 5607: case 5617: case 5627: case 5637: return Shape::InnerLeft;
case 5569: case 5579: case 5589: case 5599: case 5609: case 5619: case 5629: case 5639: return Shape::InnerRight;
@@ -6500,13 +5727,13 @@ namespace Block
}
namespace JungleTrapdoor
{
- short JungleTrapdoor()
+ BlockState JungleTrapdoor()
{
return 4318;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4336: case 4338: case 4340: case 4342: case 4344: case 4346: case 4348: case 4350: return eBlockFace::BLOCK_FACE_XM;
case 4352: case 4354: case 4356: case 4358: case 4360: case 4362: case 4364: case 4366: return eBlockFace::BLOCK_FACE_XP;
@@ -6514,25 +5741,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4312: case 4314: case 4316: case 4318: case 4328: case 4330: case 4332: case 4334: case 4344: case 4346: case 4348: case 4350: case 4360: case 4362: case 4364: case 4366: return Half::Bottom;
default: return Half::Top;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4308: case 4310: case 4316: case 4318: case 4324: case 4326: case 4332: case 4334: case 4340: case 4342: case 4348: case 4350: case 4356: case 4358: case 4364: case 4366: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4306: case 4310: case 4314: case 4318: case 4322: case 4326: case 4330: case 4334: case 4338: case 4342: case 4346: case 4350: case 4354: case 4358: case 4362: case 4366: return false;
default: return true;
@@ -6541,13 +5768,13 @@ namespace Block
}
namespace JungleWallSign
{
- short JungleWallSign()
+ BlockState JungleWallSign()
{
return 3768;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3772: return eBlockFace::BLOCK_FACE_XM;
case 3774: return eBlockFace::BLOCK_FACE_XP;
@@ -6558,13 +5785,13 @@ namespace Block
}
namespace JungleWood
{
- short JungleWood()
+ BlockState JungleWood()
{
return 119;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 118: return Axis::X;
case 119: return Axis::Y;
@@ -6574,13 +5801,13 @@ namespace Block
}
namespace Kelp
{
- short Kelp()
+ BlockState Kelp()
{
return 9470;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9470: return 0;
case 9471: return 1;
@@ -6616,13 +5843,13 @@ namespace Block
}
namespace Ladder
{
- short Ladder()
+ BlockState Ladder()
{
return 3638;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3642: return eBlockFace::BLOCK_FACE_XM;
case 3644: return eBlockFace::BLOCK_FACE_XP;
@@ -6633,13 +5860,13 @@ namespace Block
}
namespace Lantern
{
- short Lantern()
+ BlockState Lantern()
{
return 14887;
}
- bool Hanging(short ID)
+ bool Hanging(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14887: return false;
default: return true;
@@ -6654,13 +5881,13 @@ namespace Block
}
namespace LargeFern
{
- short LargeFern()
+ BlockState LargeFern()
{
return 7896;
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7896: return Half::Lower;
default: return Half::Upper;
@@ -6669,13 +5896,13 @@ namespace Block
}
namespace Lava
{
- short Lava()
+ BlockState Lava()
{
return 50;
}
- unsigned char Level(short ID)
+ unsigned char Level(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 50: return 0;
case 51: return 1;
@@ -6698,13 +5925,13 @@ namespace Block
}
namespace Lectern
{
- short Lectern()
+ BlockState Lectern()
{
return 14836;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14841: case 14842: case 14843: case 14844: return eBlockFace::BLOCK_FACE_XM;
case 14845: case 14846: case 14847: case 14848: return eBlockFace::BLOCK_FACE_XP;
@@ -6712,17 +5939,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool HasBook(short ID)
+ bool HasBook(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14835: case 14836: case 14839: case 14840: case 14843: case 14844: case 14847: case 14848: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14834: case 14836: case 14838: case 14840: case 14842: case 14844: case 14846: case 14848: return false;
default: return true;
@@ -6731,22 +5958,22 @@ namespace Block
}
namespace Lever
{
- short Lever()
+ BlockState Lever()
{
return 3792;
}
- enum Face Face(short ID)
+ enum Face Face(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3799: case 3800: case 3801: case 3802: case 3803: case 3804: case 3805: case 3806: return Face::Ceiling;
case 3783: case 3784: case 3785: case 3786: case 3787: case 3788: case 3789: case 3790: return Face::Floor;
default: return Face::Wall;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3787: case 3788: case 3795: case 3796: case 3803: case 3804: return eBlockFace::BLOCK_FACE_XM;
case 3789: case 3790: case 3797: case 3798: case 3805: case 3806: return eBlockFace::BLOCK_FACE_XP;
@@ -6754,9 +5981,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3784: case 3786: case 3788: case 3790: case 3792: case 3794: case 3796: case 3798: case 3800: case 3802: case 3804: case 3806: return false;
default: return true;
@@ -6765,13 +5992,13 @@ namespace Block
}
namespace LightBlueBanner
{
- short LightBlueBanner()
+ BlockState LightBlueBanner()
{
return 7945;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7945: return 0;
case 7946: return 1;
@@ -6794,13 +6021,13 @@ namespace Block
}
namespace LightBlueBed
{
- short LightBlueBed()
+ BlockState LightBlueBed()
{
return 1100;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1105: case 1106: case 1107: case 1108: return eBlockFace::BLOCK_FACE_XM;
case 1109: case 1110: case 1111: case 1112: return eBlockFace::BLOCK_FACE_XP;
@@ -6808,17 +6035,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1099: case 1100: case 1103: case 1104: case 1107: case 1108: case 1111: case 1112: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1098: case 1100: case 1102: case 1104: case 1106: case 1108: case 1110: case 1112: return Part::Foot;
default: return Part::Head;
@@ -6836,13 +6063,13 @@ namespace Block
}
namespace LightBlueGlazedTerracotta
{
- short LightBlueGlazedTerracotta()
+ BlockState LightBlueGlazedTerracotta()
{
return 9386;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9388: return eBlockFace::BLOCK_FACE_XM;
case 9389: return eBlockFace::BLOCK_FACE_XP;
@@ -6853,13 +6080,13 @@ namespace Block
}
namespace LightBlueShulkerBox
{
- short LightBlueShulkerBox()
+ BlockState LightBlueShulkerBox()
{
return 9300;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9299: return eBlockFace::BLOCK_FACE_XM;
case 9297: return eBlockFace::BLOCK_FACE_XP;
@@ -6875,37 +6102,37 @@ namespace Block
}
namespace LightBlueStainedGlassPane
{
- short LightBlueStainedGlassPane()
+ BlockState LightBlueStainedGlassPane()
{
return 6990;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6977: case 6978: case 6981: case 6982: case 6985: case 6986: case 6989: case 6990: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6969: case 6970: case 6973: case 6974: case 6985: case 6986: case 6989: case 6990: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6965: case 6966: case 6973: case 6974: case 6981: case 6982: case 6989: case 6990: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6962: case 6966: case 6970: case 6974: case 6978: case 6982: case 6986: case 6990: return false;
default: return true;
@@ -6917,13 +6144,13 @@ namespace Block
}
namespace LightBlueWallBanner
{
- short LightBlueWallBanner()
+ BlockState LightBlueWallBanner()
{
return 8165;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8167: return eBlockFace::BLOCK_FACE_XM;
case 8168: return eBlockFace::BLOCK_FACE_XP;
@@ -6937,13 +6164,13 @@ namespace Block
}
namespace LightGrayBanner
{
- short LightGrayBanner()
+ BlockState LightGrayBanner()
{
return 8025;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8025: return 0;
case 8026: return 1;
@@ -6966,13 +6193,13 @@ namespace Block
}
namespace LightGrayBed
{
- short LightGrayBed()
+ BlockState LightGrayBed()
{
return 1180;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1185: case 1186: case 1187: case 1188: return eBlockFace::BLOCK_FACE_XM;
case 1189: case 1190: case 1191: case 1192: return eBlockFace::BLOCK_FACE_XP;
@@ -6980,17 +6207,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1179: case 1180: case 1183: case 1184: case 1187: case 1188: case 1191: case 1192: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1178: case 1180: case 1182: case 1184: case 1186: case 1188: case 1190: case 1192: return Part::Foot;
default: return Part::Head;
@@ -7008,13 +6235,13 @@ namespace Block
}
namespace LightGrayGlazedTerracotta
{
- short LightGrayGlazedTerracotta()
+ BlockState LightGrayGlazedTerracotta()
{
return 9406;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9408: return eBlockFace::BLOCK_FACE_XM;
case 9409: return eBlockFace::BLOCK_FACE_XP;
@@ -7025,13 +6252,13 @@ namespace Block
}
namespace LightGrayShulkerBox
{
- short LightGrayShulkerBox()
+ BlockState LightGrayShulkerBox()
{
return 9330;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9329: return eBlockFace::BLOCK_FACE_XM;
case 9327: return eBlockFace::BLOCK_FACE_XP;
@@ -7047,37 +6274,37 @@ namespace Block
}
namespace LightGrayStainedGlassPane
{
- short LightGrayStainedGlassPane()
+ BlockState LightGrayStainedGlassPane()
{
return 7150;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7137: case 7138: case 7141: case 7142: case 7145: case 7146: case 7149: case 7150: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7129: case 7130: case 7133: case 7134: case 7145: case 7146: case 7149: case 7150: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7125: case 7126: case 7133: case 7134: case 7141: case 7142: case 7149: case 7150: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7122: case 7126: case 7130: case 7134: case 7138: case 7142: case 7146: case 7150: return false;
default: return true;
@@ -7089,13 +6316,13 @@ namespace Block
}
namespace LightGrayWallBanner
{
- short LightGrayWallBanner()
+ BlockState LightGrayWallBanner()
{
return 8185;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8187: return eBlockFace::BLOCK_FACE_XM;
case 8188: return eBlockFace::BLOCK_FACE_XP;
@@ -7109,13 +6336,13 @@ namespace Block
}
namespace LightWeightedPressurePlate
{
- short LightWeightedPressurePlate()
+ BlockState LightWeightedPressurePlate()
{
return 6646;
}
- unsigned char Power(short ID)
+ unsigned char Power(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6646: return 0;
case 6647: return 1;
@@ -7138,13 +6365,13 @@ namespace Block
}
namespace Lilac
{
- short Lilac()
+ BlockState Lilac()
{
return 7888;
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7888: return Half::Lower;
default: return Half::Upper;
@@ -7159,13 +6386,13 @@ namespace Block
}
namespace LimeBanner
{
- short LimeBanner()
+ BlockState LimeBanner()
{
return 7977;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7977: return 0;
case 7978: return 1;
@@ -7188,13 +6415,13 @@ namespace Block
}
namespace LimeBed
{
- short LimeBed()
+ BlockState LimeBed()
{
return 1132;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1137: case 1138: case 1139: case 1140: return eBlockFace::BLOCK_FACE_XM;
case 1141: case 1142: case 1143: case 1144: return eBlockFace::BLOCK_FACE_XP;
@@ -7202,17 +6429,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1131: case 1132: case 1135: case 1136: case 1139: case 1140: case 1143: case 1144: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1130: case 1132: case 1134: case 1136: case 1138: case 1140: case 1142: case 1144: return Part::Foot;
default: return Part::Head;
@@ -7230,13 +6457,13 @@ namespace Block
}
namespace LimeGlazedTerracotta
{
- short LimeGlazedTerracotta()
+ BlockState LimeGlazedTerracotta()
{
return 9394;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9396: return eBlockFace::BLOCK_FACE_XM;
case 9397: return eBlockFace::BLOCK_FACE_XP;
@@ -7247,13 +6474,13 @@ namespace Block
}
namespace LimeShulkerBox
{
- short LimeShulkerBox()
+ BlockState LimeShulkerBox()
{
return 9312;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9311: return eBlockFace::BLOCK_FACE_XM;
case 9309: return eBlockFace::BLOCK_FACE_XP;
@@ -7269,37 +6496,37 @@ namespace Block
}
namespace LimeStainedGlassPane
{
- short LimeStainedGlassPane()
+ BlockState LimeStainedGlassPane()
{
return 7054;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7041: case 7042: case 7045: case 7046: case 7049: case 7050: case 7053: case 7054: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7033: case 7034: case 7037: case 7038: case 7049: case 7050: case 7053: case 7054: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7029: case 7030: case 7037: case 7038: case 7045: case 7046: case 7053: case 7054: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7026: case 7030: case 7034: case 7038: case 7042: case 7046: case 7050: case 7054: return false;
default: return true;
@@ -7311,13 +6538,13 @@ namespace Block
}
namespace LimeWallBanner
{
- short LimeWallBanner()
+ BlockState LimeWallBanner()
{
return 8173;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8175: return eBlockFace::BLOCK_FACE_XM;
case 8176: return eBlockFace::BLOCK_FACE_XP;
@@ -7334,13 +6561,13 @@ namespace Block
}
namespace Loom
{
- short Loom()
+ BlockState Loom()
{
return 14787;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14789: return eBlockFace::BLOCK_FACE_XM;
case 14790: return eBlockFace::BLOCK_FACE_XP;
@@ -7351,13 +6578,13 @@ namespace Block
}
namespace MagentaBanner
{
- short MagentaBanner()
+ BlockState MagentaBanner()
{
return 7929;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7929: return 0;
case 7930: return 1;
@@ -7380,13 +6607,13 @@ namespace Block
}
namespace MagentaBed
{
- short MagentaBed()
+ BlockState MagentaBed()
{
return 1084;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1089: case 1090: case 1091: case 1092: return eBlockFace::BLOCK_FACE_XM;
case 1093: case 1094: case 1095: case 1096: return eBlockFace::BLOCK_FACE_XP;
@@ -7394,17 +6621,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1083: case 1084: case 1087: case 1088: case 1091: case 1092: case 1095: case 1096: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1082: case 1084: case 1086: case 1088: case 1090: case 1092: case 1094: case 1096: return Part::Foot;
default: return Part::Head;
@@ -7422,13 +6649,13 @@ namespace Block
}
namespace MagentaGlazedTerracotta
{
- short MagentaGlazedTerracotta()
+ BlockState MagentaGlazedTerracotta()
{
return 9382;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9384: return eBlockFace::BLOCK_FACE_XM;
case 9385: return eBlockFace::BLOCK_FACE_XP;
@@ -7439,13 +6666,13 @@ namespace Block
}
namespace MagentaShulkerBox
{
- short MagentaShulkerBox()
+ BlockState MagentaShulkerBox()
{
return 9294;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9293: return eBlockFace::BLOCK_FACE_XM;
case 9291: return eBlockFace::BLOCK_FACE_XP;
@@ -7461,37 +6688,37 @@ namespace Block
}
namespace MagentaStainedGlassPane
{
- short MagentaStainedGlassPane()
+ BlockState MagentaStainedGlassPane()
{
return 6958;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6945: case 6946: case 6949: case 6950: case 6953: case 6954: case 6957: case 6958: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6937: case 6938: case 6941: case 6942: case 6953: case 6954: case 6957: case 6958: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6933: case 6934: case 6941: case 6942: case 6949: case 6950: case 6957: case 6958: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6930: case 6934: case 6938: case 6942: case 6946: case 6950: case 6954: case 6958: return false;
default: return true;
@@ -7503,13 +6730,13 @@ namespace Block
}
namespace MagentaWallBanner
{
- short MagentaWallBanner()
+ BlockState MagentaWallBanner()
{
return 8161;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8163: return eBlockFace::BLOCK_FACE_XM;
case 8164: return eBlockFace::BLOCK_FACE_XP;
@@ -7529,13 +6756,13 @@ namespace Block
}
namespace MelonStem
{
- short MelonStem()
+ BlockState MelonStem()
{
return 4780;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4780: return 0;
case 4781: return 1;
@@ -7553,13 +6780,13 @@ namespace Block
}
namespace MossyCobblestoneSlab
{
- short MossyCobblestoneSlab()
+ BlockState MossyCobblestoneSlab()
{
return 10816;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10816: return Type::Bottom;
case 10818: return Type::Double;
@@ -7569,13 +6796,13 @@ namespace Block
}
namespace MossyCobblestoneStairs
{
- short MossyCobblestoneStairs()
+ BlockState MossyCobblestoneStairs()
{
return 10000;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10030: case 10032: case 10034: case 10036: case 10038: case 10040: case 10042: case 10044: case 10046: case 10048: return eBlockFace::BLOCK_FACE_XM;
case 10050: case 10052: case 10054: case 10056: case 10058: case 10060: case 10062: case 10064: case 10066: case 10068: return eBlockFace::BLOCK_FACE_XP;
@@ -7583,17 +6810,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10000: case 10002: case 10004: case 10006: case 10008: case 10020: case 10022: case 10024: case 10026: case 10028: case 10040: case 10042: case 10044: case 10046: case 10048: case 10060: case 10062: case 10064: case 10066: case 10068: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9992: case 10002: case 10012: case 10022: case 10032: case 10042: case 10052: case 10062: return Shape::InnerLeft;
case 9994: case 10004: case 10014: case 10024: case 10034: case 10044: case 10054: case 10064: return Shape::InnerRight;
@@ -7605,48 +6832,48 @@ namespace Block
}
namespace MossyCobblestoneWall
{
- short MossyCobblestoneWall()
+ BlockState MossyCobblestoneWall()
{
return 5984;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6092: case 6093: case 6094: case 6098: case 6099: case 6100: case 6104: case 6105: case 6106: case 6110: case 6111: case 6112: case 6116: case 6117: case 6118: case 6122: case 6123: case 6124: case 6128: case 6129: case 6130: case 6134: case 6135: case 6136: case 6140: case 6141: case 6142: case 6146: case 6147: case 6148: case 6152: case 6153: case 6154: case 6158: case 6159: case 6160: case 6164: case 6165: case 6166: case 6170: case 6171: case 6172: case 6176: case 6177: case 6178: case 6182: case 6183: case 6184: case 6188: case 6189: case 6190: case 6194: case 6195: case 6196: return East::Low;
case 5984: case 5985: case 5986: case 5990: case 5991: case 5992: case 5996: case 5997: case 5998: case 6002: case 6003: case 6004: case 6008: case 6009: case 6010: case 6014: case 6015: case 6016: case 6020: case 6021: case 6022: case 6026: case 6027: case 6028: case 6032: case 6033: case 6034: case 6038: case 6039: case 6040: case 6044: case 6045: case 6046: case 6050: case 6051: case 6052: case 6056: case 6057: case 6058: case 6062: case 6063: case 6064: case 6068: case 6069: case 6070: case 6074: case 6075: case 6076: case 6080: case 6081: case 6082: case 6086: case 6087: case 6088: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6020: case 6021: case 6022: case 6026: case 6027: case 6028: case 6032: case 6033: case 6034: case 6038: case 6039: case 6040: case 6044: case 6045: case 6046: case 6050: case 6051: case 6052: case 6128: case 6129: case 6130: case 6134: case 6135: case 6136: case 6140: case 6141: case 6142: case 6146: case 6147: case 6148: case 6152: case 6153: case 6154: case 6158: case 6159: case 6160: case 6236: case 6237: case 6238: case 6242: case 6243: case 6244: case 6248: case 6249: case 6250: case 6254: case 6255: case 6256: case 6260: case 6261: case 6262: case 6266: case 6267: case 6268: return North::Low;
case 5984: case 5985: case 5986: case 5990: case 5991: case 5992: case 5996: case 5997: case 5998: case 6002: case 6003: case 6004: case 6008: case 6009: case 6010: case 6014: case 6015: case 6016: case 6092: case 6093: case 6094: case 6098: case 6099: case 6100: case 6104: case 6105: case 6106: case 6110: case 6111: case 6112: case 6116: case 6117: case 6118: case 6122: case 6123: case 6124: case 6200: case 6201: case 6202: case 6206: case 6207: case 6208: case 6212: case 6213: case 6214: case 6218: case 6219: case 6220: case 6224: case 6225: case 6226: case 6230: case 6231: case 6232: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5996: case 5997: case 5998: case 6002: case 6003: case 6004: case 6032: case 6033: case 6034: case 6038: case 6039: case 6040: case 6068: case 6069: case 6070: case 6074: case 6075: case 6076: case 6104: case 6105: case 6106: case 6110: case 6111: case 6112: case 6140: case 6141: case 6142: case 6146: case 6147: case 6148: case 6176: case 6177: case 6178: case 6182: case 6183: case 6184: case 6212: case 6213: case 6214: case 6218: case 6219: case 6220: case 6248: case 6249: case 6250: case 6254: case 6255: case 6256: case 6284: case 6285: case 6286: case 6290: case 6291: case 6292: return South::Low;
case 5984: case 5985: case 5986: case 5990: case 5991: case 5992: case 6020: case 6021: case 6022: case 6026: case 6027: case 6028: case 6056: case 6057: case 6058: case 6062: case 6063: case 6064: case 6092: case 6093: case 6094: case 6098: case 6099: case 6100: case 6128: case 6129: case 6130: case 6134: case 6135: case 6136: case 6164: case 6165: case 6166: case 6170: case 6171: case 6172: case 6200: case 6201: case 6202: case 6206: case 6207: case 6208: case 6236: case 6237: case 6238: case 6242: case 6243: case 6244: case 6272: case 6273: case 6274: case 6278: case 6279: case 6280: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5990: case 5991: case 5992: case 6002: case 6003: case 6004: case 6014: case 6015: case 6016: case 6026: case 6027: case 6028: case 6038: case 6039: case 6040: case 6050: case 6051: case 6052: case 6062: case 6063: case 6064: case 6074: case 6075: case 6076: case 6086: case 6087: case 6088: case 6098: case 6099: case 6100: case 6110: case 6111: case 6112: case 6122: case 6123: case 6124: case 6134: case 6135: case 6136: case 6146: case 6147: case 6148: case 6158: case 6159: case 6160: case 6170: case 6171: case 6172: case 6182: case 6183: case 6184: case 6194: case 6195: case 6196: case 6206: case 6207: case 6208: case 6218: case 6219: case 6220: case 6230: case 6231: case 6232: case 6242: case 6243: case 6244: case 6254: case 6255: case 6256: case 6266: case 6267: case 6268: case 6278: case 6279: case 6280: case 6290: case 6291: case 6292: case 6302: case 6303: case 6304: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5985: case 5991: case 5997: case 6003: case 6009: case 6015: case 6021: case 6027: case 6033: case 6039: case 6045: case 6051: case 6057: case 6063: case 6069: case 6075: case 6081: case 6087: case 6093: case 6099: case 6105: case 6111: case 6117: case 6123: case 6129: case 6135: case 6141: case 6147: case 6153: case 6159: case 6165: case 6171: case 6177: case 6183: case 6189: case 6195: case 6201: case 6207: case 6213: case 6219: case 6225: case 6231: case 6237: case 6243: case 6249: case 6255: case 6261: case 6267: case 6273: case 6279: case 6285: case 6291: case 6297: case 6303: return West::Low;
case 5984: case 5990: case 5996: case 6002: case 6008: case 6014: case 6020: case 6026: case 6032: case 6038: case 6044: case 6050: case 6056: case 6062: case 6068: case 6074: case 6080: case 6086: case 6092: case 6098: case 6104: case 6110: case 6116: case 6122: case 6128: case 6134: case 6140: case 6146: case 6152: case 6158: case 6164: case 6170: case 6176: case 6182: case 6188: case 6194: case 6200: case 6206: case 6212: case 6218: case 6224: case 6230: case 6236: case 6242: case 6248: case 6254: case 6260: case 6266: case 6272: case 6278: case 6284: case 6290: case 6296: case 6302: return West::None;
@@ -7656,13 +6883,13 @@ namespace Block
}
namespace MossyStoneBrickSlab
{
- short MossyStoneBrickSlab()
+ BlockState MossyStoneBrickSlab()
{
return 10804;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10804: return Type::Bottom;
case 10806: return Type::Double;
@@ -7672,13 +6899,13 @@ namespace Block
}
namespace MossyStoneBrickStairs
{
- short MossyStoneBrickStairs()
+ BlockState MossyStoneBrickStairs()
{
return 9840;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9870: case 9872: case 9874: case 9876: case 9878: case 9880: case 9882: case 9884: case 9886: case 9888: return eBlockFace::BLOCK_FACE_XM;
case 9890: case 9892: case 9894: case 9896: case 9898: case 9900: case 9902: case 9904: case 9906: case 9908: return eBlockFace::BLOCK_FACE_XP;
@@ -7686,17 +6913,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9840: case 9842: case 9844: case 9846: case 9848: case 9860: case 9862: case 9864: case 9866: case 9868: case 9880: case 9882: case 9884: case 9886: case 9888: case 9900: case 9902: case 9904: case 9906: case 9908: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9832: case 9842: case 9852: case 9862: case 9872: case 9882: case 9892: case 9902: return Shape::InnerLeft;
case 9834: case 9844: case 9854: case 9864: case 9874: case 9884: case 9894: case 9904: return Shape::InnerRight;
@@ -7708,48 +6935,48 @@ namespace Block
}
namespace MossyStoneBrickWall
{
- short MossyStoneBrickWall()
+ BlockState MossyStoneBrickWall()
{
return 11842;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11950: case 11951: case 11952: case 11956: case 11957: case 11958: case 11962: case 11963: case 11964: case 11968: case 11969: case 11970: case 11974: case 11975: case 11976: case 11980: case 11981: case 11982: case 11986: case 11987: case 11988: case 11992: case 11993: case 11994: case 11998: case 11999: case 12000: case 12004: case 12005: case 12006: case 12010: case 12011: case 12012: case 12016: case 12017: case 12018: case 12022: case 12023: case 12024: case 12028: case 12029: case 12030: case 12034: case 12035: case 12036: case 12040: case 12041: case 12042: case 12046: case 12047: case 12048: case 12052: case 12053: case 12054: return East::Low;
case 11842: case 11843: case 11844: case 11848: case 11849: case 11850: case 11854: case 11855: case 11856: case 11860: case 11861: case 11862: case 11866: case 11867: case 11868: case 11872: case 11873: case 11874: case 11878: case 11879: case 11880: case 11884: case 11885: case 11886: case 11890: case 11891: case 11892: case 11896: case 11897: case 11898: case 11902: case 11903: case 11904: case 11908: case 11909: case 11910: case 11914: case 11915: case 11916: case 11920: case 11921: case 11922: case 11926: case 11927: case 11928: case 11932: case 11933: case 11934: case 11938: case 11939: case 11940: case 11944: case 11945: case 11946: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11878: case 11879: case 11880: case 11884: case 11885: case 11886: case 11890: case 11891: case 11892: case 11896: case 11897: case 11898: case 11902: case 11903: case 11904: case 11908: case 11909: case 11910: case 11986: case 11987: case 11988: case 11992: case 11993: case 11994: case 11998: case 11999: case 12000: case 12004: case 12005: case 12006: case 12010: case 12011: case 12012: case 12016: case 12017: case 12018: case 12094: case 12095: case 12096: case 12100: case 12101: case 12102: case 12106: case 12107: case 12108: case 12112: case 12113: case 12114: case 12118: case 12119: case 12120: case 12124: case 12125: case 12126: return North::Low;
case 11842: case 11843: case 11844: case 11848: case 11849: case 11850: case 11854: case 11855: case 11856: case 11860: case 11861: case 11862: case 11866: case 11867: case 11868: case 11872: case 11873: case 11874: case 11950: case 11951: case 11952: case 11956: case 11957: case 11958: case 11962: case 11963: case 11964: case 11968: case 11969: case 11970: case 11974: case 11975: case 11976: case 11980: case 11981: case 11982: case 12058: case 12059: case 12060: case 12064: case 12065: case 12066: case 12070: case 12071: case 12072: case 12076: case 12077: case 12078: case 12082: case 12083: case 12084: case 12088: case 12089: case 12090: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11854: case 11855: case 11856: case 11860: case 11861: case 11862: case 11890: case 11891: case 11892: case 11896: case 11897: case 11898: case 11926: case 11927: case 11928: case 11932: case 11933: case 11934: case 11962: case 11963: case 11964: case 11968: case 11969: case 11970: case 11998: case 11999: case 12000: case 12004: case 12005: case 12006: case 12034: case 12035: case 12036: case 12040: case 12041: case 12042: case 12070: case 12071: case 12072: case 12076: case 12077: case 12078: case 12106: case 12107: case 12108: case 12112: case 12113: case 12114: case 12142: case 12143: case 12144: case 12148: case 12149: case 12150: return South::Low;
case 11842: case 11843: case 11844: case 11848: case 11849: case 11850: case 11878: case 11879: case 11880: case 11884: case 11885: case 11886: case 11914: case 11915: case 11916: case 11920: case 11921: case 11922: case 11950: case 11951: case 11952: case 11956: case 11957: case 11958: case 11986: case 11987: case 11988: case 11992: case 11993: case 11994: case 12022: case 12023: case 12024: case 12028: case 12029: case 12030: case 12058: case 12059: case 12060: case 12064: case 12065: case 12066: case 12094: case 12095: case 12096: case 12100: case 12101: case 12102: case 12130: case 12131: case 12132: case 12136: case 12137: case 12138: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11848: case 11849: case 11850: case 11860: case 11861: case 11862: case 11872: case 11873: case 11874: case 11884: case 11885: case 11886: case 11896: case 11897: case 11898: case 11908: case 11909: case 11910: case 11920: case 11921: case 11922: case 11932: case 11933: case 11934: case 11944: case 11945: case 11946: case 11956: case 11957: case 11958: case 11968: case 11969: case 11970: case 11980: case 11981: case 11982: case 11992: case 11993: case 11994: case 12004: case 12005: case 12006: case 12016: case 12017: case 12018: case 12028: case 12029: case 12030: case 12040: case 12041: case 12042: case 12052: case 12053: case 12054: case 12064: case 12065: case 12066: case 12076: case 12077: case 12078: case 12088: case 12089: case 12090: case 12100: case 12101: case 12102: case 12112: case 12113: case 12114: case 12124: case 12125: case 12126: case 12136: case 12137: case 12138: case 12148: case 12149: case 12150: case 12160: case 12161: case 12162: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11843: case 11849: case 11855: case 11861: case 11867: case 11873: case 11879: case 11885: case 11891: case 11897: case 11903: case 11909: case 11915: case 11921: case 11927: case 11933: case 11939: case 11945: case 11951: case 11957: case 11963: case 11969: case 11975: case 11981: case 11987: case 11993: case 11999: case 12005: case 12011: case 12017: case 12023: case 12029: case 12035: case 12041: case 12047: case 12053: case 12059: case 12065: case 12071: case 12077: case 12083: case 12089: case 12095: case 12101: case 12107: case 12113: case 12119: case 12125: case 12131: case 12137: case 12143: case 12149: case 12155: case 12161: return West::Low;
case 11842: case 11848: case 11854: case 11860: case 11866: case 11872: case 11878: case 11884: case 11890: case 11896: case 11902: case 11908: case 11914: case 11920: case 11926: case 11932: case 11938: case 11944: case 11950: case 11956: case 11962: case 11968: case 11974: case 11980: case 11986: case 11992: case 11998: case 12004: case 12010: case 12016: case 12022: case 12028: case 12034: case 12040: case 12046: case 12052: case 12058: case 12064: case 12070: case 12076: case 12082: case 12088: case 12094: case 12100: case 12106: case 12112: case 12118: case 12124: case 12130: case 12136: case 12142: case 12148: case 12154: case 12160: return West::None;
@@ -7762,13 +6989,13 @@ namespace Block
}
namespace MovingPiston
{
- short MovingPiston()
+ BlockState MovingPiston()
{
return 1400;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1406: case 1407: return eBlockFace::BLOCK_FACE_XM;
case 1402: case 1403: return eBlockFace::BLOCK_FACE_XP;
@@ -7778,9 +7005,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1400: case 1402: case 1404: case 1406: case 1408: case 1410: return Type::Normal;
default: return Type::Sticky;
@@ -7789,53 +7016,53 @@ namespace Block
}
namespace MushroomStem
{
- short MushroomStem()
+ BlockState MushroomStem()
{
return 4633;
}
- bool Down(short ID)
+ bool Down(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4665: case 4666: case 4667: case 4668: case 4669: case 4670: case 4671: case 4672: case 4673: case 4674: case 4675: case 4676: case 4677: case 4678: case 4679: case 4680: case 4681: case 4682: case 4683: case 4684: case 4685: case 4686: case 4687: case 4688: case 4689: case 4690: case 4691: case 4692: case 4693: case 4694: case 4695: case 4696: return false;
default: return true;
}
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4649: case 4650: case 4651: case 4652: case 4653: case 4654: case 4655: case 4656: case 4657: case 4658: case 4659: case 4660: case 4661: case 4662: case 4663: case 4664: case 4681: case 4682: case 4683: case 4684: case 4685: case 4686: case 4687: case 4688: case 4689: case 4690: case 4691: case 4692: case 4693: case 4694: case 4695: case 4696: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4641: case 4642: case 4643: case 4644: case 4645: case 4646: case 4647: case 4648: case 4657: case 4658: case 4659: case 4660: case 4661: case 4662: case 4663: case 4664: case 4673: case 4674: case 4675: case 4676: case 4677: case 4678: case 4679: case 4680: case 4689: case 4690: case 4691: case 4692: case 4693: case 4694: case 4695: case 4696: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4637: case 4638: case 4639: case 4640: case 4645: case 4646: case 4647: case 4648: case 4653: case 4654: case 4655: case 4656: case 4661: case 4662: case 4663: case 4664: case 4669: case 4670: case 4671: case 4672: case 4677: case 4678: case 4679: case 4680: case 4685: case 4686: case 4687: case 4688: case 4693: case 4694: case 4695: case 4696: return false;
default: return true;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4635: case 4636: case 4639: case 4640: case 4643: case 4644: case 4647: case 4648: case 4651: case 4652: case 4655: case 4656: case 4659: case 4660: case 4663: case 4664: case 4667: case 4668: case 4671: case 4672: case 4675: case 4676: case 4679: case 4680: case 4683: case 4684: case 4687: case 4688: case 4691: case 4692: case 4695: case 4696: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4634: case 4636: case 4638: case 4640: case 4642: case 4644: case 4646: case 4648: case 4650: case 4652: case 4654: case 4656: case 4658: case 4660: case 4662: case 4664: case 4666: case 4668: case 4670: case 4672: case 4674: case 4676: case 4678: case 4680: case 4682: case 4684: case 4686: case 4688: case 4690: case 4692: case 4694: case 4696: return false;
default: return true;
@@ -7844,13 +7071,13 @@ namespace Block
}
namespace Mycelium
{
- short Mycelium()
+ BlockState Mycelium()
{
return 5013;
}
- bool Snowy(short ID)
+ bool Snowy(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5013: return false;
default: return true;
@@ -7859,37 +7086,37 @@ namespace Block
}
namespace NetherBrickFence
{
- short NetherBrickFence()
+ BlockState NetherBrickFence()
{
return 5047;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5034: case 5035: case 5038: case 5039: case 5042: case 5043: case 5046: case 5047: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5026: case 5027: case 5030: case 5031: case 5042: case 5043: case 5046: case 5047: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5022: case 5023: case 5030: case 5031: case 5038: case 5039: case 5046: case 5047: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5019: case 5023: case 5027: case 5031: case 5035: case 5039: case 5043: case 5047: return false;
default: return true;
@@ -7898,13 +7125,13 @@ namespace Block
}
namespace NetherBrickSlab
{
- short NetherBrickSlab()
+ BlockState NetherBrickSlab()
{
return 8387;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8387: return Type::Bottom;
case 8389: return Type::Double;
@@ -7914,13 +7141,13 @@ namespace Block
}
namespace NetherBrickStairs
{
- short NetherBrickStairs()
+ BlockState NetherBrickStairs()
{
return 5059;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5089: case 5091: case 5093: case 5095: case 5097: case 5099: case 5101: case 5103: case 5105: case 5107: return eBlockFace::BLOCK_FACE_XM;
case 5109: case 5111: case 5113: case 5115: case 5117: case 5119: case 5121: case 5123: case 5125: case 5127: return eBlockFace::BLOCK_FACE_XP;
@@ -7928,17 +7155,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5059: case 5061: case 5063: case 5065: case 5067: case 5079: case 5081: case 5083: case 5085: case 5087: case 5099: case 5101: case 5103: case 5105: case 5107: case 5119: case 5121: case 5123: case 5125: case 5127: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5051: case 5061: case 5071: case 5081: case 5091: case 5101: case 5111: case 5121: return Shape::InnerLeft;
case 5053: case 5063: case 5073: case 5083: case 5093: case 5103: case 5113: case 5123: return Shape::InnerRight;
@@ -7950,48 +7177,48 @@ namespace Block
}
namespace NetherBrickWall
{
- short NetherBrickWall()
+ BlockState NetherBrickWall()
{
return 12814;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12922: case 12923: case 12924: case 12928: case 12929: case 12930: case 12934: case 12935: case 12936: case 12940: case 12941: case 12942: case 12946: case 12947: case 12948: case 12952: case 12953: case 12954: case 12958: case 12959: case 12960: case 12964: case 12965: case 12966: case 12970: case 12971: case 12972: case 12976: case 12977: case 12978: case 12982: case 12983: case 12984: case 12988: case 12989: case 12990: case 12994: case 12995: case 12996: case 13000: case 13001: case 13002: case 13006: case 13007: case 13008: case 13012: case 13013: case 13014: case 13018: case 13019: case 13020: case 13024: case 13025: case 13026: return East::Low;
case 12814: case 12815: case 12816: case 12820: case 12821: case 12822: case 12826: case 12827: case 12828: case 12832: case 12833: case 12834: case 12838: case 12839: case 12840: case 12844: case 12845: case 12846: case 12850: case 12851: case 12852: case 12856: case 12857: case 12858: case 12862: case 12863: case 12864: case 12868: case 12869: case 12870: case 12874: case 12875: case 12876: case 12880: case 12881: case 12882: case 12886: case 12887: case 12888: case 12892: case 12893: case 12894: case 12898: case 12899: case 12900: case 12904: case 12905: case 12906: case 12910: case 12911: case 12912: case 12916: case 12917: case 12918: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12850: case 12851: case 12852: case 12856: case 12857: case 12858: case 12862: case 12863: case 12864: case 12868: case 12869: case 12870: case 12874: case 12875: case 12876: case 12880: case 12881: case 12882: case 12958: case 12959: case 12960: case 12964: case 12965: case 12966: case 12970: case 12971: case 12972: case 12976: case 12977: case 12978: case 12982: case 12983: case 12984: case 12988: case 12989: case 12990: case 13066: case 13067: case 13068: case 13072: case 13073: case 13074: case 13078: case 13079: case 13080: case 13084: case 13085: case 13086: case 13090: case 13091: case 13092: case 13096: case 13097: case 13098: return North::Low;
case 12814: case 12815: case 12816: case 12820: case 12821: case 12822: case 12826: case 12827: case 12828: case 12832: case 12833: case 12834: case 12838: case 12839: case 12840: case 12844: case 12845: case 12846: case 12922: case 12923: case 12924: case 12928: case 12929: case 12930: case 12934: case 12935: case 12936: case 12940: case 12941: case 12942: case 12946: case 12947: case 12948: case 12952: case 12953: case 12954: case 13030: case 13031: case 13032: case 13036: case 13037: case 13038: case 13042: case 13043: case 13044: case 13048: case 13049: case 13050: case 13054: case 13055: case 13056: case 13060: case 13061: case 13062: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12826: case 12827: case 12828: case 12832: case 12833: case 12834: case 12862: case 12863: case 12864: case 12868: case 12869: case 12870: case 12898: case 12899: case 12900: case 12904: case 12905: case 12906: case 12934: case 12935: case 12936: case 12940: case 12941: case 12942: case 12970: case 12971: case 12972: case 12976: case 12977: case 12978: case 13006: case 13007: case 13008: case 13012: case 13013: case 13014: case 13042: case 13043: case 13044: case 13048: case 13049: case 13050: case 13078: case 13079: case 13080: case 13084: case 13085: case 13086: case 13114: case 13115: case 13116: case 13120: case 13121: case 13122: return South::Low;
case 12814: case 12815: case 12816: case 12820: case 12821: case 12822: case 12850: case 12851: case 12852: case 12856: case 12857: case 12858: case 12886: case 12887: case 12888: case 12892: case 12893: case 12894: case 12922: case 12923: case 12924: case 12928: case 12929: case 12930: case 12958: case 12959: case 12960: case 12964: case 12965: case 12966: case 12994: case 12995: case 12996: case 13000: case 13001: case 13002: case 13030: case 13031: case 13032: case 13036: case 13037: case 13038: case 13066: case 13067: case 13068: case 13072: case 13073: case 13074: case 13102: case 13103: case 13104: case 13108: case 13109: case 13110: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12820: case 12821: case 12822: case 12832: case 12833: case 12834: case 12844: case 12845: case 12846: case 12856: case 12857: case 12858: case 12868: case 12869: case 12870: case 12880: case 12881: case 12882: case 12892: case 12893: case 12894: case 12904: case 12905: case 12906: case 12916: case 12917: case 12918: case 12928: case 12929: case 12930: case 12940: case 12941: case 12942: case 12952: case 12953: case 12954: case 12964: case 12965: case 12966: case 12976: case 12977: case 12978: case 12988: case 12989: case 12990: case 13000: case 13001: case 13002: case 13012: case 13013: case 13014: case 13024: case 13025: case 13026: case 13036: case 13037: case 13038: case 13048: case 13049: case 13050: case 13060: case 13061: case 13062: case 13072: case 13073: case 13074: case 13084: case 13085: case 13086: case 13096: case 13097: case 13098: case 13108: case 13109: case 13110: case 13120: case 13121: case 13122: case 13132: case 13133: case 13134: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12815: case 12821: case 12827: case 12833: case 12839: case 12845: case 12851: case 12857: case 12863: case 12869: case 12875: case 12881: case 12887: case 12893: case 12899: case 12905: case 12911: case 12917: case 12923: case 12929: case 12935: case 12941: case 12947: case 12953: case 12959: case 12965: case 12971: case 12977: case 12983: case 12989: case 12995: case 13001: case 13007: case 13013: case 13019: case 13025: case 13031: case 13037: case 13043: case 13049: case 13055: case 13061: case 13067: case 13073: case 13079: case 13085: case 13091: case 13097: case 13103: case 13109: case 13115: case 13121: case 13127: case 13133: return West::Low;
case 12814: case 12820: case 12826: case 12832: case 12838: case 12844: case 12850: case 12856: case 12862: case 12868: case 12874: case 12880: case 12886: case 12892: case 12898: case 12904: case 12910: case 12916: case 12922: case 12928: case 12934: case 12940: case 12946: case 12952: case 12958: case 12964: case 12970: case 12976: case 12982: case 12988: case 12994: case 13000: case 13006: case 13012: case 13018: case 13024: case 13030: case 13036: case 13042: case 13048: case 13054: case 13060: case 13066: case 13072: case 13078: case 13084: case 13090: case 13096: case 13102: case 13108: case 13114: case 13120: case 13126: case 13132: return West::None;
@@ -8007,13 +7234,13 @@ namespace Block
}
namespace NetherPortal
{
- short NetherPortal()
+ BlockState NetherPortal()
{
return 4014;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4014: return Axis::X;
default: return Axis::Z;
@@ -8028,13 +7255,13 @@ namespace Block
}
namespace NetherWart
{
- short NetherWart()
+ BlockState NetherWart()
{
return 5128;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5128: return 0;
case 5129: return 1;
@@ -8054,13 +7281,13 @@ namespace Block
}
namespace NoteBlock
{
- short NoteBlock()
+ BlockState NoteBlock()
{
return 250;
}
- enum Instrument Instrument(short ID)
+ enum Instrument Instrument(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 949: case 950: case 951: case 952: case 953: case 954: case 955: case 956: case 957: case 958: case 959: case 960: case 961: case 962: case 963: case 964: case 965: case 966: case 967: case 968: case 969: case 970: case 971: case 972: case 973: case 974: case 975: case 976: case 977: case 978: case 979: case 980: case 981: case 982: case 983: case 984: case 985: case 986: case 987: case 988: case 989: case 990: case 991: case 992: case 993: case 994: case 995: case 996: case 997: case 998: return Instrument::Banjo;
case 299: case 300: case 301: case 302: case 303: case 304: case 305: case 306: case 307: case 308: case 309: case 310: case 311: case 312: case 313: case 314: case 315: case 316: case 317: case 318: case 319: case 320: case 321: case 322: case 323: case 324: case 325: case 326: case 327: case 328: case 329: case 330: case 331: case 332: case 333: case 334: case 335: case 336: case 337: case 338: case 339: case 340: case 341: case 342: case 343: case 344: case 345: case 346: case 347: case 348: return Instrument::Basedrum;
@@ -8080,9 +7307,9 @@ namespace Block
default: return Instrument::Xylophone;
}
}
- unsigned char Note(short ID)
+ unsigned char Note(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 249: case 250: case 299: case 300: case 349: case 350: case 399: case 400: case 449: case 450: case 499: case 500: case 549: case 550: case 599: case 600: case 649: case 650: case 699: case 700: case 749: case 750: case 799: case 800: case 849: case 850: case 899: case 900: case 949: case 950: case 999: case 1000: return 0;
case 251: case 252: case 301: case 302: case 351: case 352: case 401: case 402: case 451: case 452: case 501: case 502: case 551: case 552: case 601: case 602: case 651: case 652: case 701: case 702: case 751: case 752: case 801: case 802: case 851: case 852: case 901: case 902: case 951: case 952: case 1001: case 1002: return 1;
@@ -8111,9 +7338,9 @@ namespace Block
default: return 9;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 250: case 252: case 254: case 256: case 258: case 260: case 262: case 264: case 266: case 268: case 270: case 272: case 274: case 276: case 278: case 280: case 282: case 284: case 286: case 288: case 290: case 292: case 294: case 296: case 298: case 300: case 302: case 304: case 306: case 308: case 310: case 312: case 314: case 316: case 318: case 320: case 322: case 324: case 326: case 328: case 330: case 332: case 334: case 336: case 338: case 340: case 342: case 344: case 346: case 348: case 350: case 352: case 354: case 356: case 358: case 360: case 362: case 364: case 366: case 368: case 370: case 372: case 374: case 376: case 378: case 380: case 382: case 384: case 386: case 388: case 390: case 392: case 394: case 396: case 398: case 400: case 402: case 404: case 406: case 408: case 410: case 412: case 414: case 416: case 418: case 420: case 422: case 424: case 426: case 428: case 430: case 432: case 434: case 436: case 438: case 440: case 442: case 444: case 446: case 448: case 450: case 452: case 454: case 456: case 458: case 460: case 462: case 464: case 466: case 468: case 470: case 472: case 474: case 476: case 478: case 480: case 482: case 484: case 486: case 488: case 490: case 492: case 494: case 496: case 498: case 500: case 502: case 504: case 506: case 508: case 510: case 512: case 514: case 516: case 518: case 520: case 522: case 524: case 526: case 528: case 530: case 532: case 534: case 536: case 538: case 540: case 542: case 544: case 546: case 548: case 550: case 552: case 554: case 556: case 558: case 560: case 562: case 564: case 566: case 568: case 570: case 572: case 574: case 576: case 578: case 580: case 582: case 584: case 586: case 588: case 590: case 592: case 594: case 596: case 598: case 600: case 602: case 604: case 606: case 608: case 610: case 612: case 614: case 616: case 618: case 620: case 622: case 624: case 626: case 628: case 630: case 632: case 634: case 636: case 638: case 640: case 642: case 644: case 646: case 648: case 650: case 652: case 654: case 656: case 658: case 660: case 662: case 664: case 666: case 668: case 670: case 672: case 674: case 676: case 678: case 680: case 682: case 684: case 686: case 688: case 690: case 692: case 694: case 696: case 698: case 700: case 702: case 704: case 706: case 708: case 710: case 712: case 714: case 716: case 718: case 720: case 722: case 724: case 726: case 728: case 730: case 732: case 734: case 736: case 738: case 740: case 742: case 744: case 746: case 748: case 750: case 752: case 754: case 756: case 758: case 760: case 762: case 764: case 766: case 768: case 770: case 772: case 774: case 776: case 778: case 780: case 782: case 784: case 786: case 788: case 790: case 792: case 794: case 796: case 798: case 800: case 802: case 804: case 806: case 808: case 810: case 812: case 814: case 816: case 818: case 820: case 822: case 824: case 826: case 828: case 830: case 832: case 834: case 836: case 838: case 840: case 842: case 844: case 846: case 848: case 850: case 852: case 854: case 856: case 858: case 860: case 862: case 864: case 866: case 868: case 870: case 872: case 874: case 876: case 878: case 880: case 882: case 884: case 886: case 888: case 890: case 892: case 894: case 896: case 898: case 900: case 902: case 904: case 906: case 908: case 910: case 912: case 914: case 916: case 918: case 920: case 922: case 924: case 926: case 928: case 930: case 932: case 934: case 936: case 938: case 940: case 942: case 944: case 946: case 948: case 950: case 952: case 954: case 956: case 958: case 960: case 962: case 964: case 966: case 968: case 970: case 972: case 974: case 976: case 978: case 980: case 982: case 984: case 986: case 988: case 990: case 992: case 994: case 996: case 998: case 1000: case 1002: case 1004: case 1006: case 1008: case 1010: case 1012: case 1014: case 1016: case 1018: case 1020: case 1022: case 1024: case 1026: case 1028: case 1030: case 1032: case 1034: case 1036: case 1038: case 1040: case 1042: case 1044: case 1046: case 1048: return false;
default: return true;
@@ -8122,22 +7349,22 @@ namespace Block
}
namespace OakButton
{
- short OakButton()
+ BlockState OakButton()
{
return 6355;
}
- enum Face Face(short ID)
+ enum Face Face(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6362: case 6363: case 6364: case 6365: case 6366: case 6367: case 6368: case 6369: return Face::Ceiling;
case 6346: case 6347: case 6348: case 6349: case 6350: case 6351: case 6352: case 6353: return Face::Floor;
default: return Face::Wall;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6350: case 6351: case 6358: case 6359: case 6366: case 6367: return eBlockFace::BLOCK_FACE_XM;
case 6352: case 6353: case 6360: case 6361: case 6368: case 6369: return eBlockFace::BLOCK_FACE_XP;
@@ -8145,9 +7372,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6347: case 6349: case 6351: case 6353: case 6355: case 6357: case 6359: case 6361: case 6363: case 6365: case 6367: case 6369: return false;
default: return true;
@@ -8156,13 +7383,13 @@ namespace Block
}
namespace OakDoor
{
- short OakDoor()
+ BlockState OakDoor()
{
return 3584;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3605: case 3606: case 3607: case 3608: case 3609: case 3610: case 3611: case 3612: case 3613: case 3614: case 3615: case 3616: case 3617: case 3618: case 3619: case 3620: return eBlockFace::BLOCK_FACE_XM;
case 3621: case 3622: case 3623: case 3624: case 3625: case 3626: case 3627: case 3628: case 3629: case 3630: case 3631: case 3632: case 3633: case 3634: case 3635: case 3636: return eBlockFace::BLOCK_FACE_XP;
@@ -8170,33 +7397,33 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3581: case 3582: case 3583: case 3584: case 3585: case 3586: case 3587: case 3588: case 3597: case 3598: case 3599: case 3600: case 3601: case 3602: case 3603: case 3604: case 3613: case 3614: case 3615: case 3616: case 3617: case 3618: case 3619: case 3620: case 3629: case 3630: case 3631: case 3632: case 3633: case 3634: case 3635: case 3636: return Half::Lower;
default: return Half::Upper;
}
}
- enum Hinge Hinge(short ID)
+ enum Hinge Hinge(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3573: case 3574: case 3575: case 3576: case 3581: case 3582: case 3583: case 3584: case 3589: case 3590: case 3591: case 3592: case 3597: case 3598: case 3599: case 3600: case 3605: case 3606: case 3607: case 3608: case 3613: case 3614: case 3615: case 3616: case 3621: case 3622: case 3623: case 3624: case 3629: case 3630: case 3631: case 3632: return Hinge::Left;
default: return Hinge::Right;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3575: case 3576: case 3579: case 3580: case 3583: case 3584: case 3587: case 3588: case 3591: case 3592: case 3595: case 3596: case 3599: case 3600: case 3603: case 3604: case 3607: case 3608: case 3611: case 3612: case 3615: case 3616: case 3619: case 3620: case 3623: case 3624: case 3627: case 3628: case 3631: case 3632: case 3635: case 3636: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3574: case 3576: case 3578: case 3580: case 3582: case 3584: case 3586: case 3588: case 3590: case 3592: case 3594: case 3596: case 3598: case 3600: case 3602: case 3604: case 3606: case 3608: case 3610: case 3612: case 3614: case 3616: case 3618: case 3620: case 3622: case 3624: case 3626: case 3628: case 3630: case 3632: case 3634: case 3636: return false;
default: return true;
@@ -8205,37 +7432,37 @@ namespace Block
}
namespace OakFence
{
- short OakFence()
+ BlockState OakFence()
{
return 3997;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3984: case 3985: case 3988: case 3989: case 3992: case 3993: case 3996: case 3997: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3976: case 3977: case 3980: case 3981: case 3992: case 3993: case 3996: case 3997: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3972: case 3973: case 3980: case 3981: case 3988: case 3989: case 3996: case 3997: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3969: case 3973: case 3977: case 3981: case 3985: case 3989: case 3993: case 3997: return false;
default: return true;
@@ -8244,13 +7471,13 @@ namespace Block
}
namespace OakFenceGate
{
- short OakFenceGate()
+ BlockState OakFenceGate()
{
return 4827;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4836: case 4837: case 4838: case 4839: case 4840: case 4841: case 4842: case 4843: return eBlockFace::BLOCK_FACE_XM;
case 4844: case 4845: case 4846: case 4847: case 4848: case 4849: case 4850: case 4851: return eBlockFace::BLOCK_FACE_XP;
@@ -8258,25 +7485,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool InWall(short ID)
+ bool InWall(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4824: case 4825: case 4826: case 4827: case 4832: case 4833: case 4834: case 4835: case 4840: case 4841: case 4842: case 4843: case 4848: case 4849: case 4850: case 4851: return false;
default: return true;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4822: case 4823: case 4826: case 4827: case 4830: case 4831: case 4834: case 4835: case 4838: case 4839: case 4842: case 4843: case 4846: case 4847: case 4850: case 4851: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4821: case 4823: case 4825: case 4827: case 4829: case 4831: case 4833: case 4835: case 4837: case 4839: case 4841: case 4843: case 4845: case 4847: case 4849: case 4851: return false;
default: return true;
@@ -8285,13 +7512,13 @@ namespace Block
}
namespace OakLeaves
{
- short OakLeaves()
+ BlockState OakLeaves()
{
return 158;
}
- unsigned char Distance(short ID)
+ unsigned char Distance(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 145: case 146: return 1;
case 147: case 148: return 2;
@@ -8302,9 +7529,9 @@ namespace Block
default: return 7;
}
}
- bool Persistent(short ID)
+ bool Persistent(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 146: case 148: case 150: case 152: case 154: case 156: case 158: return false;
default: return true;
@@ -8313,13 +7540,13 @@ namespace Block
}
namespace OakLog
{
- short OakLog()
+ BlockState OakLog()
{
return 74;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 73: return Axis::X;
case 74: return Axis::Y;
@@ -8332,13 +7559,13 @@ namespace Block
}
namespace OakPressurePlate
{
- short OakPressurePlate()
+ BlockState OakPressurePlate()
{
return 3874;
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3874: return false;
default: return true;
@@ -8347,13 +7574,13 @@ namespace Block
}
namespace OakSapling
{
- short OakSapling()
+ BlockState OakSapling()
{
return 21;
}
- unsigned char Stage(short ID)
+ unsigned char Stage(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 21: return 0;
default: return 1;
@@ -8362,13 +7589,13 @@ namespace Block
}
namespace OakSign
{
- short OakSign()
+ BlockState OakSign()
{
return 3382;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3382: return 0;
case 3384: return 1;
@@ -8391,13 +7618,13 @@ namespace Block
}
namespace OakSlab
{
- short OakSlab()
+ BlockState OakSlab()
{
return 8303;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8303: return Type::Bottom;
case 8305: return Type::Double;
@@ -8407,13 +7634,13 @@ namespace Block
}
namespace OakStairs
{
- short OakStairs()
+ BlockState OakStairs()
{
return 1965;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1995: case 1997: case 1999: case 2001: case 2003: case 2005: case 2007: case 2009: case 2011: case 2013: return eBlockFace::BLOCK_FACE_XM;
case 2015: case 2017: case 2019: case 2021: case 2023: case 2025: case 2027: case 2029: case 2031: case 2033: return eBlockFace::BLOCK_FACE_XP;
@@ -8421,17 +7648,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1965: case 1967: case 1969: case 1971: case 1973: case 1985: case 1987: case 1989: case 1991: case 1993: case 2005: case 2007: case 2009: case 2011: case 2013: case 2025: case 2027: case 2029: case 2031: case 2033: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1957: case 1967: case 1977: case 1987: case 1997: case 2007: case 2017: case 2027: return Shape::InnerLeft;
case 1959: case 1969: case 1979: case 1989: case 1999: case 2009: case 2019: case 2029: return Shape::InnerRight;
@@ -8443,13 +7670,13 @@ namespace Block
}
namespace OakTrapdoor
{
- short OakTrapdoor()
+ BlockState OakTrapdoor()
{
return 4126;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4144: case 4146: case 4148: case 4150: case 4152: case 4154: case 4156: case 4158: return eBlockFace::BLOCK_FACE_XM;
case 4160: case 4162: case 4164: case 4166: case 4168: case 4170: case 4172: case 4174: return eBlockFace::BLOCK_FACE_XP;
@@ -8457,25 +7684,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4120: case 4122: case 4124: case 4126: case 4136: case 4138: case 4140: case 4142: case 4152: case 4154: case 4156: case 4158: case 4168: case 4170: case 4172: case 4174: return Half::Bottom;
default: return Half::Top;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4116: case 4118: case 4124: case 4126: case 4132: case 4134: case 4140: case 4142: case 4148: case 4150: case 4156: case 4158: case 4164: case 4166: case 4172: case 4174: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4114: case 4118: case 4122: case 4126: case 4130: case 4134: case 4138: case 4142: case 4146: case 4150: case 4154: case 4158: case 4162: case 4166: case 4170: case 4174: return false;
default: return true;
@@ -8484,13 +7711,13 @@ namespace Block
}
namespace OakWallSign
{
- short OakWallSign()
+ BlockState OakWallSign()
{
return 3736;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3740: return eBlockFace::BLOCK_FACE_XM;
case 3742: return eBlockFace::BLOCK_FACE_XP;
@@ -8501,13 +7728,13 @@ namespace Block
}
namespace OakWood
{
- short OakWood()
+ BlockState OakWood()
{
return 110;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 109: return Axis::X;
case 110: return Axis::Y;
@@ -8517,13 +7744,13 @@ namespace Block
}
namespace Observer
{
- short Observer()
+ BlockState Observer()
{
return 9265;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9266: case 9267: return eBlockFace::BLOCK_FACE_XM;
case 9262: case 9263: return eBlockFace::BLOCK_FACE_XP;
@@ -8533,9 +7760,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9261: case 9263: case 9265: case 9267: case 9269: case 9271: return false;
default: return true;
@@ -8547,13 +7774,13 @@ namespace Block
}
namespace OrangeBanner
{
- short OrangeBanner()
+ BlockState OrangeBanner()
{
return 7913;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7913: return 0;
case 7914: return 1;
@@ -8576,13 +7803,13 @@ namespace Block
}
namespace OrangeBed
{
- short OrangeBed()
+ BlockState OrangeBed()
{
return 1068;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1073: case 1074: case 1075: case 1076: return eBlockFace::BLOCK_FACE_XM;
case 1077: case 1078: case 1079: case 1080: return eBlockFace::BLOCK_FACE_XP;
@@ -8590,17 +7817,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1067: case 1068: case 1071: case 1072: case 1075: case 1076: case 1079: case 1080: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1066: case 1068: case 1070: case 1072: case 1074: case 1076: case 1078: case 1080: return Part::Foot;
default: return Part::Head;
@@ -8618,13 +7845,13 @@ namespace Block
}
namespace OrangeGlazedTerracotta
{
- short OrangeGlazedTerracotta()
+ BlockState OrangeGlazedTerracotta()
{
return 9378;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9380: return eBlockFace::BLOCK_FACE_XM;
case 9381: return eBlockFace::BLOCK_FACE_XP;
@@ -8635,13 +7862,13 @@ namespace Block
}
namespace OrangeShulkerBox
{
- short OrangeShulkerBox()
+ BlockState OrangeShulkerBox()
{
return 9288;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9287: return eBlockFace::BLOCK_FACE_XM;
case 9285: return eBlockFace::BLOCK_FACE_XP;
@@ -8657,37 +7884,37 @@ namespace Block
}
namespace OrangeStainedGlassPane
{
- short OrangeStainedGlassPane()
+ BlockState OrangeStainedGlassPane()
{
return 6926;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6913: case 6914: case 6917: case 6918: case 6921: case 6922: case 6925: case 6926: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6905: case 6906: case 6909: case 6910: case 6921: case 6922: case 6925: case 6926: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6901: case 6902: case 6909: case 6910: case 6917: case 6918: case 6925: case 6926: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6898: case 6902: case 6906: case 6910: case 6914: case 6918: case 6922: case 6926: return false;
default: return true;
@@ -8702,13 +7929,13 @@ namespace Block
}
namespace OrangeWallBanner
{
- short OrangeWallBanner()
+ BlockState OrangeWallBanner()
{
return 8157;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8159: return eBlockFace::BLOCK_FACE_XM;
case 8160: return eBlockFace::BLOCK_FACE_XP;
@@ -8728,13 +7955,13 @@ namespace Block
}
namespace Peony
{
- short Peony()
+ BlockState Peony()
{
return 7892;
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7892: return Half::Lower;
default: return Half::Upper;
@@ -8743,13 +7970,13 @@ namespace Block
}
namespace PetrifiedOakSlab
{
- short PetrifiedOakSlab()
+ BlockState PetrifiedOakSlab()
{
return 8363;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8363: return Type::Bottom;
case 8365: return Type::Double;
@@ -8759,13 +7986,13 @@ namespace Block
}
namespace PinkBanner
{
- short PinkBanner()
+ BlockState PinkBanner()
{
return 7993;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7993: return 0;
case 7994: return 1;
@@ -8788,13 +8015,13 @@ namespace Block
}
namespace PinkBed
{
- short PinkBed()
+ BlockState PinkBed()
{
return 1148;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1153: case 1154: case 1155: case 1156: return eBlockFace::BLOCK_FACE_XM;
case 1157: case 1158: case 1159: case 1160: return eBlockFace::BLOCK_FACE_XP;
@@ -8802,17 +8029,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1147: case 1148: case 1151: case 1152: case 1155: case 1156: case 1159: case 1160: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1146: case 1148: case 1150: case 1152: case 1154: case 1156: case 1158: case 1160: return Part::Foot;
default: return Part::Head;
@@ -8830,13 +8057,13 @@ namespace Block
}
namespace PinkGlazedTerracotta
{
- short PinkGlazedTerracotta()
+ BlockState PinkGlazedTerracotta()
{
return 9398;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9400: return eBlockFace::BLOCK_FACE_XM;
case 9401: return eBlockFace::BLOCK_FACE_XP;
@@ -8847,13 +8074,13 @@ namespace Block
}
namespace PinkShulkerBox
{
- short PinkShulkerBox()
+ BlockState PinkShulkerBox()
{
return 9318;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9317: return eBlockFace::BLOCK_FACE_XM;
case 9315: return eBlockFace::BLOCK_FACE_XP;
@@ -8869,37 +8096,37 @@ namespace Block
}
namespace PinkStainedGlassPane
{
- short PinkStainedGlassPane()
+ BlockState PinkStainedGlassPane()
{
return 7086;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7073: case 7074: case 7077: case 7078: case 7081: case 7082: case 7085: case 7086: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7065: case 7066: case 7069: case 7070: case 7081: case 7082: case 7085: case 7086: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7061: case 7062: case 7069: case 7070: case 7077: case 7078: case 7085: case 7086: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7058: case 7062: case 7066: case 7070: case 7074: case 7078: case 7082: case 7086: return false;
default: return true;
@@ -8914,13 +8141,13 @@ namespace Block
}
namespace PinkWallBanner
{
- short PinkWallBanner()
+ BlockState PinkWallBanner()
{
return 8177;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8179: return eBlockFace::BLOCK_FACE_XM;
case 8180: return eBlockFace::BLOCK_FACE_XP;
@@ -8934,21 +8161,21 @@ namespace Block
}
namespace Piston
{
- short Piston()
+ BlockState Piston()
{
return 1354;
}
- bool Extended(short ID)
+ bool Extended(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1354: case 1355: case 1356: case 1357: case 1358: case 1359: return false;
default: return true;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1351: case 1357: return eBlockFace::BLOCK_FACE_XM;
case 1349: case 1355: return eBlockFace::BLOCK_FACE_XP;
@@ -8961,13 +8188,13 @@ namespace Block
}
namespace PistonHead
{
- short PistonHead()
+ BlockState PistonHead()
{
return 1362;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1372: case 1373: case 1374: case 1375: return eBlockFace::BLOCK_FACE_XM;
case 1364: case 1365: case 1366: case 1367: return eBlockFace::BLOCK_FACE_XP;
@@ -8977,17 +8204,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Short(short ID)
+ bool Short(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1362: case 1363: case 1366: case 1367: case 1370: case 1371: case 1374: case 1375: case 1378: case 1379: case 1382: case 1383: return false;
default: return true;
}
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1360: case 1362: case 1364: case 1366: case 1368: case 1370: case 1372: case 1374: case 1376: case 1378: case 1380: case 1382: return Type::Normal;
default: return Type::Sticky;
@@ -8996,13 +8223,13 @@ namespace Block
}
namespace PlayerHead
{
- short PlayerHead()
+ BlockState PlayerHead()
{
return 6550;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6550: return 0;
case 6551: return 1;
@@ -9025,13 +8252,13 @@ namespace Block
}
namespace PlayerWallHead
{
- short PlayerWallHead()
+ BlockState PlayerWallHead()
{
return 6566;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6568: return eBlockFace::BLOCK_FACE_XM;
case 6569: return eBlockFace::BLOCK_FACE_XP;
@@ -9042,13 +8269,13 @@ namespace Block
}
namespace Podzol
{
- short Podzol()
+ BlockState Podzol()
{
return 13;
}
- bool Snowy(short ID)
+ bool Snowy(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13: return false;
default: return true;
@@ -9060,13 +8287,13 @@ namespace Block
}
namespace PolishedAndesiteSlab
{
- short PolishedAndesiteSlab()
+ BlockState PolishedAndesiteSlab()
{
return 10858;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10858: return Type::Bottom;
case 10860: return Type::Double;
@@ -9076,13 +8303,13 @@ namespace Block
}
namespace PolishedAndesiteStairs
{
- short PolishedAndesiteStairs()
+ BlockState PolishedAndesiteStairs()
{
return 10640;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10670: case 10672: case 10674: case 10676: case 10678: case 10680: case 10682: case 10684: case 10686: case 10688: return eBlockFace::BLOCK_FACE_XM;
case 10690: case 10692: case 10694: case 10696: case 10698: case 10700: case 10702: case 10704: case 10706: case 10708: return eBlockFace::BLOCK_FACE_XP;
@@ -9090,17 +8317,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10640: case 10642: case 10644: case 10646: case 10648: case 10660: case 10662: case 10664: case 10666: case 10668: case 10680: case 10682: case 10684: case 10686: case 10688: case 10700: case 10702: case 10704: case 10706: case 10708: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10632: case 10642: case 10652: case 10662: case 10672: case 10682: case 10692: case 10702: return Shape::InnerLeft;
case 10634: case 10644: case 10654: case 10664: case 10674: case 10684: case 10694: case 10704: return Shape::InnerRight;
@@ -9112,13 +8339,13 @@ namespace Block
}
namespace PolishedBasalt
{
- short PolishedBasalt()
+ BlockState PolishedBasalt()
{
return 4006;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4005: return Axis::X;
case 4006: return Axis::Y;
@@ -9131,13 +8358,13 @@ namespace Block
}
namespace PolishedBlackstoneBrickSlab
{
- short PolishedBlackstoneBrickSlab()
+ BlockState PolishedBlackstoneBrickSlab()
{
return 16257;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16257: return Type::Bottom;
case 16259: return Type::Double;
@@ -9147,13 +8374,13 @@ namespace Block
}
namespace PolishedBlackstoneBrickStairs
{
- short PolishedBlackstoneBrickStairs()
+ BlockState PolishedBlackstoneBrickStairs()
{
return 16271;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16301: case 16303: case 16305: case 16307: case 16309: case 16311: case 16313: case 16315: case 16317: case 16319: return eBlockFace::BLOCK_FACE_XM;
case 16321: case 16323: case 16325: case 16327: case 16329: case 16331: case 16333: case 16335: case 16337: case 16339: return eBlockFace::BLOCK_FACE_XP;
@@ -9161,17 +8388,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16271: case 16273: case 16275: case 16277: case 16279: case 16291: case 16293: case 16295: case 16297: case 16299: case 16311: case 16313: case 16315: case 16317: case 16319: case 16331: case 16333: case 16335: case 16337: case 16339: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16263: case 16273: case 16283: case 16293: case 16303: case 16313: case 16323: case 16333: return Shape::InnerLeft;
case 16265: case 16275: case 16285: case 16295: case 16305: case 16315: case 16325: case 16335: return Shape::InnerRight;
@@ -9183,48 +8410,48 @@ namespace Block
}
namespace PolishedBlackstoneBrickWall
{
- short PolishedBlackstoneBrickWall()
+ BlockState PolishedBlackstoneBrickWall()
{
return 16343;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16451: case 16452: case 16453: case 16457: case 16458: case 16459: case 16463: case 16464: case 16465: case 16469: case 16470: case 16471: case 16475: case 16476: case 16477: case 16481: case 16482: case 16483: case 16487: case 16488: case 16489: case 16493: case 16494: case 16495: case 16499: case 16500: case 16501: case 16505: case 16506: case 16507: case 16511: case 16512: case 16513: case 16517: case 16518: case 16519: case 16523: case 16524: case 16525: case 16529: case 16530: case 16531: case 16535: case 16536: case 16537: case 16541: case 16542: case 16543: case 16547: case 16548: case 16549: case 16553: case 16554: case 16555: return East::Low;
case 16343: case 16344: case 16345: case 16349: case 16350: case 16351: case 16355: case 16356: case 16357: case 16361: case 16362: case 16363: case 16367: case 16368: case 16369: case 16373: case 16374: case 16375: case 16379: case 16380: case 16381: case 16385: case 16386: case 16387: case 16391: case 16392: case 16393: case 16397: case 16398: case 16399: case 16403: case 16404: case 16405: case 16409: case 16410: case 16411: case 16415: case 16416: case 16417: case 16421: case 16422: case 16423: case 16427: case 16428: case 16429: case 16433: case 16434: case 16435: case 16439: case 16440: case 16441: case 16445: case 16446: case 16447: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16379: case 16380: case 16381: case 16385: case 16386: case 16387: case 16391: case 16392: case 16393: case 16397: case 16398: case 16399: case 16403: case 16404: case 16405: case 16409: case 16410: case 16411: case 16487: case 16488: case 16489: case 16493: case 16494: case 16495: case 16499: case 16500: case 16501: case 16505: case 16506: case 16507: case 16511: case 16512: case 16513: case 16517: case 16518: case 16519: case 16595: case 16596: case 16597: case 16601: case 16602: case 16603: case 16607: case 16608: case 16609: case 16613: case 16614: case 16615: case 16619: case 16620: case 16621: case 16625: case 16626: case 16627: return North::Low;
case 16343: case 16344: case 16345: case 16349: case 16350: case 16351: case 16355: case 16356: case 16357: case 16361: case 16362: case 16363: case 16367: case 16368: case 16369: case 16373: case 16374: case 16375: case 16451: case 16452: case 16453: case 16457: case 16458: case 16459: case 16463: case 16464: case 16465: case 16469: case 16470: case 16471: case 16475: case 16476: case 16477: case 16481: case 16482: case 16483: case 16559: case 16560: case 16561: case 16565: case 16566: case 16567: case 16571: case 16572: case 16573: case 16577: case 16578: case 16579: case 16583: case 16584: case 16585: case 16589: case 16590: case 16591: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16355: case 16356: case 16357: case 16361: case 16362: case 16363: case 16391: case 16392: case 16393: case 16397: case 16398: case 16399: case 16427: case 16428: case 16429: case 16433: case 16434: case 16435: case 16463: case 16464: case 16465: case 16469: case 16470: case 16471: case 16499: case 16500: case 16501: case 16505: case 16506: case 16507: case 16535: case 16536: case 16537: case 16541: case 16542: case 16543: case 16571: case 16572: case 16573: case 16577: case 16578: case 16579: case 16607: case 16608: case 16609: case 16613: case 16614: case 16615: case 16643: case 16644: case 16645: case 16649: case 16650: case 16651: return South::Low;
case 16343: case 16344: case 16345: case 16349: case 16350: case 16351: case 16379: case 16380: case 16381: case 16385: case 16386: case 16387: case 16415: case 16416: case 16417: case 16421: case 16422: case 16423: case 16451: case 16452: case 16453: case 16457: case 16458: case 16459: case 16487: case 16488: case 16489: case 16493: case 16494: case 16495: case 16523: case 16524: case 16525: case 16529: case 16530: case 16531: case 16559: case 16560: case 16561: case 16565: case 16566: case 16567: case 16595: case 16596: case 16597: case 16601: case 16602: case 16603: case 16631: case 16632: case 16633: case 16637: case 16638: case 16639: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16349: case 16350: case 16351: case 16361: case 16362: case 16363: case 16373: case 16374: case 16375: case 16385: case 16386: case 16387: case 16397: case 16398: case 16399: case 16409: case 16410: case 16411: case 16421: case 16422: case 16423: case 16433: case 16434: case 16435: case 16445: case 16446: case 16447: case 16457: case 16458: case 16459: case 16469: case 16470: case 16471: case 16481: case 16482: case 16483: case 16493: case 16494: case 16495: case 16505: case 16506: case 16507: case 16517: case 16518: case 16519: case 16529: case 16530: case 16531: case 16541: case 16542: case 16543: case 16553: case 16554: case 16555: case 16565: case 16566: case 16567: case 16577: case 16578: case 16579: case 16589: case 16590: case 16591: case 16601: case 16602: case 16603: case 16613: case 16614: case 16615: case 16625: case 16626: case 16627: case 16637: case 16638: case 16639: case 16649: case 16650: case 16651: case 16661: case 16662: case 16663: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16344: case 16350: case 16356: case 16362: case 16368: case 16374: case 16380: case 16386: case 16392: case 16398: case 16404: case 16410: case 16416: case 16422: case 16428: case 16434: case 16440: case 16446: case 16452: case 16458: case 16464: case 16470: case 16476: case 16482: case 16488: case 16494: case 16500: case 16506: case 16512: case 16518: case 16524: case 16530: case 16536: case 16542: case 16548: case 16554: case 16560: case 16566: case 16572: case 16578: case 16584: case 16590: case 16596: case 16602: case 16608: case 16614: case 16620: case 16626: case 16632: case 16638: case 16644: case 16650: case 16656: case 16662: return West::Low;
case 16343: case 16349: case 16355: case 16361: case 16367: case 16373: case 16379: case 16385: case 16391: case 16397: case 16403: case 16409: case 16415: case 16421: case 16427: case 16433: case 16439: case 16445: case 16451: case 16457: case 16463: case 16469: case 16475: case 16481: case 16487: case 16493: case 16499: case 16505: case 16511: case 16517: case 16523: case 16529: case 16535: case 16541: case 16547: case 16553: case 16559: case 16565: case 16571: case 16577: case 16583: case 16589: case 16595: case 16601: case 16607: case 16613: case 16619: case 16625: case 16631: case 16637: case 16643: case 16649: case 16655: case 16661: return West::None;
@@ -9237,22 +8464,22 @@ namespace Block
}
namespace PolishedBlackstoneButton
{
- short PolishedBlackstoneButton()
+ BlockState PolishedBlackstoneButton()
{
return 16762;
}
- enum Face Face(short ID)
+ enum Face Face(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16769: case 16770: case 16771: case 16772: case 16773: case 16774: case 16775: case 16776: return Face::Ceiling;
case 16753: case 16754: case 16755: case 16756: case 16757: case 16758: case 16759: case 16760: return Face::Floor;
default: return Face::Wall;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16757: case 16758: case 16765: case 16766: case 16773: case 16774: return eBlockFace::BLOCK_FACE_XM;
case 16759: case 16760: case 16767: case 16768: case 16775: case 16776: return eBlockFace::BLOCK_FACE_XP;
@@ -9260,9 +8487,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16754: case 16756: case 16758: case 16760: case 16762: case 16764: case 16766: case 16768: case 16770: case 16772: case 16774: case 16776: return false;
default: return true;
@@ -9271,13 +8498,13 @@ namespace Block
}
namespace PolishedBlackstonePressurePlate
{
- short PolishedBlackstonePressurePlate()
+ BlockState PolishedBlackstonePressurePlate()
{
return 16752;
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16752: return false;
default: return true;
@@ -9286,13 +8513,13 @@ namespace Block
}
namespace PolishedBlackstoneSlab
{
- short PolishedBlackstoneSlab()
+ BlockState PolishedBlackstoneSlab()
{
return 16748;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16748: return Type::Bottom;
case 16750: return Type::Double;
@@ -9302,13 +8529,13 @@ namespace Block
}
namespace PolishedBlackstoneStairs
{
- short PolishedBlackstoneStairs()
+ BlockState PolishedBlackstoneStairs()
{
return 16676;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16706: case 16708: case 16710: case 16712: case 16714: case 16716: case 16718: case 16720: case 16722: case 16724: return eBlockFace::BLOCK_FACE_XM;
case 16726: case 16728: case 16730: case 16732: case 16734: case 16736: case 16738: case 16740: case 16742: case 16744: return eBlockFace::BLOCK_FACE_XP;
@@ -9316,17 +8543,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16676: case 16678: case 16680: case 16682: case 16684: case 16696: case 16698: case 16700: case 16702: case 16704: case 16716: case 16718: case 16720: case 16722: case 16724: case 16736: case 16738: case 16740: case 16742: case 16744: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16668: case 16678: case 16688: case 16698: case 16708: case 16718: case 16728: case 16738: return Shape::InnerLeft;
case 16670: case 16680: case 16690: case 16700: case 16710: case 16720: case 16730: case 16740: return Shape::InnerRight;
@@ -9338,48 +8565,48 @@ namespace Block
}
namespace PolishedBlackstoneWall
{
- short PolishedBlackstoneWall()
+ BlockState PolishedBlackstoneWall()
{
return 16780;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16888: case 16889: case 16890: case 16894: case 16895: case 16896: case 16900: case 16901: case 16902: case 16906: case 16907: case 16908: case 16912: case 16913: case 16914: case 16918: case 16919: case 16920: case 16924: case 16925: case 16926: case 16930: case 16931: case 16932: case 16936: case 16937: case 16938: case 16942: case 16943: case 16944: case 16948: case 16949: case 16950: case 16954: case 16955: case 16956: case 16960: case 16961: case 16962: case 16966: case 16967: case 16968: case 16972: case 16973: case 16974: case 16978: case 16979: case 16980: case 16984: case 16985: case 16986: case 16990: case 16991: case 16992: return East::Low;
case 16780: case 16781: case 16782: case 16786: case 16787: case 16788: case 16792: case 16793: case 16794: case 16798: case 16799: case 16800: case 16804: case 16805: case 16806: case 16810: case 16811: case 16812: case 16816: case 16817: case 16818: case 16822: case 16823: case 16824: case 16828: case 16829: case 16830: case 16834: case 16835: case 16836: case 16840: case 16841: case 16842: case 16846: case 16847: case 16848: case 16852: case 16853: case 16854: case 16858: case 16859: case 16860: case 16864: case 16865: case 16866: case 16870: case 16871: case 16872: case 16876: case 16877: case 16878: case 16882: case 16883: case 16884: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16816: case 16817: case 16818: case 16822: case 16823: case 16824: case 16828: case 16829: case 16830: case 16834: case 16835: case 16836: case 16840: case 16841: case 16842: case 16846: case 16847: case 16848: case 16924: case 16925: case 16926: case 16930: case 16931: case 16932: case 16936: case 16937: case 16938: case 16942: case 16943: case 16944: case 16948: case 16949: case 16950: case 16954: case 16955: case 16956: case 17032: case 17033: case 17034: case 17038: case 17039: case 17040: case 17044: case 17045: case 17046: case 17050: case 17051: case 17052: case 17056: case 17057: case 17058: case 17062: case 17063: case 17064: return North::Low;
case 16780: case 16781: case 16782: case 16786: case 16787: case 16788: case 16792: case 16793: case 16794: case 16798: case 16799: case 16800: case 16804: case 16805: case 16806: case 16810: case 16811: case 16812: case 16888: case 16889: case 16890: case 16894: case 16895: case 16896: case 16900: case 16901: case 16902: case 16906: case 16907: case 16908: case 16912: case 16913: case 16914: case 16918: case 16919: case 16920: case 16996: case 16997: case 16998: case 17002: case 17003: case 17004: case 17008: case 17009: case 17010: case 17014: case 17015: case 17016: case 17020: case 17021: case 17022: case 17026: case 17027: case 17028: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16792: case 16793: case 16794: case 16798: case 16799: case 16800: case 16828: case 16829: case 16830: case 16834: case 16835: case 16836: case 16864: case 16865: case 16866: case 16870: case 16871: case 16872: case 16900: case 16901: case 16902: case 16906: case 16907: case 16908: case 16936: case 16937: case 16938: case 16942: case 16943: case 16944: case 16972: case 16973: case 16974: case 16978: case 16979: case 16980: case 17008: case 17009: case 17010: case 17014: case 17015: case 17016: case 17044: case 17045: case 17046: case 17050: case 17051: case 17052: case 17080: case 17081: case 17082: case 17086: case 17087: case 17088: return South::Low;
case 16780: case 16781: case 16782: case 16786: case 16787: case 16788: case 16816: case 16817: case 16818: case 16822: case 16823: case 16824: case 16852: case 16853: case 16854: case 16858: case 16859: case 16860: case 16888: case 16889: case 16890: case 16894: case 16895: case 16896: case 16924: case 16925: case 16926: case 16930: case 16931: case 16932: case 16960: case 16961: case 16962: case 16966: case 16967: case 16968: case 16996: case 16997: case 16998: case 17002: case 17003: case 17004: case 17032: case 17033: case 17034: case 17038: case 17039: case 17040: case 17068: case 17069: case 17070: case 17074: case 17075: case 17076: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16786: case 16787: case 16788: case 16798: case 16799: case 16800: case 16810: case 16811: case 16812: case 16822: case 16823: case 16824: case 16834: case 16835: case 16836: case 16846: case 16847: case 16848: case 16858: case 16859: case 16860: case 16870: case 16871: case 16872: case 16882: case 16883: case 16884: case 16894: case 16895: case 16896: case 16906: case 16907: case 16908: case 16918: case 16919: case 16920: case 16930: case 16931: case 16932: case 16942: case 16943: case 16944: case 16954: case 16955: case 16956: case 16966: case 16967: case 16968: case 16978: case 16979: case 16980: case 16990: case 16991: case 16992: case 17002: case 17003: case 17004: case 17014: case 17015: case 17016: case 17026: case 17027: case 17028: case 17038: case 17039: case 17040: case 17050: case 17051: case 17052: case 17062: case 17063: case 17064: case 17074: case 17075: case 17076: case 17086: case 17087: case 17088: case 17098: case 17099: case 17100: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 16781: case 16787: case 16793: case 16799: case 16805: case 16811: case 16817: case 16823: case 16829: case 16835: case 16841: case 16847: case 16853: case 16859: case 16865: case 16871: case 16877: case 16883: case 16889: case 16895: case 16901: case 16907: case 16913: case 16919: case 16925: case 16931: case 16937: case 16943: case 16949: case 16955: case 16961: case 16967: case 16973: case 16979: case 16985: case 16991: case 16997: case 17003: case 17009: case 17015: case 17021: case 17027: case 17033: case 17039: case 17045: case 17051: case 17057: case 17063: case 17069: case 17075: case 17081: case 17087: case 17093: case 17099: return West::Low;
case 16780: case 16786: case 16792: case 16798: case 16804: case 16810: case 16816: case 16822: case 16828: case 16834: case 16840: case 16846: case 16852: case 16858: case 16864: case 16870: case 16876: case 16882: case 16888: case 16894: case 16900: case 16906: case 16912: case 16918: case 16924: case 16930: case 16936: case 16942: case 16948: case 16954: case 16960: case 16966: case 16972: case 16978: case 16984: case 16990: case 16996: case 17002: case 17008: case 17014: case 17020: case 17026: case 17032: case 17038: case 17044: case 17050: case 17056: case 17062: case 17068: case 17074: case 17080: case 17086: case 17092: case 17098: return West::None;
@@ -9392,13 +8619,13 @@ namespace Block
}
namespace PolishedDioriteSlab
{
- short PolishedDioriteSlab()
+ BlockState PolishedDioriteSlab()
{
return 10810;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10810: return Type::Bottom;
case 10812: return Type::Double;
@@ -9408,13 +8635,13 @@ namespace Block
}
namespace PolishedDioriteStairs
{
- short PolishedDioriteStairs()
+ BlockState PolishedDioriteStairs()
{
return 9920;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9950: case 9952: case 9954: case 9956: case 9958: case 9960: case 9962: case 9964: case 9966: case 9968: return eBlockFace::BLOCK_FACE_XM;
case 9970: case 9972: case 9974: case 9976: case 9978: case 9980: case 9982: case 9984: case 9986: case 9988: return eBlockFace::BLOCK_FACE_XP;
@@ -9422,17 +8649,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9920: case 9922: case 9924: case 9926: case 9928: case 9940: case 9942: case 9944: case 9946: case 9948: case 9960: case 9962: case 9964: case 9966: case 9968: case 9980: case 9982: case 9984: case 9986: case 9988: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9912: case 9922: case 9932: case 9942: case 9952: case 9962: case 9972: case 9982: return Shape::InnerLeft;
case 9914: case 9924: case 9934: case 9944: case 9954: case 9964: case 9974: case 9984: return Shape::InnerRight;
@@ -9447,13 +8674,13 @@ namespace Block
}
namespace PolishedGraniteSlab
{
- short PolishedGraniteSlab()
+ BlockState PolishedGraniteSlab()
{
return 10792;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10792: return Type::Bottom;
case 10794: return Type::Double;
@@ -9463,13 +8690,13 @@ namespace Block
}
namespace PolishedGraniteStairs
{
- short PolishedGraniteStairs()
+ BlockState PolishedGraniteStairs()
{
return 9680;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9710: case 9712: case 9714: case 9716: case 9718: case 9720: case 9722: case 9724: case 9726: case 9728: return eBlockFace::BLOCK_FACE_XM;
case 9730: case 9732: case 9734: case 9736: case 9738: case 9740: case 9742: case 9744: case 9746: case 9748: return eBlockFace::BLOCK_FACE_XP;
@@ -9477,17 +8704,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9680: case 9682: case 9684: case 9686: case 9688: case 9700: case 9702: case 9704: case 9706: case 9708: case 9720: case 9722: case 9724: case 9726: case 9728: case 9740: case 9742: case 9744: case 9746: case 9748: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9672: case 9682: case 9692: case 9702: case 9712: case 9722: case 9732: case 9742: return Shape::InnerLeft;
case 9674: case 9684: case 9694: case 9704: case 9714: case 9724: case 9734: case 9744: return Shape::InnerRight;
@@ -9502,13 +8729,13 @@ namespace Block
}
namespace Potatoes
{
- short Potatoes()
+ BlockState Potatoes()
{
return 6338;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6338: return 0;
case 6339: return 1;
@@ -9610,21 +8837,21 @@ namespace Block
}
namespace PoweredRail
{
- short PoweredRail()
+ BlockState PoweredRail()
{
return 1311;
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1311: case 1312: case 1313: case 1314: case 1315: case 1316: return false;
default: return true;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1307: case 1313: return Shape::AscendingEast;
case 1309: case 1315: return Shape::AscendingNorth;
@@ -9640,13 +8867,13 @@ namespace Block
}
namespace PrismarineBrickSlab
{
- short PrismarineBrickSlab()
+ BlockState PrismarineBrickSlab()
{
return 7853;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7853: return Type::Bottom;
case 7855: return Type::Double;
@@ -9656,13 +8883,13 @@ namespace Block
}
namespace PrismarineBrickStairs
{
- short PrismarineBrickStairs()
+ BlockState PrismarineBrickStairs()
{
return 7695;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7725: case 7727: case 7729: case 7731: case 7733: case 7735: case 7737: case 7739: case 7741: case 7743: return eBlockFace::BLOCK_FACE_XM;
case 7745: case 7747: case 7749: case 7751: case 7753: case 7755: case 7757: case 7759: case 7761: case 7763: return eBlockFace::BLOCK_FACE_XP;
@@ -9670,17 +8897,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7695: case 7697: case 7699: case 7701: case 7703: case 7715: case 7717: case 7719: case 7721: case 7723: case 7735: case 7737: case 7739: case 7741: case 7743: case 7755: case 7757: case 7759: case 7761: case 7763: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7687: case 7697: case 7707: case 7717: case 7727: case 7737: case 7747: case 7757: return Shape::InnerLeft;
case 7689: case 7699: case 7709: case 7719: case 7729: case 7739: case 7749: case 7759: return Shape::InnerRight;
@@ -9695,13 +8922,13 @@ namespace Block
}
namespace PrismarineSlab
{
- short PrismarineSlab()
+ BlockState PrismarineSlab()
{
return 7847;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7847: return Type::Bottom;
case 7849: return Type::Double;
@@ -9711,13 +8938,13 @@ namespace Block
}
namespace PrismarineStairs
{
- short PrismarineStairs()
+ BlockState PrismarineStairs()
{
return 7615;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7645: case 7647: case 7649: case 7651: case 7653: case 7655: case 7657: case 7659: case 7661: case 7663: return eBlockFace::BLOCK_FACE_XM;
case 7665: case 7667: case 7669: case 7671: case 7673: case 7675: case 7677: case 7679: case 7681: case 7683: return eBlockFace::BLOCK_FACE_XP;
@@ -9725,17 +8952,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7615: case 7617: case 7619: case 7621: case 7623: case 7635: case 7637: case 7639: case 7641: case 7643: case 7655: case 7657: case 7659: case 7661: case 7663: case 7675: case 7677: case 7679: case 7681: case 7683: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7607: case 7617: case 7627: case 7637: case 7647: case 7657: case 7667: case 7677: return Shape::InnerLeft;
case 7609: case 7619: case 7629: case 7639: case 7649: case 7659: case 7669: case 7679: return Shape::InnerRight;
@@ -9747,48 +8974,48 @@ namespace Block
}
namespace PrismarineWall
{
- short PrismarineWall()
+ BlockState PrismarineWall()
{
return 11194;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11302: case 11303: case 11304: case 11308: case 11309: case 11310: case 11314: case 11315: case 11316: case 11320: case 11321: case 11322: case 11326: case 11327: case 11328: case 11332: case 11333: case 11334: case 11338: case 11339: case 11340: case 11344: case 11345: case 11346: case 11350: case 11351: case 11352: case 11356: case 11357: case 11358: case 11362: case 11363: case 11364: case 11368: case 11369: case 11370: case 11374: case 11375: case 11376: case 11380: case 11381: case 11382: case 11386: case 11387: case 11388: case 11392: case 11393: case 11394: case 11398: case 11399: case 11400: case 11404: case 11405: case 11406: return East::Low;
case 11194: case 11195: case 11196: case 11200: case 11201: case 11202: case 11206: case 11207: case 11208: case 11212: case 11213: case 11214: case 11218: case 11219: case 11220: case 11224: case 11225: case 11226: case 11230: case 11231: case 11232: case 11236: case 11237: case 11238: case 11242: case 11243: case 11244: case 11248: case 11249: case 11250: case 11254: case 11255: case 11256: case 11260: case 11261: case 11262: case 11266: case 11267: case 11268: case 11272: case 11273: case 11274: case 11278: case 11279: case 11280: case 11284: case 11285: case 11286: case 11290: case 11291: case 11292: case 11296: case 11297: case 11298: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11230: case 11231: case 11232: case 11236: case 11237: case 11238: case 11242: case 11243: case 11244: case 11248: case 11249: case 11250: case 11254: case 11255: case 11256: case 11260: case 11261: case 11262: case 11338: case 11339: case 11340: case 11344: case 11345: case 11346: case 11350: case 11351: case 11352: case 11356: case 11357: case 11358: case 11362: case 11363: case 11364: case 11368: case 11369: case 11370: case 11446: case 11447: case 11448: case 11452: case 11453: case 11454: case 11458: case 11459: case 11460: case 11464: case 11465: case 11466: case 11470: case 11471: case 11472: case 11476: case 11477: case 11478: return North::Low;
case 11194: case 11195: case 11196: case 11200: case 11201: case 11202: case 11206: case 11207: case 11208: case 11212: case 11213: case 11214: case 11218: case 11219: case 11220: case 11224: case 11225: case 11226: case 11302: case 11303: case 11304: case 11308: case 11309: case 11310: case 11314: case 11315: case 11316: case 11320: case 11321: case 11322: case 11326: case 11327: case 11328: case 11332: case 11333: case 11334: case 11410: case 11411: case 11412: case 11416: case 11417: case 11418: case 11422: case 11423: case 11424: case 11428: case 11429: case 11430: case 11434: case 11435: case 11436: case 11440: case 11441: case 11442: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11206: case 11207: case 11208: case 11212: case 11213: case 11214: case 11242: case 11243: case 11244: case 11248: case 11249: case 11250: case 11278: case 11279: case 11280: case 11284: case 11285: case 11286: case 11314: case 11315: case 11316: case 11320: case 11321: case 11322: case 11350: case 11351: case 11352: case 11356: case 11357: case 11358: case 11386: case 11387: case 11388: case 11392: case 11393: case 11394: case 11422: case 11423: case 11424: case 11428: case 11429: case 11430: case 11458: case 11459: case 11460: case 11464: case 11465: case 11466: case 11494: case 11495: case 11496: case 11500: case 11501: case 11502: return South::Low;
case 11194: case 11195: case 11196: case 11200: case 11201: case 11202: case 11230: case 11231: case 11232: case 11236: case 11237: case 11238: case 11266: case 11267: case 11268: case 11272: case 11273: case 11274: case 11302: case 11303: case 11304: case 11308: case 11309: case 11310: case 11338: case 11339: case 11340: case 11344: case 11345: case 11346: case 11374: case 11375: case 11376: case 11380: case 11381: case 11382: case 11410: case 11411: case 11412: case 11416: case 11417: case 11418: case 11446: case 11447: case 11448: case 11452: case 11453: case 11454: case 11482: case 11483: case 11484: case 11488: case 11489: case 11490: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11200: case 11201: case 11202: case 11212: case 11213: case 11214: case 11224: case 11225: case 11226: case 11236: case 11237: case 11238: case 11248: case 11249: case 11250: case 11260: case 11261: case 11262: case 11272: case 11273: case 11274: case 11284: case 11285: case 11286: case 11296: case 11297: case 11298: case 11308: case 11309: case 11310: case 11320: case 11321: case 11322: case 11332: case 11333: case 11334: case 11344: case 11345: case 11346: case 11356: case 11357: case 11358: case 11368: case 11369: case 11370: case 11380: case 11381: case 11382: case 11392: case 11393: case 11394: case 11404: case 11405: case 11406: case 11416: case 11417: case 11418: case 11428: case 11429: case 11430: case 11440: case 11441: case 11442: case 11452: case 11453: case 11454: case 11464: case 11465: case 11466: case 11476: case 11477: case 11478: case 11488: case 11489: case 11490: case 11500: case 11501: case 11502: case 11512: case 11513: case 11514: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11195: case 11201: case 11207: case 11213: case 11219: case 11225: case 11231: case 11237: case 11243: case 11249: case 11255: case 11261: case 11267: case 11273: case 11279: case 11285: case 11291: case 11297: case 11303: case 11309: case 11315: case 11321: case 11327: case 11333: case 11339: case 11345: case 11351: case 11357: case 11363: case 11369: case 11375: case 11381: case 11387: case 11393: case 11399: case 11405: case 11411: case 11417: case 11423: case 11429: case 11435: case 11441: case 11447: case 11453: case 11459: case 11465: case 11471: case 11477: case 11483: case 11489: case 11495: case 11501: case 11507: case 11513: return West::Low;
case 11194: case 11200: case 11206: case 11212: case 11218: case 11224: case 11230: case 11236: case 11242: case 11248: case 11254: case 11260: case 11266: case 11272: case 11278: case 11284: case 11290: case 11296: case 11302: case 11308: case 11314: case 11320: case 11326: case 11332: case 11338: case 11344: case 11350: case 11356: case 11362: case 11368: case 11374: case 11380: case 11386: case 11392: case 11398: case 11404: case 11410: case 11416: case 11422: case 11428: case 11434: case 11440: case 11446: case 11452: case 11458: case 11464: case 11470: case 11476: case 11482: case 11488: case 11494: case 11500: case 11506: case 11512: return West::None;
@@ -9801,13 +9028,13 @@ namespace Block
}
namespace PumpkinStem
{
- short PumpkinStem()
+ BlockState PumpkinStem()
{
return 4772;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4772: return 0;
case 4773: return 1;
@@ -9822,13 +9049,13 @@ namespace Block
}
namespace PurpleBanner
{
- short PurpleBanner()
+ BlockState PurpleBanner()
{
return 8057;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8057: return 0;
case 8058: return 1;
@@ -9851,13 +9078,13 @@ namespace Block
}
namespace PurpleBed
{
- short PurpleBed()
+ BlockState PurpleBed()
{
return 1212;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1217: case 1218: case 1219: case 1220: return eBlockFace::BLOCK_FACE_XM;
case 1221: case 1222: case 1223: case 1224: return eBlockFace::BLOCK_FACE_XP;
@@ -9865,17 +9092,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1211: case 1212: case 1215: case 1216: case 1219: case 1220: case 1223: case 1224: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1210: case 1212: case 1214: case 1216: case 1218: case 1220: case 1222: case 1224: return Part::Foot;
default: return Part::Head;
@@ -9893,13 +9120,13 @@ namespace Block
}
namespace PurpleGlazedTerracotta
{
- short PurpleGlazedTerracotta()
+ BlockState PurpleGlazedTerracotta()
{
return 9414;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9416: return eBlockFace::BLOCK_FACE_XM;
case 9417: return eBlockFace::BLOCK_FACE_XP;
@@ -9910,13 +9137,13 @@ namespace Block
}
namespace PurpleShulkerBox
{
- short PurpleShulkerBox()
+ BlockState PurpleShulkerBox()
{
return 9342;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9341: return eBlockFace::BLOCK_FACE_XM;
case 9339: return eBlockFace::BLOCK_FACE_XP;
@@ -9932,37 +9159,37 @@ namespace Block
}
namespace PurpleStainedGlassPane
{
- short PurpleStainedGlassPane()
+ BlockState PurpleStainedGlassPane()
{
return 7214;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7201: case 7202: case 7205: case 7206: case 7209: case 7210: case 7213: case 7214: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7193: case 7194: case 7197: case 7198: case 7209: case 7210: case 7213: case 7214: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7189: case 7190: case 7197: case 7198: case 7205: case 7206: case 7213: case 7214: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7186: case 7190: case 7194: case 7198: case 7202: case 7206: case 7210: case 7214: return false;
default: return true;
@@ -9974,13 +9201,13 @@ namespace Block
}
namespace PurpleWallBanner
{
- short PurpleWallBanner()
+ BlockState PurpleWallBanner()
{
return 8193;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8195: return eBlockFace::BLOCK_FACE_XM;
case 8196: return eBlockFace::BLOCK_FACE_XP;
@@ -9997,13 +9224,13 @@ namespace Block
}
namespace PurpurPillar
{
- short PurpurPillar()
+ BlockState PurpurPillar()
{
return 9136;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9135: return Axis::X;
case 9136: return Axis::Y;
@@ -10013,13 +9240,13 @@ namespace Block
}
namespace PurpurSlab
{
- short PurpurSlab()
+ BlockState PurpurSlab()
{
return 8411;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8411: return Type::Bottom;
case 8413: return Type::Double;
@@ -10029,13 +9256,13 @@ namespace Block
}
namespace PurpurStairs
{
- short PurpurStairs()
+ BlockState PurpurStairs()
{
return 9149;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9179: case 9181: case 9183: case 9185: case 9187: case 9189: case 9191: case 9193: case 9195: case 9197: return eBlockFace::BLOCK_FACE_XM;
case 9199: case 9201: case 9203: case 9205: case 9207: case 9209: case 9211: case 9213: case 9215: case 9217: return eBlockFace::BLOCK_FACE_XP;
@@ -10043,17 +9270,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9149: case 9151: case 9153: case 9155: case 9157: case 9169: case 9171: case 9173: case 9175: case 9177: case 9189: case 9191: case 9193: case 9195: case 9197: case 9209: case 9211: case 9213: case 9215: case 9217: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9141: case 9151: case 9161: case 9171: case 9181: case 9191: case 9201: case 9211: return Shape::InnerLeft;
case 9143: case 9153: case 9163: case 9173: case 9183: case 9193: case 9203: case 9213: return Shape::InnerRight;
@@ -10071,13 +9298,13 @@ namespace Block
}
namespace QuartzPillar
{
- short QuartzPillar()
+ BlockState QuartzPillar()
{
return 6741;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6740: return Axis::X;
case 6741: return Axis::Y;
@@ -10087,13 +9314,13 @@ namespace Block
}
namespace QuartzSlab
{
- short QuartzSlab()
+ BlockState QuartzSlab()
{
return 8393;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8393: return Type::Bottom;
case 8395: return Type::Double;
@@ -10103,13 +9330,13 @@ namespace Block
}
namespace QuartzStairs
{
- short QuartzStairs()
+ BlockState QuartzStairs()
{
return 6754;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6784: case 6786: case 6788: case 6790: case 6792: case 6794: case 6796: case 6798: case 6800: case 6802: return eBlockFace::BLOCK_FACE_XM;
case 6804: case 6806: case 6808: case 6810: case 6812: case 6814: case 6816: case 6818: case 6820: case 6822: return eBlockFace::BLOCK_FACE_XP;
@@ -10117,17 +9344,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6754: case 6756: case 6758: case 6760: case 6762: case 6774: case 6776: case 6778: case 6780: case 6782: case 6794: case 6796: case 6798: case 6800: case 6802: case 6814: case 6816: case 6818: case 6820: case 6822: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6746: case 6756: case 6766: case 6776: case 6786: case 6796: case 6806: case 6816: return Shape::InnerLeft;
case 6748: case 6758: case 6768: case 6778: case 6788: case 6798: case 6808: case 6818: return Shape::InnerRight;
@@ -10139,13 +9366,13 @@ namespace Block
}
namespace Rail
{
- short Rail()
+ BlockState Rail()
{
return 3645;
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3647: return Shape::AscendingEast;
case 3649: return Shape::AscendingNorth;
@@ -10162,13 +9389,13 @@ namespace Block
}
namespace RedBanner
{
- short RedBanner()
+ BlockState RedBanner()
{
return 8121;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8121: return 0;
case 8122: return 1;
@@ -10191,13 +9418,13 @@ namespace Block
}
namespace RedBed
{
- short RedBed()
+ BlockState RedBed()
{
return 1276;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1281: case 1282: case 1283: case 1284: return eBlockFace::BLOCK_FACE_XM;
case 1285: case 1286: case 1287: case 1288: return eBlockFace::BLOCK_FACE_XP;
@@ -10205,17 +9432,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1275: case 1276: case 1279: case 1280: case 1283: case 1284: case 1287: case 1288: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1274: case 1276: case 1278: case 1280: case 1282: case 1284: case 1286: case 1288: return Part::Foot;
default: return Part::Head;
@@ -10233,13 +9460,13 @@ namespace Block
}
namespace RedGlazedTerracotta
{
- short RedGlazedTerracotta()
+ BlockState RedGlazedTerracotta()
{
return 9430;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9432: return eBlockFace::BLOCK_FACE_XM;
case 9433: return eBlockFace::BLOCK_FACE_XP;
@@ -10253,53 +9480,53 @@ namespace Block
}
namespace RedMushroomBlock
{
- short RedMushroomBlock()
+ BlockState RedMushroomBlock()
{
return 4569;
}
- bool Down(short ID)
+ bool Down(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4601: case 4602: case 4603: case 4604: case 4605: case 4606: case 4607: case 4608: case 4609: case 4610: case 4611: case 4612: case 4613: case 4614: case 4615: case 4616: case 4617: case 4618: case 4619: case 4620: case 4621: case 4622: case 4623: case 4624: case 4625: case 4626: case 4627: case 4628: case 4629: case 4630: case 4631: case 4632: return false;
default: return true;
}
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4585: case 4586: case 4587: case 4588: case 4589: case 4590: case 4591: case 4592: case 4593: case 4594: case 4595: case 4596: case 4597: case 4598: case 4599: case 4600: case 4617: case 4618: case 4619: case 4620: case 4621: case 4622: case 4623: case 4624: case 4625: case 4626: case 4627: case 4628: case 4629: case 4630: case 4631: case 4632: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4577: case 4578: case 4579: case 4580: case 4581: case 4582: case 4583: case 4584: case 4593: case 4594: case 4595: case 4596: case 4597: case 4598: case 4599: case 4600: case 4609: case 4610: case 4611: case 4612: case 4613: case 4614: case 4615: case 4616: case 4625: case 4626: case 4627: case 4628: case 4629: case 4630: case 4631: case 4632: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4573: case 4574: case 4575: case 4576: case 4581: case 4582: case 4583: case 4584: case 4589: case 4590: case 4591: case 4592: case 4597: case 4598: case 4599: case 4600: case 4605: case 4606: case 4607: case 4608: case 4613: case 4614: case 4615: case 4616: case 4621: case 4622: case 4623: case 4624: case 4629: case 4630: case 4631: case 4632: return false;
default: return true;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4571: case 4572: case 4575: case 4576: case 4579: case 4580: case 4583: case 4584: case 4587: case 4588: case 4591: case 4592: case 4595: case 4596: case 4599: case 4600: case 4603: case 4604: case 4607: case 4608: case 4611: case 4612: case 4615: case 4616: case 4619: case 4620: case 4623: case 4624: case 4627: case 4628: case 4631: case 4632: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4570: case 4572: case 4574: case 4576: case 4578: case 4580: case 4582: case 4584: case 4586: case 4588: case 4590: case 4592: case 4594: case 4596: case 4598: case 4600: case 4602: case 4604: case 4606: case 4608: case 4610: case 4612: case 4614: case 4616: case 4618: case 4620: case 4622: case 4624: case 4626: case 4628: case 4630: case 4632: return false;
default: return true;
@@ -10308,13 +9535,13 @@ namespace Block
}
namespace RedNetherBrickSlab
{
- short RedNetherBrickSlab()
+ BlockState RedNetherBrickSlab()
{
return 10852;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10852: return Type::Bottom;
case 10854: return Type::Double;
@@ -10324,13 +9551,13 @@ namespace Block
}
namespace RedNetherBrickStairs
{
- short RedNetherBrickStairs()
+ BlockState RedNetherBrickStairs()
{
return 10560;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10590: case 10592: case 10594: case 10596: case 10598: case 10600: case 10602: case 10604: case 10606: case 10608: return eBlockFace::BLOCK_FACE_XM;
case 10610: case 10612: case 10614: case 10616: case 10618: case 10620: case 10622: case 10624: case 10626: case 10628: return eBlockFace::BLOCK_FACE_XP;
@@ -10338,17 +9565,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10560: case 10562: case 10564: case 10566: case 10568: case 10580: case 10582: case 10584: case 10586: case 10588: case 10600: case 10602: case 10604: case 10606: case 10608: case 10620: case 10622: case 10624: case 10626: case 10628: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10552: case 10562: case 10572: case 10582: case 10592: case 10602: case 10612: case 10622: return Shape::InnerLeft;
case 10554: case 10564: case 10574: case 10584: case 10594: case 10604: case 10614: case 10624: return Shape::InnerRight;
@@ -10360,48 +9587,48 @@ namespace Block
}
namespace RedNetherBrickWall
{
- short RedNetherBrickWall()
+ BlockState RedNetherBrickWall()
{
return 13462;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13570: case 13571: case 13572: case 13576: case 13577: case 13578: case 13582: case 13583: case 13584: case 13588: case 13589: case 13590: case 13594: case 13595: case 13596: case 13600: case 13601: case 13602: case 13606: case 13607: case 13608: case 13612: case 13613: case 13614: case 13618: case 13619: case 13620: case 13624: case 13625: case 13626: case 13630: case 13631: case 13632: case 13636: case 13637: case 13638: case 13642: case 13643: case 13644: case 13648: case 13649: case 13650: case 13654: case 13655: case 13656: case 13660: case 13661: case 13662: case 13666: case 13667: case 13668: case 13672: case 13673: case 13674: return East::Low;
case 13462: case 13463: case 13464: case 13468: case 13469: case 13470: case 13474: case 13475: case 13476: case 13480: case 13481: case 13482: case 13486: case 13487: case 13488: case 13492: case 13493: case 13494: case 13498: case 13499: case 13500: case 13504: case 13505: case 13506: case 13510: case 13511: case 13512: case 13516: case 13517: case 13518: case 13522: case 13523: case 13524: case 13528: case 13529: case 13530: case 13534: case 13535: case 13536: case 13540: case 13541: case 13542: case 13546: case 13547: case 13548: case 13552: case 13553: case 13554: case 13558: case 13559: case 13560: case 13564: case 13565: case 13566: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13498: case 13499: case 13500: case 13504: case 13505: case 13506: case 13510: case 13511: case 13512: case 13516: case 13517: case 13518: case 13522: case 13523: case 13524: case 13528: case 13529: case 13530: case 13606: case 13607: case 13608: case 13612: case 13613: case 13614: case 13618: case 13619: case 13620: case 13624: case 13625: case 13626: case 13630: case 13631: case 13632: case 13636: case 13637: case 13638: case 13714: case 13715: case 13716: case 13720: case 13721: case 13722: case 13726: case 13727: case 13728: case 13732: case 13733: case 13734: case 13738: case 13739: case 13740: case 13744: case 13745: case 13746: return North::Low;
case 13462: case 13463: case 13464: case 13468: case 13469: case 13470: case 13474: case 13475: case 13476: case 13480: case 13481: case 13482: case 13486: case 13487: case 13488: case 13492: case 13493: case 13494: case 13570: case 13571: case 13572: case 13576: case 13577: case 13578: case 13582: case 13583: case 13584: case 13588: case 13589: case 13590: case 13594: case 13595: case 13596: case 13600: case 13601: case 13602: case 13678: case 13679: case 13680: case 13684: case 13685: case 13686: case 13690: case 13691: case 13692: case 13696: case 13697: case 13698: case 13702: case 13703: case 13704: case 13708: case 13709: case 13710: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13474: case 13475: case 13476: case 13480: case 13481: case 13482: case 13510: case 13511: case 13512: case 13516: case 13517: case 13518: case 13546: case 13547: case 13548: case 13552: case 13553: case 13554: case 13582: case 13583: case 13584: case 13588: case 13589: case 13590: case 13618: case 13619: case 13620: case 13624: case 13625: case 13626: case 13654: case 13655: case 13656: case 13660: case 13661: case 13662: case 13690: case 13691: case 13692: case 13696: case 13697: case 13698: case 13726: case 13727: case 13728: case 13732: case 13733: case 13734: case 13762: case 13763: case 13764: case 13768: case 13769: case 13770: return South::Low;
case 13462: case 13463: case 13464: case 13468: case 13469: case 13470: case 13498: case 13499: case 13500: case 13504: case 13505: case 13506: case 13534: case 13535: case 13536: case 13540: case 13541: case 13542: case 13570: case 13571: case 13572: case 13576: case 13577: case 13578: case 13606: case 13607: case 13608: case 13612: case 13613: case 13614: case 13642: case 13643: case 13644: case 13648: case 13649: case 13650: case 13678: case 13679: case 13680: case 13684: case 13685: case 13686: case 13714: case 13715: case 13716: case 13720: case 13721: case 13722: case 13750: case 13751: case 13752: case 13756: case 13757: case 13758: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13468: case 13469: case 13470: case 13480: case 13481: case 13482: case 13492: case 13493: case 13494: case 13504: case 13505: case 13506: case 13516: case 13517: case 13518: case 13528: case 13529: case 13530: case 13540: case 13541: case 13542: case 13552: case 13553: case 13554: case 13564: case 13565: case 13566: case 13576: case 13577: case 13578: case 13588: case 13589: case 13590: case 13600: case 13601: case 13602: case 13612: case 13613: case 13614: case 13624: case 13625: case 13626: case 13636: case 13637: case 13638: case 13648: case 13649: case 13650: case 13660: case 13661: case 13662: case 13672: case 13673: case 13674: case 13684: case 13685: case 13686: case 13696: case 13697: case 13698: case 13708: case 13709: case 13710: case 13720: case 13721: case 13722: case 13732: case 13733: case 13734: case 13744: case 13745: case 13746: case 13756: case 13757: case 13758: case 13768: case 13769: case 13770: case 13780: case 13781: case 13782: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13463: case 13469: case 13475: case 13481: case 13487: case 13493: case 13499: case 13505: case 13511: case 13517: case 13523: case 13529: case 13535: case 13541: case 13547: case 13553: case 13559: case 13565: case 13571: case 13577: case 13583: case 13589: case 13595: case 13601: case 13607: case 13613: case 13619: case 13625: case 13631: case 13637: case 13643: case 13649: case 13655: case 13661: case 13667: case 13673: case 13679: case 13685: case 13691: case 13697: case 13703: case 13709: case 13715: case 13721: case 13727: case 13733: case 13739: case 13745: case 13751: case 13757: case 13763: case 13769: case 13775: case 13781: return West::Low;
case 13462: case 13468: case 13474: case 13480: case 13486: case 13492: case 13498: case 13504: case 13510: case 13516: case 13522: case 13528: case 13534: case 13540: case 13546: case 13552: case 13558: case 13564: case 13570: case 13576: case 13582: case 13588: case 13594: case 13600: case 13606: case 13612: case 13618: case 13624: case 13630: case 13636: case 13642: case 13648: case 13654: case 13660: case 13666: case 13672: case 13678: case 13684: case 13690: case 13696: case 13702: case 13708: case 13714: case 13720: case 13726: case 13732: case 13738: case 13744: case 13750: case 13756: case 13762: case 13768: case 13774: case 13780: return West::None;
@@ -10420,13 +9647,13 @@ namespace Block
}
namespace RedSandstoneSlab
{
- short RedSandstoneSlab()
+ BlockState RedSandstoneSlab()
{
return 8399;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8399: return Type::Bottom;
case 8401: return Type::Double;
@@ -10436,13 +9663,13 @@ namespace Block
}
namespace RedSandstoneStairs
{
- short RedSandstoneStairs()
+ BlockState RedSandstoneStairs()
{
return 8231;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8261: case 8263: case 8265: case 8267: case 8269: case 8271: case 8273: case 8275: case 8277: case 8279: return eBlockFace::BLOCK_FACE_XM;
case 8281: case 8283: case 8285: case 8287: case 8289: case 8291: case 8293: case 8295: case 8297: case 8299: return eBlockFace::BLOCK_FACE_XP;
@@ -10450,17 +9677,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8231: case 8233: case 8235: case 8237: case 8239: case 8251: case 8253: case 8255: case 8257: case 8259: case 8271: case 8273: case 8275: case 8277: case 8279: case 8291: case 8293: case 8295: case 8297: case 8299: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8223: case 8233: case 8243: case 8253: case 8263: case 8273: case 8283: case 8293: return Shape::InnerLeft;
case 8225: case 8235: case 8245: case 8255: case 8265: case 8275: case 8285: case 8295: return Shape::InnerRight;
@@ -10472,48 +9699,48 @@ namespace Block
}
namespace RedSandstoneWall
{
- short RedSandstoneWall()
+ BlockState RedSandstoneWall()
{
return 11518;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11626: case 11627: case 11628: case 11632: case 11633: case 11634: case 11638: case 11639: case 11640: case 11644: case 11645: case 11646: case 11650: case 11651: case 11652: case 11656: case 11657: case 11658: case 11662: case 11663: case 11664: case 11668: case 11669: case 11670: case 11674: case 11675: case 11676: case 11680: case 11681: case 11682: case 11686: case 11687: case 11688: case 11692: case 11693: case 11694: case 11698: case 11699: case 11700: case 11704: case 11705: case 11706: case 11710: case 11711: case 11712: case 11716: case 11717: case 11718: case 11722: case 11723: case 11724: case 11728: case 11729: case 11730: return East::Low;
case 11518: case 11519: case 11520: case 11524: case 11525: case 11526: case 11530: case 11531: case 11532: case 11536: case 11537: case 11538: case 11542: case 11543: case 11544: case 11548: case 11549: case 11550: case 11554: case 11555: case 11556: case 11560: case 11561: case 11562: case 11566: case 11567: case 11568: case 11572: case 11573: case 11574: case 11578: case 11579: case 11580: case 11584: case 11585: case 11586: case 11590: case 11591: case 11592: case 11596: case 11597: case 11598: case 11602: case 11603: case 11604: case 11608: case 11609: case 11610: case 11614: case 11615: case 11616: case 11620: case 11621: case 11622: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11554: case 11555: case 11556: case 11560: case 11561: case 11562: case 11566: case 11567: case 11568: case 11572: case 11573: case 11574: case 11578: case 11579: case 11580: case 11584: case 11585: case 11586: case 11662: case 11663: case 11664: case 11668: case 11669: case 11670: case 11674: case 11675: case 11676: case 11680: case 11681: case 11682: case 11686: case 11687: case 11688: case 11692: case 11693: case 11694: case 11770: case 11771: case 11772: case 11776: case 11777: case 11778: case 11782: case 11783: case 11784: case 11788: case 11789: case 11790: case 11794: case 11795: case 11796: case 11800: case 11801: case 11802: return North::Low;
case 11518: case 11519: case 11520: case 11524: case 11525: case 11526: case 11530: case 11531: case 11532: case 11536: case 11537: case 11538: case 11542: case 11543: case 11544: case 11548: case 11549: case 11550: case 11626: case 11627: case 11628: case 11632: case 11633: case 11634: case 11638: case 11639: case 11640: case 11644: case 11645: case 11646: case 11650: case 11651: case 11652: case 11656: case 11657: case 11658: case 11734: case 11735: case 11736: case 11740: case 11741: case 11742: case 11746: case 11747: case 11748: case 11752: case 11753: case 11754: case 11758: case 11759: case 11760: case 11764: case 11765: case 11766: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11530: case 11531: case 11532: case 11536: case 11537: case 11538: case 11566: case 11567: case 11568: case 11572: case 11573: case 11574: case 11602: case 11603: case 11604: case 11608: case 11609: case 11610: case 11638: case 11639: case 11640: case 11644: case 11645: case 11646: case 11674: case 11675: case 11676: case 11680: case 11681: case 11682: case 11710: case 11711: case 11712: case 11716: case 11717: case 11718: case 11746: case 11747: case 11748: case 11752: case 11753: case 11754: case 11782: case 11783: case 11784: case 11788: case 11789: case 11790: case 11818: case 11819: case 11820: case 11824: case 11825: case 11826: return South::Low;
case 11518: case 11519: case 11520: case 11524: case 11525: case 11526: case 11554: case 11555: case 11556: case 11560: case 11561: case 11562: case 11590: case 11591: case 11592: case 11596: case 11597: case 11598: case 11626: case 11627: case 11628: case 11632: case 11633: case 11634: case 11662: case 11663: case 11664: case 11668: case 11669: case 11670: case 11698: case 11699: case 11700: case 11704: case 11705: case 11706: case 11734: case 11735: case 11736: case 11740: case 11741: case 11742: case 11770: case 11771: case 11772: case 11776: case 11777: case 11778: case 11806: case 11807: case 11808: case 11812: case 11813: case 11814: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11524: case 11525: case 11526: case 11536: case 11537: case 11538: case 11548: case 11549: case 11550: case 11560: case 11561: case 11562: case 11572: case 11573: case 11574: case 11584: case 11585: case 11586: case 11596: case 11597: case 11598: case 11608: case 11609: case 11610: case 11620: case 11621: case 11622: case 11632: case 11633: case 11634: case 11644: case 11645: case 11646: case 11656: case 11657: case 11658: case 11668: case 11669: case 11670: case 11680: case 11681: case 11682: case 11692: case 11693: case 11694: case 11704: case 11705: case 11706: case 11716: case 11717: case 11718: case 11728: case 11729: case 11730: case 11740: case 11741: case 11742: case 11752: case 11753: case 11754: case 11764: case 11765: case 11766: case 11776: case 11777: case 11778: case 11788: case 11789: case 11790: case 11800: case 11801: case 11802: case 11812: case 11813: case 11814: case 11824: case 11825: case 11826: case 11836: case 11837: case 11838: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 11519: case 11525: case 11531: case 11537: case 11543: case 11549: case 11555: case 11561: case 11567: case 11573: case 11579: case 11585: case 11591: case 11597: case 11603: case 11609: case 11615: case 11621: case 11627: case 11633: case 11639: case 11645: case 11651: case 11657: case 11663: case 11669: case 11675: case 11681: case 11687: case 11693: case 11699: case 11705: case 11711: case 11717: case 11723: case 11729: case 11735: case 11741: case 11747: case 11753: case 11759: case 11765: case 11771: case 11777: case 11783: case 11789: case 11795: case 11801: case 11807: case 11813: case 11819: case 11825: case 11831: case 11837: return West::Low;
case 11518: case 11524: case 11530: case 11536: case 11542: case 11548: case 11554: case 11560: case 11566: case 11572: case 11578: case 11584: case 11590: case 11596: case 11602: case 11608: case 11614: case 11620: case 11626: case 11632: case 11638: case 11644: case 11650: case 11656: case 11662: case 11668: case 11674: case 11680: case 11686: case 11692: case 11698: case 11704: case 11710: case 11716: case 11722: case 11728: case 11734: case 11740: case 11746: case 11752: case 11758: case 11764: case 11770: case 11776: case 11782: case 11788: case 11794: case 11800: case 11806: case 11812: case 11818: case 11824: case 11830: case 11836: return West::None;
@@ -10523,13 +9750,13 @@ namespace Block
}
namespace RedShulkerBox
{
- short RedShulkerBox()
+ BlockState RedShulkerBox()
{
return 9366;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9365: return eBlockFace::BLOCK_FACE_XM;
case 9363: return eBlockFace::BLOCK_FACE_XP;
@@ -10545,37 +9772,37 @@ namespace Block
}
namespace RedStainedGlassPane
{
- short RedStainedGlassPane()
+ BlockState RedStainedGlassPane()
{
return 7342;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7329: case 7330: case 7333: case 7334: case 7337: case 7338: case 7341: case 7342: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7321: case 7322: case 7325: case 7326: case 7337: case 7338: case 7341: case 7342: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7317: case 7318: case 7325: case 7326: case 7333: case 7334: case 7341: case 7342: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7314: case 7318: case 7322: case 7326: case 7330: case 7334: case 7338: case 7342: return false;
default: return true;
@@ -10590,13 +9817,13 @@ namespace Block
}
namespace RedWallBanner
{
- short RedWallBanner()
+ BlockState RedWallBanner()
{
return 8209;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8211: return eBlockFace::BLOCK_FACE_XM;
case 8212: return eBlockFace::BLOCK_FACE_XP;
@@ -10613,13 +9840,13 @@ namespace Block
}
namespace RedstoneLamp
{
- short RedstoneLamp()
+ BlockState RedstoneLamp()
{
return 5157;
}
- bool Lit(short ID)
+ bool Lit(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5157: return false;
default: return true;
@@ -10628,13 +9855,13 @@ namespace Block
}
namespace RedstoneOre
{
- short RedstoneOre()
+ BlockState RedstoneOre()
{
return 3886;
}
- bool Lit(short ID)
+ bool Lit(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3886: return false;
default: return true;
@@ -10643,13 +9870,13 @@ namespace Block
}
namespace RedstoneTorch
{
- short RedstoneTorch()
+ BlockState RedstoneTorch()
{
return 3887;
}
- bool Lit(short ID)
+ bool Lit(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3888: return false;
default: return true;
@@ -10658,13 +9885,13 @@ namespace Block
}
namespace RedstoneWallTorch
{
- short RedstoneWallTorch()
+ BlockState RedstoneWallTorch()
{
return 3889;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3893: case 3894: return eBlockFace::BLOCK_FACE_XM;
case 3895: case 3896: return eBlockFace::BLOCK_FACE_XP;
@@ -10672,9 +9899,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Lit(short ID)
+ bool Lit(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3890: case 3892: case 3894: case 3896: return false;
default: return true;
@@ -10683,31 +9910,31 @@ namespace Block
}
namespace RedstoneWire
{
- short RedstoneWire()
+ BlockState RedstoneWire()
{
return 3218;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 2922: case 2923: case 2924: case 2925: case 2926: case 2927: case 2928: case 2929: case 2930: case 2931: case 2932: case 2933: case 2934: case 2935: case 2936: case 2937: case 2938: case 2939: case 2940: case 2941: case 2942: case 2943: case 2944: case 2945: case 2946: case 2947: case 2948: case 2949: case 2950: case 2951: case 2952: case 2953: case 2954: case 2955: case 2956: case 2957: case 2958: case 2959: case 2960: case 2961: case 2962: case 2963: case 2964: case 2965: case 2966: case 2967: case 2968: case 2969: case 2970: case 2971: case 2972: case 2973: case 2974: case 2975: case 2976: case 2977: case 2978: case 2979: case 2980: case 2981: case 2982: case 2983: case 2984: case 2985: case 2986: case 2987: case 2988: case 2989: case 2990: case 2991: case 2992: case 2993: case 2994: case 2995: case 2996: case 2997: case 2998: case 2999: case 3000: case 3001: case 3002: case 3003: case 3004: case 3005: case 3006: case 3007: case 3008: case 3009: case 3010: case 3011: case 3012: case 3013: case 3014: case 3015: case 3016: case 3017: case 3018: case 3019: case 3020: case 3021: case 3022: case 3023: case 3024: case 3025: case 3026: case 3027: case 3028: case 3029: case 3030: case 3031: case 3032: case 3033: case 3034: case 3035: case 3036: case 3037: case 3038: case 3039: case 3040: case 3041: case 3042: case 3043: case 3044: case 3045: case 3046: case 3047: case 3048: case 3049: case 3050: case 3051: case 3052: case 3053: case 3054: case 3055: case 3056: case 3057: case 3058: case 3059: case 3060: case 3061: case 3062: case 3063: case 3064: case 3065: case 3066: case 3067: case 3068: case 3069: case 3070: case 3071: case 3072: case 3073: case 3074: case 3075: case 3076: case 3077: case 3078: case 3079: case 3080: case 3081: case 3082: case 3083: case 3084: case 3085: case 3086: case 3087: case 3088: case 3089: case 3090: case 3091: case 3092: case 3093: case 3094: case 3095: case 3096: case 3097: case 3098: case 3099: case 3100: case 3101: case 3102: case 3103: case 3104: case 3105: case 3106: case 3107: case 3108: case 3109: case 3110: case 3111: case 3112: case 3113: case 3114: case 3115: case 3116: case 3117: case 3118: case 3119: case 3120: case 3121: case 3122: case 3123: case 3124: case 3125: case 3126: case 3127: case 3128: case 3129: case 3130: case 3131: case 3132: case 3133: case 3134: case 3135: case 3136: case 3137: case 3138: case 3139: case 3140: case 3141: case 3142: case 3143: case 3144: case 3145: case 3146: case 3147: case 3148: case 3149: case 3150: case 3151: case 3152: case 3153: case 3154: case 3155: case 3156: case 3157: case 3158: case 3159: case 3160: case 3161: case 3162: case 3163: case 3164: case 3165: case 3166: case 3167: case 3168: case 3169: case 3170: case 3171: case 3172: case 3173: case 3174: case 3175: case 3176: case 3177: case 3178: case 3179: case 3180: case 3181: case 3182: case 3183: case 3184: case 3185: case 3186: case 3187: case 3188: case 3189: case 3190: case 3191: case 3192: case 3193: case 3194: case 3195: case 3196: case 3197: case 3198: case 3199: case 3200: case 3201: case 3202: case 3203: case 3204: case 3205: case 3206: case 3207: case 3208: case 3209: case 3210: case 3211: case 3212: case 3213: case 3214: case 3215: case 3216: case 3217: case 3218: case 3219: case 3220: case 3221: case 3222: case 3223: case 3224: case 3225: case 3226: case 3227: case 3228: case 3229: case 3230: case 3231: case 3232: case 3233: case 3234: case 3235: case 3236: case 3237: case 3238: case 3239: case 3240: case 3241: case 3242: case 3243: case 3244: case 3245: case 3246: case 3247: case 3248: case 3249: case 3250: case 3251: case 3252: case 3253: case 3254: case 3255: case 3256: case 3257: case 3258: case 3259: case 3260: case 3261: case 3262: case 3263: case 3264: case 3265: case 3266: case 3267: case 3268: case 3269: case 3270: case 3271: case 3272: case 3273: case 3274: case 3275: case 3276: case 3277: case 3278: case 3279: case 3280: case 3281: case 3282: case 3283: case 3284: case 3285: case 3286: case 3287: case 3288: case 3289: case 3290: case 3291: case 3292: case 3293: case 3294: case 3295: case 3296: case 3297: case 3298: case 3299: case 3300: case 3301: case 3302: case 3303: case 3304: case 3305: case 3306: case 3307: case 3308: case 3309: case 3310: case 3311: case 3312: case 3313: case 3314: case 3315: case 3316: case 3317: case 3318: case 3319: case 3320: case 3321: case 3322: case 3323: case 3324: case 3325: case 3326: case 3327: case 3328: case 3329: case 3330: case 3331: case 3332: case 3333: case 3334: case 3335: case 3336: case 3337: case 3338: case 3339: case 3340: case 3341: case 3342: case 3343: case 3344: case 3345: case 3346: case 3347: case 3348: case 3349: case 3350: case 3351: case 3352: case 3353: return East::None;
case 2490: case 2491: case 2492: case 2493: case 2494: case 2495: case 2496: case 2497: case 2498: case 2499: case 2500: case 2501: case 2502: case 2503: case 2504: case 2505: case 2506: case 2507: case 2508: case 2509: case 2510: case 2511: case 2512: case 2513: case 2514: case 2515: case 2516: case 2517: case 2518: case 2519: case 2520: case 2521: case 2522: case 2523: case 2524: case 2525: case 2526: case 2527: case 2528: case 2529: case 2530: case 2531: case 2532: case 2533: case 2534: case 2535: case 2536: case 2537: case 2538: case 2539: case 2540: case 2541: case 2542: case 2543: case 2544: case 2545: case 2546: case 2547: case 2548: case 2549: case 2550: case 2551: case 2552: case 2553: case 2554: case 2555: case 2556: case 2557: case 2558: case 2559: case 2560: case 2561: case 2562: case 2563: case 2564: case 2565: case 2566: case 2567: case 2568: case 2569: case 2570: case 2571: case 2572: case 2573: case 2574: case 2575: case 2576: case 2577: case 2578: case 2579: case 2580: case 2581: case 2582: case 2583: case 2584: case 2585: case 2586: case 2587: case 2588: case 2589: case 2590: case 2591: case 2592: case 2593: case 2594: case 2595: case 2596: case 2597: case 2598: case 2599: case 2600: case 2601: case 2602: case 2603: case 2604: case 2605: case 2606: case 2607: case 2608: case 2609: case 2610: case 2611: case 2612: case 2613: case 2614: case 2615: case 2616: case 2617: case 2618: case 2619: case 2620: case 2621: case 2622: case 2623: case 2624: case 2625: case 2626: case 2627: case 2628: case 2629: case 2630: case 2631: case 2632: case 2633: case 2634: case 2635: case 2636: case 2637: case 2638: case 2639: case 2640: case 2641: case 2642: case 2643: case 2644: case 2645: case 2646: case 2647: case 2648: case 2649: case 2650: case 2651: case 2652: case 2653: case 2654: case 2655: case 2656: case 2657: case 2658: case 2659: case 2660: case 2661: case 2662: case 2663: case 2664: case 2665: case 2666: case 2667: case 2668: case 2669: case 2670: case 2671: case 2672: case 2673: case 2674: case 2675: case 2676: case 2677: case 2678: case 2679: case 2680: case 2681: case 2682: case 2683: case 2684: case 2685: case 2686: case 2687: case 2688: case 2689: case 2690: case 2691: case 2692: case 2693: case 2694: case 2695: case 2696: case 2697: case 2698: case 2699: case 2700: case 2701: case 2702: case 2703: case 2704: case 2705: case 2706: case 2707: case 2708: case 2709: case 2710: case 2711: case 2712: case 2713: case 2714: case 2715: case 2716: case 2717: case 2718: case 2719: case 2720: case 2721: case 2722: case 2723: case 2724: case 2725: case 2726: case 2727: case 2728: case 2729: case 2730: case 2731: case 2732: case 2733: case 2734: case 2735: case 2736: case 2737: case 2738: case 2739: case 2740: case 2741: case 2742: case 2743: case 2744: case 2745: case 2746: case 2747: case 2748: case 2749: case 2750: case 2751: case 2752: case 2753: case 2754: case 2755: case 2756: case 2757: case 2758: case 2759: case 2760: case 2761: case 2762: case 2763: case 2764: case 2765: case 2766: case 2767: case 2768: case 2769: case 2770: case 2771: case 2772: case 2773: case 2774: case 2775: case 2776: case 2777: case 2778: case 2779: case 2780: case 2781: case 2782: case 2783: case 2784: case 2785: case 2786: case 2787: case 2788: case 2789: case 2790: case 2791: case 2792: case 2793: case 2794: case 2795: case 2796: case 2797: case 2798: case 2799: case 2800: case 2801: case 2802: case 2803: case 2804: case 2805: case 2806: case 2807: case 2808: case 2809: case 2810: case 2811: case 2812: case 2813: case 2814: case 2815: case 2816: case 2817: case 2818: case 2819: case 2820: case 2821: case 2822: case 2823: case 2824: case 2825: case 2826: case 2827: case 2828: case 2829: case 2830: case 2831: case 2832: case 2833: case 2834: case 2835: case 2836: case 2837: case 2838: case 2839: case 2840: case 2841: case 2842: case 2843: case 2844: case 2845: case 2846: case 2847: case 2848: case 2849: case 2850: case 2851: case 2852: case 2853: case 2854: case 2855: case 2856: case 2857: case 2858: case 2859: case 2860: case 2861: case 2862: case 2863: case 2864: case 2865: case 2866: case 2867: case 2868: case 2869: case 2870: case 2871: case 2872: case 2873: case 2874: case 2875: case 2876: case 2877: case 2878: case 2879: case 2880: case 2881: case 2882: case 2883: case 2884: case 2885: case 2886: case 2887: case 2888: case 2889: case 2890: case 2891: case 2892: case 2893: case 2894: case 2895: case 2896: case 2897: case 2898: case 2899: case 2900: case 2901: case 2902: case 2903: case 2904: case 2905: case 2906: case 2907: case 2908: case 2909: case 2910: case 2911: case 2912: case 2913: case 2914: case 2915: case 2916: case 2917: case 2918: case 2919: case 2920: case 2921: return East::Side;
default: return East::Up;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 2346: case 2347: case 2348: case 2349: case 2350: case 2351: case 2352: case 2353: case 2354: case 2355: case 2356: case 2357: case 2358: case 2359: case 2360: case 2361: case 2362: case 2363: case 2364: case 2365: case 2366: case 2367: case 2368: case 2369: case 2370: case 2371: case 2372: case 2373: case 2374: case 2375: case 2376: case 2377: case 2378: case 2379: case 2380: case 2381: case 2382: case 2383: case 2384: case 2385: case 2386: case 2387: case 2388: case 2389: case 2390: case 2391: case 2392: case 2393: case 2394: case 2395: case 2396: case 2397: case 2398: case 2399: case 2400: case 2401: case 2402: case 2403: case 2404: case 2405: case 2406: case 2407: case 2408: case 2409: case 2410: case 2411: case 2412: case 2413: case 2414: case 2415: case 2416: case 2417: case 2418: case 2419: case 2420: case 2421: case 2422: case 2423: case 2424: case 2425: case 2426: case 2427: case 2428: case 2429: case 2430: case 2431: case 2432: case 2433: case 2434: case 2435: case 2436: case 2437: case 2438: case 2439: case 2440: case 2441: case 2442: case 2443: case 2444: case 2445: case 2446: case 2447: case 2448: case 2449: case 2450: case 2451: case 2452: case 2453: case 2454: case 2455: case 2456: case 2457: case 2458: case 2459: case 2460: case 2461: case 2462: case 2463: case 2464: case 2465: case 2466: case 2467: case 2468: case 2469: case 2470: case 2471: case 2472: case 2473: case 2474: case 2475: case 2476: case 2477: case 2478: case 2479: case 2480: case 2481: case 2482: case 2483: case 2484: case 2485: case 2486: case 2487: case 2488: case 2489: case 2778: case 2779: case 2780: case 2781: case 2782: case 2783: case 2784: case 2785: case 2786: case 2787: case 2788: case 2789: case 2790: case 2791: case 2792: case 2793: case 2794: case 2795: case 2796: case 2797: case 2798: case 2799: case 2800: case 2801: case 2802: case 2803: case 2804: case 2805: case 2806: case 2807: case 2808: case 2809: case 2810: case 2811: case 2812: case 2813: case 2814: case 2815: case 2816: case 2817: case 2818: case 2819: case 2820: case 2821: case 2822: case 2823: case 2824: case 2825: case 2826: case 2827: case 2828: case 2829: case 2830: case 2831: case 2832: case 2833: case 2834: case 2835: case 2836: case 2837: case 2838: case 2839: case 2840: case 2841: case 2842: case 2843: case 2844: case 2845: case 2846: case 2847: case 2848: case 2849: case 2850: case 2851: case 2852: case 2853: case 2854: case 2855: case 2856: case 2857: case 2858: case 2859: case 2860: case 2861: case 2862: case 2863: case 2864: case 2865: case 2866: case 2867: case 2868: case 2869: case 2870: case 2871: case 2872: case 2873: case 2874: case 2875: case 2876: case 2877: case 2878: case 2879: case 2880: case 2881: case 2882: case 2883: case 2884: case 2885: case 2886: case 2887: case 2888: case 2889: case 2890: case 2891: case 2892: case 2893: case 2894: case 2895: case 2896: case 2897: case 2898: case 2899: case 2900: case 2901: case 2902: case 2903: case 2904: case 2905: case 2906: case 2907: case 2908: case 2909: case 2910: case 2911: case 2912: case 2913: case 2914: case 2915: case 2916: case 2917: case 2918: case 2919: case 2920: case 2921: case 3210: case 3211: case 3212: case 3213: case 3214: case 3215: case 3216: case 3217: case 3218: case 3219: case 3220: case 3221: case 3222: case 3223: case 3224: case 3225: case 3226: case 3227: case 3228: case 3229: case 3230: case 3231: case 3232: case 3233: case 3234: case 3235: case 3236: case 3237: case 3238: case 3239: case 3240: case 3241: case 3242: case 3243: case 3244: case 3245: case 3246: case 3247: case 3248: case 3249: case 3250: case 3251: case 3252: case 3253: case 3254: case 3255: case 3256: case 3257: case 3258: case 3259: case 3260: case 3261: case 3262: case 3263: case 3264: case 3265: case 3266: case 3267: case 3268: case 3269: case 3270: case 3271: case 3272: case 3273: case 3274: case 3275: case 3276: case 3277: case 3278: case 3279: case 3280: case 3281: case 3282: case 3283: case 3284: case 3285: case 3286: case 3287: case 3288: case 3289: case 3290: case 3291: case 3292: case 3293: case 3294: case 3295: case 3296: case 3297: case 3298: case 3299: case 3300: case 3301: case 3302: case 3303: case 3304: case 3305: case 3306: case 3307: case 3308: case 3309: case 3310: case 3311: case 3312: case 3313: case 3314: case 3315: case 3316: case 3317: case 3318: case 3319: case 3320: case 3321: case 3322: case 3323: case 3324: case 3325: case 3326: case 3327: case 3328: case 3329: case 3330: case 3331: case 3332: case 3333: case 3334: case 3335: case 3336: case 3337: case 3338: case 3339: case 3340: case 3341: case 3342: case 3343: case 3344: case 3345: case 3346: case 3347: case 3348: case 3349: case 3350: case 3351: case 3352: case 3353: return North::None;
case 2202: case 2203: case 2204: case 2205: case 2206: case 2207: case 2208: case 2209: case 2210: case 2211: case 2212: case 2213: case 2214: case 2215: case 2216: case 2217: case 2218: case 2219: case 2220: case 2221: case 2222: case 2223: case 2224: case 2225: case 2226: case 2227: case 2228: case 2229: case 2230: case 2231: case 2232: case 2233: case 2234: case 2235: case 2236: case 2237: case 2238: case 2239: case 2240: case 2241: case 2242: case 2243: case 2244: case 2245: case 2246: case 2247: case 2248: case 2249: case 2250: case 2251: case 2252: case 2253: case 2254: case 2255: case 2256: case 2257: case 2258: case 2259: case 2260: case 2261: case 2262: case 2263: case 2264: case 2265: case 2266: case 2267: case 2268: case 2269: case 2270: case 2271: case 2272: case 2273: case 2274: case 2275: case 2276: case 2277: case 2278: case 2279: case 2280: case 2281: case 2282: case 2283: case 2284: case 2285: case 2286: case 2287: case 2288: case 2289: case 2290: case 2291: case 2292: case 2293: case 2294: case 2295: case 2296: case 2297: case 2298: case 2299: case 2300: case 2301: case 2302: case 2303: case 2304: case 2305: case 2306: case 2307: case 2308: case 2309: case 2310: case 2311: case 2312: case 2313: case 2314: case 2315: case 2316: case 2317: case 2318: case 2319: case 2320: case 2321: case 2322: case 2323: case 2324: case 2325: case 2326: case 2327: case 2328: case 2329: case 2330: case 2331: case 2332: case 2333: case 2334: case 2335: case 2336: case 2337: case 2338: case 2339: case 2340: case 2341: case 2342: case 2343: case 2344: case 2345: case 2634: case 2635: case 2636: case 2637: case 2638: case 2639: case 2640: case 2641: case 2642: case 2643: case 2644: case 2645: case 2646: case 2647: case 2648: case 2649: case 2650: case 2651: case 2652: case 2653: case 2654: case 2655: case 2656: case 2657: case 2658: case 2659: case 2660: case 2661: case 2662: case 2663: case 2664: case 2665: case 2666: case 2667: case 2668: case 2669: case 2670: case 2671: case 2672: case 2673: case 2674: case 2675: case 2676: case 2677: case 2678: case 2679: case 2680: case 2681: case 2682: case 2683: case 2684: case 2685: case 2686: case 2687: case 2688: case 2689: case 2690: case 2691: case 2692: case 2693: case 2694: case 2695: case 2696: case 2697: case 2698: case 2699: case 2700: case 2701: case 2702: case 2703: case 2704: case 2705: case 2706: case 2707: case 2708: case 2709: case 2710: case 2711: case 2712: case 2713: case 2714: case 2715: case 2716: case 2717: case 2718: case 2719: case 2720: case 2721: case 2722: case 2723: case 2724: case 2725: case 2726: case 2727: case 2728: case 2729: case 2730: case 2731: case 2732: case 2733: case 2734: case 2735: case 2736: case 2737: case 2738: case 2739: case 2740: case 2741: case 2742: case 2743: case 2744: case 2745: case 2746: case 2747: case 2748: case 2749: case 2750: case 2751: case 2752: case 2753: case 2754: case 2755: case 2756: case 2757: case 2758: case 2759: case 2760: case 2761: case 2762: case 2763: case 2764: case 2765: case 2766: case 2767: case 2768: case 2769: case 2770: case 2771: case 2772: case 2773: case 2774: case 2775: case 2776: case 2777: case 3066: case 3067: case 3068: case 3069: case 3070: case 3071: case 3072: case 3073: case 3074: case 3075: case 3076: case 3077: case 3078: case 3079: case 3080: case 3081: case 3082: case 3083: case 3084: case 3085: case 3086: case 3087: case 3088: case 3089: case 3090: case 3091: case 3092: case 3093: case 3094: case 3095: case 3096: case 3097: case 3098: case 3099: case 3100: case 3101: case 3102: case 3103: case 3104: case 3105: case 3106: case 3107: case 3108: case 3109: case 3110: case 3111: case 3112: case 3113: case 3114: case 3115: case 3116: case 3117: case 3118: case 3119: case 3120: case 3121: case 3122: case 3123: case 3124: case 3125: case 3126: case 3127: case 3128: case 3129: case 3130: case 3131: case 3132: case 3133: case 3134: case 3135: case 3136: case 3137: case 3138: case 3139: case 3140: case 3141: case 3142: case 3143: case 3144: case 3145: case 3146: case 3147: case 3148: case 3149: case 3150: case 3151: case 3152: case 3153: case 3154: case 3155: case 3156: case 3157: case 3158: case 3159: case 3160: case 3161: case 3162: case 3163: case 3164: case 3165: case 3166: case 3167: case 3168: case 3169: case 3170: case 3171: case 3172: case 3173: case 3174: case 3175: case 3176: case 3177: case 3178: case 3179: case 3180: case 3181: case 3182: case 3183: case 3184: case 3185: case 3186: case 3187: case 3188: case 3189: case 3190: case 3191: case 3192: case 3193: case 3194: case 3195: case 3196: case 3197: case 3198: case 3199: case 3200: case 3201: case 3202: case 3203: case 3204: case 3205: case 3206: case 3207: case 3208: case 3209: return North::Side;
default: return North::Up;
}
}
- unsigned char Power(short ID)
+ unsigned char Power(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 2058: case 2059: case 2060: case 2061: case 2062: case 2063: case 2064: case 2065: case 2066: case 2202: case 2203: case 2204: case 2205: case 2206: case 2207: case 2208: case 2209: case 2210: case 2346: case 2347: case 2348: case 2349: case 2350: case 2351: case 2352: case 2353: case 2354: case 2490: case 2491: case 2492: case 2493: case 2494: case 2495: case 2496: case 2497: case 2498: case 2634: case 2635: case 2636: case 2637: case 2638: case 2639: case 2640: case 2641: case 2642: case 2778: case 2779: case 2780: case 2781: case 2782: case 2783: case 2784: case 2785: case 2786: case 2922: case 2923: case 2924: case 2925: case 2926: case 2927: case 2928: case 2929: case 2930: case 3066: case 3067: case 3068: case 3069: case 3070: case 3071: case 3072: case 3073: case 3074: case 3210: case 3211: case 3212: case 3213: case 3214: case 3215: case 3216: case 3217: case 3218: return 0;
case 2067: case 2068: case 2069: case 2070: case 2071: case 2072: case 2073: case 2074: case 2075: case 2211: case 2212: case 2213: case 2214: case 2215: case 2216: case 2217: case 2218: case 2219: case 2355: case 2356: case 2357: case 2358: case 2359: case 2360: case 2361: case 2362: case 2363: case 2499: case 2500: case 2501: case 2502: case 2503: case 2504: case 2505: case 2506: case 2507: case 2643: case 2644: case 2645: case 2646: case 2647: case 2648: case 2649: case 2650: case 2651: case 2787: case 2788: case 2789: case 2790: case 2791: case 2792: case 2793: case 2794: case 2795: case 2931: case 2932: case 2933: case 2934: case 2935: case 2936: case 2937: case 2938: case 2939: case 3075: case 3076: case 3077: case 3078: case 3079: case 3080: case 3081: case 3082: case 3083: case 3219: case 3220: case 3221: case 3222: case 3223: case 3224: case 3225: case 3226: case 3227: return 1;
@@ -10727,18 +9954,18 @@ namespace Block
default: return 9;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 2064: case 2065: case 2066: case 2073: case 2074: case 2075: case 2082: case 2083: case 2084: case 2091: case 2092: case 2093: case 2100: case 2101: case 2102: case 2109: case 2110: case 2111: case 2118: case 2119: case 2120: case 2127: case 2128: case 2129: case 2136: case 2137: case 2138: case 2145: case 2146: case 2147: case 2154: case 2155: case 2156: case 2163: case 2164: case 2165: case 2172: case 2173: case 2174: case 2181: case 2182: case 2183: case 2190: case 2191: case 2192: case 2199: case 2200: case 2201: case 2208: case 2209: case 2210: case 2217: case 2218: case 2219: case 2226: case 2227: case 2228: case 2235: case 2236: case 2237: case 2244: case 2245: case 2246: case 2253: case 2254: case 2255: case 2262: case 2263: case 2264: case 2271: case 2272: case 2273: case 2280: case 2281: case 2282: case 2289: case 2290: case 2291: case 2298: case 2299: case 2300: case 2307: case 2308: case 2309: case 2316: case 2317: case 2318: case 2325: case 2326: case 2327: case 2334: case 2335: case 2336: case 2343: case 2344: case 2345: case 2352: case 2353: case 2354: case 2361: case 2362: case 2363: case 2370: case 2371: case 2372: case 2379: case 2380: case 2381: case 2388: case 2389: case 2390: case 2397: case 2398: case 2399: case 2406: case 2407: case 2408: case 2415: case 2416: case 2417: case 2424: case 2425: case 2426: case 2433: case 2434: case 2435: case 2442: case 2443: case 2444: case 2451: case 2452: case 2453: case 2460: case 2461: case 2462: case 2469: case 2470: case 2471: case 2478: case 2479: case 2480: case 2487: case 2488: case 2489: case 2496: case 2497: case 2498: case 2505: case 2506: case 2507: case 2514: case 2515: case 2516: case 2523: case 2524: case 2525: case 2532: case 2533: case 2534: case 2541: case 2542: case 2543: case 2550: case 2551: case 2552: case 2559: case 2560: case 2561: case 2568: case 2569: case 2570: case 2577: case 2578: case 2579: case 2586: case 2587: case 2588: case 2595: case 2596: case 2597: case 2604: case 2605: case 2606: case 2613: case 2614: case 2615: case 2622: case 2623: case 2624: case 2631: case 2632: case 2633: case 2640: case 2641: case 2642: case 2649: case 2650: case 2651: case 2658: case 2659: case 2660: case 2667: case 2668: case 2669: case 2676: case 2677: case 2678: case 2685: case 2686: case 2687: case 2694: case 2695: case 2696: case 2703: case 2704: case 2705: case 2712: case 2713: case 2714: case 2721: case 2722: case 2723: case 2730: case 2731: case 2732: case 2739: case 2740: case 2741: case 2748: case 2749: case 2750: case 2757: case 2758: case 2759: case 2766: case 2767: case 2768: case 2775: case 2776: case 2777: case 2784: case 2785: case 2786: case 2793: case 2794: case 2795: case 2802: case 2803: case 2804: case 2811: case 2812: case 2813: case 2820: case 2821: case 2822: case 2829: case 2830: case 2831: case 2838: case 2839: case 2840: case 2847: case 2848: case 2849: case 2856: case 2857: case 2858: case 2865: case 2866: case 2867: case 2874: case 2875: case 2876: case 2883: case 2884: case 2885: case 2892: case 2893: case 2894: case 2901: case 2902: case 2903: case 2910: case 2911: case 2912: case 2919: case 2920: case 2921: case 2928: case 2929: case 2930: case 2937: case 2938: case 2939: case 2946: case 2947: case 2948: case 2955: case 2956: case 2957: case 2964: case 2965: case 2966: case 2973: case 2974: case 2975: case 2982: case 2983: case 2984: case 2991: case 2992: case 2993: case 3000: case 3001: case 3002: case 3009: case 3010: case 3011: case 3018: case 3019: case 3020: case 3027: case 3028: case 3029: case 3036: case 3037: case 3038: case 3045: case 3046: case 3047: case 3054: case 3055: case 3056: case 3063: case 3064: case 3065: case 3072: case 3073: case 3074: case 3081: case 3082: case 3083: case 3090: case 3091: case 3092: case 3099: case 3100: case 3101: case 3108: case 3109: case 3110: case 3117: case 3118: case 3119: case 3126: case 3127: case 3128: case 3135: case 3136: case 3137: case 3144: case 3145: case 3146: case 3153: case 3154: case 3155: case 3162: case 3163: case 3164: case 3171: case 3172: case 3173: case 3180: case 3181: case 3182: case 3189: case 3190: case 3191: case 3198: case 3199: case 3200: case 3207: case 3208: case 3209: case 3216: case 3217: case 3218: case 3225: case 3226: case 3227: case 3234: case 3235: case 3236: case 3243: case 3244: case 3245: case 3252: case 3253: case 3254: case 3261: case 3262: case 3263: case 3270: case 3271: case 3272: case 3279: case 3280: case 3281: case 3288: case 3289: case 3290: case 3297: case 3298: case 3299: case 3306: case 3307: case 3308: case 3315: case 3316: case 3317: case 3324: case 3325: case 3326: case 3333: case 3334: case 3335: case 3342: case 3343: case 3344: case 3351: case 3352: case 3353: return South::None;
case 2061: case 2062: case 2063: case 2070: case 2071: case 2072: case 2079: case 2080: case 2081: case 2088: case 2089: case 2090: case 2097: case 2098: case 2099: case 2106: case 2107: case 2108: case 2115: case 2116: case 2117: case 2124: case 2125: case 2126: case 2133: case 2134: case 2135: case 2142: case 2143: case 2144: case 2151: case 2152: case 2153: case 2160: case 2161: case 2162: case 2169: case 2170: case 2171: case 2178: case 2179: case 2180: case 2187: case 2188: case 2189: case 2196: case 2197: case 2198: case 2205: case 2206: case 2207: case 2214: case 2215: case 2216: case 2223: case 2224: case 2225: case 2232: case 2233: case 2234: case 2241: case 2242: case 2243: case 2250: case 2251: case 2252: case 2259: case 2260: case 2261: case 2268: case 2269: case 2270: case 2277: case 2278: case 2279: case 2286: case 2287: case 2288: case 2295: case 2296: case 2297: case 2304: case 2305: case 2306: case 2313: case 2314: case 2315: case 2322: case 2323: case 2324: case 2331: case 2332: case 2333: case 2340: case 2341: case 2342: case 2349: case 2350: case 2351: case 2358: case 2359: case 2360: case 2367: case 2368: case 2369: case 2376: case 2377: case 2378: case 2385: case 2386: case 2387: case 2394: case 2395: case 2396: case 2403: case 2404: case 2405: case 2412: case 2413: case 2414: case 2421: case 2422: case 2423: case 2430: case 2431: case 2432: case 2439: case 2440: case 2441: case 2448: case 2449: case 2450: case 2457: case 2458: case 2459: case 2466: case 2467: case 2468: case 2475: case 2476: case 2477: case 2484: case 2485: case 2486: case 2493: case 2494: case 2495: case 2502: case 2503: case 2504: case 2511: case 2512: case 2513: case 2520: case 2521: case 2522: case 2529: case 2530: case 2531: case 2538: case 2539: case 2540: case 2547: case 2548: case 2549: case 2556: case 2557: case 2558: case 2565: case 2566: case 2567: case 2574: case 2575: case 2576: case 2583: case 2584: case 2585: case 2592: case 2593: case 2594: case 2601: case 2602: case 2603: case 2610: case 2611: case 2612: case 2619: case 2620: case 2621: case 2628: case 2629: case 2630: case 2637: case 2638: case 2639: case 2646: case 2647: case 2648: case 2655: case 2656: case 2657: case 2664: case 2665: case 2666: case 2673: case 2674: case 2675: case 2682: case 2683: case 2684: case 2691: case 2692: case 2693: case 2700: case 2701: case 2702: case 2709: case 2710: case 2711: case 2718: case 2719: case 2720: case 2727: case 2728: case 2729: case 2736: case 2737: case 2738: case 2745: case 2746: case 2747: case 2754: case 2755: case 2756: case 2763: case 2764: case 2765: case 2772: case 2773: case 2774: case 2781: case 2782: case 2783: case 2790: case 2791: case 2792: case 2799: case 2800: case 2801: case 2808: case 2809: case 2810: case 2817: case 2818: case 2819: case 2826: case 2827: case 2828: case 2835: case 2836: case 2837: case 2844: case 2845: case 2846: case 2853: case 2854: case 2855: case 2862: case 2863: case 2864: case 2871: case 2872: case 2873: case 2880: case 2881: case 2882: case 2889: case 2890: case 2891: case 2898: case 2899: case 2900: case 2907: case 2908: case 2909: case 2916: case 2917: case 2918: case 2925: case 2926: case 2927: case 2934: case 2935: case 2936: case 2943: case 2944: case 2945: case 2952: case 2953: case 2954: case 2961: case 2962: case 2963: case 2970: case 2971: case 2972: case 2979: case 2980: case 2981: case 2988: case 2989: case 2990: case 2997: case 2998: case 2999: case 3006: case 3007: case 3008: case 3015: case 3016: case 3017: case 3024: case 3025: case 3026: case 3033: case 3034: case 3035: case 3042: case 3043: case 3044: case 3051: case 3052: case 3053: case 3060: case 3061: case 3062: case 3069: case 3070: case 3071: case 3078: case 3079: case 3080: case 3087: case 3088: case 3089: case 3096: case 3097: case 3098: case 3105: case 3106: case 3107: case 3114: case 3115: case 3116: case 3123: case 3124: case 3125: case 3132: case 3133: case 3134: case 3141: case 3142: case 3143: case 3150: case 3151: case 3152: case 3159: case 3160: case 3161: case 3168: case 3169: case 3170: case 3177: case 3178: case 3179: case 3186: case 3187: case 3188: case 3195: case 3196: case 3197: case 3204: case 3205: case 3206: case 3213: case 3214: case 3215: case 3222: case 3223: case 3224: case 3231: case 3232: case 3233: case 3240: case 3241: case 3242: case 3249: case 3250: case 3251: case 3258: case 3259: case 3260: case 3267: case 3268: case 3269: case 3276: case 3277: case 3278: case 3285: case 3286: case 3287: case 3294: case 3295: case 3296: case 3303: case 3304: case 3305: case 3312: case 3313: case 3314: case 3321: case 3322: case 3323: case 3330: case 3331: case 3332: case 3339: case 3340: case 3341: case 3348: case 3349: case 3350: return South::Side;
default: return South::Up;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 2060: case 2063: case 2066: case 2069: case 2072: case 2075: case 2078: case 2081: case 2084: case 2087: case 2090: case 2093: case 2096: case 2099: case 2102: case 2105: case 2108: case 2111: case 2114: case 2117: case 2120: case 2123: case 2126: case 2129: case 2132: case 2135: case 2138: case 2141: case 2144: case 2147: case 2150: case 2153: case 2156: case 2159: case 2162: case 2165: case 2168: case 2171: case 2174: case 2177: case 2180: case 2183: case 2186: case 2189: case 2192: case 2195: case 2198: case 2201: case 2204: case 2207: case 2210: case 2213: case 2216: case 2219: case 2222: case 2225: case 2228: case 2231: case 2234: case 2237: case 2240: case 2243: case 2246: case 2249: case 2252: case 2255: case 2258: case 2261: case 2264: case 2267: case 2270: case 2273: case 2276: case 2279: case 2282: case 2285: case 2288: case 2291: case 2294: case 2297: case 2300: case 2303: case 2306: case 2309: case 2312: case 2315: case 2318: case 2321: case 2324: case 2327: case 2330: case 2333: case 2336: case 2339: case 2342: case 2345: case 2348: case 2351: case 2354: case 2357: case 2360: case 2363: case 2366: case 2369: case 2372: case 2375: case 2378: case 2381: case 2384: case 2387: case 2390: case 2393: case 2396: case 2399: case 2402: case 2405: case 2408: case 2411: case 2414: case 2417: case 2420: case 2423: case 2426: case 2429: case 2432: case 2435: case 2438: case 2441: case 2444: case 2447: case 2450: case 2453: case 2456: case 2459: case 2462: case 2465: case 2468: case 2471: case 2474: case 2477: case 2480: case 2483: case 2486: case 2489: case 2492: case 2495: case 2498: case 2501: case 2504: case 2507: case 2510: case 2513: case 2516: case 2519: case 2522: case 2525: case 2528: case 2531: case 2534: case 2537: case 2540: case 2543: case 2546: case 2549: case 2552: case 2555: case 2558: case 2561: case 2564: case 2567: case 2570: case 2573: case 2576: case 2579: case 2582: case 2585: case 2588: case 2591: case 2594: case 2597: case 2600: case 2603: case 2606: case 2609: case 2612: case 2615: case 2618: case 2621: case 2624: case 2627: case 2630: case 2633: case 2636: case 2639: case 2642: case 2645: case 2648: case 2651: case 2654: case 2657: case 2660: case 2663: case 2666: case 2669: case 2672: case 2675: case 2678: case 2681: case 2684: case 2687: case 2690: case 2693: case 2696: case 2699: case 2702: case 2705: case 2708: case 2711: case 2714: case 2717: case 2720: case 2723: case 2726: case 2729: case 2732: case 2735: case 2738: case 2741: case 2744: case 2747: case 2750: case 2753: case 2756: case 2759: case 2762: case 2765: case 2768: case 2771: case 2774: case 2777: case 2780: case 2783: case 2786: case 2789: case 2792: case 2795: case 2798: case 2801: case 2804: case 2807: case 2810: case 2813: case 2816: case 2819: case 2822: case 2825: case 2828: case 2831: case 2834: case 2837: case 2840: case 2843: case 2846: case 2849: case 2852: case 2855: case 2858: case 2861: case 2864: case 2867: case 2870: case 2873: case 2876: case 2879: case 2882: case 2885: case 2888: case 2891: case 2894: case 2897: case 2900: case 2903: case 2906: case 2909: case 2912: case 2915: case 2918: case 2921: case 2924: case 2927: case 2930: case 2933: case 2936: case 2939: case 2942: case 2945: case 2948: case 2951: case 2954: case 2957: case 2960: case 2963: case 2966: case 2969: case 2972: case 2975: case 2978: case 2981: case 2984: case 2987: case 2990: case 2993: case 2996: case 2999: case 3002: case 3005: case 3008: case 3011: case 3014: case 3017: case 3020: case 3023: case 3026: case 3029: case 3032: case 3035: case 3038: case 3041: case 3044: case 3047: case 3050: case 3053: case 3056: case 3059: case 3062: case 3065: case 3068: case 3071: case 3074: case 3077: case 3080: case 3083: case 3086: case 3089: case 3092: case 3095: case 3098: case 3101: case 3104: case 3107: case 3110: case 3113: case 3116: case 3119: case 3122: case 3125: case 3128: case 3131: case 3134: case 3137: case 3140: case 3143: case 3146: case 3149: case 3152: case 3155: case 3158: case 3161: case 3164: case 3167: case 3170: case 3173: case 3176: case 3179: case 3182: case 3185: case 3188: case 3191: case 3194: case 3197: case 3200: case 3203: case 3206: case 3209: case 3212: case 3215: case 3218: case 3221: case 3224: case 3227: case 3230: case 3233: case 3236: case 3239: case 3242: case 3245: case 3248: case 3251: case 3254: case 3257: case 3260: case 3263: case 3266: case 3269: case 3272: case 3275: case 3278: case 3281: case 3284: case 3287: case 3290: case 3293: case 3296: case 3299: case 3302: case 3305: case 3308: case 3311: case 3314: case 3317: case 3320: case 3323: case 3326: case 3329: case 3332: case 3335: case 3338: case 3341: case 3344: case 3347: case 3350: case 3353: return West::None;
case 2059: case 2062: case 2065: case 2068: case 2071: case 2074: case 2077: case 2080: case 2083: case 2086: case 2089: case 2092: case 2095: case 2098: case 2101: case 2104: case 2107: case 2110: case 2113: case 2116: case 2119: case 2122: case 2125: case 2128: case 2131: case 2134: case 2137: case 2140: case 2143: case 2146: case 2149: case 2152: case 2155: case 2158: case 2161: case 2164: case 2167: case 2170: case 2173: case 2176: case 2179: case 2182: case 2185: case 2188: case 2191: case 2194: case 2197: case 2200: case 2203: case 2206: case 2209: case 2212: case 2215: case 2218: case 2221: case 2224: case 2227: case 2230: case 2233: case 2236: case 2239: case 2242: case 2245: case 2248: case 2251: case 2254: case 2257: case 2260: case 2263: case 2266: case 2269: case 2272: case 2275: case 2278: case 2281: case 2284: case 2287: case 2290: case 2293: case 2296: case 2299: case 2302: case 2305: case 2308: case 2311: case 2314: case 2317: case 2320: case 2323: case 2326: case 2329: case 2332: case 2335: case 2338: case 2341: case 2344: case 2347: case 2350: case 2353: case 2356: case 2359: case 2362: case 2365: case 2368: case 2371: case 2374: case 2377: case 2380: case 2383: case 2386: case 2389: case 2392: case 2395: case 2398: case 2401: case 2404: case 2407: case 2410: case 2413: case 2416: case 2419: case 2422: case 2425: case 2428: case 2431: case 2434: case 2437: case 2440: case 2443: case 2446: case 2449: case 2452: case 2455: case 2458: case 2461: case 2464: case 2467: case 2470: case 2473: case 2476: case 2479: case 2482: case 2485: case 2488: case 2491: case 2494: case 2497: case 2500: case 2503: case 2506: case 2509: case 2512: case 2515: case 2518: case 2521: case 2524: case 2527: case 2530: case 2533: case 2536: case 2539: case 2542: case 2545: case 2548: case 2551: case 2554: case 2557: case 2560: case 2563: case 2566: case 2569: case 2572: case 2575: case 2578: case 2581: case 2584: case 2587: case 2590: case 2593: case 2596: case 2599: case 2602: case 2605: case 2608: case 2611: case 2614: case 2617: case 2620: case 2623: case 2626: case 2629: case 2632: case 2635: case 2638: case 2641: case 2644: case 2647: case 2650: case 2653: case 2656: case 2659: case 2662: case 2665: case 2668: case 2671: case 2674: case 2677: case 2680: case 2683: case 2686: case 2689: case 2692: case 2695: case 2698: case 2701: case 2704: case 2707: case 2710: case 2713: case 2716: case 2719: case 2722: case 2725: case 2728: case 2731: case 2734: case 2737: case 2740: case 2743: case 2746: case 2749: case 2752: case 2755: case 2758: case 2761: case 2764: case 2767: case 2770: case 2773: case 2776: case 2779: case 2782: case 2785: case 2788: case 2791: case 2794: case 2797: case 2800: case 2803: case 2806: case 2809: case 2812: case 2815: case 2818: case 2821: case 2824: case 2827: case 2830: case 2833: case 2836: case 2839: case 2842: case 2845: case 2848: case 2851: case 2854: case 2857: case 2860: case 2863: case 2866: case 2869: case 2872: case 2875: case 2878: case 2881: case 2884: case 2887: case 2890: case 2893: case 2896: case 2899: case 2902: case 2905: case 2908: case 2911: case 2914: case 2917: case 2920: case 2923: case 2926: case 2929: case 2932: case 2935: case 2938: case 2941: case 2944: case 2947: case 2950: case 2953: case 2956: case 2959: case 2962: case 2965: case 2968: case 2971: case 2974: case 2977: case 2980: case 2983: case 2986: case 2989: case 2992: case 2995: case 2998: case 3001: case 3004: case 3007: case 3010: case 3013: case 3016: case 3019: case 3022: case 3025: case 3028: case 3031: case 3034: case 3037: case 3040: case 3043: case 3046: case 3049: case 3052: case 3055: case 3058: case 3061: case 3064: case 3067: case 3070: case 3073: case 3076: case 3079: case 3082: case 3085: case 3088: case 3091: case 3094: case 3097: case 3100: case 3103: case 3106: case 3109: case 3112: case 3115: case 3118: case 3121: case 3124: case 3127: case 3130: case 3133: case 3136: case 3139: case 3142: case 3145: case 3148: case 3151: case 3154: case 3157: case 3160: case 3163: case 3166: case 3169: case 3172: case 3175: case 3178: case 3181: case 3184: case 3187: case 3190: case 3193: case 3196: case 3199: case 3202: case 3205: case 3208: case 3211: case 3214: case 3217: case 3220: case 3223: case 3226: case 3229: case 3232: case 3235: case 3238: case 3241: case 3244: case 3247: case 3250: case 3253: case 3256: case 3259: case 3262: case 3265: case 3268: case 3271: case 3274: case 3277: case 3280: case 3283: case 3286: case 3289: case 3292: case 3295: case 3298: case 3301: case 3304: case 3307: case 3310: case 3313: case 3316: case 3319: case 3322: case 3325: case 3328: case 3331: case 3334: case 3337: case 3340: case 3343: case 3346: case 3349: case 3352: return West::Side;
@@ -10748,13 +9975,13 @@ namespace Block
}
namespace Repeater
{
- short Repeater()
+ BlockState Repeater()
{
return 4034;
}
- unsigned char Delay(short ID)
+ unsigned char Delay(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4031: case 4032: case 4033: case 4034: case 4035: case 4036: case 4037: case 4038: case 4039: case 4040: case 4041: case 4042: case 4043: case 4044: case 4045: case 4046: return 1;
case 4047: case 4048: case 4049: case 4050: case 4051: case 4052: case 4053: case 4054: case 4055: case 4056: case 4057: case 4058: case 4059: case 4060: case 4061: case 4062: return 2;
@@ -10762,9 +9989,9 @@ namespace Block
default: return 4;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4039: case 4040: case 4041: case 4042: case 4055: case 4056: case 4057: case 4058: case 4071: case 4072: case 4073: case 4074: case 4087: case 4088: case 4089: case 4090: return eBlockFace::BLOCK_FACE_XM;
case 4043: case 4044: case 4045: case 4046: case 4059: case 4060: case 4061: case 4062: case 4075: case 4076: case 4077: case 4078: case 4091: case 4092: case 4093: case 4094: return eBlockFace::BLOCK_FACE_XP;
@@ -10772,17 +9999,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Locked(short ID)
+ bool Locked(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4033: case 4034: case 4037: case 4038: case 4041: case 4042: case 4045: case 4046: case 4049: case 4050: case 4053: case 4054: case 4057: case 4058: case 4061: case 4062: case 4065: case 4066: case 4069: case 4070: case 4073: case 4074: case 4077: case 4078: case 4081: case 4082: case 4085: case 4086: case 4089: case 4090: case 4093: case 4094: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4032: case 4034: case 4036: case 4038: case 4040: case 4042: case 4044: case 4046: case 4048: case 4050: case 4052: case 4054: case 4056: case 4058: case 4060: case 4062: case 4064: case 4066: case 4068: case 4070: case 4072: case 4074: case 4076: case 4078: case 4080: case 4082: case 4084: case 4086: case 4088: case 4090: case 4092: case 4094: return false;
default: return true;
@@ -10791,21 +10018,21 @@ namespace Block
}
namespace RepeatingCommandBlock
{
- short RepeatingCommandBlock()
+ BlockState RepeatingCommandBlock()
{
return 9231;
}
- bool Conditional(short ID)
+ bool Conditional(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9231: case 9232: case 9233: case 9234: case 9235: case 9236: return false;
default: return true;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9228: case 9234: return eBlockFace::BLOCK_FACE_XM;
case 9226: case 9232: return eBlockFace::BLOCK_FACE_XP;
@@ -10818,13 +10045,13 @@ namespace Block
}
namespace RespawnAnchor
{
- short RespawnAnchor()
+ BlockState RespawnAnchor()
{
return 15829;
}
- unsigned char Charges(short ID)
+ unsigned char Charges(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15829: return 0;
case 15830: return 1;
@@ -10836,13 +10063,13 @@ namespace Block
}
namespace RoseBush
{
- short RoseBush()
+ BlockState RoseBush()
{
return 7890;
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7890: return Half::Lower;
default: return Half::Upper;
@@ -10857,13 +10084,13 @@ namespace Block
}
namespace SandstoneSlab
{
- short SandstoneSlab()
+ BlockState SandstoneSlab()
{
return 8351;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8351: return Type::Bottom;
case 8353: return Type::Double;
@@ -10873,13 +10100,13 @@ namespace Block
}
namespace SandstoneStairs
{
- short SandstoneStairs()
+ BlockState SandstoneStairs()
{
return 5181;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5211: case 5213: case 5215: case 5217: case 5219: case 5221: case 5223: case 5225: case 5227: case 5229: return eBlockFace::BLOCK_FACE_XM;
case 5231: case 5233: case 5235: case 5237: case 5239: case 5241: case 5243: case 5245: case 5247: case 5249: return eBlockFace::BLOCK_FACE_XP;
@@ -10887,17 +10114,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5181: case 5183: case 5185: case 5187: case 5189: case 5201: case 5203: case 5205: case 5207: case 5209: case 5221: case 5223: case 5225: case 5227: case 5229: case 5241: case 5243: case 5245: case 5247: case 5249: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5173: case 5183: case 5193: case 5203: case 5213: case 5223: case 5233: case 5243: return Shape::InnerLeft;
case 5175: case 5185: case 5195: case 5205: case 5215: case 5225: case 5235: case 5245: return Shape::InnerRight;
@@ -10909,48 +10136,48 @@ namespace Block
}
namespace SandstoneWall
{
- short SandstoneWall()
+ BlockState SandstoneWall()
{
return 13786;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13894: case 13895: case 13896: case 13900: case 13901: case 13902: case 13906: case 13907: case 13908: case 13912: case 13913: case 13914: case 13918: case 13919: case 13920: case 13924: case 13925: case 13926: case 13930: case 13931: case 13932: case 13936: case 13937: case 13938: case 13942: case 13943: case 13944: case 13948: case 13949: case 13950: case 13954: case 13955: case 13956: case 13960: case 13961: case 13962: case 13966: case 13967: case 13968: case 13972: case 13973: case 13974: case 13978: case 13979: case 13980: case 13984: case 13985: case 13986: case 13990: case 13991: case 13992: case 13996: case 13997: case 13998: return East::Low;
case 13786: case 13787: case 13788: case 13792: case 13793: case 13794: case 13798: case 13799: case 13800: case 13804: case 13805: case 13806: case 13810: case 13811: case 13812: case 13816: case 13817: case 13818: case 13822: case 13823: case 13824: case 13828: case 13829: case 13830: case 13834: case 13835: case 13836: case 13840: case 13841: case 13842: case 13846: case 13847: case 13848: case 13852: case 13853: case 13854: case 13858: case 13859: case 13860: case 13864: case 13865: case 13866: case 13870: case 13871: case 13872: case 13876: case 13877: case 13878: case 13882: case 13883: case 13884: case 13888: case 13889: case 13890: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13822: case 13823: case 13824: case 13828: case 13829: case 13830: case 13834: case 13835: case 13836: case 13840: case 13841: case 13842: case 13846: case 13847: case 13848: case 13852: case 13853: case 13854: case 13930: case 13931: case 13932: case 13936: case 13937: case 13938: case 13942: case 13943: case 13944: case 13948: case 13949: case 13950: case 13954: case 13955: case 13956: case 13960: case 13961: case 13962: case 14038: case 14039: case 14040: case 14044: case 14045: case 14046: case 14050: case 14051: case 14052: case 14056: case 14057: case 14058: case 14062: case 14063: case 14064: case 14068: case 14069: case 14070: return North::Low;
case 13786: case 13787: case 13788: case 13792: case 13793: case 13794: case 13798: case 13799: case 13800: case 13804: case 13805: case 13806: case 13810: case 13811: case 13812: case 13816: case 13817: case 13818: case 13894: case 13895: case 13896: case 13900: case 13901: case 13902: case 13906: case 13907: case 13908: case 13912: case 13913: case 13914: case 13918: case 13919: case 13920: case 13924: case 13925: case 13926: case 14002: case 14003: case 14004: case 14008: case 14009: case 14010: case 14014: case 14015: case 14016: case 14020: case 14021: case 14022: case 14026: case 14027: case 14028: case 14032: case 14033: case 14034: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13798: case 13799: case 13800: case 13804: case 13805: case 13806: case 13834: case 13835: case 13836: case 13840: case 13841: case 13842: case 13870: case 13871: case 13872: case 13876: case 13877: case 13878: case 13906: case 13907: case 13908: case 13912: case 13913: case 13914: case 13942: case 13943: case 13944: case 13948: case 13949: case 13950: case 13978: case 13979: case 13980: case 13984: case 13985: case 13986: case 14014: case 14015: case 14016: case 14020: case 14021: case 14022: case 14050: case 14051: case 14052: case 14056: case 14057: case 14058: case 14086: case 14087: case 14088: case 14092: case 14093: case 14094: return South::Low;
case 13786: case 13787: case 13788: case 13792: case 13793: case 13794: case 13822: case 13823: case 13824: case 13828: case 13829: case 13830: case 13858: case 13859: case 13860: case 13864: case 13865: case 13866: case 13894: case 13895: case 13896: case 13900: case 13901: case 13902: case 13930: case 13931: case 13932: case 13936: case 13937: case 13938: case 13966: case 13967: case 13968: case 13972: case 13973: case 13974: case 14002: case 14003: case 14004: case 14008: case 14009: case 14010: case 14038: case 14039: case 14040: case 14044: case 14045: case 14046: case 14074: case 14075: case 14076: case 14080: case 14081: case 14082: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13792: case 13793: case 13794: case 13804: case 13805: case 13806: case 13816: case 13817: case 13818: case 13828: case 13829: case 13830: case 13840: case 13841: case 13842: case 13852: case 13853: case 13854: case 13864: case 13865: case 13866: case 13876: case 13877: case 13878: case 13888: case 13889: case 13890: case 13900: case 13901: case 13902: case 13912: case 13913: case 13914: case 13924: case 13925: case 13926: case 13936: case 13937: case 13938: case 13948: case 13949: case 13950: case 13960: case 13961: case 13962: case 13972: case 13973: case 13974: case 13984: case 13985: case 13986: case 13996: case 13997: case 13998: case 14008: case 14009: case 14010: case 14020: case 14021: case 14022: case 14032: case 14033: case 14034: case 14044: case 14045: case 14046: case 14056: case 14057: case 14058: case 14068: case 14069: case 14070: case 14080: case 14081: case 14082: case 14092: case 14093: case 14094: case 14104: case 14105: case 14106: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 13787: case 13793: case 13799: case 13805: case 13811: case 13817: case 13823: case 13829: case 13835: case 13841: case 13847: case 13853: case 13859: case 13865: case 13871: case 13877: case 13883: case 13889: case 13895: case 13901: case 13907: case 13913: case 13919: case 13925: case 13931: case 13937: case 13943: case 13949: case 13955: case 13961: case 13967: case 13973: case 13979: case 13985: case 13991: case 13997: case 14003: case 14009: case 14015: case 14021: case 14027: case 14033: case 14039: case 14045: case 14051: case 14057: case 14063: case 14069: case 14075: case 14081: case 14087: case 14093: case 14099: case 14105: return West::Low;
case 13786: case 13792: case 13798: case 13804: case 13810: case 13816: case 13822: case 13828: case 13834: case 13840: case 13846: case 13852: case 13858: case 13864: case 13870: case 13876: case 13882: case 13888: case 13894: case 13900: case 13906: case 13912: case 13918: case 13924: case 13930: case 13936: case 13942: case 13948: case 13954: case 13960: case 13966: case 13972: case 13978: case 13984: case 13990: case 13996: case 14002: case 14008: case 14014: case 14020: case 14026: case 14032: case 14038: case 14044: case 14050: case 14056: case 14062: case 14068: case 14074: case 14080: case 14086: case 14092: case 14098: case 14104: return West::None;
@@ -10960,21 +10187,21 @@ namespace Block
}
namespace Scaffolding
{
- short Scaffolding()
+ BlockState Scaffolding()
{
return 14786;
}
- bool Bottom(short ID)
+ bool Bottom(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14772: case 14774: case 14776: case 14778: case 14780: case 14782: case 14784: case 14786: return false;
default: return true;
}
}
- unsigned char Distance(short ID)
+ unsigned char Distance(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14756: case 14772: return 0;
case 14758: case 14774: return 1;
@@ -10992,13 +10219,13 @@ namespace Block
}
namespace SeaPickle
{
- short SeaPickle()
+ BlockState SeaPickle()
{
return 9640;
}
- unsigned char Pickles(short ID)
+ unsigned char Pickles(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9641: return 1;
case 9643: return 2;
@@ -11015,13 +10242,13 @@ namespace Block
}
namespace ShulkerBox
{
- short ShulkerBox()
+ BlockState ShulkerBox()
{
return 9276;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9275: return eBlockFace::BLOCK_FACE_XM;
case 9273: return eBlockFace::BLOCK_FACE_XP;
@@ -11034,13 +10261,13 @@ namespace Block
}
namespace SkeletonSkull
{
- short SkeletonSkull()
+ BlockState SkeletonSkull()
{
return 6490;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6490: return 0;
case 6491: return 1;
@@ -11063,13 +10290,13 @@ namespace Block
}
namespace SkeletonWallSkull
{
- short SkeletonWallSkull()
+ BlockState SkeletonWallSkull()
{
return 6506;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6508: return eBlockFace::BLOCK_FACE_XM;
case 6509: return eBlockFace::BLOCK_FACE_XP;
@@ -11086,13 +10313,13 @@ namespace Block
}
namespace Smoker
{
- short Smoker()
+ BlockState Smoker()
{
return 14804;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14807: case 14808: return eBlockFace::BLOCK_FACE_XM;
case 14809: case 14810: return eBlockFace::BLOCK_FACE_XP;
@@ -11100,9 +10327,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Lit(short ID)
+ bool Lit(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14804: case 14806: case 14808: case 14810: return false;
default: return true;
@@ -11114,13 +10341,13 @@ namespace Block
}
namespace SmoothQuartzSlab
{
- short SmoothQuartzSlab()
+ BlockState SmoothQuartzSlab()
{
return 10834;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10834: return Type::Bottom;
case 10836: return Type::Double;
@@ -11130,13 +10357,13 @@ namespace Block
}
namespace SmoothQuartzStairs
{
- short SmoothQuartzStairs()
+ BlockState SmoothQuartzStairs()
{
return 10320;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10350: case 10352: case 10354: case 10356: case 10358: case 10360: case 10362: case 10364: case 10366: case 10368: return eBlockFace::BLOCK_FACE_XM;
case 10370: case 10372: case 10374: case 10376: case 10378: case 10380: case 10382: case 10384: case 10386: case 10388: return eBlockFace::BLOCK_FACE_XP;
@@ -11144,17 +10371,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10320: case 10322: case 10324: case 10326: case 10328: case 10340: case 10342: case 10344: case 10346: case 10348: case 10360: case 10362: case 10364: case 10366: case 10368: case 10380: case 10382: case 10384: case 10386: case 10388: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10312: case 10322: case 10332: case 10342: case 10352: case 10362: case 10372: case 10382: return Shape::InnerLeft;
case 10314: case 10324: case 10334: case 10344: case 10354: case 10364: case 10374: case 10384: return Shape::InnerRight;
@@ -11169,13 +10396,13 @@ namespace Block
}
namespace SmoothRedSandstoneSlab
{
- short SmoothRedSandstoneSlab()
+ BlockState SmoothRedSandstoneSlab()
{
return 10798;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10798: return Type::Bottom;
case 10800: return Type::Double;
@@ -11185,13 +10412,13 @@ namespace Block
}
namespace SmoothRedSandstoneStairs
{
- short SmoothRedSandstoneStairs()
+ BlockState SmoothRedSandstoneStairs()
{
return 9760;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9790: case 9792: case 9794: case 9796: case 9798: case 9800: case 9802: case 9804: case 9806: case 9808: return eBlockFace::BLOCK_FACE_XM;
case 9810: case 9812: case 9814: case 9816: case 9818: case 9820: case 9822: case 9824: case 9826: case 9828: return eBlockFace::BLOCK_FACE_XP;
@@ -11199,17 +10426,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9760: case 9762: case 9764: case 9766: case 9768: case 9780: case 9782: case 9784: case 9786: case 9788: case 9800: case 9802: case 9804: case 9806: case 9808: case 9820: case 9822: case 9824: case 9826: case 9828: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9752: case 9762: case 9772: case 9782: case 9792: case 9802: case 9812: case 9822: return Shape::InnerLeft;
case 9754: case 9764: case 9774: case 9784: case 9794: case 9804: case 9814: case 9824: return Shape::InnerRight;
@@ -11224,13 +10451,13 @@ namespace Block
}
namespace SmoothSandstoneSlab
{
- short SmoothSandstoneSlab()
+ BlockState SmoothSandstoneSlab()
{
return 10828;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10828: return Type::Bottom;
case 10830: return Type::Double;
@@ -11240,13 +10467,13 @@ namespace Block
}
namespace SmoothSandstoneStairs
{
- short SmoothSandstoneStairs()
+ BlockState SmoothSandstoneStairs()
{
return 10240;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10270: case 10272: case 10274: case 10276: case 10278: case 10280: case 10282: case 10284: case 10286: case 10288: return eBlockFace::BLOCK_FACE_XM;
case 10290: case 10292: case 10294: case 10296: case 10298: case 10300: case 10302: case 10304: case 10306: case 10308: return eBlockFace::BLOCK_FACE_XP;
@@ -11254,17 +10481,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10240: case 10242: case 10244: case 10246: case 10248: case 10260: case 10262: case 10264: case 10266: case 10268: case 10280: case 10282: case 10284: case 10286: case 10288: case 10300: case 10302: case 10304: case 10306: case 10308: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10232: case 10242: case 10252: case 10262: case 10272: case 10282: case 10292: case 10302: return Shape::InnerLeft;
case 10234: case 10244: case 10254: case 10264: case 10274: case 10284: case 10294: case 10304: return Shape::InnerRight;
@@ -11279,13 +10506,13 @@ namespace Block
}
namespace SmoothStoneSlab
{
- short SmoothStoneSlab()
+ BlockState SmoothStoneSlab()
{
return 8345;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8345: return Type::Bottom;
case 8347: return Type::Double;
@@ -11295,13 +10522,13 @@ namespace Block
}
namespace Snow
{
- short Snow()
+ BlockState Snow()
{
return 3921;
}
- unsigned char Layers(short ID)
+ unsigned char Layers(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3921: return 1;
case 3922: return 2;
@@ -11319,13 +10546,13 @@ namespace Block
}
namespace SoulCampfire
{
- short SoulCampfire()
+ BlockState SoulCampfire()
{
return 14925;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14939: case 14941: case 14943: case 14945: return eBlockFace::BLOCK_FACE_XM;
case 14947: case 14949: case 14951: case 14953: return eBlockFace::BLOCK_FACE_XP;
@@ -11333,17 +10560,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Lit(short ID)
+ bool Lit(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14927: case 14929: case 14935: case 14937: case 14943: case 14945: case 14951: case 14953: return false;
default: return true;
}
}
- bool SignalFire(short ID)
+ bool SignalFire(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14925: case 14929: case 14933: case 14937: case 14941: case 14945: case 14949: case 14953: return false;
default: return true;
@@ -11355,13 +10582,13 @@ namespace Block
}
namespace SoulLantern
{
- short SoulLantern()
+ BlockState SoulLantern()
{
return 14889;
}
- bool Hanging(short ID)
+ bool Hanging(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14889: return false;
default: return true;
@@ -11379,13 +10606,13 @@ namespace Block
}
namespace SoulWallTorch
{
- short SoulWallTorch()
+ BlockState SoulWallTorch()
{
return 4009;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4011: return eBlockFace::BLOCK_FACE_XM;
case 4012: return eBlockFace::BLOCK_FACE_XP;
@@ -11402,22 +10629,22 @@ namespace Block
}
namespace SpruceButton
{
- short SpruceButton()
+ BlockState SpruceButton()
{
return 6379;
}
- enum Face Face(short ID)
+ enum Face Face(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6386: case 6387: case 6388: case 6389: case 6390: case 6391: case 6392: case 6393: return Face::Ceiling;
case 6370: case 6371: case 6372: case 6373: case 6374: case 6375: case 6376: case 6377: return Face::Floor;
default: return Face::Wall;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6374: case 6375: case 6382: case 6383: case 6390: case 6391: return eBlockFace::BLOCK_FACE_XM;
case 6376: case 6377: case 6384: case 6385: case 6392: case 6393: return eBlockFace::BLOCK_FACE_XP;
@@ -11425,9 +10652,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6371: case 6373: case 6375: case 6377: case 6379: case 6381: case 6383: case 6385: case 6387: case 6389: case 6391: case 6393: return false;
default: return true;
@@ -11436,13 +10663,13 @@ namespace Block
}
namespace SpruceDoor
{
- short SpruceDoor()
+ BlockState SpruceDoor()
{
return 8749;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8770: case 8771: case 8772: case 8773: case 8774: case 8775: case 8776: case 8777: case 8778: case 8779: case 8780: case 8781: case 8782: case 8783: case 8784: case 8785: return eBlockFace::BLOCK_FACE_XM;
case 8786: case 8787: case 8788: case 8789: case 8790: case 8791: case 8792: case 8793: case 8794: case 8795: case 8796: case 8797: case 8798: case 8799: case 8800: case 8801: return eBlockFace::BLOCK_FACE_XP;
@@ -11450,33 +10677,33 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8746: case 8747: case 8748: case 8749: case 8750: case 8751: case 8752: case 8753: case 8762: case 8763: case 8764: case 8765: case 8766: case 8767: case 8768: case 8769: case 8778: case 8779: case 8780: case 8781: case 8782: case 8783: case 8784: case 8785: case 8794: case 8795: case 8796: case 8797: case 8798: case 8799: case 8800: case 8801: return Half::Lower;
default: return Half::Upper;
}
}
- enum Hinge Hinge(short ID)
+ enum Hinge Hinge(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8738: case 8739: case 8740: case 8741: case 8746: case 8747: case 8748: case 8749: case 8754: case 8755: case 8756: case 8757: case 8762: case 8763: case 8764: case 8765: case 8770: case 8771: case 8772: case 8773: case 8778: case 8779: case 8780: case 8781: case 8786: case 8787: case 8788: case 8789: case 8794: case 8795: case 8796: case 8797: return Hinge::Left;
default: return Hinge::Right;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8740: case 8741: case 8744: case 8745: case 8748: case 8749: case 8752: case 8753: case 8756: case 8757: case 8760: case 8761: case 8764: case 8765: case 8768: case 8769: case 8772: case 8773: case 8776: case 8777: case 8780: case 8781: case 8784: case 8785: case 8788: case 8789: case 8792: case 8793: case 8796: case 8797: case 8800: case 8801: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8739: case 8741: case 8743: case 8745: case 8747: case 8749: case 8751: case 8753: case 8755: case 8757: case 8759: case 8761: case 8763: case 8765: case 8767: case 8769: case 8771: case 8773: case 8775: case 8777: case 8779: case 8781: case 8783: case 8785: case 8787: case 8789: case 8791: case 8793: case 8795: case 8797: case 8799: case 8801: return false;
default: return true;
@@ -11485,37 +10712,37 @@ namespace Block
}
namespace SpruceFence
{
- short SpruceFence()
+ BlockState SpruceFence()
{
return 8609;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8596: case 8597: case 8600: case 8601: case 8604: case 8605: case 8608: case 8609: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8588: case 8589: case 8592: case 8593: case 8604: case 8605: case 8608: case 8609: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8584: case 8585: case 8592: case 8593: case 8600: case 8601: case 8608: case 8609: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8581: case 8585: case 8589: case 8593: case 8597: case 8601: case 8605: case 8609: return false;
default: return true;
@@ -11524,13 +10751,13 @@ namespace Block
}
namespace SpruceFenceGate
{
- short SpruceFenceGate()
+ BlockState SpruceFenceGate()
{
return 8425;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8434: case 8435: case 8436: case 8437: case 8438: case 8439: case 8440: case 8441: return eBlockFace::BLOCK_FACE_XM;
case 8442: case 8443: case 8444: case 8445: case 8446: case 8447: case 8448: case 8449: return eBlockFace::BLOCK_FACE_XP;
@@ -11538,25 +10765,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool InWall(short ID)
+ bool InWall(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8422: case 8423: case 8424: case 8425: case 8430: case 8431: case 8432: case 8433: case 8438: case 8439: case 8440: case 8441: case 8446: case 8447: case 8448: case 8449: return false;
default: return true;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8420: case 8421: case 8424: case 8425: case 8428: case 8429: case 8432: case 8433: case 8436: case 8437: case 8440: case 8441: case 8444: case 8445: case 8448: case 8449: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8419: case 8421: case 8423: case 8425: case 8427: case 8429: case 8431: case 8433: case 8435: case 8437: case 8439: case 8441: case 8443: case 8445: case 8447: case 8449: return false;
default: return true;
@@ -11565,13 +10792,13 @@ namespace Block
}
namespace SpruceLeaves
{
- short SpruceLeaves()
+ BlockState SpruceLeaves()
{
return 172;
}
- unsigned char Distance(short ID)
+ unsigned char Distance(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 159: case 160: return 1;
case 161: case 162: return 2;
@@ -11582,9 +10809,9 @@ namespace Block
default: return 7;
}
}
- bool Persistent(short ID)
+ bool Persistent(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 160: case 162: case 164: case 166: case 168: case 170: case 172: return false;
default: return true;
@@ -11593,13 +10820,13 @@ namespace Block
}
namespace SpruceLog
{
- short SpruceLog()
+ BlockState SpruceLog()
{
return 77;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 76: return Axis::X;
case 77: return Axis::Y;
@@ -11612,13 +10839,13 @@ namespace Block
}
namespace SprucePressurePlate
{
- short SprucePressurePlate()
+ BlockState SprucePressurePlate()
{
return 3876;
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3876: return false;
default: return true;
@@ -11627,13 +10854,13 @@ namespace Block
}
namespace SpruceSapling
{
- short SpruceSapling()
+ BlockState SpruceSapling()
{
return 23;
}
- unsigned char Stage(short ID)
+ unsigned char Stage(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 23: return 0;
default: return 1;
@@ -11642,13 +10869,13 @@ namespace Block
}
namespace SpruceSign
{
- short SpruceSign()
+ BlockState SpruceSign()
{
return 3414;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3414: return 0;
case 3416: return 1;
@@ -11671,13 +10898,13 @@ namespace Block
}
namespace SpruceSlab
{
- short SpruceSlab()
+ BlockState SpruceSlab()
{
return 8309;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8309: return Type::Bottom;
case 8311: return Type::Double;
@@ -11687,13 +10914,13 @@ namespace Block
}
namespace SpruceStairs
{
- short SpruceStairs()
+ BlockState SpruceStairs()
{
return 5415;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5445: case 5447: case 5449: case 5451: case 5453: case 5455: case 5457: case 5459: case 5461: case 5463: return eBlockFace::BLOCK_FACE_XM;
case 5465: case 5467: case 5469: case 5471: case 5473: case 5475: case 5477: case 5479: case 5481: case 5483: return eBlockFace::BLOCK_FACE_XP;
@@ -11701,17 +10928,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5415: case 5417: case 5419: case 5421: case 5423: case 5435: case 5437: case 5439: case 5441: case 5443: case 5455: case 5457: case 5459: case 5461: case 5463: case 5475: case 5477: case 5479: case 5481: case 5483: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5407: case 5417: case 5427: case 5437: case 5447: case 5457: case 5467: case 5477: return Shape::InnerLeft;
case 5409: case 5419: case 5429: case 5439: case 5449: case 5459: case 5469: case 5479: return Shape::InnerRight;
@@ -11723,13 +10950,13 @@ namespace Block
}
namespace SpruceTrapdoor
{
- short SpruceTrapdoor()
+ BlockState SpruceTrapdoor()
{
return 4190;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4208: case 4210: case 4212: case 4214: case 4216: case 4218: case 4220: case 4222: return eBlockFace::BLOCK_FACE_XM;
case 4224: case 4226: case 4228: case 4230: case 4232: case 4234: case 4236: case 4238: return eBlockFace::BLOCK_FACE_XP;
@@ -11737,25 +10964,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4184: case 4186: case 4188: case 4190: case 4200: case 4202: case 4204: case 4206: case 4216: case 4218: case 4220: case 4222: case 4232: case 4234: case 4236: case 4238: return Half::Bottom;
default: return Half::Top;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4180: case 4182: case 4188: case 4190: case 4196: case 4198: case 4204: case 4206: case 4212: case 4214: case 4220: case 4222: case 4228: case 4230: case 4236: case 4238: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4178: case 4182: case 4186: case 4190: case 4194: case 4198: case 4202: case 4206: case 4210: case 4214: case 4218: case 4222: case 4226: case 4230: case 4234: case 4238: return false;
default: return true;
@@ -11764,13 +10991,13 @@ namespace Block
}
namespace SpruceWallSign
{
- short SpruceWallSign()
+ BlockState SpruceWallSign()
{
return 3744;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3748: return eBlockFace::BLOCK_FACE_XM;
case 3750: return eBlockFace::BLOCK_FACE_XP;
@@ -11781,13 +11008,13 @@ namespace Block
}
namespace SpruceWood
{
- short SpruceWood()
+ BlockState SpruceWood()
{
return 113;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 112: return Axis::X;
case 113: return Axis::Y;
@@ -11797,21 +11024,21 @@ namespace Block
}
namespace StickyPiston
{
- short StickyPiston()
+ BlockState StickyPiston()
{
return 1335;
}
- bool Extended(short ID)
+ bool Extended(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1335: case 1336: case 1337: case 1338: case 1339: case 1340: return false;
default: return true;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1332: case 1338: return eBlockFace::BLOCK_FACE_XM;
case 1330: case 1336: return eBlockFace::BLOCK_FACE_XP;
@@ -11827,13 +11054,13 @@ namespace Block
}
namespace StoneBrickSlab
{
- short StoneBrickSlab()
+ BlockState StoneBrickSlab()
{
return 8381;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8381: return Type::Bottom;
case 8383: return Type::Double;
@@ -11843,13 +11070,13 @@ namespace Block
}
namespace StoneBrickStairs
{
- short StoneBrickStairs()
+ BlockState StoneBrickStairs()
{
return 4943;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4973: case 4975: case 4977: case 4979: case 4981: case 4983: case 4985: case 4987: case 4989: case 4991: return eBlockFace::BLOCK_FACE_XM;
case 4993: case 4995: case 4997: case 4999: case 5001: case 5003: case 5005: case 5007: case 5009: case 5011: return eBlockFace::BLOCK_FACE_XP;
@@ -11857,17 +11084,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4943: case 4945: case 4947: case 4949: case 4951: case 4963: case 4965: case 4967: case 4969: case 4971: case 4983: case 4985: case 4987: case 4989: case 4991: case 5003: case 5005: case 5007: case 5009: case 5011: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4935: case 4945: case 4955: case 4965: case 4975: case 4985: case 4995: case 5005: return Shape::InnerLeft;
case 4937: case 4947: case 4957: case 4967: case 4977: case 4987: case 4997: case 5007: return Shape::InnerRight;
@@ -11879,48 +11106,48 @@ namespace Block
}
namespace StoneBrickWall
{
- short StoneBrickWall()
+ BlockState StoneBrickWall()
{
return 12490;
}
- enum East East(short ID)
+ enum East East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12598: case 12599: case 12600: case 12604: case 12605: case 12606: case 12610: case 12611: case 12612: case 12616: case 12617: case 12618: case 12622: case 12623: case 12624: case 12628: case 12629: case 12630: case 12634: case 12635: case 12636: case 12640: case 12641: case 12642: case 12646: case 12647: case 12648: case 12652: case 12653: case 12654: case 12658: case 12659: case 12660: case 12664: case 12665: case 12666: case 12670: case 12671: case 12672: case 12676: case 12677: case 12678: case 12682: case 12683: case 12684: case 12688: case 12689: case 12690: case 12694: case 12695: case 12696: case 12700: case 12701: case 12702: return East::Low;
case 12490: case 12491: case 12492: case 12496: case 12497: case 12498: case 12502: case 12503: case 12504: case 12508: case 12509: case 12510: case 12514: case 12515: case 12516: case 12520: case 12521: case 12522: case 12526: case 12527: case 12528: case 12532: case 12533: case 12534: case 12538: case 12539: case 12540: case 12544: case 12545: case 12546: case 12550: case 12551: case 12552: case 12556: case 12557: case 12558: case 12562: case 12563: case 12564: case 12568: case 12569: case 12570: case 12574: case 12575: case 12576: case 12580: case 12581: case 12582: case 12586: case 12587: case 12588: case 12592: case 12593: case 12594: return East::None;
default: return East::Tall;
}
}
- enum North North(short ID)
+ enum North North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12526: case 12527: case 12528: case 12532: case 12533: case 12534: case 12538: case 12539: case 12540: case 12544: case 12545: case 12546: case 12550: case 12551: case 12552: case 12556: case 12557: case 12558: case 12634: case 12635: case 12636: case 12640: case 12641: case 12642: case 12646: case 12647: case 12648: case 12652: case 12653: case 12654: case 12658: case 12659: case 12660: case 12664: case 12665: case 12666: case 12742: case 12743: case 12744: case 12748: case 12749: case 12750: case 12754: case 12755: case 12756: case 12760: case 12761: case 12762: case 12766: case 12767: case 12768: case 12772: case 12773: case 12774: return North::Low;
case 12490: case 12491: case 12492: case 12496: case 12497: case 12498: case 12502: case 12503: case 12504: case 12508: case 12509: case 12510: case 12514: case 12515: case 12516: case 12520: case 12521: case 12522: case 12598: case 12599: case 12600: case 12604: case 12605: case 12606: case 12610: case 12611: case 12612: case 12616: case 12617: case 12618: case 12622: case 12623: case 12624: case 12628: case 12629: case 12630: case 12706: case 12707: case 12708: case 12712: case 12713: case 12714: case 12718: case 12719: case 12720: case 12724: case 12725: case 12726: case 12730: case 12731: case 12732: case 12736: case 12737: case 12738: return North::None;
default: return North::Tall;
}
}
- enum South South(short ID)
+ enum South South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12502: case 12503: case 12504: case 12508: case 12509: case 12510: case 12538: case 12539: case 12540: case 12544: case 12545: case 12546: case 12574: case 12575: case 12576: case 12580: case 12581: case 12582: case 12610: case 12611: case 12612: case 12616: case 12617: case 12618: case 12646: case 12647: case 12648: case 12652: case 12653: case 12654: case 12682: case 12683: case 12684: case 12688: case 12689: case 12690: case 12718: case 12719: case 12720: case 12724: case 12725: case 12726: case 12754: case 12755: case 12756: case 12760: case 12761: case 12762: case 12790: case 12791: case 12792: case 12796: case 12797: case 12798: return South::Low;
case 12490: case 12491: case 12492: case 12496: case 12497: case 12498: case 12526: case 12527: case 12528: case 12532: case 12533: case 12534: case 12562: case 12563: case 12564: case 12568: case 12569: case 12570: case 12598: case 12599: case 12600: case 12604: case 12605: case 12606: case 12634: case 12635: case 12636: case 12640: case 12641: case 12642: case 12670: case 12671: case 12672: case 12676: case 12677: case 12678: case 12706: case 12707: case 12708: case 12712: case 12713: case 12714: case 12742: case 12743: case 12744: case 12748: case 12749: case 12750: case 12778: case 12779: case 12780: case 12784: case 12785: case 12786: return South::None;
default: return South::Tall;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12496: case 12497: case 12498: case 12508: case 12509: case 12510: case 12520: case 12521: case 12522: case 12532: case 12533: case 12534: case 12544: case 12545: case 12546: case 12556: case 12557: case 12558: case 12568: case 12569: case 12570: case 12580: case 12581: case 12582: case 12592: case 12593: case 12594: case 12604: case 12605: case 12606: case 12616: case 12617: case 12618: case 12628: case 12629: case 12630: case 12640: case 12641: case 12642: case 12652: case 12653: case 12654: case 12664: case 12665: case 12666: case 12676: case 12677: case 12678: case 12688: case 12689: case 12690: case 12700: case 12701: case 12702: case 12712: case 12713: case 12714: case 12724: case 12725: case 12726: case 12736: case 12737: case 12738: case 12748: case 12749: case 12750: case 12760: case 12761: case 12762: case 12772: case 12773: case 12774: case 12784: case 12785: case 12786: case 12796: case 12797: case 12798: case 12808: case 12809: case 12810: return false;
default: return true;
}
}
- enum West West(short ID)
+ enum West West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 12491: case 12497: case 12503: case 12509: case 12515: case 12521: case 12527: case 12533: case 12539: case 12545: case 12551: case 12557: case 12563: case 12569: case 12575: case 12581: case 12587: case 12593: case 12599: case 12605: case 12611: case 12617: case 12623: case 12629: case 12635: case 12641: case 12647: case 12653: case 12659: case 12665: case 12671: case 12677: case 12683: case 12689: case 12695: case 12701: case 12707: case 12713: case 12719: case 12725: case 12731: case 12737: case 12743: case 12749: case 12755: case 12761: case 12767: case 12773: case 12779: case 12785: case 12791: case 12797: case 12803: case 12809: return West::Low;
case 12490: case 12496: case 12502: case 12508: case 12514: case 12520: case 12526: case 12532: case 12538: case 12544: case 12550: case 12556: case 12562: case 12568: case 12574: case 12580: case 12586: case 12592: case 12598: case 12604: case 12610: case 12616: case 12622: case 12628: case 12634: case 12640: case 12646: case 12652: case 12658: case 12664: case 12670: case 12676: case 12682: case 12688: case 12694: case 12700: case 12706: case 12712: case 12718: case 12724: case 12730: case 12736: case 12742: case 12748: case 12754: case 12760: case 12766: case 12772: case 12778: case 12784: case 12790: case 12796: case 12802: case 12808: return West::None;
@@ -11933,22 +11160,22 @@ namespace Block
}
namespace StoneButton
{
- short StoneButton()
+ BlockState StoneButton()
{
return 3906;
}
- enum Face Face(short ID)
+ enum Face Face(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3913: case 3914: case 3915: case 3916: case 3917: case 3918: case 3919: case 3920: return Face::Ceiling;
case 3897: case 3898: case 3899: case 3900: case 3901: case 3902: case 3903: case 3904: return Face::Floor;
default: return Face::Wall;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3901: case 3902: case 3909: case 3910: case 3917: case 3918: return eBlockFace::BLOCK_FACE_XM;
case 3903: case 3904: case 3911: case 3912: case 3919: case 3920: return eBlockFace::BLOCK_FACE_XP;
@@ -11956,9 +11183,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3898: case 3900: case 3902: case 3904: case 3906: case 3908: case 3910: case 3912: case 3914: case 3916: case 3918: case 3920: return false;
default: return true;
@@ -11967,13 +11194,13 @@ namespace Block
}
namespace StonePressurePlate
{
- short StonePressurePlate()
+ BlockState StonePressurePlate()
{
return 3808;
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3808: return false;
default: return true;
@@ -11982,13 +11209,13 @@ namespace Block
}
namespace StoneSlab
{
- short StoneSlab()
+ BlockState StoneSlab()
{
return 8339;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8339: return Type::Bottom;
case 8341: return Type::Double;
@@ -11998,13 +11225,13 @@ namespace Block
}
namespace StoneStairs
{
- short StoneStairs()
+ BlockState StoneStairs()
{
return 10160;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10190: case 10192: case 10194: case 10196: case 10198: case 10200: case 10202: case 10204: case 10206: case 10208: return eBlockFace::BLOCK_FACE_XM;
case 10210: case 10212: case 10214: case 10216: case 10218: case 10220: case 10222: case 10224: case 10226: case 10228: return eBlockFace::BLOCK_FACE_XP;
@@ -12012,17 +11239,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10160: case 10162: case 10164: case 10166: case 10168: case 10180: case 10182: case 10184: case 10186: case 10188: case 10200: case 10202: case 10204: case 10206: case 10208: case 10220: case 10222: case 10224: case 10226: case 10228: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 10152: case 10162: case 10172: case 10182: case 10192: case 10202: case 10212: case 10222: return Shape::InnerLeft;
case 10154: case 10164: case 10174: case 10184: case 10194: case 10204: case 10214: case 10224: return Shape::InnerRight;
@@ -12034,13 +11261,13 @@ namespace Block
}
namespace Stonecutter
{
- short Stonecutter()
+ BlockState Stonecutter()
{
return 14850;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14852: return eBlockFace::BLOCK_FACE_XM;
case 14853: return eBlockFace::BLOCK_FACE_XP;
@@ -12051,13 +11278,13 @@ namespace Block
}
namespace StrippedAcaciaLog
{
- short StrippedAcaciaLog()
+ BlockState StrippedAcaciaLog()
{
return 101;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 100: return Axis::X;
case 101: return Axis::Y;
@@ -12067,13 +11294,13 @@ namespace Block
}
namespace StrippedAcaciaWood
{
- short StrippedAcaciaWood()
+ BlockState StrippedAcaciaWood()
{
return 140;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 139: return Axis::X;
case 140: return Axis::Y;
@@ -12083,13 +11310,13 @@ namespace Block
}
namespace StrippedBirchLog
{
- short StrippedBirchLog()
+ BlockState StrippedBirchLog()
{
return 95;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 94: return Axis::X;
case 95: return Axis::Y;
@@ -12099,13 +11326,13 @@ namespace Block
}
namespace StrippedBirchWood
{
- short StrippedBirchWood()
+ BlockState StrippedBirchWood()
{
return 134;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 133: return Axis::X;
case 134: return Axis::Y;
@@ -12115,13 +11342,13 @@ namespace Block
}
namespace StrippedCrimsonHyphae
{
- short StrippedCrimsonHyphae()
+ BlockState StrippedCrimsonHyphae()
{
return 14985;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14984: return Axis::X;
case 14985: return Axis::Y;
@@ -12131,13 +11358,13 @@ namespace Block
}
namespace StrippedCrimsonStem
{
- short StrippedCrimsonStem()
+ BlockState StrippedCrimsonStem()
{
return 14979;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14978: return Axis::X;
case 14979: return Axis::Y;
@@ -12147,13 +11374,13 @@ namespace Block
}
namespace StrippedDarkOakLog
{
- short StrippedDarkOakLog()
+ BlockState StrippedDarkOakLog()
{
return 104;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 103: return Axis::X;
case 104: return Axis::Y;
@@ -12163,13 +11390,13 @@ namespace Block
}
namespace StrippedDarkOakWood
{
- short StrippedDarkOakWood()
+ BlockState StrippedDarkOakWood()
{
return 143;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 142: return Axis::X;
case 143: return Axis::Y;
@@ -12179,13 +11406,13 @@ namespace Block
}
namespace StrippedJungleLog
{
- short StrippedJungleLog()
+ BlockState StrippedJungleLog()
{
return 98;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 97: return Axis::X;
case 98: return Axis::Y;
@@ -12195,13 +11422,13 @@ namespace Block
}
namespace StrippedJungleWood
{
- short StrippedJungleWood()
+ BlockState StrippedJungleWood()
{
return 137;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 136: return Axis::X;
case 137: return Axis::Y;
@@ -12211,13 +11438,13 @@ namespace Block
}
namespace StrippedOakLog
{
- short StrippedOakLog()
+ BlockState StrippedOakLog()
{
return 107;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 106: return Axis::X;
case 107: return Axis::Y;
@@ -12227,13 +11454,13 @@ namespace Block
}
namespace StrippedOakWood
{
- short StrippedOakWood()
+ BlockState StrippedOakWood()
{
return 128;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 127: return Axis::X;
case 128: return Axis::Y;
@@ -12243,13 +11470,13 @@ namespace Block
}
namespace StrippedSpruceLog
{
- short StrippedSpruceLog()
+ BlockState StrippedSpruceLog()
{
return 92;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 91: return Axis::X;
case 92: return Axis::Y;
@@ -12259,13 +11486,13 @@ namespace Block
}
namespace StrippedSpruceWood
{
- short StrippedSpruceWood()
+ BlockState StrippedSpruceWood()
{
return 131;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 130: return Axis::X;
case 131: return Axis::Y;
@@ -12275,13 +11502,13 @@ namespace Block
}
namespace StrippedWarpedHyphae
{
- short StrippedWarpedHyphae()
+ BlockState StrippedWarpedHyphae()
{
return 14968;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14967: return Axis::X;
case 14968: return Axis::Y;
@@ -12291,13 +11518,13 @@ namespace Block
}
namespace StrippedWarpedStem
{
- short StrippedWarpedStem()
+ BlockState StrippedWarpedStem()
{
return 14962;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14961: return Axis::X;
case 14962: return Axis::Y;
@@ -12307,13 +11534,13 @@ namespace Block
}
namespace StructureBlock
{
- short StructureBlock()
+ BlockState StructureBlock()
{
return 15735;
}
- enum Mode Mode(short ID)
+ enum Mode Mode(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15737: return Mode::Corner;
case 15738: return Mode::Data;
@@ -12327,13 +11554,13 @@ namespace Block
}
namespace SugarCane
{
- short SugarCane()
+ BlockState SugarCane()
{
return 3948;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3948: return 0;
case 3949: return 1;
@@ -12356,13 +11583,13 @@ namespace Block
}
namespace Sunflower
{
- short Sunflower()
+ BlockState Sunflower()
{
return 7886;
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7886: return Half::Lower;
default: return Half::Upper;
@@ -12371,13 +11598,13 @@ namespace Block
}
namespace SweetBerryBush
{
- short SweetBerryBush()
+ BlockState SweetBerryBush()
{
return 14954;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14954: return 0;
case 14955: return 1;
@@ -12388,13 +11615,13 @@ namespace Block
}
namespace TNT
{
- short TNT()
+ BlockState TNT()
{
return 1431;
}
- bool Unstable(short ID)
+ bool Unstable(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1431: return false;
default: return true;
@@ -12403,13 +11630,13 @@ namespace Block
}
namespace TallGrass
{
- short TallGrass()
+ BlockState TallGrass()
{
return 7894;
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7894: return Half::Lower;
default: return Half::Upper;
@@ -12418,13 +11645,13 @@ namespace Block
}
namespace TallSeagrass
{
- short TallSeagrass()
+ BlockState TallSeagrass()
{
return 1347;
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1347: return Half::Lower;
default: return Half::Upper;
@@ -12433,13 +11660,13 @@ namespace Block
}
namespace Target
{
- short Target()
+ BlockState Target()
{
return 15760;
}
- unsigned char Power(short ID)
+ unsigned char Power(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15760: return 0;
case 15761: return 1;
@@ -12468,13 +11695,13 @@ namespace Block
}
namespace TrappedChest
{
- short TrappedChest()
+ BlockState TrappedChest()
{
return 6623;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6635: case 6637: case 6639: return eBlockFace::BLOCK_FACE_XM;
case 6641: case 6643: case 6645: return eBlockFace::BLOCK_FACE_XP;
@@ -12482,9 +11709,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6625: case 6631: case 6637: case 6643: return Type::Left;
case 6627: case 6633: case 6639: case 6645: return Type::Right;
@@ -12494,61 +11721,61 @@ namespace Block
}
namespace Tripwire
{
- short Tripwire()
+ BlockState Tripwire()
{
return 5402;
}
- bool Attached(short ID)
+ bool Attached(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5339: case 5340: case 5341: case 5342: case 5343: case 5344: case 5345: case 5346: case 5347: case 5348: case 5349: case 5350: case 5351: case 5352: case 5353: case 5354: case 5355: case 5356: case 5357: case 5358: case 5359: case 5360: case 5361: case 5362: case 5363: case 5364: case 5365: case 5366: case 5367: case 5368: case 5369: case 5370: case 5371: case 5372: case 5373: case 5374: case 5375: case 5376: case 5377: case 5378: case 5379: case 5380: case 5381: case 5382: case 5383: case 5384: case 5385: case 5386: case 5387: case 5388: case 5389: case 5390: case 5391: case 5392: case 5393: case 5394: case 5395: case 5396: case 5397: case 5398: case 5399: case 5400: case 5401: case 5402: return false;
default: return true;
}
}
- bool Disarmed(short ID)
+ bool Disarmed(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5307: case 5308: case 5309: case 5310: case 5311: case 5312: case 5313: case 5314: case 5315: case 5316: case 5317: case 5318: case 5319: case 5320: case 5321: case 5322: case 5323: case 5324: case 5325: case 5326: case 5327: case 5328: case 5329: case 5330: case 5331: case 5332: case 5333: case 5334: case 5335: case 5336: case 5337: case 5338: case 5371: case 5372: case 5373: case 5374: case 5375: case 5376: case 5377: case 5378: case 5379: case 5380: case 5381: case 5382: case 5383: case 5384: case 5385: case 5386: case 5387: case 5388: case 5389: case 5390: case 5391: case 5392: case 5393: case 5394: case 5395: case 5396: case 5397: case 5398: case 5399: case 5400: case 5401: case 5402: return false;
default: return true;
}
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5291: case 5292: case 5293: case 5294: case 5295: case 5296: case 5297: case 5298: case 5299: case 5300: case 5301: case 5302: case 5303: case 5304: case 5305: case 5306: case 5323: case 5324: case 5325: case 5326: case 5327: case 5328: case 5329: case 5330: case 5331: case 5332: case 5333: case 5334: case 5335: case 5336: case 5337: case 5338: case 5355: case 5356: case 5357: case 5358: case 5359: case 5360: case 5361: case 5362: case 5363: case 5364: case 5365: case 5366: case 5367: case 5368: case 5369: case 5370: case 5387: case 5388: case 5389: case 5390: case 5391: case 5392: case 5393: case 5394: case 5395: case 5396: case 5397: case 5398: case 5399: case 5400: case 5401: case 5402: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5283: case 5284: case 5285: case 5286: case 5287: case 5288: case 5289: case 5290: case 5299: case 5300: case 5301: case 5302: case 5303: case 5304: case 5305: case 5306: case 5315: case 5316: case 5317: case 5318: case 5319: case 5320: case 5321: case 5322: case 5331: case 5332: case 5333: case 5334: case 5335: case 5336: case 5337: case 5338: case 5347: case 5348: case 5349: case 5350: case 5351: case 5352: case 5353: case 5354: case 5363: case 5364: case 5365: case 5366: case 5367: case 5368: case 5369: case 5370: case 5379: case 5380: case 5381: case 5382: case 5383: case 5384: case 5385: case 5386: case 5395: case 5396: case 5397: case 5398: case 5399: case 5400: case 5401: case 5402: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5279: case 5280: case 5281: case 5282: case 5287: case 5288: case 5289: case 5290: case 5295: case 5296: case 5297: case 5298: case 5303: case 5304: case 5305: case 5306: case 5311: case 5312: case 5313: case 5314: case 5319: case 5320: case 5321: case 5322: case 5327: case 5328: case 5329: case 5330: case 5335: case 5336: case 5337: case 5338: case 5343: case 5344: case 5345: case 5346: case 5351: case 5352: case 5353: case 5354: case 5359: case 5360: case 5361: case 5362: case 5367: case 5368: case 5369: case 5370: case 5375: case 5376: case 5377: case 5378: case 5383: case 5384: case 5385: case 5386: case 5391: case 5392: case 5393: case 5394: case 5399: case 5400: case 5401: case 5402: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5277: case 5278: case 5281: case 5282: case 5285: case 5286: case 5289: case 5290: case 5293: case 5294: case 5297: case 5298: case 5301: case 5302: case 5305: case 5306: case 5309: case 5310: case 5313: case 5314: case 5317: case 5318: case 5321: case 5322: case 5325: case 5326: case 5329: case 5330: case 5333: case 5334: case 5337: case 5338: case 5341: case 5342: case 5345: case 5346: case 5349: case 5350: case 5353: case 5354: case 5357: case 5358: case 5361: case 5362: case 5365: case 5366: case 5369: case 5370: case 5373: case 5374: case 5377: case 5378: case 5381: case 5382: case 5385: case 5386: case 5389: case 5390: case 5393: case 5394: case 5397: case 5398: case 5401: case 5402: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5276: case 5278: case 5280: case 5282: case 5284: case 5286: case 5288: case 5290: case 5292: case 5294: case 5296: case 5298: case 5300: case 5302: case 5304: case 5306: case 5308: case 5310: case 5312: case 5314: case 5316: case 5318: case 5320: case 5322: case 5324: case 5326: case 5328: case 5330: case 5332: case 5334: case 5336: case 5338: case 5340: case 5342: case 5344: case 5346: case 5348: case 5350: case 5352: case 5354: case 5356: case 5358: case 5360: case 5362: case 5364: case 5366: case 5368: case 5370: case 5372: case 5374: case 5376: case 5378: case 5380: case 5382: case 5384: case 5386: case 5388: case 5390: case 5392: case 5394: case 5396: case 5398: case 5400: case 5402: return false;
default: return true;
@@ -12557,21 +11784,21 @@ namespace Block
}
namespace TripwireHook
{
- short TripwireHook()
+ BlockState TripwireHook()
{
return 5268;
}
- bool Attached(short ID)
+ bool Attached(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5267: case 5268: case 5269: case 5270: case 5271: case 5272: case 5273: case 5274: return false;
default: return true;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5263: case 5264: case 5271: case 5272: return eBlockFace::BLOCK_FACE_XM;
case 5265: case 5266: case 5273: case 5274: return eBlockFace::BLOCK_FACE_XP;
@@ -12579,9 +11806,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 5260: case 5262: case 5264: case 5266: case 5268: case 5270: case 5272: case 5274: return false;
default: return true;
@@ -12599,13 +11826,13 @@ namespace Block
}
namespace TubeCoralWallFan
{
- short TubeCoralWallFan()
+ BlockState TubeCoralWallFan()
{
return 9600;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9605: return eBlockFace::BLOCK_FACE_XM;
case 9607: return eBlockFace::BLOCK_FACE_XP;
@@ -12616,13 +11843,13 @@ namespace Block
}
namespace TurtleEgg
{
- short TurtleEgg()
+ BlockState TurtleEgg()
{
return 9498;
}
- unsigned char Eggs(short ID)
+ unsigned char Eggs(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9498: case 9499: case 9500: return 1;
case 9501: case 9502: case 9503: return 2;
@@ -12630,9 +11857,9 @@ namespace Block
default: return 4;
}
}
- unsigned char Hatch(short ID)
+ unsigned char Hatch(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9498: case 9501: case 9504: case 9507: return 0;
case 9499: case 9502: case 9505: case 9508: return 1;
@@ -12642,13 +11869,13 @@ namespace Block
}
namespace TwistingVines
{
- short TwistingVines()
+ BlockState TwistingVines()
{
return 15017;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15017: return 0;
case 15018: return 1;
@@ -12684,45 +11911,45 @@ namespace Block
}
namespace Vine
{
- short Vine()
+ BlockState Vine()
{
return 4819;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4804: case 4805: case 4806: case 4807: case 4808: case 4809: case 4810: case 4811: case 4812: case 4813: case 4814: case 4815: case 4816: case 4817: case 4818: case 4819: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4796: case 4797: case 4798: case 4799: case 4800: case 4801: case 4802: case 4803: case 4812: case 4813: case 4814: case 4815: case 4816: case 4817: case 4818: case 4819: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4792: case 4793: case 4794: case 4795: case 4800: case 4801: case 4802: case 4803: case 4808: case 4809: case 4810: case 4811: case 4816: case 4817: case 4818: case 4819: return false;
default: return true;
}
}
- bool Up(short ID)
+ bool Up(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4790: case 4791: case 4794: case 4795: case 4798: case 4799: case 4802: case 4803: case 4806: case 4807: case 4810: case 4811: case 4814: case 4815: case 4818: case 4819: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 4789: case 4791: case 4793: case 4795: case 4797: case 4799: case 4801: case 4803: case 4805: case 4807: case 4809: case 4811: case 4813: case 4815: case 4817: case 4819: return false;
default: return true;
@@ -12734,13 +11961,13 @@ namespace Block
}
namespace WallTorch
{
- short WallTorch()
+ BlockState WallTorch()
{
return 1436;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1438: return eBlockFace::BLOCK_FACE_XM;
case 1439: return eBlockFace::BLOCK_FACE_XP;
@@ -12751,22 +11978,22 @@ namespace Block
}
namespace WarpedButton
{
- short WarpedButton()
+ BlockState WarpedButton()
{
return 15512;
}
- enum Face Face(short ID)
+ enum Face Face(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15519: case 15520: case 15521: case 15522: case 15523: case 15524: case 15525: case 15526: return Face::Ceiling;
case 15503: case 15504: case 15505: case 15506: case 15507: case 15508: case 15509: case 15510: return Face::Floor;
default: return Face::Wall;
}
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15507: case 15508: case 15515: case 15516: case 15523: case 15524: return eBlockFace::BLOCK_FACE_XM;
case 15509: case 15510: case 15517: case 15518: case 15525: case 15526: return eBlockFace::BLOCK_FACE_XP;
@@ -12774,9 +12001,9 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15504: case 15506: case 15508: case 15510: case 15512: case 15514: case 15516: case 15518: case 15520: case 15522: case 15524: case 15526: return false;
default: return true;
@@ -12785,13 +12012,13 @@ namespace Block
}
namespace WarpedDoor
{
- short WarpedDoor()
+ BlockState WarpedDoor()
{
return 15602;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15623: case 15624: case 15625: case 15626: case 15627: case 15628: case 15629: case 15630: case 15631: case 15632: case 15633: case 15634: case 15635: case 15636: case 15637: case 15638: return eBlockFace::BLOCK_FACE_XM;
case 15639: case 15640: case 15641: case 15642: case 15643: case 15644: case 15645: case 15646: case 15647: case 15648: case 15649: case 15650: case 15651: case 15652: case 15653: case 15654: return eBlockFace::BLOCK_FACE_XP;
@@ -12799,33 +12026,33 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15599: case 15600: case 15601: case 15602: case 15603: case 15604: case 15605: case 15606: case 15615: case 15616: case 15617: case 15618: case 15619: case 15620: case 15621: case 15622: case 15631: case 15632: case 15633: case 15634: case 15635: case 15636: case 15637: case 15638: case 15647: case 15648: case 15649: case 15650: case 15651: case 15652: case 15653: case 15654: return Half::Lower;
default: return Half::Upper;
}
}
- enum Hinge Hinge(short ID)
+ enum Hinge Hinge(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15591: case 15592: case 15593: case 15594: case 15599: case 15600: case 15601: case 15602: case 15607: case 15608: case 15609: case 15610: case 15615: case 15616: case 15617: case 15618: case 15623: case 15624: case 15625: case 15626: case 15631: case 15632: case 15633: case 15634: case 15639: case 15640: case 15641: case 15642: case 15647: case 15648: case 15649: case 15650: return Hinge::Left;
default: return Hinge::Right;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15593: case 15594: case 15597: case 15598: case 15601: case 15602: case 15605: case 15606: case 15609: case 15610: case 15613: case 15614: case 15617: case 15618: case 15621: case 15622: case 15625: case 15626: case 15629: case 15630: case 15633: case 15634: case 15637: case 15638: case 15641: case 15642: case 15645: case 15646: case 15649: case 15650: case 15653: case 15654: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15592: case 15594: case 15596: case 15598: case 15600: case 15602: case 15604: case 15606: case 15608: case 15610: case 15612: case 15614: case 15616: case 15618: case 15620: case 15622: case 15624: case 15626: case 15628: case 15630: case 15632: case 15634: case 15636: case 15638: case 15640: case 15642: case 15644: case 15646: case 15648: case 15650: case 15652: case 15654: return false;
default: return true;
@@ -12834,37 +12061,37 @@ namespace Block
}
namespace WarpedFence
{
- short WarpedFence()
+ BlockState WarpedFence()
{
return 15126;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15113: case 15114: case 15117: case 15118: case 15121: case 15122: case 15125: case 15126: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15105: case 15106: case 15109: case 15110: case 15121: case 15122: case 15125: case 15126: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15101: case 15102: case 15109: case 15110: case 15117: case 15118: case 15125: case 15126: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15098: case 15102: case 15106: case 15110: case 15114: case 15118: case 15122: case 15126: return false;
default: return true;
@@ -12873,13 +12100,13 @@ namespace Block
}
namespace WarpedFenceGate
{
- short WarpedFenceGate()
+ BlockState WarpedFenceGate()
{
return 15294;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15303: case 15304: case 15305: case 15306: case 15307: case 15308: case 15309: case 15310: return eBlockFace::BLOCK_FACE_XM;
case 15311: case 15312: case 15313: case 15314: case 15315: case 15316: case 15317: case 15318: return eBlockFace::BLOCK_FACE_XP;
@@ -12887,25 +12114,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool InWall(short ID)
+ bool InWall(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15291: case 15292: case 15293: case 15294: case 15299: case 15300: case 15301: case 15302: case 15307: case 15308: case 15309: case 15310: case 15315: case 15316: case 15317: case 15318: return false;
default: return true;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15289: case 15290: case 15293: case 15294: case 15297: case 15298: case 15301: case 15302: case 15305: case 15306: case 15309: case 15310: case 15313: case 15314: case 15317: case 15318: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15288: case 15290: case 15292: case 15294: case 15296: case 15298: case 15300: case 15302: case 15304: case 15306: case 15308: case 15310: case 15312: case 15314: case 15316: case 15318: return false;
default: return true;
@@ -12917,13 +12144,13 @@ namespace Block
}
namespace WarpedHyphae
{
- short WarpedHyphae()
+ BlockState WarpedHyphae()
{
return 14965;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14964: return Axis::X;
case 14965: return Axis::Y;
@@ -12939,13 +12166,13 @@ namespace Block
}
namespace WarpedPressurePlate
{
- short WarpedPressurePlate()
+ BlockState WarpedPressurePlate()
{
return 15062;
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15062: return false;
default: return true;
@@ -12957,13 +12184,13 @@ namespace Block
}
namespace WarpedSign
{
- short WarpedSign()
+ BlockState WarpedSign()
{
return 15688;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15688: return 0;
case 15690: return 1;
@@ -12986,13 +12213,13 @@ namespace Block
}
namespace WarpedSlab
{
- short WarpedSlab()
+ BlockState WarpedSlab()
{
return 15056;
}
- enum Type Type(short ID)
+ enum Type Type(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15056: return Type::Bottom;
case 15058: return Type::Double;
@@ -13002,13 +12229,13 @@ namespace Block
}
namespace WarpedStairs
{
- short WarpedStairs()
+ BlockState WarpedStairs()
{
return 15410;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15440: case 15442: case 15444: case 15446: case 15448: case 15450: case 15452: case 15454: case 15456: case 15458: return eBlockFace::BLOCK_FACE_XM;
case 15460: case 15462: case 15464: case 15466: case 15468: case 15470: case 15472: case 15474: case 15476: case 15478: return eBlockFace::BLOCK_FACE_XP;
@@ -13016,17 +12243,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15410: case 15412: case 15414: case 15416: case 15418: case 15430: case 15432: case 15434: case 15436: case 15438: case 15450: case 15452: case 15454: case 15456: case 15458: case 15470: case 15472: case 15474: case 15476: case 15478: return Half::Bottom;
default: return Half::Top;
}
}
- enum Shape Shape(short ID)
+ enum Shape Shape(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15402: case 15412: case 15422: case 15432: case 15442: case 15452: case 15462: case 15472: return Shape::InnerLeft;
case 15404: case 15414: case 15424: case 15434: case 15444: case 15454: case 15464: case 15474: return Shape::InnerRight;
@@ -13038,13 +12265,13 @@ namespace Block
}
namespace WarpedStem
{
- short WarpedStem()
+ BlockState WarpedStem()
{
return 14959;
}
- enum Axis Axis(short ID)
+ enum Axis Axis(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14958: return Axis::X;
case 14959: return Axis::Y;
@@ -13054,13 +12281,13 @@ namespace Block
}
namespace WarpedTrapdoor
{
- short WarpedTrapdoor()
+ BlockState WarpedTrapdoor()
{
return 15206;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15224: case 15226: case 15228: case 15230: case 15232: case 15234: case 15236: case 15238: return eBlockFace::BLOCK_FACE_XM;
case 15240: case 15242: case 15244: case 15246: case 15248: case 15250: case 15252: case 15254: return eBlockFace::BLOCK_FACE_XP;
@@ -13068,25 +12295,25 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- enum Half Half(short ID)
+ enum Half Half(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15200: case 15202: case 15204: case 15206: case 15216: case 15218: case 15220: case 15222: case 15232: case 15234: case 15236: case 15238: case 15248: case 15250: case 15252: case 15254: return Half::Bottom;
default: return Half::Top;
}
}
- bool Open(short ID)
+ bool Open(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15196: case 15198: case 15204: case 15206: case 15212: case 15214: case 15220: case 15222: case 15228: case 15230: case 15236: case 15238: case 15244: case 15246: case 15252: case 15254: return false;
default: return true;
}
}
- bool Powered(short ID)
+ bool Powered(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15194: case 15198: case 15202: case 15206: case 15210: case 15214: case 15218: case 15222: case 15226: case 15230: case 15234: case 15238: case 15242: case 15246: case 15250: case 15254: return false;
default: return true;
@@ -13095,13 +12322,13 @@ namespace Block
}
namespace WarpedWallSign
{
- short WarpedWallSign()
+ BlockState WarpedWallSign()
{
return 15728;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 15732: return eBlockFace::BLOCK_FACE_XM;
case 15734: return eBlockFace::BLOCK_FACE_XP;
@@ -13115,13 +12342,13 @@ namespace Block
}
namespace Water
{
- short Water()
+ BlockState Water()
{
return 34;
}
- unsigned char Level(short ID)
+ unsigned char Level(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 34: return 0;
case 35: return 1;
@@ -13144,13 +12371,13 @@ namespace Block
}
namespace WeepingVines
{
- short WeepingVines()
+ BlockState WeepingVines()
{
return 14990;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 14990: return 0;
case 14991: return 1;
@@ -13189,13 +12416,13 @@ namespace Block
}
namespace Wheat
{
- short Wheat()
+ BlockState Wheat()
{
return 3357;
}
- unsigned char Age(short ID)
+ unsigned char Age(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 3357: return 0;
case 3358: return 1;
@@ -13210,13 +12437,13 @@ namespace Block
}
namespace WhiteBanner
{
- short WhiteBanner()
+ BlockState WhiteBanner()
{
return 7897;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7897: return 0;
case 7898: return 1;
@@ -13239,13 +12466,13 @@ namespace Block
}
namespace WhiteBed
{
- short WhiteBed()
+ BlockState WhiteBed()
{
return 1052;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1057: case 1058: case 1059: case 1060: return eBlockFace::BLOCK_FACE_XM;
case 1061: case 1062: case 1063: case 1064: return eBlockFace::BLOCK_FACE_XP;
@@ -13253,17 +12480,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1051: case 1052: case 1055: case 1056: case 1059: case 1060: case 1063: case 1064: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1050: case 1052: case 1054: case 1056: case 1058: case 1060: case 1062: case 1064: return Part::Foot;
default: return Part::Head;
@@ -13281,13 +12508,13 @@ namespace Block
}
namespace WhiteGlazedTerracotta
{
- short WhiteGlazedTerracotta()
+ BlockState WhiteGlazedTerracotta()
{
return 9374;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9376: return eBlockFace::BLOCK_FACE_XM;
case 9377: return eBlockFace::BLOCK_FACE_XP;
@@ -13298,13 +12525,13 @@ namespace Block
}
namespace WhiteShulkerBox
{
- short WhiteShulkerBox()
+ BlockState WhiteShulkerBox()
{
return 9282;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9281: return eBlockFace::BLOCK_FACE_XM;
case 9279: return eBlockFace::BLOCK_FACE_XP;
@@ -13320,37 +12547,37 @@ namespace Block
}
namespace WhiteStainedGlassPane
{
- short WhiteStainedGlassPane()
+ BlockState WhiteStainedGlassPane()
{
return 6894;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6881: case 6882: case 6885: case 6886: case 6889: case 6890: case 6893: case 6894: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6873: case 6874: case 6877: case 6878: case 6889: case 6890: case 6893: case 6894: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6869: case 6870: case 6877: case 6878: case 6885: case 6886: case 6893: case 6894: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6866: case 6870: case 6874: case 6878: case 6882: case 6886: case 6890: case 6894: return false;
default: return true;
@@ -13365,13 +12592,13 @@ namespace Block
}
namespace WhiteWallBanner
{
- short WhiteWallBanner()
+ BlockState WhiteWallBanner()
{
return 8153;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8155: return eBlockFace::BLOCK_FACE_XM;
case 8156: return eBlockFace::BLOCK_FACE_XP;
@@ -13388,13 +12615,13 @@ namespace Block
}
namespace WitherSkeletonSkull
{
- short WitherSkeletonSkull()
+ BlockState WitherSkeletonSkull()
{
return 6510;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6510: return 0;
case 6511: return 1;
@@ -13417,13 +12644,13 @@ namespace Block
}
namespace WitherSkeletonWallSkull
{
- short WitherSkeletonWallSkull()
+ BlockState WitherSkeletonWallSkull()
{
return 6526;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6528: return eBlockFace::BLOCK_FACE_XM;
case 6529: return eBlockFace::BLOCK_FACE_XP;
@@ -13434,13 +12661,13 @@ namespace Block
}
namespace YellowBanner
{
- short YellowBanner()
+ BlockState YellowBanner()
{
return 7961;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7961: return 0;
case 7962: return 1;
@@ -13463,13 +12690,13 @@ namespace Block
}
namespace YellowBed
{
- short YellowBed()
+ BlockState YellowBed()
{
return 1116;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1121: case 1122: case 1123: case 1124: return eBlockFace::BLOCK_FACE_XM;
case 1125: case 1126: case 1127: case 1128: return eBlockFace::BLOCK_FACE_XP;
@@ -13477,17 +12704,17 @@ namespace Block
default: return eBlockFace::BLOCK_FACE_ZP;
}
}
- bool Occupied(short ID)
+ bool Occupied(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1115: case 1116: case 1119: case 1120: case 1123: case 1124: case 1127: case 1128: return false;
default: return true;
}
}
- enum Part Part(short ID)
+ enum Part Part(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 1114: case 1116: case 1118: case 1120: case 1122: case 1124: case 1126: case 1128: return Part::Foot;
default: return Part::Head;
@@ -13505,13 +12732,13 @@ namespace Block
}
namespace YellowGlazedTerracotta
{
- short YellowGlazedTerracotta()
+ BlockState YellowGlazedTerracotta()
{
return 9390;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9392: return eBlockFace::BLOCK_FACE_XM;
case 9393: return eBlockFace::BLOCK_FACE_XP;
@@ -13522,13 +12749,13 @@ namespace Block
}
namespace YellowShulkerBox
{
- short YellowShulkerBox()
+ BlockState YellowShulkerBox()
{
return 9306;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 9305: return eBlockFace::BLOCK_FACE_XM;
case 9303: return eBlockFace::BLOCK_FACE_XP;
@@ -13544,37 +12771,37 @@ namespace Block
}
namespace YellowStainedGlassPane
{
- short YellowStainedGlassPane()
+ BlockState YellowStainedGlassPane()
{
return 7022;
}
- bool East(short ID)
+ bool East(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7009: case 7010: case 7013: case 7014: case 7017: case 7018: case 7021: case 7022: return false;
default: return true;
}
}
- bool North(short ID)
+ bool North(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 7001: case 7002: case 7005: case 7006: case 7017: case 7018: case 7021: case 7022: return false;
default: return true;
}
}
- bool South(short ID)
+ bool South(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6997: case 6998: case 7005: case 7006: case 7013: case 7014: case 7021: case 7022: return false;
default: return true;
}
}
- bool West(short ID)
+ bool West(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6994: case 6998: case 7002: case 7006: case 7010: case 7014: case 7018: case 7022: return false;
default: return true;
@@ -13586,13 +12813,13 @@ namespace Block
}
namespace YellowWallBanner
{
- short YellowWallBanner()
+ BlockState YellowWallBanner()
{
return 8169;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 8171: return eBlockFace::BLOCK_FACE_XM;
case 8172: return eBlockFace::BLOCK_FACE_XP;
@@ -13606,13 +12833,13 @@ namespace Block
}
namespace ZombieHead
{
- short ZombieHead()
+ BlockState ZombieHead()
{
return 6530;
}
- unsigned char Rotation(short ID)
+ unsigned char Rotation(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6530: return 0;
case 6531: return 1;
@@ -13635,13 +12862,13 @@ namespace Block
}
namespace ZombieWallHead
{
- short ZombieWallHead()
+ BlockState ZombieWallHead()
{
return 6546;
}
- eBlockFace Facing(short ID)
+ eBlockFace Facing(const BlockState Block)
{
- switch (ID)
+ switch (Block.ID)
{
case 6548: return eBlockFace::BLOCK_FACE_XM;
case 6549: return eBlockFace::BLOCK_FACE_XP;
@@ -13651,3 +12878,773 @@ namespace Block
}
}
}
+
+BlockType BlockState::Type() const
+{
+ switch (ID)
+ {
+ case 6442: case 6443: case 6444: case 6445: case 6446: case 6447: case 6448: case 6449: case 6450: case 6451: case 6452: case 6453: case 6454: case 6455: case 6456: case 6457: case 6458: case 6459: case 6460: case 6461: case 6462: case 6463: case 6464: case 6465: return BlockType::AcaciaButton;
+ case 8930: case 8931: case 8932: case 8933: case 8934: case 8935: case 8936: case 8937: case 8938: case 8939: case 8940: case 8941: case 8942: case 8943: case 8944: case 8945: case 8946: case 8947: case 8948: case 8949: case 8950: case 8951: case 8952: case 8953: case 8954: case 8955: case 8956: case 8957: case 8958: case 8959: case 8960: case 8961: case 8962: case 8963: case 8964: case 8965: case 8966: case 8967: case 8968: case 8969: case 8970: case 8971: case 8972: case 8973: case 8974: case 8975: case 8976: case 8977: case 8978: case 8979: case 8980: case 8981: case 8982: case 8983: case 8984: case 8985: case 8986: case 8987: case 8988: case 8989: case 8990: case 8991: case 8992: case 8993: return BlockType::AcaciaDoor;
+ case 8676: case 8677: case 8680: case 8681: case 8684: case 8685: case 8688: case 8689: case 8692: case 8693: case 8696: case 8697: case 8700: case 8701: case 8704: case 8705: return BlockType::AcaciaFence;
+ case 8514: case 8515: case 8516: case 8517: case 8518: case 8519: case 8520: case 8521: case 8522: case 8523: case 8524: case 8525: case 8526: case 8527: case 8528: case 8529: case 8530: case 8531: case 8532: case 8533: case 8534: case 8535: case 8536: case 8537: case 8538: case 8539: case 8540: case 8541: case 8542: case 8543: case 8544: case 8545: return BlockType::AcaciaFenceGate;
+ case 201: case 202: case 203: case 204: case 205: case 206: case 207: case 208: case 209: case 210: case 211: case 212: case 213: case 214: return BlockType::AcaciaLeaves;
+ case 85: case 86: case 87: return BlockType::AcaciaLog;
+ case 19: return BlockType::AcaciaPlanks;
+ case 3881: case 3882: return BlockType::AcaciaPressurePlate;
+ case 29: case 30: return BlockType::AcaciaSapling;
+ case 3478: case 3480: case 3482: case 3484: case 3486: case 3488: case 3490: case 3492: case 3494: case 3496: case 3498: case 3500: case 3502: case 3504: case 3506: case 3508: return BlockType::AcaciaSign;
+ case 8325: case 8327: case 8329: return BlockType::AcaciaSlab;
+ case 7376: case 7378: case 7380: case 7382: case 7384: case 7386: case 7388: case 7390: case 7392: case 7394: case 7396: case 7398: case 7400: case 7402: case 7404: case 7406: case 7408: case 7410: case 7412: case 7414: case 7416: case 7418: case 7420: case 7422: case 7424: case 7426: case 7428: case 7430: case 7432: case 7434: case 7436: case 7438: case 7440: case 7442: case 7444: case 7446: case 7448: case 7450: case 7452: case 7454: return BlockType::AcaciaStairs;
+ case 4368: case 4370: case 4372: case 4374: case 4376: case 4378: case 4380: case 4382: case 4384: case 4386: case 4388: case 4390: case 4392: case 4394: case 4396: case 4398: case 4400: case 4402: case 4404: case 4406: case 4408: case 4410: case 4412: case 4414: case 4416: case 4418: case 4420: case 4422: case 4424: case 4426: case 4428: case 4430: return BlockType::AcaciaTrapdoor;
+ case 3760: case 3762: case 3764: case 3766: return BlockType::AcaciaWallSign;
+ case 121: case 122: case 123: return BlockType::AcaciaWood;
+ case 6823: case 6824: case 6825: case 6826: case 6827: case 6828: case 6829: case 6830: case 6831: case 6832: case 6833: case 6834: return BlockType::ActivatorRail;
+ case -0: return BlockType::Air;
+ case 1415: return BlockType::Allium;
+ case 15827: return BlockType::AncientDebris;
+ case 6: return BlockType::Andesite;
+ case 10844: case 10846: case 10848: return BlockType::AndesiteSlab;
+ case 10470: case 10472: case 10474: case 10476: case 10478: case 10480: case 10482: case 10484: case 10486: case 10488: case 10490: case 10492: case 10494: case 10496: case 10498: case 10500: case 10502: case 10504: case 10506: case 10508: case 10510: case 10512: case 10514: case 10516: case 10518: case 10520: case 10522: case 10524: case 10526: case 10528: case 10530: case 10532: case 10534: case 10536: case 10538: case 10540: case 10542: case 10544: case 10546: case 10548: return BlockType::AndesiteStairs;
+ case 13138: case 13139: case 13140: case 13144: case 13145: case 13146: case 13150: case 13151: case 13152: case 13156: case 13157: case 13158: case 13162: case 13163: case 13164: case 13168: case 13169: case 13170: case 13174: case 13175: case 13176: case 13180: case 13181: case 13182: case 13186: case 13187: case 13188: case 13192: case 13193: case 13194: case 13198: case 13199: case 13200: case 13204: case 13205: case 13206: case 13210: case 13211: case 13212: case 13216: case 13217: case 13218: case 13222: case 13223: case 13224: case 13228: case 13229: case 13230: case 13234: case 13235: case 13236: case 13240: case 13241: case 13242: case 13246: case 13247: case 13248: case 13252: case 13253: case 13254: case 13258: case 13259: case 13260: case 13264: case 13265: case 13266: case 13270: case 13271: case 13272: case 13276: case 13277: case 13278: case 13282: case 13283: case 13284: case 13288: case 13289: case 13290: case 13294: case 13295: case 13296: case 13300: case 13301: case 13302: case 13306: case 13307: case 13308: case 13312: case 13313: case 13314: case 13318: case 13319: case 13320: case 13324: case 13325: case 13326: case 13330: case 13331: case 13332: case 13336: case 13337: case 13338: case 13342: case 13343: case 13344: case 13348: case 13349: case 13350: case 13354: case 13355: case 13356: case 13360: case 13361: case 13362: case 13366: case 13367: case 13368: case 13372: case 13373: case 13374: case 13378: case 13379: case 13380: case 13384: case 13385: case 13386: case 13390: case 13391: case 13392: case 13396: case 13397: case 13398: case 13402: case 13403: case 13404: case 13408: case 13409: case 13410: case 13414: case 13415: case 13416: case 13420: case 13421: case 13422: case 13426: case 13427: case 13428: case 13432: case 13433: case 13434: case 13438: case 13439: case 13440: case 13444: case 13445: case 13446: case 13450: case 13451: case 13452: case 13456: case 13457: case 13458: return BlockType::AndesiteWall;
+ case 6610: case 6611: case 6612: case 6613: return BlockType::Anvil;
+ case 4768: case 4769: case 4770: case 4771: return BlockType::AttachedMelonStem;
+ case 4764: case 4765: case 4766: case 4767: return BlockType::AttachedPumpkinStem;
+ case 1416: return BlockType::AzureBluet;
+ case 9652: case 9653: case 9654: case 9655: case 9656: case 9657: case 9658: case 9659: case 9660: case 9661: case 9662: case 9663: return BlockType::Bamboo;
+ case 9651: return BlockType::BambooSapling;
+ case 14791: case 14792: case 14793: case 14794: case 14795: case 14796: case 14797: case 14798: case 14799: case 14800: case 14801: case 14802: return BlockType::Barrel;
+ case 7536: return BlockType::Barrier;
+ case 4002: case 4003: case 4004: return BlockType::Basalt;
+ case 5656: return BlockType::Beacon;
+ case 33: return BlockType::Bedrock;
+ case 15776: case 15777: case 15778: case 15779: case 15780: case 15781: case 15782: case 15783: case 15784: case 15785: case 15786: case 15787: case 15788: case 15789: case 15790: case 15791: case 15792: case 15793: case 15794: case 15795: case 15796: case 15797: case 15798: case 15799: return BlockType::BeeNest;
+ case 15800: case 15801: case 15802: case 15803: case 15804: case 15805: case 15806: case 15807: case 15808: case 15809: case 15810: case 15811: case 15812: case 15813: case 15814: case 15815: case 15816: case 15817: case 15818: case 15819: case 15820: case 15821: case 15822: case 15823: return BlockType::Beehive;
+ case 9219: case 9220: case 9221: case 9222: return BlockType::Beetroots;
+ case 14854: case 14855: case 14856: case 14857: case 14858: case 14859: case 14860: case 14861: case 14862: case 14863: case 14864: case 14865: case 14866: case 14867: case 14868: case 14869: case 14870: case 14871: case 14872: case 14873: case 14874: case 14875: case 14876: case 14877: case 14878: case 14879: case 14880: case 14881: case 14882: case 14883: case 14884: case 14885: return BlockType::Bell;
+ case 6394: case 6395: case 6396: case 6397: case 6398: case 6399: case 6400: case 6401: case 6402: case 6403: case 6404: case 6405: case 6406: case 6407: case 6408: case 6409: case 6410: case 6411: case 6412: case 6413: case 6414: case 6415: case 6416: case 6417: return BlockType::BirchButton;
+ case 8802: case 8803: case 8804: case 8805: case 8806: case 8807: case 8808: case 8809: case 8810: case 8811: case 8812: case 8813: case 8814: case 8815: case 8816: case 8817: case 8818: case 8819: case 8820: case 8821: case 8822: case 8823: case 8824: case 8825: case 8826: case 8827: case 8828: case 8829: case 8830: case 8831: case 8832: case 8833: case 8834: case 8835: case 8836: case 8837: case 8838: case 8839: case 8840: case 8841: case 8842: case 8843: case 8844: case 8845: case 8846: case 8847: case 8848: case 8849: case 8850: case 8851: case 8852: case 8853: case 8854: case 8855: case 8856: case 8857: case 8858: case 8859: case 8860: case 8861: case 8862: case 8863: case 8864: case 8865: return BlockType::BirchDoor;
+ case 8612: case 8613: case 8616: case 8617: case 8620: case 8621: case 8624: case 8625: case 8628: case 8629: case 8632: case 8633: case 8636: case 8637: case 8640: case 8641: return BlockType::BirchFence;
+ case 8450: case 8451: case 8452: case 8453: case 8454: case 8455: case 8456: case 8457: case 8458: case 8459: case 8460: case 8461: case 8462: case 8463: case 8464: case 8465: case 8466: case 8467: case 8468: case 8469: case 8470: case 8471: case 8472: case 8473: case 8474: case 8475: case 8476: case 8477: case 8478: case 8479: case 8480: case 8481: return BlockType::BirchFenceGate;
+ case 173: case 174: case 175: case 176: case 177: case 178: case 179: case 180: case 181: case 182: case 183: case 184: case 185: case 186: return BlockType::BirchLeaves;
+ case 79: case 80: case 81: return BlockType::BirchLog;
+ case 17: return BlockType::BirchPlanks;
+ case 3877: case 3878: return BlockType::BirchPressurePlate;
+ case 25: case 26: return BlockType::BirchSapling;
+ case 3446: case 3448: case 3450: case 3452: case 3454: case 3456: case 3458: case 3460: case 3462: case 3464: case 3466: case 3468: case 3470: case 3472: case 3474: case 3476: return BlockType::BirchSign;
+ case 8313: case 8315: case 8317: return BlockType::BirchSlab;
+ case 5485: case 5487: case 5489: case 5491: case 5493: case 5495: case 5497: case 5499: case 5501: case 5503: case 5505: case 5507: case 5509: case 5511: case 5513: case 5515: case 5517: case 5519: case 5521: case 5523: case 5525: case 5527: case 5529: case 5531: case 5533: case 5535: case 5537: case 5539: case 5541: case 5543: case 5545: case 5547: case 5549: case 5551: case 5553: case 5555: case 5557: case 5559: case 5561: case 5563: return BlockType::BirchStairs;
+ case 4240: case 4242: case 4244: case 4246: case 4248: case 4250: case 4252: case 4254: case 4256: case 4258: case 4260: case 4262: case 4264: case 4266: case 4268: case 4270: case 4272: case 4274: case 4276: case 4278: case 4280: case 4282: case 4284: case 4286: case 4288: case 4290: case 4292: case 4294: case 4296: case 4298: case 4300: case 4302: return BlockType::BirchTrapdoor;
+ case 3752: case 3754: case 3756: case 3758: return BlockType::BirchWallSign;
+ case 115: case 116: case 117: return BlockType::BirchWood;
+ case 8137: case 8138: case 8139: case 8140: case 8141: case 8142: case 8143: case 8144: case 8145: case 8146: case 8147: case 8148: case 8149: case 8150: case 8151: case 8152: return BlockType::BlackBanner;
+ case 1289: case 1290: case 1291: case 1292: case 1293: case 1294: case 1295: case 1296: case 1297: case 1298: case 1299: case 1300: case 1301: case 1302: case 1303: case 1304: return BlockType::BlackBed;
+ case 7881: return BlockType::BlackCarpet;
+ case 9453: return BlockType::BlackConcrete;
+ case 9469: return BlockType::BlackConcretePowder;
+ case 9434: case 9435: case 9436: case 9437: return BlockType::BlackGlazedTerracotta;
+ case 9368: case 9369: case 9370: case 9371: case 9372: case 9373: return BlockType::BlackShulkerBox;
+ case 4110: return BlockType::BlackStainedGlass;
+ case 7345: case 7346: case 7349: case 7350: case 7353: case 7354: case 7357: case 7358: case 7361: case 7362: case 7365: case 7366: case 7369: case 7370: case 7373: case 7374: return BlockType::BlackStainedGlassPane;
+ case 6862: return BlockType::BlackTerracotta;
+ case 8213: case 8214: case 8215: case 8216: return BlockType::BlackWallBanner;
+ case 1399: return BlockType::BlackWool;
+ case 15839: return BlockType::Blackstone;
+ case 16245: case 16247: case 16249: return BlockType::BlackstoneSlab;
+ case 15841: case 15843: case 15845: case 15847: case 15849: case 15851: case 15853: case 15855: case 15857: case 15859: case 15861: case 15863: case 15865: case 15867: case 15869: case 15871: case 15873: case 15875: case 15877: case 15879: case 15881: case 15883: case 15885: case 15887: case 15889: case 15891: case 15893: case 15895: case 15897: case 15899: case 15901: case 15903: case 15905: case 15907: case 15909: case 15911: case 15913: case 15915: case 15917: case 15919: return BlockType::BlackstoneStairs;
+ case 15923: case 15924: case 15925: case 15929: case 15930: case 15931: case 15935: case 15936: case 15937: case 15941: case 15942: case 15943: case 15947: case 15948: case 15949: case 15953: case 15954: case 15955: case 15959: case 15960: case 15961: case 15965: case 15966: case 15967: case 15971: case 15972: case 15973: case 15977: case 15978: case 15979: case 15983: case 15984: case 15985: case 15989: case 15990: case 15991: case 15995: case 15996: case 15997: case 16001: case 16002: case 16003: case 16007: case 16008: case 16009: case 16013: case 16014: case 16015: case 16019: case 16020: case 16021: case 16025: case 16026: case 16027: case 16031: case 16032: case 16033: case 16037: case 16038: case 16039: case 16043: case 16044: case 16045: case 16049: case 16050: case 16051: case 16055: case 16056: case 16057: case 16061: case 16062: case 16063: case 16067: case 16068: case 16069: case 16073: case 16074: case 16075: case 16079: case 16080: case 16081: case 16085: case 16086: case 16087: case 16091: case 16092: case 16093: case 16097: case 16098: case 16099: case 16103: case 16104: case 16105: case 16109: case 16110: case 16111: case 16115: case 16116: case 16117: case 16121: case 16122: case 16123: case 16127: case 16128: case 16129: case 16133: case 16134: case 16135: case 16139: case 16140: case 16141: case 16145: case 16146: case 16147: case 16151: case 16152: case 16153: case 16157: case 16158: case 16159: case 16163: case 16164: case 16165: case 16169: case 16170: case 16171: case 16175: case 16176: case 16177: case 16181: case 16182: case 16183: case 16187: case 16188: case 16189: case 16193: case 16194: case 16195: case 16199: case 16200: case 16201: case 16205: case 16206: case 16207: case 16211: case 16212: case 16213: case 16217: case 16218: case 16219: case 16223: case 16224: case 16225: case 16229: case 16230: case 16231: case 16235: case 16236: case 16237: case 16241: case 16242: case 16243: return BlockType::BlackstoneWall;
+ case 14811: case 14812: case 14813: case 14814: case 14815: case 14816: case 14817: case 14818: return BlockType::BlastFurnace;
+ case 8073: case 8074: case 8075: case 8076: case 8077: case 8078: case 8079: case 8080: case 8081: case 8082: case 8083: case 8084: case 8085: case 8086: case 8087: case 8088: return BlockType::BlueBanner;
+ case 1225: case 1226: case 1227: case 1228: case 1229: case 1230: case 1231: case 1232: case 1233: case 1234: case 1235: case 1236: case 1237: case 1238: case 1239: case 1240: return BlockType::BlueBed;
+ case 7877: return BlockType::BlueCarpet;
+ case 9449: return BlockType::BlueConcrete;
+ case 9465: return BlockType::BlueConcretePowder;
+ case 9418: case 9419: case 9420: case 9421: return BlockType::BlueGlazedTerracotta;
+ case 9648: return BlockType::BlueIce;
+ case 1414: return BlockType::BlueOrchid;
+ case 9344: case 9345: case 9346: case 9347: case 9348: case 9349: return BlockType::BlueShulkerBox;
+ case 4106: return BlockType::BlueStainedGlass;
+ case 7217: case 7218: case 7221: case 7222: case 7225: case 7226: case 7229: case 7230: case 7233: case 7234: case 7237: case 7238: case 7241: case 7242: case 7245: case 7246: return BlockType::BlueStainedGlassPane;
+ case 6858: return BlockType::BlueTerracotta;
+ case 8197: case 8198: case 8199: case 8200: return BlockType::BlueWallBanner;
+ case 1395: return BlockType::BlueWool;
+ case 9256: case 9257: case 9258: return BlockType::BoneBlock;
+ case 1432: return BlockType::Bookshelf;
+ case 9533: return BlockType::BrainCoral;
+ case 9516: return BlockType::BrainCoralBlock;
+ case 9553: return BlockType::BrainCoralFan;
+ case 9609: case 9611: case 9613: case 9615: return BlockType::BrainCoralWallFan;
+ case 5133: case 5134: case 5135: case 5136: case 5137: case 5138: case 5139: case 5140: return BlockType::BrewingStand;
+ case 8373: case 8375: case 8377: return BlockType::BrickSlab;
+ case 4853: case 4855: case 4857: case 4859: case 4861: case 4863: case 4865: case 4867: case 4869: case 4871: case 4873: case 4875: case 4877: case 4879: case 4881: case 4883: case 4885: case 4887: case 4889: case 4891: case 4893: case 4895: case 4897: case 4899: case 4901: case 4903: case 4905: case 4907: case 4909: case 4911: case 4913: case 4915: case 4917: case 4919: case 4921: case 4923: case 4925: case 4927: case 4929: case 4931: return BlockType::BrickStairs;
+ case 10870: case 10871: case 10872: case 10876: case 10877: case 10878: case 10882: case 10883: case 10884: case 10888: case 10889: case 10890: case 10894: case 10895: case 10896: case 10900: case 10901: case 10902: case 10906: case 10907: case 10908: case 10912: case 10913: case 10914: case 10918: case 10919: case 10920: case 10924: case 10925: case 10926: case 10930: case 10931: case 10932: case 10936: case 10937: case 10938: case 10942: case 10943: case 10944: case 10948: case 10949: case 10950: case 10954: case 10955: case 10956: case 10960: case 10961: case 10962: case 10966: case 10967: case 10968: case 10972: case 10973: case 10974: case 10978: case 10979: case 10980: case 10984: case 10985: case 10986: case 10990: case 10991: case 10992: case 10996: case 10997: case 10998: case 11002: case 11003: case 11004: case 11008: case 11009: case 11010: case 11014: case 11015: case 11016: case 11020: case 11021: case 11022: case 11026: case 11027: case 11028: case 11032: case 11033: case 11034: case 11038: case 11039: case 11040: case 11044: case 11045: case 11046: case 11050: case 11051: case 11052: case 11056: case 11057: case 11058: case 11062: case 11063: case 11064: case 11068: case 11069: case 11070: case 11074: case 11075: case 11076: case 11080: case 11081: case 11082: case 11086: case 11087: case 11088: case 11092: case 11093: case 11094: case 11098: case 11099: case 11100: case 11104: case 11105: case 11106: case 11110: case 11111: case 11112: case 11116: case 11117: case 11118: case 11122: case 11123: case 11124: case 11128: case 11129: case 11130: case 11134: case 11135: case 11136: case 11140: case 11141: case 11142: case 11146: case 11147: case 11148: case 11152: case 11153: case 11154: case 11158: case 11159: case 11160: case 11164: case 11165: case 11166: case 11170: case 11171: case 11172: case 11176: case 11177: case 11178: case 11182: case 11183: case 11184: case 11188: case 11189: case 11190: return BlockType::BrickWall;
+ case 1429: return BlockType::Bricks;
+ case 8089: case 8090: case 8091: case 8092: case 8093: case 8094: case 8095: case 8096: case 8097: case 8098: case 8099: case 8100: case 8101: case 8102: case 8103: case 8104: return BlockType::BrownBanner;
+ case 1241: case 1242: case 1243: case 1244: case 1245: case 1246: case 1247: case 1248: case 1249: case 1250: case 1251: case 1252: case 1253: case 1254: case 1255: case 1256: return BlockType::BrownBed;
+ case 7878: return BlockType::BrownCarpet;
+ case 9450: return BlockType::BrownConcrete;
+ case 9466: return BlockType::BrownConcretePowder;
+ case 9422: case 9423: case 9424: case 9425: return BlockType::BrownGlazedTerracotta;
+ case 1425: return BlockType::BrownMushroom;
+ case 4505: case 4506: case 4507: case 4508: case 4509: case 4510: case 4511: case 4512: case 4513: case 4514: case 4515: case 4516: case 4517: case 4518: case 4519: case 4520: case 4521: case 4522: case 4523: case 4524: case 4525: case 4526: case 4527: case 4528: case 4529: case 4530: case 4531: case 4532: case 4533: case 4534: case 4535: case 4536: case 4537: case 4538: case 4539: case 4540: case 4541: case 4542: case 4543: case 4544: case 4545: case 4546: case 4547: case 4548: case 4549: case 4550: case 4551: case 4552: case 4553: case 4554: case 4555: case 4556: case 4557: case 4558: case 4559: case 4560: case 4561: case 4562: case 4563: case 4564: case 4565: case 4566: case 4567: case 4568: return BlockType::BrownMushroomBlock;
+ case 9350: case 9351: case 9352: case 9353: case 9354: case 9355: return BlockType::BrownShulkerBox;
+ case 4107: return BlockType::BrownStainedGlass;
+ case 7249: case 7250: case 7253: case 7254: case 7257: case 7258: case 7261: case 7262: case 7265: case 7266: case 7269: case 7270: case 7273: case 7274: case 7277: case 7278: return BlockType::BrownStainedGlassPane;
+ case 6859: return BlockType::BrownTerracotta;
+ case 8201: case 8202: case 8203: case 8204: return BlockType::BrownWallBanner;
+ case 1396: return BlockType::BrownWool;
+ case 9667: case 9668: return BlockType::BubbleColumn;
+ case 9535: return BlockType::BubbleCoral;
+ case 9517: return BlockType::BubbleCoralBlock;
+ case 9555: return BlockType::BubbleCoralFan;
+ case 9617: case 9619: case 9621: case 9623: return BlockType::BubbleCoralWallFan;
+ case 3931: case 3932: case 3933: case 3934: case 3935: case 3936: case 3937: case 3938: case 3939: case 3940: case 3941: case 3942: case 3943: case 3944: case 3945: case 3946: return BlockType::Cactus;
+ case 4024: case 4025: case 4026: case 4027: case 4028: case 4029: case 4030: return BlockType::Cake;
+ case 14891: case 14893: case 14895: case 14897: case 14899: case 14901: case 14903: case 14905: case 14907: case 14909: case 14911: case 14913: case 14915: case 14917: case 14919: case 14921: return BlockType::Campfire;
+ case 6330: case 6331: case 6332: case 6333: case 6334: case 6335: case 6336: case 6337: return BlockType::Carrots;
+ case 14819: return BlockType::CartographyTable;
+ case 4016: case 4017: case 4018: case 4019: return BlockType::CarvedPumpkin;
+ case 5141: case 5142: case 5143: case 5144: return BlockType::Cauldron;
+ case 9666: return BlockType::CaveAir;
+ case 4730: return BlockType::Chain;
+ case 9237: case 9238: case 9239: case 9240: case 9241: case 9242: case 9243: case 9244: case 9245: case 9246: case 9247: case 9248: return BlockType::ChainCommandBlock;
+ case 2035: case 2037: case 2039: case 2041: case 2043: case 2045: case 2047: case 2049: case 2051: case 2053: case 2055: case 2057: return BlockType::Chest;
+ case 6614: case 6615: case 6616: case 6617: return BlockType::ChippedAnvil;
+ case 17101: return BlockType::ChiseledNetherBricks;
+ case 16253: return BlockType::ChiseledPolishedBlackstone;
+ case 6739: return BlockType::ChiseledQuartzBlock;
+ case 8218: return BlockType::ChiseledRedSandstone;
+ case 247: return BlockType::ChiseledSandstone;
+ case 4498: return BlockType::ChiseledStoneBricks;
+ case 9128: case 9129: case 9130: case 9131: case 9132: case 9133: return BlockType::ChorusFlower;
+ case 9064: case 9065: case 9066: case 9067: case 9068: case 9069: case 9070: case 9071: case 9072: case 9073: case 9074: case 9075: case 9076: case 9077: case 9078: case 9079: case 9080: case 9081: case 9082: case 9083: case 9084: case 9085: case 9086: case 9087: case 9088: case 9089: case 9090: case 9091: case 9092: case 9093: case 9094: case 9095: case 9096: case 9097: case 9098: case 9099: case 9100: case 9101: case 9102: case 9103: case 9104: case 9105: case 9106: case 9107: case 9108: case 9109: case 9110: case 9111: case 9112: case 9113: case 9114: case 9115: case 9116: case 9117: case 9118: case 9119: case 9120: case 9121: case 9122: case 9123: case 9124: case 9125: case 9126: case 9127: return BlockType::ChorusPlant;
+ case 3947: return BlockType::Clay;
+ case 7883: return BlockType::CoalBlock;
+ case 71: return BlockType::CoalOre;
+ case 11: return BlockType::CoarseDirt;
+ case 14: return BlockType::Cobblestone;
+ case 8367: case 8369: case 8371: return BlockType::CobblestoneSlab;
+ case 3656: case 3658: case 3660: case 3662: case 3664: case 3666: case 3668: case 3670: case 3672: case 3674: case 3676: case 3678: case 3680: case 3682: case 3684: case 3686: case 3688: case 3690: case 3692: case 3694: case 3696: case 3698: case 3700: case 3702: case 3704: case 3706: case 3708: case 3710: case 3712: case 3714: case 3716: case 3718: case 3720: case 3722: case 3724: case 3726: case 3728: case 3730: case 3732: case 3734: return BlockType::CobblestoneStairs;
+ case 5660: case 5661: case 5662: case 5666: case 5667: case 5668: case 5672: case 5673: case 5674: case 5678: case 5679: case 5680: case 5684: case 5685: case 5686: case 5690: case 5691: case 5692: case 5696: case 5697: case 5698: case 5702: case 5703: case 5704: case 5708: case 5709: case 5710: case 5714: case 5715: case 5716: case 5720: case 5721: case 5722: case 5726: case 5727: case 5728: case 5732: case 5733: case 5734: case 5738: case 5739: case 5740: case 5744: case 5745: case 5746: case 5750: case 5751: case 5752: case 5756: case 5757: case 5758: case 5762: case 5763: case 5764: case 5768: case 5769: case 5770: case 5774: case 5775: case 5776: case 5780: case 5781: case 5782: case 5786: case 5787: case 5788: case 5792: case 5793: case 5794: case 5798: case 5799: case 5800: case 5804: case 5805: case 5806: case 5810: case 5811: case 5812: case 5816: case 5817: case 5818: case 5822: case 5823: case 5824: case 5828: case 5829: case 5830: case 5834: case 5835: case 5836: case 5840: case 5841: case 5842: case 5846: case 5847: case 5848: case 5852: case 5853: case 5854: case 5858: case 5859: case 5860: case 5864: case 5865: case 5866: case 5870: case 5871: case 5872: case 5876: case 5877: case 5878: case 5882: case 5883: case 5884: case 5888: case 5889: case 5890: case 5894: case 5895: case 5896: case 5900: case 5901: case 5902: case 5906: case 5907: case 5908: case 5912: case 5913: case 5914: case 5918: case 5919: case 5920: case 5924: case 5925: case 5926: case 5930: case 5931: case 5932: case 5936: case 5937: case 5938: case 5942: case 5943: case 5944: case 5948: case 5949: case 5950: case 5954: case 5955: case 5956: case 5960: case 5961: case 5962: case 5966: case 5967: case 5968: case 5972: case 5973: case 5974: case 5978: case 5979: case 5980: return BlockType::CobblestoneWall;
+ case 1341: return BlockType::Cobweb;
+ case 5158: case 5159: case 5160: case 5161: case 5162: case 5163: case 5164: case 5165: case 5166: case 5167: case 5168: case 5169: return BlockType::Cocoa;
+ case 5644: case 5645: case 5646: case 5647: case 5648: case 5649: case 5650: case 5651: case 5652: case 5653: case 5654: case 5655: return BlockType::CommandBlock;
+ case 6678: case 6679: case 6680: case 6681: case 6682: case 6683: case 6684: case 6685: case 6686: case 6687: case 6688: case 6689: case 6690: case 6691: case 6692: case 6693: return BlockType::Comparator;
+ case 15751: case 15752: case 15753: case 15754: case 15755: case 15756: case 15757: case 15758: case 15759: return BlockType::Composter;
+ case 9650: return BlockType::Conduit;
+ case 1422: return BlockType::Cornflower;
+ case 17102: return BlockType::CrackedNetherBricks;
+ case 16252: return BlockType::CrackedPolishedBlackstoneBricks;
+ case 4497: return BlockType::CrackedStoneBricks;
+ case 3356: return BlockType::CraftingTable;
+ case 6570: case 6571: case 6572: case 6573: case 6574: case 6575: case 6576: case 6577: case 6578: case 6579: case 6580: case 6581: case 6582: case 6583: case 6584: case 6585: return BlockType::CreeperHead;
+ case 6586: case 6587: case 6588: case 6589: return BlockType::CreeperWallHead;
+ case 15479: case 15480: case 15481: case 15482: case 15483: case 15484: case 15485: case 15486: case 15487: case 15488: case 15489: case 15490: case 15491: case 15492: case 15493: case 15494: case 15495: case 15496: case 15497: case 15498: case 15499: case 15500: case 15501: case 15502: return BlockType::CrimsonButton;
+ case 15527: case 15528: case 15529: case 15530: case 15531: case 15532: case 15533: case 15534: case 15535: case 15536: case 15537: case 15538: case 15539: case 15540: case 15541: case 15542: case 15543: case 15544: case 15545: case 15546: case 15547: case 15548: case 15549: case 15550: case 15551: case 15552: case 15553: case 15554: case 15555: case 15556: case 15557: case 15558: case 15559: case 15560: case 15561: case 15562: case 15563: case 15564: case 15565: case 15566: case 15567: case 15568: case 15569: case 15570: case 15571: case 15572: case 15573: case 15574: case 15575: case 15576: case 15577: case 15578: case 15579: case 15580: case 15581: case 15582: case 15583: case 15584: case 15585: case 15586: case 15587: case 15588: case 15589: case 15590: return BlockType::CrimsonDoor;
+ case 15065: case 15066: case 15069: case 15070: case 15073: case 15074: case 15077: case 15078: case 15081: case 15082: case 15085: case 15086: case 15089: case 15090: case 15093: case 15094: return BlockType::CrimsonFence;
+ case 15255: case 15256: case 15257: case 15258: case 15259: case 15260: case 15261: case 15262: case 15263: case 15264: case 15265: case 15266: case 15267: case 15268: case 15269: case 15270: case 15271: case 15272: case 15273: case 15274: case 15275: case 15276: case 15277: case 15278: case 15279: case 15280: case 15281: case 15282: case 15283: case 15284: case 15285: case 15286: return BlockType::CrimsonFenceGate;
+ case 14988: return BlockType::CrimsonFungus;
+ case 14981: case 14982: case 14983: return BlockType::CrimsonHyphae;
+ case 14987: return BlockType::CrimsonNylium;
+ case 15045: return BlockType::CrimsonPlanks;
+ case 15059: case 15060: return BlockType::CrimsonPressurePlate;
+ case 15044: return BlockType::CrimsonRoots;
+ case 15656: case 15658: case 15660: case 15662: case 15664: case 15666: case 15668: case 15670: case 15672: case 15674: case 15676: case 15678: case 15680: case 15682: case 15684: case 15686: return BlockType::CrimsonSign;
+ case 15048: case 15050: case 15052: return BlockType::CrimsonSlab;
+ case 15320: case 15322: case 15324: case 15326: case 15328: case 15330: case 15332: case 15334: case 15336: case 15338: case 15340: case 15342: case 15344: case 15346: case 15348: case 15350: case 15352: case 15354: case 15356: case 15358: case 15360: case 15362: case 15364: case 15366: case 15368: case 15370: case 15372: case 15374: case 15376: case 15378: case 15380: case 15382: case 15384: case 15386: case 15388: case 15390: case 15392: case 15394: case 15396: case 15398: return BlockType::CrimsonStairs;
+ case 14975: case 14976: case 14977: return BlockType::CrimsonStem;
+ case 15128: case 15130: case 15132: case 15134: case 15136: case 15138: case 15140: case 15142: case 15144: case 15146: case 15148: case 15150: case 15152: case 15154: case 15156: case 15158: case 15160: case 15162: case 15164: case 15166: case 15168: case 15170: case 15172: case 15174: case 15176: case 15178: case 15180: case 15182: case 15184: case 15186: case 15188: case 15190: return BlockType::CrimsonTrapdoor;
+ case 15720: case 15722: case 15724: case 15726: return BlockType::CrimsonWallSign;
+ case 15828: return BlockType::CryingObsidian;
+ case 8219: return BlockType::CutRedSandstone;
+ case 8403: case 8405: case 8407: return BlockType::CutRedSandstoneSlab;
+ case 248: return BlockType::CutSandstone;
+ case 8355: case 8357: case 8359: return BlockType::CutSandstoneSlab;
+ case 8041: case 8042: case 8043: case 8044: case 8045: case 8046: case 8047: case 8048: case 8049: case 8050: case 8051: case 8052: case 8053: case 8054: case 8055: case 8056: return BlockType::CyanBanner;
+ case 1193: case 1194: case 1195: case 1196: case 1197: case 1198: case 1199: case 1200: case 1201: case 1202: case 1203: case 1204: case 1205: case 1206: case 1207: case 1208: return BlockType::CyanBed;
+ case 7875: return BlockType::CyanCarpet;
+ case 9447: return BlockType::CyanConcrete;
+ case 9463: return BlockType::CyanConcretePowder;
+ case 9410: case 9411: case 9412: case 9413: return BlockType::CyanGlazedTerracotta;
+ case 9332: case 9333: case 9334: case 9335: case 9336: case 9337: return BlockType::CyanShulkerBox;
+ case 4104: return BlockType::CyanStainedGlass;
+ case 7153: case 7154: case 7157: case 7158: case 7161: case 7162: case 7165: case 7166: case 7169: case 7170: case 7173: case 7174: case 7177: case 7178: case 7181: case 7182: return BlockType::CyanStainedGlassPane;
+ case 6856: return BlockType::CyanTerracotta;
+ case 8189: case 8190: case 8191: case 8192: return BlockType::CyanWallBanner;
+ case 1393: return BlockType::CyanWool;
+ case 6618: case 6619: case 6620: case 6621: return BlockType::DamagedAnvil;
+ case 1412: return BlockType::Dandelion;
+ case 6466: case 6467: case 6468: case 6469: case 6470: case 6471: case 6472: case 6473: case 6474: case 6475: case 6476: case 6477: case 6478: case 6479: case 6480: case 6481: case 6482: case 6483: case 6484: case 6485: case 6486: case 6487: case 6488: case 6489: return BlockType::DarkOakButton;
+ case 8994: case 8995: case 8996: case 8997: case 8998: case 8999: case 9000: case 9001: case 9002: case 9003: case 9004: case 9005: case 9006: case 9007: case 9008: case 9009: case 9010: case 9011: case 9012: case 9013: case 9014: case 9015: case 9016: case 9017: case 9018: case 9019: case 9020: case 9021: case 9022: case 9023: case 9024: case 9025: case 9026: case 9027: case 9028: case 9029: case 9030: case 9031: case 9032: case 9033: case 9034: case 9035: case 9036: case 9037: case 9038: case 9039: case 9040: case 9041: case 9042: case 9043: case 9044: case 9045: case 9046: case 9047: case 9048: case 9049: case 9050: case 9051: case 9052: case 9053: case 9054: case 9055: case 9056: case 9057: return BlockType::DarkOakDoor;
+ case 8708: case 8709: case 8712: case 8713: case 8716: case 8717: case 8720: case 8721: case 8724: case 8725: case 8728: case 8729: case 8732: case 8733: case 8736: case 8737: return BlockType::DarkOakFence;
+ case 8546: case 8547: case 8548: case 8549: case 8550: case 8551: case 8552: case 8553: case 8554: case 8555: case 8556: case 8557: case 8558: case 8559: case 8560: case 8561: case 8562: case 8563: case 8564: case 8565: case 8566: case 8567: case 8568: case 8569: case 8570: case 8571: case 8572: case 8573: case 8574: case 8575: case 8576: case 8577: return BlockType::DarkOakFenceGate;
+ case 215: case 216: case 217: case 218: case 219: case 220: case 221: case 222: case 223: case 224: case 225: case 226: case 227: case 228: return BlockType::DarkOakLeaves;
+ case 88: case 89: case 90: return BlockType::DarkOakLog;
+ case 20: return BlockType::DarkOakPlanks;
+ case 3883: case 3884: return BlockType::DarkOakPressurePlate;
+ case 31: case 32: return BlockType::DarkOakSapling;
+ case 3542: case 3544: case 3546: case 3548: case 3550: case 3552: case 3554: case 3556: case 3558: case 3560: case 3562: case 3564: case 3566: case 3568: case 3570: case 3572: return BlockType::DarkOakSign;
+ case 8331: case 8333: case 8335: return BlockType::DarkOakSlab;
+ case 7456: case 7458: case 7460: case 7462: case 7464: case 7466: case 7468: case 7470: case 7472: case 7474: case 7476: case 7478: case 7480: case 7482: case 7484: case 7486: case 7488: case 7490: case 7492: case 7494: case 7496: case 7498: case 7500: case 7502: case 7504: case 7506: case 7508: case 7510: case 7512: case 7514: case 7516: case 7518: case 7520: case 7522: case 7524: case 7526: case 7528: case 7530: case 7532: case 7534: return BlockType::DarkOakStairs;
+ case 4432: case 4434: case 4436: case 4438: case 4440: case 4442: case 4444: case 4446: case 4448: case 4450: case 4452: case 4454: case 4456: case 4458: case 4460: case 4462: case 4464: case 4466: case 4468: case 4470: case 4472: case 4474: case 4476: case 4478: case 4480: case 4482: case 4484: case 4486: case 4488: case 4490: case 4492: case 4494: return BlockType::DarkOakTrapdoor;
+ case 3776: case 3778: case 3780: case 3782: return BlockType::DarkOakWallSign;
+ case 124: case 125: case 126: return BlockType::DarkOakWood;
+ case 7603: return BlockType::DarkPrismarine;
+ case 7857: case 7859: case 7861: return BlockType::DarkPrismarineSlab;
+ case 7765: case 7767: case 7769: case 7771: case 7773: case 7775: case 7777: case 7779: case 7781: case 7783: case 7785: case 7787: case 7789: case 7791: case 7793: case 7795: case 7797: case 7799: case 7801: case 7803: case 7805: case 7807: case 7809: case 7811: case 7813: case 7815: case 7817: case 7819: case 7821: case 7823: case 7825: case 7827: case 7829: case 7831: case 7833: case 7835: case 7837: case 7839: case 7841: case 7843: return BlockType::DarkPrismarineStairs;
+ case 6694: case 6695: case 6696: case 6697: case 6698: case 6699: case 6700: case 6701: case 6702: case 6703: case 6704: case 6705: case 6706: case 6707: case 6708: case 6709: case 6710: case 6711: case 6712: case 6713: case 6714: case 6715: case 6716: case 6717: case 6718: case 6719: case 6720: case 6721: case 6722: case 6723: case 6724: case 6725: return BlockType::DaylightDetector;
+ case 9523: return BlockType::DeadBrainCoral;
+ case 9511: return BlockType::DeadBrainCoralBlock;
+ case 9543: return BlockType::DeadBrainCoralFan;
+ case 9569: case 9571: case 9573: case 9575: return BlockType::DeadBrainCoralWallFan;
+ case 9525: return BlockType::DeadBubbleCoral;
+ case 9512: return BlockType::DeadBubbleCoralBlock;
+ case 9545: return BlockType::DeadBubbleCoralFan;
+ case 9577: case 9579: case 9581: case 9583: return BlockType::DeadBubbleCoralWallFan;
+ case 1344: return BlockType::DeadBush;
+ case 9527: return BlockType::DeadFireCoral;
+ case 9513: return BlockType::DeadFireCoralBlock;
+ case 9547: return BlockType::DeadFireCoralFan;
+ case 9585: case 9587: case 9589: case 9591: return BlockType::DeadFireCoralWallFan;
+ case 9529: return BlockType::DeadHornCoral;
+ case 9514: return BlockType::DeadHornCoralBlock;
+ case 9549: return BlockType::DeadHornCoralFan;
+ case 9593: case 9595: case 9597: case 9599: return BlockType::DeadHornCoralWallFan;
+ case 9521: return BlockType::DeadTubeCoral;
+ case 9510: return BlockType::DeadTubeCoralBlock;
+ case 9541: return BlockType::DeadTubeCoralFan;
+ case 9561: case 9563: case 9565: case 9567: return BlockType::DeadTubeCoralWallFan;
+ case 1317: case 1318: case 1319: case 1320: case 1321: case 1322: case 1323: case 1324: case 1325: case 1326: case 1327: case 1328: return BlockType::DetectorRail;
+ case 3355: return BlockType::DiamondBlock;
+ case 3354: return BlockType::DiamondOre;
+ case 4: return BlockType::Diorite;
+ case 10862: case 10864: case 10866: return BlockType::DioriteSlab;
+ case 10710: case 10712: case 10714: case 10716: case 10718: case 10720: case 10722: case 10724: case 10726: case 10728: case 10730: case 10732: case 10734: case 10736: case 10738: case 10740: case 10742: case 10744: case 10746: case 10748: case 10750: case 10752: case 10754: case 10756: case 10758: case 10760: case 10762: case 10764: case 10766: case 10768: case 10770: case 10772: case 10774: case 10776: case 10778: case 10780: case 10782: case 10784: case 10786: case 10788: return BlockType::DioriteStairs;
+ case 14434: case 14435: case 14436: case 14440: case 14441: case 14442: case 14446: case 14447: case 14448: case 14452: case 14453: case 14454: case 14458: case 14459: case 14460: case 14464: case 14465: case 14466: case 14470: case 14471: case 14472: case 14476: case 14477: case 14478: case 14482: case 14483: case 14484: case 14488: case 14489: case 14490: case 14494: case 14495: case 14496: case 14500: case 14501: case 14502: case 14506: case 14507: case 14508: case 14512: case 14513: case 14514: case 14518: case 14519: case 14520: case 14524: case 14525: case 14526: case 14530: case 14531: case 14532: case 14536: case 14537: case 14538: case 14542: case 14543: case 14544: case 14548: case 14549: case 14550: case 14554: case 14555: case 14556: case 14560: case 14561: case 14562: case 14566: case 14567: case 14568: case 14572: case 14573: case 14574: case 14578: case 14579: case 14580: case 14584: case 14585: case 14586: case 14590: case 14591: case 14592: case 14596: case 14597: case 14598: case 14602: case 14603: case 14604: case 14608: case 14609: case 14610: case 14614: case 14615: case 14616: case 14620: case 14621: case 14622: case 14626: case 14627: case 14628: case 14632: case 14633: case 14634: case 14638: case 14639: case 14640: case 14644: case 14645: case 14646: case 14650: case 14651: case 14652: case 14656: case 14657: case 14658: case 14662: case 14663: case 14664: case 14668: case 14669: case 14670: case 14674: case 14675: case 14676: case 14680: case 14681: case 14682: case 14686: case 14687: case 14688: case 14692: case 14693: case 14694: case 14698: case 14699: case 14700: case 14704: case 14705: case 14706: case 14710: case 14711: case 14712: case 14716: case 14717: case 14718: case 14722: case 14723: case 14724: case 14728: case 14729: case 14730: case 14734: case 14735: case 14736: case 14740: case 14741: case 14742: case 14746: case 14747: case 14748: case 14752: case 14753: case 14754: return BlockType::DioriteWall;
+ case 10: return BlockType::Dirt;
+ case 234: case 235: case 236: case 237: case 238: case 239: case 240: case 241: case 242: case 243: case 244: case 245: return BlockType::Dispenser;
+ case 5155: return BlockType::DragonEgg;
+ case 6590: case 6591: case 6592: case 6593: case 6594: case 6595: case 6596: case 6597: case 6598: case 6599: case 6600: case 6601: case 6602: case 6603: case 6604: case 6605: return BlockType::DragonHead;
+ case 6606: case 6607: case 6608: case 6609: return BlockType::DragonWallHead;
+ case 9497: return BlockType::DriedKelpBlock;
+ case 6835: case 6836: case 6837: case 6838: case 6839: case 6840: case 6841: case 6842: case 6843: case 6844: case 6845: case 6846: return BlockType::Dropper;
+ case 5403: return BlockType::EmeraldBlock;
+ case 5250: return BlockType::EmeraldOre;
+ case 5132: return BlockType::EnchantingTable;
+ case 9224: return BlockType::EndGateway;
+ case 5145: return BlockType::EndPortal;
+ case 5146: case 5147: case 5148: case 5149: case 5150: case 5151: case 5152: case 5153: return BlockType::EndPortalFrame;
+ case 9058: case 9059: case 9060: case 9061: case 9062: case 9063: return BlockType::EndRod;
+ case 5154: return BlockType::EndStone;
+ case 10820: case 10822: case 10824: return BlockType::EndStoneBrickSlab;
+ case 10070: case 10072: case 10074: case 10076: case 10078: case 10080: case 10082: case 10084: case 10086: case 10088: case 10090: case 10092: case 10094: case 10096: case 10098: case 10100: case 10102: case 10104: case 10106: case 10108: case 10110: case 10112: case 10114: case 10116: case 10118: case 10120: case 10122: case 10124: case 10126: case 10128: case 10130: case 10132: case 10134: case 10136: case 10138: case 10140: case 10142: case 10144: case 10146: case 10148: return BlockType::EndStoneBrickStairs;
+ case 14110: case 14111: case 14112: case 14116: case 14117: case 14118: case 14122: case 14123: case 14124: case 14128: case 14129: case 14130: case 14134: case 14135: case 14136: case 14140: case 14141: case 14142: case 14146: case 14147: case 14148: case 14152: case 14153: case 14154: case 14158: case 14159: case 14160: case 14164: case 14165: case 14166: case 14170: case 14171: case 14172: case 14176: case 14177: case 14178: case 14182: case 14183: case 14184: case 14188: case 14189: case 14190: case 14194: case 14195: case 14196: case 14200: case 14201: case 14202: case 14206: case 14207: case 14208: case 14212: case 14213: case 14214: case 14218: case 14219: case 14220: case 14224: case 14225: case 14226: case 14230: case 14231: case 14232: case 14236: case 14237: case 14238: case 14242: case 14243: case 14244: case 14248: case 14249: case 14250: case 14254: case 14255: case 14256: case 14260: case 14261: case 14262: case 14266: case 14267: case 14268: case 14272: case 14273: case 14274: case 14278: case 14279: case 14280: case 14284: case 14285: case 14286: case 14290: case 14291: case 14292: case 14296: case 14297: case 14298: case 14302: case 14303: case 14304: case 14308: case 14309: case 14310: case 14314: case 14315: case 14316: case 14320: case 14321: case 14322: case 14326: case 14327: case 14328: case 14332: case 14333: case 14334: case 14338: case 14339: case 14340: case 14344: case 14345: case 14346: case 14350: case 14351: case 14352: case 14356: case 14357: case 14358: case 14362: case 14363: case 14364: case 14368: case 14369: case 14370: case 14374: case 14375: case 14376: case 14380: case 14381: case 14382: case 14386: case 14387: case 14388: case 14392: case 14393: case 14394: case 14398: case 14399: case 14400: case 14404: case 14405: case 14406: case 14410: case 14411: case 14412: case 14416: case 14417: case 14418: case 14422: case 14423: case 14424: case 14428: case 14429: case 14430: return BlockType::EndStoneBrickWall;
+ case 9218: return BlockType::EndStoneBricks;
+ case 5252: case 5254: case 5256: case 5258: return BlockType::EnderChest;
+ case 3365: case 3366: case 3367: case 3368: case 3369: case 3370: case 3371: case 3372: return BlockType::Farmland;
+ case 1343: return BlockType::Fern;
+ case 1440: case 1441: case 1442: case 1443: case 1444: case 1445: case 1446: case 1447: case 1448: case 1449: case 1450: case 1451: case 1452: case 1453: case 1454: case 1455: case 1456: case 1457: case 1458: case 1459: case 1460: case 1461: case 1462: case 1463: case 1464: case 1465: case 1466: case 1467: case 1468: case 1469: case 1470: case 1471: case 1472: case 1473: case 1474: case 1475: case 1476: case 1477: case 1478: case 1479: case 1480: case 1481: case 1482: case 1483: case 1484: case 1485: case 1486: case 1487: case 1488: case 1489: case 1490: case 1491: case 1492: case 1493: case 1494: case 1495: case 1496: case 1497: case 1498: case 1499: case 1500: case 1501: case 1502: case 1503: case 1504: case 1505: case 1506: case 1507: case 1508: case 1509: case 1510: case 1511: case 1512: case 1513: case 1514: case 1515: case 1516: case 1517: case 1518: case 1519: case 1520: case 1521: case 1522: case 1523: case 1524: case 1525: case 1526: case 1527: case 1528: case 1529: case 1530: case 1531: case 1532: case 1533: case 1534: case 1535: case 1536: case 1537: case 1538: case 1539: case 1540: case 1541: case 1542: case 1543: case 1544: case 1545: case 1546: case 1547: case 1548: case 1549: case 1550: case 1551: case 1552: case 1553: case 1554: case 1555: case 1556: case 1557: case 1558: case 1559: case 1560: case 1561: case 1562: case 1563: case 1564: case 1565: case 1566: case 1567: case 1568: case 1569: case 1570: case 1571: case 1572: case 1573: case 1574: case 1575: case 1576: case 1577: case 1578: case 1579: case 1580: case 1581: case 1582: case 1583: case 1584: case 1585: case 1586: case 1587: case 1588: case 1589: case 1590: case 1591: case 1592: case 1593: case 1594: case 1595: case 1596: case 1597: case 1598: case 1599: case 1600: case 1601: case 1602: case 1603: case 1604: case 1605: case 1606: case 1607: case 1608: case 1609: case 1610: case 1611: case 1612: case 1613: case 1614: case 1615: case 1616: case 1617: case 1618: case 1619: case 1620: case 1621: case 1622: case 1623: case 1624: case 1625: case 1626: case 1627: case 1628: case 1629: case 1630: case 1631: case 1632: case 1633: case 1634: case 1635: case 1636: case 1637: case 1638: case 1639: case 1640: case 1641: case 1642: case 1643: case 1644: case 1645: case 1646: case 1647: case 1648: case 1649: case 1650: case 1651: case 1652: case 1653: case 1654: case 1655: case 1656: case 1657: case 1658: case 1659: case 1660: case 1661: case 1662: case 1663: case 1664: case 1665: case 1666: case 1667: case 1668: case 1669: case 1670: case 1671: case 1672: case 1673: case 1674: case 1675: case 1676: case 1677: case 1678: case 1679: case 1680: case 1681: case 1682: case 1683: case 1684: case 1685: case 1686: case 1687: case 1688: case 1689: case 1690: case 1691: case 1692: case 1693: case 1694: case 1695: case 1696: case 1697: case 1698: case 1699: case 1700: case 1701: case 1702: case 1703: case 1704: case 1705: case 1706: case 1707: case 1708: case 1709: case 1710: case 1711: case 1712: case 1713: case 1714: case 1715: case 1716: case 1717: case 1718: case 1719: case 1720: case 1721: case 1722: case 1723: case 1724: case 1725: case 1726: case 1727: case 1728: case 1729: case 1730: case 1731: case 1732: case 1733: case 1734: case 1735: case 1736: case 1737: case 1738: case 1739: case 1740: case 1741: case 1742: case 1743: case 1744: case 1745: case 1746: case 1747: case 1748: case 1749: case 1750: case 1751: case 1752: case 1753: case 1754: case 1755: case 1756: case 1757: case 1758: case 1759: case 1760: case 1761: case 1762: case 1763: case 1764: case 1765: case 1766: case 1767: case 1768: case 1769: case 1770: case 1771: case 1772: case 1773: case 1774: case 1775: case 1776: case 1777: case 1778: case 1779: case 1780: case 1781: case 1782: case 1783: case 1784: case 1785: case 1786: case 1787: case 1788: case 1789: case 1790: case 1791: case 1792: case 1793: case 1794: case 1795: case 1796: case 1797: case 1798: case 1799: case 1800: case 1801: case 1802: case 1803: case 1804: case 1805: case 1806: case 1807: case 1808: case 1809: case 1810: case 1811: case 1812: case 1813: case 1814: case 1815: case 1816: case 1817: case 1818: case 1819: case 1820: case 1821: case 1822: case 1823: case 1824: case 1825: case 1826: case 1827: case 1828: case 1829: case 1830: case 1831: case 1832: case 1833: case 1834: case 1835: case 1836: case 1837: case 1838: case 1839: case 1840: case 1841: case 1842: case 1843: case 1844: case 1845: case 1846: case 1847: case 1848: case 1849: case 1850: case 1851: case 1852: case 1853: case 1854: case 1855: case 1856: case 1857: case 1858: case 1859: case 1860: case 1861: case 1862: case 1863: case 1864: case 1865: case 1866: case 1867: case 1868: case 1869: case 1870: case 1871: case 1872: case 1873: case 1874: case 1875: case 1876: case 1877: case 1878: case 1879: case 1880: case 1881: case 1882: case 1883: case 1884: case 1885: case 1886: case 1887: case 1888: case 1889: case 1890: case 1891: case 1892: case 1893: case 1894: case 1895: case 1896: case 1897: case 1898: case 1899: case 1900: case 1901: case 1902: case 1903: case 1904: case 1905: case 1906: case 1907: case 1908: case 1909: case 1910: case 1911: case 1912: case 1913: case 1914: case 1915: case 1916: case 1917: case 1918: case 1919: case 1920: case 1921: case 1922: case 1923: case 1924: case 1925: case 1926: case 1927: case 1928: case 1929: case 1930: case 1931: case 1932: case 1933: case 1934: case 1935: case 1936: case 1937: case 1938: case 1939: case 1940: case 1941: case 1942: case 1943: case 1944: case 1945: case 1946: case 1947: case 1948: case 1949: case 1950: case 1951: return BlockType::Fire;
+ case 9537: return BlockType::FireCoral;
+ case 9518: return BlockType::FireCoralBlock;
+ case 9557: return BlockType::FireCoralFan;
+ case 9625: case 9627: case 9629: case 9631: return BlockType::FireCoralWallFan;
+ case 14820: return BlockType::FletchingTable;
+ case 6305: return BlockType::FlowerPot;
+ case 9249: case 9250: case 9251: case 9252: return BlockType::FrostedIce;
+ case 3373: case 3374: case 3375: case 3376: case 3377: case 3378: case 3379: case 3380: return BlockType::Furnace;
+ case 16664: return BlockType::GildedBlackstone;
+ case 231: return BlockType::Glass;
+ case 4733: case 4734: case 4737: case 4738: case 4741: case 4742: case 4745: case 4746: case 4749: case 4750: case 4753: case 4754: case 4757: case 4758: case 4761: case 4762: return BlockType::GlassPane;
+ case 4013: return BlockType::Glowstone;
+ case 1427: return BlockType::GoldBlock;
+ case 69: return BlockType::GoldOre;
+ case 2: return BlockType::Granite;
+ case 10838: case 10840: case 10842: return BlockType::GraniteSlab;
+ case 10390: case 10392: case 10394: case 10396: case 10398: case 10400: case 10402: case 10404: case 10406: case 10408: case 10410: case 10412: case 10414: case 10416: case 10418: case 10420: case 10422: case 10424: case 10426: case 10428: case 10430: case 10432: case 10434: case 10436: case 10438: case 10440: case 10442: case 10444: case 10446: case 10448: case 10450: case 10452: case 10454: case 10456: case 10458: case 10460: case 10462: case 10464: case 10466: case 10468: return BlockType::GraniteStairs;
+ case 12166: case 12167: case 12168: case 12172: case 12173: case 12174: case 12178: case 12179: case 12180: case 12184: case 12185: case 12186: case 12190: case 12191: case 12192: case 12196: case 12197: case 12198: case 12202: case 12203: case 12204: case 12208: case 12209: case 12210: case 12214: case 12215: case 12216: case 12220: case 12221: case 12222: case 12226: case 12227: case 12228: case 12232: case 12233: case 12234: case 12238: case 12239: case 12240: case 12244: case 12245: case 12246: case 12250: case 12251: case 12252: case 12256: case 12257: case 12258: case 12262: case 12263: case 12264: case 12268: case 12269: case 12270: case 12274: case 12275: case 12276: case 12280: case 12281: case 12282: case 12286: case 12287: case 12288: case 12292: case 12293: case 12294: case 12298: case 12299: case 12300: case 12304: case 12305: case 12306: case 12310: case 12311: case 12312: case 12316: case 12317: case 12318: case 12322: case 12323: case 12324: case 12328: case 12329: case 12330: case 12334: case 12335: case 12336: case 12340: case 12341: case 12342: case 12346: case 12347: case 12348: case 12352: case 12353: case 12354: case 12358: case 12359: case 12360: case 12364: case 12365: case 12366: case 12370: case 12371: case 12372: case 12376: case 12377: case 12378: case 12382: case 12383: case 12384: case 12388: case 12389: case 12390: case 12394: case 12395: case 12396: case 12400: case 12401: case 12402: case 12406: case 12407: case 12408: case 12412: case 12413: case 12414: case 12418: case 12419: case 12420: case 12424: case 12425: case 12426: case 12430: case 12431: case 12432: case 12436: case 12437: case 12438: case 12442: case 12443: case 12444: case 12448: case 12449: case 12450: case 12454: case 12455: case 12456: case 12460: case 12461: case 12462: case 12466: case 12467: case 12468: case 12472: case 12473: case 12474: case 12478: case 12479: case 12480: case 12484: case 12485: case 12486: return BlockType::GraniteWall;
+ case 1342: return BlockType::Grass;
+ case 8: case 9: return BlockType::GrassBlock;
+ case 9223: return BlockType::GrassPath;
+ case 68: return BlockType::Gravel;
+ case 8009: case 8010: case 8011: case 8012: case 8013: case 8014: case 8015: case 8016: case 8017: case 8018: case 8019: case 8020: case 8021: case 8022: case 8023: case 8024: return BlockType::GrayBanner;
+ case 1161: case 1162: case 1163: case 1164: case 1165: case 1166: case 1167: case 1168: case 1169: case 1170: case 1171: case 1172: case 1173: case 1174: case 1175: case 1176: return BlockType::GrayBed;
+ case 7873: return BlockType::GrayCarpet;
+ case 9445: return BlockType::GrayConcrete;
+ case 9461: return BlockType::GrayConcretePowder;
+ case 9402: case 9403: case 9404: case 9405: return BlockType::GrayGlazedTerracotta;
+ case 9320: case 9321: case 9322: case 9323: case 9324: case 9325: return BlockType::GrayShulkerBox;
+ case 4102: return BlockType::GrayStainedGlass;
+ case 7089: case 7090: case 7093: case 7094: case 7097: case 7098: case 7101: case 7102: case 7105: case 7106: case 7109: case 7110: case 7113: case 7114: case 7117: case 7118: return BlockType::GrayStainedGlassPane;
+ case 6854: return BlockType::GrayTerracotta;
+ case 8181: case 8182: case 8183: case 8184: return BlockType::GrayWallBanner;
+ case 1391: return BlockType::GrayWool;
+ case 8105: case 8106: case 8107: case 8108: case 8109: case 8110: case 8111: case 8112: case 8113: case 8114: case 8115: case 8116: case 8117: case 8118: case 8119: case 8120: return BlockType::GreenBanner;
+ case 1257: case 1258: case 1259: case 1260: case 1261: case 1262: case 1263: case 1264: case 1265: case 1266: case 1267: case 1268: case 1269: case 1270: case 1271: case 1272: return BlockType::GreenBed;
+ case 7879: return BlockType::GreenCarpet;
+ case 9451: return BlockType::GreenConcrete;
+ case 9467: return BlockType::GreenConcretePowder;
+ case 9426: case 9427: case 9428: case 9429: return BlockType::GreenGlazedTerracotta;
+ case 9356: case 9357: case 9358: case 9359: case 9360: case 9361: return BlockType::GreenShulkerBox;
+ case 4108: return BlockType::GreenStainedGlass;
+ case 7281: case 7282: case 7285: case 7286: case 7289: case 7290: case 7293: case 7294: case 7297: case 7298: case 7301: case 7302: case 7305: case 7306: case 7309: case 7310: return BlockType::GreenStainedGlassPane;
+ case 6860: return BlockType::GreenTerracotta;
+ case 8205: case 8206: case 8207: case 8208: return BlockType::GreenWallBanner;
+ case 1397: return BlockType::GreenWool;
+ case 14821: case 14822: case 14823: case 14824: case 14825: case 14826: case 14827: case 14828: case 14829: case 14830: case 14831: case 14832: return BlockType::Grindstone;
+ case 7863: case 7864: case 7865: return BlockType::HayBale;
+ case 6662: case 6663: case 6664: case 6665: case 6666: case 6667: case 6668: case 6669: case 6670: case 6671: case 6672: case 6673: case 6674: case 6675: case 6676: case 6677: return BlockType::HeavyWeightedPressurePlate;
+ case 15824: return BlockType::HoneyBlock;
+ case 15825: return BlockType::HoneycombBlock;
+ case 6728: case 6729: case 6730: case 6731: case 6732: case 6733: case 6734: case 6735: case 6736: case 6737: return BlockType::Hopper;
+ case 9539: return BlockType::HornCoral;
+ case 9519: return BlockType::HornCoralBlock;
+ case 9559: return BlockType::HornCoralFan;
+ case 9633: case 9635: case 9637: case 9639: return BlockType::HornCoralWallFan;
+ case 3929: return BlockType::Ice;
+ case 4504: return BlockType::InfestedChiseledStoneBricks;
+ case 4500: return BlockType::InfestedCobblestone;
+ case 4503: return BlockType::InfestedCrackedStoneBricks;
+ case 4502: return BlockType::InfestedMossyStoneBricks;
+ case 4499: return BlockType::InfestedStone;
+ case 4501: return BlockType::InfestedStoneBricks;
+ case 4699: case 4700: case 4703: case 4704: case 4707: case 4708: case 4711: case 4712: case 4715: case 4716: case 4719: case 4720: case 4723: case 4724: case 4727: case 4728: return BlockType::IronBars;
+ case 1428: return BlockType::IronBlock;
+ case 3809: case 3810: case 3811: case 3812: case 3813: case 3814: case 3815: case 3816: case 3817: case 3818: case 3819: case 3820: case 3821: case 3822: case 3823: case 3824: case 3825: case 3826: case 3827: case 3828: case 3829: case 3830: case 3831: case 3832: case 3833: case 3834: case 3835: case 3836: case 3837: case 3838: case 3839: case 3840: case 3841: case 3842: case 3843: case 3844: case 3845: case 3846: case 3847: case 3848: case 3849: case 3850: case 3851: case 3852: case 3853: case 3854: case 3855: case 3856: case 3857: case 3858: case 3859: case 3860: case 3861: case 3862: case 3863: case 3864: case 3865: case 3866: case 3867: case 3868: case 3869: case 3870: case 3871: case 3872: return BlockType::IronDoor;
+ case 70: return BlockType::IronOre;
+ case 7538: case 7540: case 7542: case 7544: case 7546: case 7548: case 7550: case 7552: case 7554: case 7556: case 7558: case 7560: case 7562: case 7564: case 7566: case 7568: case 7570: case 7572: case 7574: case 7576: case 7578: case 7580: case 7582: case 7584: case 7586: case 7588: case 7590: case 7592: case 7594: case 7596: case 7598: case 7600: return BlockType::IronTrapdoor;
+ case 4020: case 4021: case 4022: case 4023: return BlockType::JackOLantern;
+ case 15739: case 15740: case 15741: case 15742: case 15743: case 15744: case 15745: case 15746: case 15747: case 15748: case 15749: case 15750: return BlockType::Jigsaw;
+ case 3964: case 3965: return BlockType::Jukebox;
+ case 6418: case 6419: case 6420: case 6421: case 6422: case 6423: case 6424: case 6425: case 6426: case 6427: case 6428: case 6429: case 6430: case 6431: case 6432: case 6433: case 6434: case 6435: case 6436: case 6437: case 6438: case 6439: case 6440: case 6441: return BlockType::JungleButton;
+ case 8866: case 8867: case 8868: case 8869: case 8870: case 8871: case 8872: case 8873: case 8874: case 8875: case 8876: case 8877: case 8878: case 8879: case 8880: case 8881: case 8882: case 8883: case 8884: case 8885: case 8886: case 8887: case 8888: case 8889: case 8890: case 8891: case 8892: case 8893: case 8894: case 8895: case 8896: case 8897: case 8898: case 8899: case 8900: case 8901: case 8902: case 8903: case 8904: case 8905: case 8906: case 8907: case 8908: case 8909: case 8910: case 8911: case 8912: case 8913: case 8914: case 8915: case 8916: case 8917: case 8918: case 8919: case 8920: case 8921: case 8922: case 8923: case 8924: case 8925: case 8926: case 8927: case 8928: case 8929: return BlockType::JungleDoor;
+ case 8644: case 8645: case 8648: case 8649: case 8652: case 8653: case 8656: case 8657: case 8660: case 8661: case 8664: case 8665: case 8668: case 8669: case 8672: case 8673: return BlockType::JungleFence;
+ case 8482: case 8483: case 8484: case 8485: case 8486: case 8487: case 8488: case 8489: case 8490: case 8491: case 8492: case 8493: case 8494: case 8495: case 8496: case 8497: case 8498: case 8499: case 8500: case 8501: case 8502: case 8503: case 8504: case 8505: case 8506: case 8507: case 8508: case 8509: case 8510: case 8511: case 8512: case 8513: return BlockType::JungleFenceGate;
+ case 187: case 188: case 189: case 190: case 191: case 192: case 193: case 194: case 195: case 196: case 197: case 198: case 199: case 200: return BlockType::JungleLeaves;
+ case 82: case 83: case 84: return BlockType::JungleLog;
+ case 18: return BlockType::JunglePlanks;
+ case 3879: case 3880: return BlockType::JunglePressurePlate;
+ case 27: case 28: return BlockType::JungleSapling;
+ case 3510: case 3512: case 3514: case 3516: case 3518: case 3520: case 3522: case 3524: case 3526: case 3528: case 3530: case 3532: case 3534: case 3536: case 3538: case 3540: return BlockType::JungleSign;
+ case 8319: case 8321: case 8323: return BlockType::JungleSlab;
+ case 5565: case 5567: case 5569: case 5571: case 5573: case 5575: case 5577: case 5579: case 5581: case 5583: case 5585: case 5587: case 5589: case 5591: case 5593: case 5595: case 5597: case 5599: case 5601: case 5603: case 5605: case 5607: case 5609: case 5611: case 5613: case 5615: case 5617: case 5619: case 5621: case 5623: case 5625: case 5627: case 5629: case 5631: case 5633: case 5635: case 5637: case 5639: case 5641: case 5643: return BlockType::JungleStairs;
+ case 4304: case 4306: case 4308: case 4310: case 4312: case 4314: case 4316: case 4318: case 4320: case 4322: case 4324: case 4326: case 4328: case 4330: case 4332: case 4334: case 4336: case 4338: case 4340: case 4342: case 4344: case 4346: case 4348: case 4350: case 4352: case 4354: case 4356: case 4358: case 4360: case 4362: case 4364: case 4366: return BlockType::JungleTrapdoor;
+ case 3768: case 3770: case 3772: case 3774: return BlockType::JungleWallSign;
+ case 118: case 119: case 120: return BlockType::JungleWood;
+ case 9470: case 9471: case 9472: case 9473: case 9474: case 9475: case 9476: case 9477: case 9478: case 9479: case 9480: case 9481: case 9482: case 9483: case 9484: case 9485: case 9486: case 9487: case 9488: case 9489: case 9490: case 9491: case 9492: case 9493: case 9494: case 9495: return BlockType::Kelp;
+ case 9496: return BlockType::KelpPlant;
+ case 3638: case 3640: case 3642: case 3644: return BlockType::Ladder;
+ case 14886: case 14887: return BlockType::Lantern;
+ case 233: return BlockType::LapisBlock;
+ case 232: return BlockType::LapisOre;
+ case 7895: case 7896: return BlockType::LargeFern;
+ case 50: case 51: case 52: case 53: case 54: case 55: case 56: case 57: case 58: case 59: case 60: case 61: case 62: case 63: case 64: case 65: return BlockType::Lava;
+ case 14833: case 14834: case 14835: case 14836: case 14837: case 14838: case 14839: case 14840: case 14841: case 14842: case 14843: case 14844: case 14845: case 14846: case 14847: case 14848: return BlockType::Lectern;
+ case 3783: case 3784: case 3785: case 3786: case 3787: case 3788: case 3789: case 3790: case 3791: case 3792: case 3793: case 3794: case 3795: case 3796: case 3797: case 3798: case 3799: case 3800: case 3801: case 3802: case 3803: case 3804: case 3805: case 3806: return BlockType::Lever;
+ case 7945: case 7946: case 7947: case 7948: case 7949: case 7950: case 7951: case 7952: case 7953: case 7954: case 7955: case 7956: case 7957: case 7958: case 7959: case 7960: return BlockType::LightBlueBanner;
+ case 1097: case 1098: case 1099: case 1100: case 1101: case 1102: case 1103: case 1104: case 1105: case 1106: case 1107: case 1108: case 1109: case 1110: case 1111: case 1112: return BlockType::LightBlueBed;
+ case 7869: return BlockType::LightBlueCarpet;
+ case 9441: return BlockType::LightBlueConcrete;
+ case 9457: return BlockType::LightBlueConcretePowder;
+ case 9386: case 9387: case 9388: case 9389: return BlockType::LightBlueGlazedTerracotta;
+ case 9296: case 9297: case 9298: case 9299: case 9300: case 9301: return BlockType::LightBlueShulkerBox;
+ case 4098: return BlockType::LightBlueStainedGlass;
+ case 6961: case 6962: case 6965: case 6966: case 6969: case 6970: case 6973: case 6974: case 6977: case 6978: case 6981: case 6982: case 6985: case 6986: case 6989: case 6990: return BlockType::LightBlueStainedGlassPane;
+ case 6850: return BlockType::LightBlueTerracotta;
+ case 8165: case 8166: case 8167: case 8168: return BlockType::LightBlueWallBanner;
+ case 1387: return BlockType::LightBlueWool;
+ case 8025: case 8026: case 8027: case 8028: case 8029: case 8030: case 8031: case 8032: case 8033: case 8034: case 8035: case 8036: case 8037: case 8038: case 8039: case 8040: return BlockType::LightGrayBanner;
+ case 1177: case 1178: case 1179: case 1180: case 1181: case 1182: case 1183: case 1184: case 1185: case 1186: case 1187: case 1188: case 1189: case 1190: case 1191: case 1192: return BlockType::LightGrayBed;
+ case 7874: return BlockType::LightGrayCarpet;
+ case 9446: return BlockType::LightGrayConcrete;
+ case 9462: return BlockType::LightGrayConcretePowder;
+ case 9406: case 9407: case 9408: case 9409: return BlockType::LightGrayGlazedTerracotta;
+ case 9326: case 9327: case 9328: case 9329: case 9330: case 9331: return BlockType::LightGrayShulkerBox;
+ case 4103: return BlockType::LightGrayStainedGlass;
+ case 7121: case 7122: case 7125: case 7126: case 7129: case 7130: case 7133: case 7134: case 7137: case 7138: case 7141: case 7142: case 7145: case 7146: case 7149: case 7150: return BlockType::LightGrayStainedGlassPane;
+ case 6855: return BlockType::LightGrayTerracotta;
+ case 8185: case 8186: case 8187: case 8188: return BlockType::LightGrayWallBanner;
+ case 1392: return BlockType::LightGrayWool;
+ case 6646: case 6647: case 6648: case 6649: case 6650: case 6651: case 6652: case 6653: case 6654: case 6655: case 6656: case 6657: case 6658: case 6659: case 6660: case 6661: return BlockType::LightWeightedPressurePlate;
+ case 7887: case 7888: return BlockType::Lilac;
+ case 1424: return BlockType::LilyOfTheValley;
+ case 5014: return BlockType::LilyPad;
+ case 7977: case 7978: case 7979: case 7980: case 7981: case 7982: case 7983: case 7984: case 7985: case 7986: case 7987: case 7988: case 7989: case 7990: case 7991: case 7992: return BlockType::LimeBanner;
+ case 1129: case 1130: case 1131: case 1132: case 1133: case 1134: case 1135: case 1136: case 1137: case 1138: case 1139: case 1140: case 1141: case 1142: case 1143: case 1144: return BlockType::LimeBed;
+ case 7871: return BlockType::LimeCarpet;
+ case 9443: return BlockType::LimeConcrete;
+ case 9459: return BlockType::LimeConcretePowder;
+ case 9394: case 9395: case 9396: case 9397: return BlockType::LimeGlazedTerracotta;
+ case 9308: case 9309: case 9310: case 9311: case 9312: case 9313: return BlockType::LimeShulkerBox;
+ case 4100: return BlockType::LimeStainedGlass;
+ case 7025: case 7026: case 7029: case 7030: case 7033: case 7034: case 7037: case 7038: case 7041: case 7042: case 7045: case 7046: case 7049: case 7050: case 7053: case 7054: return BlockType::LimeStainedGlassPane;
+ case 6852: return BlockType::LimeTerracotta;
+ case 8173: case 8174: case 8175: case 8176: return BlockType::LimeWallBanner;
+ case 1389: return BlockType::LimeWool;
+ case 15838: return BlockType::Lodestone;
+ case 14787: case 14788: case 14789: case 14790: return BlockType::Loom;
+ case 7929: case 7930: case 7931: case 7932: case 7933: case 7934: case 7935: case 7936: case 7937: case 7938: case 7939: case 7940: case 7941: case 7942: case 7943: case 7944: return BlockType::MagentaBanner;
+ case 1081: case 1082: case 1083: case 1084: case 1085: case 1086: case 1087: case 1088: case 1089: case 1090: case 1091: case 1092: case 1093: case 1094: case 1095: case 1096: return BlockType::MagentaBed;
+ case 7868: return BlockType::MagentaCarpet;
+ case 9440: return BlockType::MagentaConcrete;
+ case 9456: return BlockType::MagentaConcretePowder;
+ case 9382: case 9383: case 9384: case 9385: return BlockType::MagentaGlazedTerracotta;
+ case 9290: case 9291: case 9292: case 9293: case 9294: case 9295: return BlockType::MagentaShulkerBox;
+ case 4097: return BlockType::MagentaStainedGlass;
+ case 6929: case 6930: case 6933: case 6934: case 6937: case 6938: case 6941: case 6942: case 6945: case 6946: case 6949: case 6950: case 6953: case 6954: case 6957: case 6958: return BlockType::MagentaStainedGlassPane;
+ case 6849: return BlockType::MagentaTerracotta;
+ case 8161: case 8162: case 8163: case 8164: return BlockType::MagentaWallBanner;
+ case 1386: return BlockType::MagentaWool;
+ case 9253: return BlockType::MagmaBlock;
+ case 4763: return BlockType::Melon;
+ case 4780: case 4781: case 4782: case 4783: case 4784: case 4785: case 4786: case 4787: return BlockType::MelonStem;
+ case 1433: return BlockType::MossyCobblestone;
+ case 10814: case 10816: case 10818: return BlockType::MossyCobblestoneSlab;
+ case 9990: case 9992: case 9994: case 9996: case 9998: case 10000: case 10002: case 10004: case 10006: case 10008: case 10010: case 10012: case 10014: case 10016: case 10018: case 10020: case 10022: case 10024: case 10026: case 10028: case 10030: case 10032: case 10034: case 10036: case 10038: case 10040: case 10042: case 10044: case 10046: case 10048: case 10050: case 10052: case 10054: case 10056: case 10058: case 10060: case 10062: case 10064: case 10066: case 10068: return BlockType::MossyCobblestoneStairs;
+ case 5984: case 5985: case 5986: case 5990: case 5991: case 5992: case 5996: case 5997: case 5998: case 6002: case 6003: case 6004: case 6008: case 6009: case 6010: case 6014: case 6015: case 6016: case 6020: case 6021: case 6022: case 6026: case 6027: case 6028: case 6032: case 6033: case 6034: case 6038: case 6039: case 6040: case 6044: case 6045: case 6046: case 6050: case 6051: case 6052: case 6056: case 6057: case 6058: case 6062: case 6063: case 6064: case 6068: case 6069: case 6070: case 6074: case 6075: case 6076: case 6080: case 6081: case 6082: case 6086: case 6087: case 6088: case 6092: case 6093: case 6094: case 6098: case 6099: case 6100: case 6104: case 6105: case 6106: case 6110: case 6111: case 6112: case 6116: case 6117: case 6118: case 6122: case 6123: case 6124: case 6128: case 6129: case 6130: case 6134: case 6135: case 6136: case 6140: case 6141: case 6142: case 6146: case 6147: case 6148: case 6152: case 6153: case 6154: case 6158: case 6159: case 6160: case 6164: case 6165: case 6166: case 6170: case 6171: case 6172: case 6176: case 6177: case 6178: case 6182: case 6183: case 6184: case 6188: case 6189: case 6190: case 6194: case 6195: case 6196: case 6200: case 6201: case 6202: case 6206: case 6207: case 6208: case 6212: case 6213: case 6214: case 6218: case 6219: case 6220: case 6224: case 6225: case 6226: case 6230: case 6231: case 6232: case 6236: case 6237: case 6238: case 6242: case 6243: case 6244: case 6248: case 6249: case 6250: case 6254: case 6255: case 6256: case 6260: case 6261: case 6262: case 6266: case 6267: case 6268: case 6272: case 6273: case 6274: case 6278: case 6279: case 6280: case 6284: case 6285: case 6286: case 6290: case 6291: case 6292: case 6296: case 6297: case 6298: case 6302: case 6303: case 6304: return BlockType::MossyCobblestoneWall;
+ case 10802: case 10804: case 10806: return BlockType::MossyStoneBrickSlab;
+ case 9830: case 9832: case 9834: case 9836: case 9838: case 9840: case 9842: case 9844: case 9846: case 9848: case 9850: case 9852: case 9854: case 9856: case 9858: case 9860: case 9862: case 9864: case 9866: case 9868: case 9870: case 9872: case 9874: case 9876: case 9878: case 9880: case 9882: case 9884: case 9886: case 9888: case 9890: case 9892: case 9894: case 9896: case 9898: case 9900: case 9902: case 9904: case 9906: case 9908: return BlockType::MossyStoneBrickStairs;
+ case 11842: case 11843: case 11844: case 11848: case 11849: case 11850: case 11854: case 11855: case 11856: case 11860: case 11861: case 11862: case 11866: case 11867: case 11868: case 11872: case 11873: case 11874: case 11878: case 11879: case 11880: case 11884: case 11885: case 11886: case 11890: case 11891: case 11892: case 11896: case 11897: case 11898: case 11902: case 11903: case 11904: case 11908: case 11909: case 11910: case 11914: case 11915: case 11916: case 11920: case 11921: case 11922: case 11926: case 11927: case 11928: case 11932: case 11933: case 11934: case 11938: case 11939: case 11940: case 11944: case 11945: case 11946: case 11950: case 11951: case 11952: case 11956: case 11957: case 11958: case 11962: case 11963: case 11964: case 11968: case 11969: case 11970: case 11974: case 11975: case 11976: case 11980: case 11981: case 11982: case 11986: case 11987: case 11988: case 11992: case 11993: case 11994: case 11998: case 11999: case 12000: case 12004: case 12005: case 12006: case 12010: case 12011: case 12012: case 12016: case 12017: case 12018: case 12022: case 12023: case 12024: case 12028: case 12029: case 12030: case 12034: case 12035: case 12036: case 12040: case 12041: case 12042: case 12046: case 12047: case 12048: case 12052: case 12053: case 12054: case 12058: case 12059: case 12060: case 12064: case 12065: case 12066: case 12070: case 12071: case 12072: case 12076: case 12077: case 12078: case 12082: case 12083: case 12084: case 12088: case 12089: case 12090: case 12094: case 12095: case 12096: case 12100: case 12101: case 12102: case 12106: case 12107: case 12108: case 12112: case 12113: case 12114: case 12118: case 12119: case 12120: case 12124: case 12125: case 12126: case 12130: case 12131: case 12132: case 12136: case 12137: case 12138: case 12142: case 12143: case 12144: case 12148: case 12149: case 12150: case 12154: case 12155: case 12156: case 12160: case 12161: case 12162: return BlockType::MossyStoneBrickWall;
+ case 4496: return BlockType::MossyStoneBricks;
+ case 1400: case 1401: case 1402: case 1403: case 1404: case 1405: case 1406: case 1407: case 1408: case 1409: case 1410: case 1411: return BlockType::MovingPiston;
+ case 4633: case 4634: case 4635: case 4636: case 4637: case 4638: case 4639: case 4640: case 4641: case 4642: case 4643: case 4644: case 4645: case 4646: case 4647: case 4648: case 4649: case 4650: case 4651: case 4652: case 4653: case 4654: case 4655: case 4656: case 4657: case 4658: case 4659: case 4660: case 4661: case 4662: case 4663: case 4664: case 4665: case 4666: case 4667: case 4668: case 4669: case 4670: case 4671: case 4672: case 4673: case 4674: case 4675: case 4676: case 4677: case 4678: case 4679: case 4680: case 4681: case 4682: case 4683: case 4684: case 4685: case 4686: case 4687: case 4688: case 4689: case 4690: case 4691: case 4692: case 4693: case 4694: case 4695: case 4696: return BlockType::MushroomStem;
+ case 5012: case 5013: return BlockType::Mycelium;
+ case 5018: case 5019: case 5022: case 5023: case 5026: case 5027: case 5030: case 5031: case 5034: case 5035: case 5038: case 5039: case 5042: case 5043: case 5046: case 5047: return BlockType::NetherBrickFence;
+ case 8385: case 8387: case 8389: return BlockType::NetherBrickSlab;
+ case 5049: case 5051: case 5053: case 5055: case 5057: case 5059: case 5061: case 5063: case 5065: case 5067: case 5069: case 5071: case 5073: case 5075: case 5077: case 5079: case 5081: case 5083: case 5085: case 5087: case 5089: case 5091: case 5093: case 5095: case 5097: case 5099: case 5101: case 5103: case 5105: case 5107: case 5109: case 5111: case 5113: case 5115: case 5117: case 5119: case 5121: case 5123: case 5125: case 5127: return BlockType::NetherBrickStairs;
+ case 12814: case 12815: case 12816: case 12820: case 12821: case 12822: case 12826: case 12827: case 12828: case 12832: case 12833: case 12834: case 12838: case 12839: case 12840: case 12844: case 12845: case 12846: case 12850: case 12851: case 12852: case 12856: case 12857: case 12858: case 12862: case 12863: case 12864: case 12868: case 12869: case 12870: case 12874: case 12875: case 12876: case 12880: case 12881: case 12882: case 12886: case 12887: case 12888: case 12892: case 12893: case 12894: case 12898: case 12899: case 12900: case 12904: case 12905: case 12906: case 12910: case 12911: case 12912: case 12916: case 12917: case 12918: case 12922: case 12923: case 12924: case 12928: case 12929: case 12930: case 12934: case 12935: case 12936: case 12940: case 12941: case 12942: case 12946: case 12947: case 12948: case 12952: case 12953: case 12954: case 12958: case 12959: case 12960: case 12964: case 12965: case 12966: case 12970: case 12971: case 12972: case 12976: case 12977: case 12978: case 12982: case 12983: case 12984: case 12988: case 12989: case 12990: case 12994: case 12995: case 12996: case 13000: case 13001: case 13002: case 13006: case 13007: case 13008: case 13012: case 13013: case 13014: case 13018: case 13019: case 13020: case 13024: case 13025: case 13026: case 13030: case 13031: case 13032: case 13036: case 13037: case 13038: case 13042: case 13043: case 13044: case 13048: case 13049: case 13050: case 13054: case 13055: case 13056: case 13060: case 13061: case 13062: case 13066: case 13067: case 13068: case 13072: case 13073: case 13074: case 13078: case 13079: case 13080: case 13084: case 13085: case 13086: case 13090: case 13091: case 13092: case 13096: case 13097: case 13098: case 13102: case 13103: case 13104: case 13108: case 13109: case 13110: case 13114: case 13115: case 13116: case 13120: case 13121: case 13122: case 13126: case 13127: case 13128: case 13132: case 13133: case 13134: return BlockType::NetherBrickWall;
+ case 5015: return BlockType::NetherBricks;
+ case 72: return BlockType::NetherGoldOre;
+ case 4014: case 4015: return BlockType::NetherPortal;
+ case 6727: return BlockType::NetherQuartzOre;
+ case 14974: return BlockType::NetherSprouts;
+ case 5128: case 5129: case 5130: case 5131: return BlockType::NetherWart;
+ case 9254: return BlockType::NetherWartBlock;
+ case 15826: return BlockType::NetheriteBlock;
+ case 3999: return BlockType::Netherrack;
+ case 249: case 250: case 251: case 252: case 253: case 254: case 255: case 256: case 257: case 258: case 259: case 260: case 261: case 262: case 263: case 264: case 265: case 266: case 267: case 268: case 269: case 270: case 271: case 272: case 273: case 274: case 275: case 276: case 277: case 278: case 279: case 280: case 281: case 282: case 283: case 284: case 285: case 286: case 287: case 288: case 289: case 290: case 291: case 292: case 293: case 294: case 295: case 296: case 297: case 298: case 299: case 300: case 301: case 302: case 303: case 304: case 305: case 306: case 307: case 308: case 309: case 310: case 311: case 312: case 313: case 314: case 315: case 316: case 317: case 318: case 319: case 320: case 321: case 322: case 323: case 324: case 325: case 326: case 327: case 328: case 329: case 330: case 331: case 332: case 333: case 334: case 335: case 336: case 337: case 338: case 339: case 340: case 341: case 342: case 343: case 344: case 345: case 346: case 347: case 348: case 349: case 350: case 351: case 352: case 353: case 354: case 355: case 356: case 357: case 358: case 359: case 360: case 361: case 362: case 363: case 364: case 365: case 366: case 367: case 368: case 369: case 370: case 371: case 372: case 373: case 374: case 375: case 376: case 377: case 378: case 379: case 380: case 381: case 382: case 383: case 384: case 385: case 386: case 387: case 388: case 389: case 390: case 391: case 392: case 393: case 394: case 395: case 396: case 397: case 398: case 399: case 400: case 401: case 402: case 403: case 404: case 405: case 406: case 407: case 408: case 409: case 410: case 411: case 412: case 413: case 414: case 415: case 416: case 417: case 418: case 419: case 420: case 421: case 422: case 423: case 424: case 425: case 426: case 427: case 428: case 429: case 430: case 431: case 432: case 433: case 434: case 435: case 436: case 437: case 438: case 439: case 440: case 441: case 442: case 443: case 444: case 445: case 446: case 447: case 448: case 449: case 450: case 451: case 452: case 453: case 454: case 455: case 456: case 457: case 458: case 459: case 460: case 461: case 462: case 463: case 464: case 465: case 466: case 467: case 468: case 469: case 470: case 471: case 472: case 473: case 474: case 475: case 476: case 477: case 478: case 479: case 480: case 481: case 482: case 483: case 484: case 485: case 486: case 487: case 488: case 489: case 490: case 491: case 492: case 493: case 494: case 495: case 496: case 497: case 498: case 499: case 500: case 501: case 502: case 503: case 504: case 505: case 506: case 507: case 508: case 509: case 510: case 511: case 512: case 513: case 514: case 515: case 516: case 517: case 518: case 519: case 520: case 521: case 522: case 523: case 524: case 525: case 526: case 527: case 528: case 529: case 530: case 531: case 532: case 533: case 534: case 535: case 536: case 537: case 538: case 539: case 540: case 541: case 542: case 543: case 544: case 545: case 546: case 547: case 548: case 549: case 550: case 551: case 552: case 553: case 554: case 555: case 556: case 557: case 558: case 559: case 560: case 561: case 562: case 563: case 564: case 565: case 566: case 567: case 568: case 569: case 570: case 571: case 572: case 573: case 574: case 575: case 576: case 577: case 578: case 579: case 580: case 581: case 582: case 583: case 584: case 585: case 586: case 587: case 588: case 589: case 590: case 591: case 592: case 593: case 594: case 595: case 596: case 597: case 598: case 599: case 600: case 601: case 602: case 603: case 604: case 605: case 606: case 607: case 608: case 609: case 610: case 611: case 612: case 613: case 614: case 615: case 616: case 617: case 618: case 619: case 620: case 621: case 622: case 623: case 624: case 625: case 626: case 627: case 628: case 629: case 630: case 631: case 632: case 633: case 634: case 635: case 636: case 637: case 638: case 639: case 640: case 641: case 642: case 643: case 644: case 645: case 646: case 647: case 648: case 649: case 650: case 651: case 652: case 653: case 654: case 655: case 656: case 657: case 658: case 659: case 660: case 661: case 662: case 663: case 664: case 665: case 666: case 667: case 668: case 669: case 670: case 671: case 672: case 673: case 674: case 675: case 676: case 677: case 678: case 679: case 680: case 681: case 682: case 683: case 684: case 685: case 686: case 687: case 688: case 689: case 690: case 691: case 692: case 693: case 694: case 695: case 696: case 697: case 698: case 699: case 700: case 701: case 702: case 703: case 704: case 705: case 706: case 707: case 708: case 709: case 710: case 711: case 712: case 713: case 714: case 715: case 716: case 717: case 718: case 719: case 720: case 721: case 722: case 723: case 724: case 725: case 726: case 727: case 728: case 729: case 730: case 731: case 732: case 733: case 734: case 735: case 736: case 737: case 738: case 739: case 740: case 741: case 742: case 743: case 744: case 745: case 746: case 747: case 748: case 749: case 750: case 751: case 752: case 753: case 754: case 755: case 756: case 757: case 758: case 759: case 760: case 761: case 762: case 763: case 764: case 765: case 766: case 767: case 768: case 769: case 770: case 771: case 772: case 773: case 774: case 775: case 776: case 777: case 778: case 779: case 780: case 781: case 782: case 783: case 784: case 785: case 786: case 787: case 788: case 789: case 790: case 791: case 792: case 793: case 794: case 795: case 796: case 797: case 798: case 799: case 800: case 801: case 802: case 803: case 804: case 805: case 806: case 807: case 808: case 809: case 810: case 811: case 812: case 813: case 814: case 815: case 816: case 817: case 818: case 819: case 820: case 821: case 822: case 823: case 824: case 825: case 826: case 827: case 828: case 829: case 830: case 831: case 832: case 833: case 834: case 835: case 836: case 837: case 838: case 839: case 840: case 841: case 842: case 843: case 844: case 845: case 846: case 847: case 848: case 849: case 850: case 851: case 852: case 853: case 854: case 855: case 856: case 857: case 858: case 859: case 860: case 861: case 862: case 863: case 864: case 865: case 866: case 867: case 868: case 869: case 870: case 871: case 872: case 873: case 874: case 875: case 876: case 877: case 878: case 879: case 880: case 881: case 882: case 883: case 884: case 885: case 886: case 887: case 888: case 889: case 890: case 891: case 892: case 893: case 894: case 895: case 896: case 897: case 898: case 899: case 900: case 901: case 902: case 903: case 904: case 905: case 906: case 907: case 908: case 909: case 910: case 911: case 912: case 913: case 914: case 915: case 916: case 917: case 918: case 919: case 920: case 921: case 922: case 923: case 924: case 925: case 926: case 927: case 928: case 929: case 930: case 931: case 932: case 933: case 934: case 935: case 936: case 937: case 938: case 939: case 940: case 941: case 942: case 943: case 944: case 945: case 946: case 947: case 948: case 949: case 950: case 951: case 952: case 953: case 954: case 955: case 956: case 957: case 958: case 959: case 960: case 961: case 962: case 963: case 964: case 965: case 966: case 967: case 968: case 969: case 970: case 971: case 972: case 973: case 974: case 975: case 976: case 977: case 978: case 979: case 980: case 981: case 982: case 983: case 984: case 985: case 986: case 987: case 988: case 989: case 990: case 991: case 992: case 993: case 994: case 995: case 996: case 997: case 998: case 999: case 1000: case 1001: case 1002: case 1003: case 1004: case 1005: case 1006: case 1007: case 1008: case 1009: case 1010: case 1011: case 1012: case 1013: case 1014: case 1015: case 1016: case 1017: case 1018: case 1019: case 1020: case 1021: case 1022: case 1023: case 1024: case 1025: case 1026: case 1027: case 1028: case 1029: case 1030: case 1031: case 1032: case 1033: case 1034: case 1035: case 1036: case 1037: case 1038: case 1039: case 1040: case 1041: case 1042: case 1043: case 1044: case 1045: case 1046: case 1047: case 1048: return BlockType::NoteBlock;
+ case 6346: case 6347: case 6348: case 6349: case 6350: case 6351: case 6352: case 6353: case 6354: case 6355: case 6356: case 6357: case 6358: case 6359: case 6360: case 6361: case 6362: case 6363: case 6364: case 6365: case 6366: case 6367: case 6368: case 6369: return BlockType::OakButton;
+ case 3573: case 3574: case 3575: case 3576: case 3577: case 3578: case 3579: case 3580: case 3581: case 3582: case 3583: case 3584: case 3585: case 3586: case 3587: case 3588: case 3589: case 3590: case 3591: case 3592: case 3593: case 3594: case 3595: case 3596: case 3597: case 3598: case 3599: case 3600: case 3601: case 3602: case 3603: case 3604: case 3605: case 3606: case 3607: case 3608: case 3609: case 3610: case 3611: case 3612: case 3613: case 3614: case 3615: case 3616: case 3617: case 3618: case 3619: case 3620: case 3621: case 3622: case 3623: case 3624: case 3625: case 3626: case 3627: case 3628: case 3629: case 3630: case 3631: case 3632: case 3633: case 3634: case 3635: case 3636: return BlockType::OakDoor;
+ case 3968: case 3969: case 3972: case 3973: case 3976: case 3977: case 3980: case 3981: case 3984: case 3985: case 3988: case 3989: case 3992: case 3993: case 3996: case 3997: return BlockType::OakFence;
+ case 4820: case 4821: case 4822: case 4823: case 4824: case 4825: case 4826: case 4827: case 4828: case 4829: case 4830: case 4831: case 4832: case 4833: case 4834: case 4835: case 4836: case 4837: case 4838: case 4839: case 4840: case 4841: case 4842: case 4843: case 4844: case 4845: case 4846: case 4847: case 4848: case 4849: case 4850: case 4851: return BlockType::OakFenceGate;
+ case 145: case 146: case 147: case 148: case 149: case 150: case 151: case 152: case 153: case 154: case 155: case 156: case 157: case 158: return BlockType::OakLeaves;
+ case 73: case 74: case 75: return BlockType::OakLog;
+ case 15: return BlockType::OakPlanks;
+ case 3873: case 3874: return BlockType::OakPressurePlate;
+ case 21: case 22: return BlockType::OakSapling;
+ case 3382: case 3384: case 3386: case 3388: case 3390: case 3392: case 3394: case 3396: case 3398: case 3400: case 3402: case 3404: case 3406: case 3408: case 3410: case 3412: return BlockType::OakSign;
+ case 8301: case 8303: case 8305: return BlockType::OakSlab;
+ case 1955: case 1957: case 1959: case 1961: case 1963: case 1965: case 1967: case 1969: case 1971: case 1973: case 1975: case 1977: case 1979: case 1981: case 1983: case 1985: case 1987: case 1989: case 1991: case 1993: case 1995: case 1997: case 1999: case 2001: case 2003: case 2005: case 2007: case 2009: case 2011: case 2013: case 2015: case 2017: case 2019: case 2021: case 2023: case 2025: case 2027: case 2029: case 2031: case 2033: return BlockType::OakStairs;
+ case 4112: case 4114: case 4116: case 4118: case 4120: case 4122: case 4124: case 4126: case 4128: case 4130: case 4132: case 4134: case 4136: case 4138: case 4140: case 4142: case 4144: case 4146: case 4148: case 4150: case 4152: case 4154: case 4156: case 4158: case 4160: case 4162: case 4164: case 4166: case 4168: case 4170: case 4172: case 4174: return BlockType::OakTrapdoor;
+ case 3736: case 3738: case 3740: case 3742: return BlockType::OakWallSign;
+ case 109: case 110: case 111: return BlockType::OakWood;
+ case 9260: case 9261: case 9262: case 9263: case 9264: case 9265: case 9266: case 9267: case 9268: case 9269: case 9270: case 9271: return BlockType::Observer;
+ case 1434: return BlockType::Obsidian;
+ case 7913: case 7914: case 7915: case 7916: case 7917: case 7918: case 7919: case 7920: case 7921: case 7922: case 7923: case 7924: case 7925: case 7926: case 7927: case 7928: return BlockType::OrangeBanner;
+ case 1065: case 1066: case 1067: case 1068: case 1069: case 1070: case 1071: case 1072: case 1073: case 1074: case 1075: case 1076: case 1077: case 1078: case 1079: case 1080: return BlockType::OrangeBed;
+ case 7867: return BlockType::OrangeCarpet;
+ case 9439: return BlockType::OrangeConcrete;
+ case 9455: return BlockType::OrangeConcretePowder;
+ case 9378: case 9379: case 9380: case 9381: return BlockType::OrangeGlazedTerracotta;
+ case 9284: case 9285: case 9286: case 9287: case 9288: case 9289: return BlockType::OrangeShulkerBox;
+ case 4096: return BlockType::OrangeStainedGlass;
+ case 6897: case 6898: case 6901: case 6902: case 6905: case 6906: case 6909: case 6910: case 6913: case 6914: case 6917: case 6918: case 6921: case 6922: case 6925: case 6926: return BlockType::OrangeStainedGlassPane;
+ case 6848: return BlockType::OrangeTerracotta;
+ case 1418: return BlockType::OrangeTulip;
+ case 8157: case 8158: case 8159: case 8160: return BlockType::OrangeWallBanner;
+ case 1385: return BlockType::OrangeWool;
+ case 1421: return BlockType::OxeyeDaisy;
+ case 7884: return BlockType::PackedIce;
+ case 7891: case 7892: return BlockType::Peony;
+ case 8361: case 8363: case 8365: return BlockType::PetrifiedOakSlab;
+ case 7993: case 7994: case 7995: case 7996: case 7997: case 7998: case 7999: case 8000: case 8001: case 8002: case 8003: case 8004: case 8005: case 8006: case 8007: case 8008: return BlockType::PinkBanner;
+ case 1145: case 1146: case 1147: case 1148: case 1149: case 1150: case 1151: case 1152: case 1153: case 1154: case 1155: case 1156: case 1157: case 1158: case 1159: case 1160: return BlockType::PinkBed;
+ case 7872: return BlockType::PinkCarpet;
+ case 9444: return BlockType::PinkConcrete;
+ case 9460: return BlockType::PinkConcretePowder;
+ case 9398: case 9399: case 9400: case 9401: return BlockType::PinkGlazedTerracotta;
+ case 9314: case 9315: case 9316: case 9317: case 9318: case 9319: return BlockType::PinkShulkerBox;
+ case 4101: return BlockType::PinkStainedGlass;
+ case 7057: case 7058: case 7061: case 7062: case 7065: case 7066: case 7069: case 7070: case 7073: case 7074: case 7077: case 7078: case 7081: case 7082: case 7085: case 7086: return BlockType::PinkStainedGlassPane;
+ case 6853: return BlockType::PinkTerracotta;
+ case 1420: return BlockType::PinkTulip;
+ case 8177: case 8178: case 8179: case 8180: return BlockType::PinkWallBanner;
+ case 1390: return BlockType::PinkWool;
+ case 1348: case 1349: case 1350: case 1351: case 1352: case 1353: case 1354: case 1355: case 1356: case 1357: case 1358: case 1359: return BlockType::Piston;
+ case 1360: case 1361: case 1362: case 1363: case 1364: case 1365: case 1366: case 1367: case 1368: case 1369: case 1370: case 1371: case 1372: case 1373: case 1374: case 1375: case 1376: case 1377: case 1378: case 1379: case 1380: case 1381: case 1382: case 1383: return BlockType::PistonHead;
+ case 6550: case 6551: case 6552: case 6553: case 6554: case 6555: case 6556: case 6557: case 6558: case 6559: case 6560: case 6561: case 6562: case 6563: case 6564: case 6565: return BlockType::PlayerHead;
+ case 6566: case 6567: case 6568: case 6569: return BlockType::PlayerWallHead;
+ case 12: case 13: return BlockType::Podzol;
+ case 7: return BlockType::PolishedAndesite;
+ case 10856: case 10858: case 10860: return BlockType::PolishedAndesiteSlab;
+ case 10630: case 10632: case 10634: case 10636: case 10638: case 10640: case 10642: case 10644: case 10646: case 10648: case 10650: case 10652: case 10654: case 10656: case 10658: case 10660: case 10662: case 10664: case 10666: case 10668: case 10670: case 10672: case 10674: case 10676: case 10678: case 10680: case 10682: case 10684: case 10686: case 10688: case 10690: case 10692: case 10694: case 10696: case 10698: case 10700: case 10702: case 10704: case 10706: case 10708: return BlockType::PolishedAndesiteStairs;
+ case 4005: case 4006: case 4007: return BlockType::PolishedBasalt;
+ case 16250: return BlockType::PolishedBlackstone;
+ case 16255: case 16257: case 16259: return BlockType::PolishedBlackstoneBrickSlab;
+ case 16261: case 16263: case 16265: case 16267: case 16269: case 16271: case 16273: case 16275: case 16277: case 16279: case 16281: case 16283: case 16285: case 16287: case 16289: case 16291: case 16293: case 16295: case 16297: case 16299: case 16301: case 16303: case 16305: case 16307: case 16309: case 16311: case 16313: case 16315: case 16317: case 16319: case 16321: case 16323: case 16325: case 16327: case 16329: case 16331: case 16333: case 16335: case 16337: case 16339: return BlockType::PolishedBlackstoneBrickStairs;
+ case 16343: case 16344: case 16345: case 16349: case 16350: case 16351: case 16355: case 16356: case 16357: case 16361: case 16362: case 16363: case 16367: case 16368: case 16369: case 16373: case 16374: case 16375: case 16379: case 16380: case 16381: case 16385: case 16386: case 16387: case 16391: case 16392: case 16393: case 16397: case 16398: case 16399: case 16403: case 16404: case 16405: case 16409: case 16410: case 16411: case 16415: case 16416: case 16417: case 16421: case 16422: case 16423: case 16427: case 16428: case 16429: case 16433: case 16434: case 16435: case 16439: case 16440: case 16441: case 16445: case 16446: case 16447: case 16451: case 16452: case 16453: case 16457: case 16458: case 16459: case 16463: case 16464: case 16465: case 16469: case 16470: case 16471: case 16475: case 16476: case 16477: case 16481: case 16482: case 16483: case 16487: case 16488: case 16489: case 16493: case 16494: case 16495: case 16499: case 16500: case 16501: case 16505: case 16506: case 16507: case 16511: case 16512: case 16513: case 16517: case 16518: case 16519: case 16523: case 16524: case 16525: case 16529: case 16530: case 16531: case 16535: case 16536: case 16537: case 16541: case 16542: case 16543: case 16547: case 16548: case 16549: case 16553: case 16554: case 16555: case 16559: case 16560: case 16561: case 16565: case 16566: case 16567: case 16571: case 16572: case 16573: case 16577: case 16578: case 16579: case 16583: case 16584: case 16585: case 16589: case 16590: case 16591: case 16595: case 16596: case 16597: case 16601: case 16602: case 16603: case 16607: case 16608: case 16609: case 16613: case 16614: case 16615: case 16619: case 16620: case 16621: case 16625: case 16626: case 16627: case 16631: case 16632: case 16633: case 16637: case 16638: case 16639: case 16643: case 16644: case 16645: case 16649: case 16650: case 16651: case 16655: case 16656: case 16657: case 16661: case 16662: case 16663: return BlockType::PolishedBlackstoneBrickWall;
+ case 16251: return BlockType::PolishedBlackstoneBricks;
+ case 16753: case 16754: case 16755: case 16756: case 16757: case 16758: case 16759: case 16760: case 16761: case 16762: case 16763: case 16764: case 16765: case 16766: case 16767: case 16768: case 16769: case 16770: case 16771: case 16772: case 16773: case 16774: case 16775: case 16776: return BlockType::PolishedBlackstoneButton;
+ case 16751: case 16752: return BlockType::PolishedBlackstonePressurePlate;
+ case 16746: case 16748: case 16750: return BlockType::PolishedBlackstoneSlab;
+ case 16666: case 16668: case 16670: case 16672: case 16674: case 16676: case 16678: case 16680: case 16682: case 16684: case 16686: case 16688: case 16690: case 16692: case 16694: case 16696: case 16698: case 16700: case 16702: case 16704: case 16706: case 16708: case 16710: case 16712: case 16714: case 16716: case 16718: case 16720: case 16722: case 16724: case 16726: case 16728: case 16730: case 16732: case 16734: case 16736: case 16738: case 16740: case 16742: case 16744: return BlockType::PolishedBlackstoneStairs;
+ case 16780: case 16781: case 16782: case 16786: case 16787: case 16788: case 16792: case 16793: case 16794: case 16798: case 16799: case 16800: case 16804: case 16805: case 16806: case 16810: case 16811: case 16812: case 16816: case 16817: case 16818: case 16822: case 16823: case 16824: case 16828: case 16829: case 16830: case 16834: case 16835: case 16836: case 16840: case 16841: case 16842: case 16846: case 16847: case 16848: case 16852: case 16853: case 16854: case 16858: case 16859: case 16860: case 16864: case 16865: case 16866: case 16870: case 16871: case 16872: case 16876: case 16877: case 16878: case 16882: case 16883: case 16884: case 16888: case 16889: case 16890: case 16894: case 16895: case 16896: case 16900: case 16901: case 16902: case 16906: case 16907: case 16908: case 16912: case 16913: case 16914: case 16918: case 16919: case 16920: case 16924: case 16925: case 16926: case 16930: case 16931: case 16932: case 16936: case 16937: case 16938: case 16942: case 16943: case 16944: case 16948: case 16949: case 16950: case 16954: case 16955: case 16956: case 16960: case 16961: case 16962: case 16966: case 16967: case 16968: case 16972: case 16973: case 16974: case 16978: case 16979: case 16980: case 16984: case 16985: case 16986: case 16990: case 16991: case 16992: case 16996: case 16997: case 16998: case 17002: case 17003: case 17004: case 17008: case 17009: case 17010: case 17014: case 17015: case 17016: case 17020: case 17021: case 17022: case 17026: case 17027: case 17028: case 17032: case 17033: case 17034: case 17038: case 17039: case 17040: case 17044: case 17045: case 17046: case 17050: case 17051: case 17052: case 17056: case 17057: case 17058: case 17062: case 17063: case 17064: case 17068: case 17069: case 17070: case 17074: case 17075: case 17076: case 17080: case 17081: case 17082: case 17086: case 17087: case 17088: case 17092: case 17093: case 17094: case 17098: case 17099: case 17100: return BlockType::PolishedBlackstoneWall;
+ case 5: return BlockType::PolishedDiorite;
+ case 10808: case 10810: case 10812: return BlockType::PolishedDioriteSlab;
+ case 9910: case 9912: case 9914: case 9916: case 9918: case 9920: case 9922: case 9924: case 9926: case 9928: case 9930: case 9932: case 9934: case 9936: case 9938: case 9940: case 9942: case 9944: case 9946: case 9948: case 9950: case 9952: case 9954: case 9956: case 9958: case 9960: case 9962: case 9964: case 9966: case 9968: case 9970: case 9972: case 9974: case 9976: case 9978: case 9980: case 9982: case 9984: case 9986: case 9988: return BlockType::PolishedDioriteStairs;
+ case 3: return BlockType::PolishedGranite;
+ case 10790: case 10792: case 10794: return BlockType::PolishedGraniteSlab;
+ case 9670: case 9672: case 9674: case 9676: case 9678: case 9680: case 9682: case 9684: case 9686: case 9688: case 9690: case 9692: case 9694: case 9696: case 9698: case 9700: case 9702: case 9704: case 9706: case 9708: case 9710: case 9712: case 9714: case 9716: case 9718: case 9720: case 9722: case 9724: case 9726: case 9728: case 9730: case 9732: case 9734: case 9736: case 9738: case 9740: case 9742: case 9744: case 9746: case 9748: return BlockType::PolishedGraniteStairs;
+ case 1413: return BlockType::Poppy;
+ case 6338: case 6339: case 6340: case 6341: case 6342: case 6343: case 6344: case 6345: return BlockType::Potatoes;
+ case 6310: return BlockType::PottedAcaciaSapling;
+ case 6316: return BlockType::PottedAllium;
+ case 6317: return BlockType::PottedAzureBluet;
+ case 9664: return BlockType::PottedBamboo;
+ case 6308: return BlockType::PottedBirchSapling;
+ case 6315: return BlockType::PottedBlueOrchid;
+ case 6327: return BlockType::PottedBrownMushroom;
+ case 6329: return BlockType::PottedCactus;
+ case 6323: return BlockType::PottedCornflower;
+ case 15834: return BlockType::PottedCrimsonFungus;
+ case 15836: return BlockType::PottedCrimsonRoots;
+ case 6313: return BlockType::PottedDandelion;
+ case 6311: return BlockType::PottedDarkOakSapling;
+ case 6328: return BlockType::PottedDeadBush;
+ case 6312: return BlockType::PottedFern;
+ case 6309: return BlockType::PottedJungleSapling;
+ case 6324: return BlockType::PottedLilyOfTheValley;
+ case 6306: return BlockType::PottedOakSapling;
+ case 6319: return BlockType::PottedOrangeTulip;
+ case 6322: return BlockType::PottedOxeyeDaisy;
+ case 6321: return BlockType::PottedPinkTulip;
+ case 6314: return BlockType::PottedPoppy;
+ case 6326: return BlockType::PottedRedMushroom;
+ case 6318: return BlockType::PottedRedTulip;
+ case 6307: return BlockType::PottedSpruceSapling;
+ case 15835: return BlockType::PottedWarpedFungus;
+ case 15837: return BlockType::PottedWarpedRoots;
+ case 6320: return BlockType::PottedWhiteTulip;
+ case 6325: return BlockType::PottedWitherRose;
+ case 1305: case 1306: case 1307: case 1308: case 1309: case 1310: case 1311: case 1312: case 1313: case 1314: case 1315: case 1316: return BlockType::PoweredRail;
+ case 7601: return BlockType::Prismarine;
+ case 7851: case 7853: case 7855: return BlockType::PrismarineBrickSlab;
+ case 7685: case 7687: case 7689: case 7691: case 7693: case 7695: case 7697: case 7699: case 7701: case 7703: case 7705: case 7707: case 7709: case 7711: case 7713: case 7715: case 7717: case 7719: case 7721: case 7723: case 7725: case 7727: case 7729: case 7731: case 7733: case 7735: case 7737: case 7739: case 7741: case 7743: case 7745: case 7747: case 7749: case 7751: case 7753: case 7755: case 7757: case 7759: case 7761: case 7763: return BlockType::PrismarineBrickStairs;
+ case 7602: return BlockType::PrismarineBricks;
+ case 7845: case 7847: case 7849: return BlockType::PrismarineSlab;
+ case 7605: case 7607: case 7609: case 7611: case 7613: case 7615: case 7617: case 7619: case 7621: case 7623: case 7625: case 7627: case 7629: case 7631: case 7633: case 7635: case 7637: case 7639: case 7641: case 7643: case 7645: case 7647: case 7649: case 7651: case 7653: case 7655: case 7657: case 7659: case 7661: case 7663: case 7665: case 7667: case 7669: case 7671: case 7673: case 7675: case 7677: case 7679: case 7681: case 7683: return BlockType::PrismarineStairs;
+ case 11194: case 11195: case 11196: case 11200: case 11201: case 11202: case 11206: case 11207: case 11208: case 11212: case 11213: case 11214: case 11218: case 11219: case 11220: case 11224: case 11225: case 11226: case 11230: case 11231: case 11232: case 11236: case 11237: case 11238: case 11242: case 11243: case 11244: case 11248: case 11249: case 11250: case 11254: case 11255: case 11256: case 11260: case 11261: case 11262: case 11266: case 11267: case 11268: case 11272: case 11273: case 11274: case 11278: case 11279: case 11280: case 11284: case 11285: case 11286: case 11290: case 11291: case 11292: case 11296: case 11297: case 11298: case 11302: case 11303: case 11304: case 11308: case 11309: case 11310: case 11314: case 11315: case 11316: case 11320: case 11321: case 11322: case 11326: case 11327: case 11328: case 11332: case 11333: case 11334: case 11338: case 11339: case 11340: case 11344: case 11345: case 11346: case 11350: case 11351: case 11352: case 11356: case 11357: case 11358: case 11362: case 11363: case 11364: case 11368: case 11369: case 11370: case 11374: case 11375: case 11376: case 11380: case 11381: case 11382: case 11386: case 11387: case 11388: case 11392: case 11393: case 11394: case 11398: case 11399: case 11400: case 11404: case 11405: case 11406: case 11410: case 11411: case 11412: case 11416: case 11417: case 11418: case 11422: case 11423: case 11424: case 11428: case 11429: case 11430: case 11434: case 11435: case 11436: case 11440: case 11441: case 11442: case 11446: case 11447: case 11448: case 11452: case 11453: case 11454: case 11458: case 11459: case 11460: case 11464: case 11465: case 11466: case 11470: case 11471: case 11472: case 11476: case 11477: case 11478: case 11482: case 11483: case 11484: case 11488: case 11489: case 11490: case 11494: case 11495: case 11496: case 11500: case 11501: case 11502: case 11506: case 11507: case 11508: case 11512: case 11513: case 11514: return BlockType::PrismarineWall;
+ case 3998: return BlockType::Pumpkin;
+ case 4772: case 4773: case 4774: case 4775: case 4776: case 4777: case 4778: case 4779: return BlockType::PumpkinStem;
+ case 8057: case 8058: case 8059: case 8060: case 8061: case 8062: case 8063: case 8064: case 8065: case 8066: case 8067: case 8068: case 8069: case 8070: case 8071: case 8072: return BlockType::PurpleBanner;
+ case 1209: case 1210: case 1211: case 1212: case 1213: case 1214: case 1215: case 1216: case 1217: case 1218: case 1219: case 1220: case 1221: case 1222: case 1223: case 1224: return BlockType::PurpleBed;
+ case 7876: return BlockType::PurpleCarpet;
+ case 9448: return BlockType::PurpleConcrete;
+ case 9464: return BlockType::PurpleConcretePowder;
+ case 9414: case 9415: case 9416: case 9417: return BlockType::PurpleGlazedTerracotta;
+ case 9338: case 9339: case 9340: case 9341: case 9342: case 9343: return BlockType::PurpleShulkerBox;
+ case 4105: return BlockType::PurpleStainedGlass;
+ case 7185: case 7186: case 7189: case 7190: case 7193: case 7194: case 7197: case 7198: case 7201: case 7202: case 7205: case 7206: case 7209: case 7210: case 7213: case 7214: return BlockType::PurpleStainedGlassPane;
+ case 6857: return BlockType::PurpleTerracotta;
+ case 8193: case 8194: case 8195: case 8196: return BlockType::PurpleWallBanner;
+ case 1394: return BlockType::PurpleWool;
+ case 9134: return BlockType::PurpurBlock;
+ case 9135: case 9136: case 9137: return BlockType::PurpurPillar;
+ case 8409: case 8411: case 8413: return BlockType::PurpurSlab;
+ case 9139: case 9141: case 9143: case 9145: case 9147: case 9149: case 9151: case 9153: case 9155: case 9157: case 9159: case 9161: case 9163: case 9165: case 9167: case 9169: case 9171: case 9173: case 9175: case 9177: case 9179: case 9181: case 9183: case 9185: case 9187: case 9189: case 9191: case 9193: case 9195: case 9197: case 9199: case 9201: case 9203: case 9205: case 9207: case 9209: case 9211: case 9213: case 9215: case 9217: return BlockType::PurpurStairs;
+ case 6738: return BlockType::QuartzBlock;
+ case 17103: return BlockType::QuartzBricks;
+ case 6740: case 6741: case 6742: return BlockType::QuartzPillar;
+ case 8391: case 8393: case 8395: return BlockType::QuartzSlab;
+ case 6744: case 6746: case 6748: case 6750: case 6752: case 6754: case 6756: case 6758: case 6760: case 6762: case 6764: case 6766: case 6768: case 6770: case 6772: case 6774: case 6776: case 6778: case 6780: case 6782: case 6784: case 6786: case 6788: case 6790: case 6792: case 6794: case 6796: case 6798: case 6800: case 6802: case 6804: case 6806: case 6808: case 6810: case 6812: case 6814: case 6816: case 6818: case 6820: case 6822: return BlockType::QuartzStairs;
+ case 3645: case 3646: case 3647: case 3648: case 3649: case 3650: case 3651: case 3652: case 3653: case 3654: return BlockType::Rail;
+ case 8121: case 8122: case 8123: case 8124: case 8125: case 8126: case 8127: case 8128: case 8129: case 8130: case 8131: case 8132: case 8133: case 8134: case 8135: case 8136: return BlockType::RedBanner;
+ case 1273: case 1274: case 1275: case 1276: case 1277: case 1278: case 1279: case 1280: case 1281: case 1282: case 1283: case 1284: case 1285: case 1286: case 1287: case 1288: return BlockType::RedBed;
+ case 7880: return BlockType::RedCarpet;
+ case 9452: return BlockType::RedConcrete;
+ case 9468: return BlockType::RedConcretePowder;
+ case 9430: case 9431: case 9432: case 9433: return BlockType::RedGlazedTerracotta;
+ case 1426: return BlockType::RedMushroom;
+ case 4569: case 4570: case 4571: case 4572: case 4573: case 4574: case 4575: case 4576: case 4577: case 4578: case 4579: case 4580: case 4581: case 4582: case 4583: case 4584: case 4585: case 4586: case 4587: case 4588: case 4589: case 4590: case 4591: case 4592: case 4593: case 4594: case 4595: case 4596: case 4597: case 4598: case 4599: case 4600: case 4601: case 4602: case 4603: case 4604: case 4605: case 4606: case 4607: case 4608: case 4609: case 4610: case 4611: case 4612: case 4613: case 4614: case 4615: case 4616: case 4617: case 4618: case 4619: case 4620: case 4621: case 4622: case 4623: case 4624: case 4625: case 4626: case 4627: case 4628: case 4629: case 4630: case 4631: case 4632: return BlockType::RedMushroomBlock;
+ case 10850: case 10852: case 10854: return BlockType::RedNetherBrickSlab;
+ case 10550: case 10552: case 10554: case 10556: case 10558: case 10560: case 10562: case 10564: case 10566: case 10568: case 10570: case 10572: case 10574: case 10576: case 10578: case 10580: case 10582: case 10584: case 10586: case 10588: case 10590: case 10592: case 10594: case 10596: case 10598: case 10600: case 10602: case 10604: case 10606: case 10608: case 10610: case 10612: case 10614: case 10616: case 10618: case 10620: case 10622: case 10624: case 10626: case 10628: return BlockType::RedNetherBrickStairs;
+ case 13462: case 13463: case 13464: case 13468: case 13469: case 13470: case 13474: case 13475: case 13476: case 13480: case 13481: case 13482: case 13486: case 13487: case 13488: case 13492: case 13493: case 13494: case 13498: case 13499: case 13500: case 13504: case 13505: case 13506: case 13510: case 13511: case 13512: case 13516: case 13517: case 13518: case 13522: case 13523: case 13524: case 13528: case 13529: case 13530: case 13534: case 13535: case 13536: case 13540: case 13541: case 13542: case 13546: case 13547: case 13548: case 13552: case 13553: case 13554: case 13558: case 13559: case 13560: case 13564: case 13565: case 13566: case 13570: case 13571: case 13572: case 13576: case 13577: case 13578: case 13582: case 13583: case 13584: case 13588: case 13589: case 13590: case 13594: case 13595: case 13596: case 13600: case 13601: case 13602: case 13606: case 13607: case 13608: case 13612: case 13613: case 13614: case 13618: case 13619: case 13620: case 13624: case 13625: case 13626: case 13630: case 13631: case 13632: case 13636: case 13637: case 13638: case 13642: case 13643: case 13644: case 13648: case 13649: case 13650: case 13654: case 13655: case 13656: case 13660: case 13661: case 13662: case 13666: case 13667: case 13668: case 13672: case 13673: case 13674: case 13678: case 13679: case 13680: case 13684: case 13685: case 13686: case 13690: case 13691: case 13692: case 13696: case 13697: case 13698: case 13702: case 13703: case 13704: case 13708: case 13709: case 13710: case 13714: case 13715: case 13716: case 13720: case 13721: case 13722: case 13726: case 13727: case 13728: case 13732: case 13733: case 13734: case 13738: case 13739: case 13740: case 13744: case 13745: case 13746: case 13750: case 13751: case 13752: case 13756: case 13757: case 13758: case 13762: case 13763: case 13764: case 13768: case 13769: case 13770: case 13774: case 13775: case 13776: case 13780: case 13781: case 13782: return BlockType::RedNetherBrickWall;
+ case 9255: return BlockType::RedNetherBricks;
+ case 67: return BlockType::RedSand;
+ case 8217: return BlockType::RedSandstone;
+ case 8397: case 8399: case 8401: return BlockType::RedSandstoneSlab;
+ case 8221: case 8223: case 8225: case 8227: case 8229: case 8231: case 8233: case 8235: case 8237: case 8239: case 8241: case 8243: case 8245: case 8247: case 8249: case 8251: case 8253: case 8255: case 8257: case 8259: case 8261: case 8263: case 8265: case 8267: case 8269: case 8271: case 8273: case 8275: case 8277: case 8279: case 8281: case 8283: case 8285: case 8287: case 8289: case 8291: case 8293: case 8295: case 8297: case 8299: return BlockType::RedSandstoneStairs;
+ case 11518: case 11519: case 11520: case 11524: case 11525: case 11526: case 11530: case 11531: case 11532: case 11536: case 11537: case 11538: case 11542: case 11543: case 11544: case 11548: case 11549: case 11550: case 11554: case 11555: case 11556: case 11560: case 11561: case 11562: case 11566: case 11567: case 11568: case 11572: case 11573: case 11574: case 11578: case 11579: case 11580: case 11584: case 11585: case 11586: case 11590: case 11591: case 11592: case 11596: case 11597: case 11598: case 11602: case 11603: case 11604: case 11608: case 11609: case 11610: case 11614: case 11615: case 11616: case 11620: case 11621: case 11622: case 11626: case 11627: case 11628: case 11632: case 11633: case 11634: case 11638: case 11639: case 11640: case 11644: case 11645: case 11646: case 11650: case 11651: case 11652: case 11656: case 11657: case 11658: case 11662: case 11663: case 11664: case 11668: case 11669: case 11670: case 11674: case 11675: case 11676: case 11680: case 11681: case 11682: case 11686: case 11687: case 11688: case 11692: case 11693: case 11694: case 11698: case 11699: case 11700: case 11704: case 11705: case 11706: case 11710: case 11711: case 11712: case 11716: case 11717: case 11718: case 11722: case 11723: case 11724: case 11728: case 11729: case 11730: case 11734: case 11735: case 11736: case 11740: case 11741: case 11742: case 11746: case 11747: case 11748: case 11752: case 11753: case 11754: case 11758: case 11759: case 11760: case 11764: case 11765: case 11766: case 11770: case 11771: case 11772: case 11776: case 11777: case 11778: case 11782: case 11783: case 11784: case 11788: case 11789: case 11790: case 11794: case 11795: case 11796: case 11800: case 11801: case 11802: case 11806: case 11807: case 11808: case 11812: case 11813: case 11814: case 11818: case 11819: case 11820: case 11824: case 11825: case 11826: case 11830: case 11831: case 11832: case 11836: case 11837: case 11838: return BlockType::RedSandstoneWall;
+ case 9362: case 9363: case 9364: case 9365: case 9366: case 9367: return BlockType::RedShulkerBox;
+ case 4109: return BlockType::RedStainedGlass;
+ case 7313: case 7314: case 7317: case 7318: case 7321: case 7322: case 7325: case 7326: case 7329: case 7330: case 7333: case 7334: case 7337: case 7338: case 7341: case 7342: return BlockType::RedStainedGlassPane;
+ case 6861: return BlockType::RedTerracotta;
+ case 1417: return BlockType::RedTulip;
+ case 8209: case 8210: case 8211: case 8212: return BlockType::RedWallBanner;
+ case 1398: return BlockType::RedWool;
+ case 6726: return BlockType::RedstoneBlock;
+ case 5156: case 5157: return BlockType::RedstoneLamp;
+ case 3885: case 3886: return BlockType::RedstoneOre;
+ case 3887: case 3888: return BlockType::RedstoneTorch;
+ case 3889: case 3890: case 3891: case 3892: case 3893: case 3894: case 3895: case 3896: return BlockType::RedstoneWallTorch;
+ case 2058: case 2059: case 2060: case 2061: case 2062: case 2063: case 2064: case 2065: case 2066: case 2067: case 2068: case 2069: case 2070: case 2071: case 2072: case 2073: case 2074: case 2075: case 2076: case 2077: case 2078: case 2079: case 2080: case 2081: case 2082: case 2083: case 2084: case 2085: case 2086: case 2087: case 2088: case 2089: case 2090: case 2091: case 2092: case 2093: case 2094: case 2095: case 2096: case 2097: case 2098: case 2099: case 2100: case 2101: case 2102: case 2103: case 2104: case 2105: case 2106: case 2107: case 2108: case 2109: case 2110: case 2111: case 2112: case 2113: case 2114: case 2115: case 2116: case 2117: case 2118: case 2119: case 2120: case 2121: case 2122: case 2123: case 2124: case 2125: case 2126: case 2127: case 2128: case 2129: case 2130: case 2131: case 2132: case 2133: case 2134: case 2135: case 2136: case 2137: case 2138: case 2139: case 2140: case 2141: case 2142: case 2143: case 2144: case 2145: case 2146: case 2147: case 2148: case 2149: case 2150: case 2151: case 2152: case 2153: case 2154: case 2155: case 2156: case 2157: case 2158: case 2159: case 2160: case 2161: case 2162: case 2163: case 2164: case 2165: case 2166: case 2167: case 2168: case 2169: case 2170: case 2171: case 2172: case 2173: case 2174: case 2175: case 2176: case 2177: case 2178: case 2179: case 2180: case 2181: case 2182: case 2183: case 2184: case 2185: case 2186: case 2187: case 2188: case 2189: case 2190: case 2191: case 2192: case 2193: case 2194: case 2195: case 2196: case 2197: case 2198: case 2199: case 2200: case 2201: case 2202: case 2203: case 2204: case 2205: case 2206: case 2207: case 2208: case 2209: case 2210: case 2211: case 2212: case 2213: case 2214: case 2215: case 2216: case 2217: case 2218: case 2219: case 2220: case 2221: case 2222: case 2223: case 2224: case 2225: case 2226: case 2227: case 2228: case 2229: case 2230: case 2231: case 2232: case 2233: case 2234: case 2235: case 2236: case 2237: case 2238: case 2239: case 2240: case 2241: case 2242: case 2243: case 2244: case 2245: case 2246: case 2247: case 2248: case 2249: case 2250: case 2251: case 2252: case 2253: case 2254: case 2255: case 2256: case 2257: case 2258: case 2259: case 2260: case 2261: case 2262: case 2263: case 2264: case 2265: case 2266: case 2267: case 2268: case 2269: case 2270: case 2271: case 2272: case 2273: case 2274: case 2275: case 2276: case 2277: case 2278: case 2279: case 2280: case 2281: case 2282: case 2283: case 2284: case 2285: case 2286: case 2287: case 2288: case 2289: case 2290: case 2291: case 2292: case 2293: case 2294: case 2295: case 2296: case 2297: case 2298: case 2299: case 2300: case 2301: case 2302: case 2303: case 2304: case 2305: case 2306: case 2307: case 2308: case 2309: case 2310: case 2311: case 2312: case 2313: case 2314: case 2315: case 2316: case 2317: case 2318: case 2319: case 2320: case 2321: case 2322: case 2323: case 2324: case 2325: case 2326: case 2327: case 2328: case 2329: case 2330: case 2331: case 2332: case 2333: case 2334: case 2335: case 2336: case 2337: case 2338: case 2339: case 2340: case 2341: case 2342: case 2343: case 2344: case 2345: case 2346: case 2347: case 2348: case 2349: case 2350: case 2351: case 2352: case 2353: case 2354: case 2355: case 2356: case 2357: case 2358: case 2359: case 2360: case 2361: case 2362: case 2363: case 2364: case 2365: case 2366: case 2367: case 2368: case 2369: case 2370: case 2371: case 2372: case 2373: case 2374: case 2375: case 2376: case 2377: case 2378: case 2379: case 2380: case 2381: case 2382: case 2383: case 2384: case 2385: case 2386: case 2387: case 2388: case 2389: case 2390: case 2391: case 2392: case 2393: case 2394: case 2395: case 2396: case 2397: case 2398: case 2399: case 2400: case 2401: case 2402: case 2403: case 2404: case 2405: case 2406: case 2407: case 2408: case 2409: case 2410: case 2411: case 2412: case 2413: case 2414: case 2415: case 2416: case 2417: case 2418: case 2419: case 2420: case 2421: case 2422: case 2423: case 2424: case 2425: case 2426: case 2427: case 2428: case 2429: case 2430: case 2431: case 2432: case 2433: case 2434: case 2435: case 2436: case 2437: case 2438: case 2439: case 2440: case 2441: case 2442: case 2443: case 2444: case 2445: case 2446: case 2447: case 2448: case 2449: case 2450: case 2451: case 2452: case 2453: case 2454: case 2455: case 2456: case 2457: case 2458: case 2459: case 2460: case 2461: case 2462: case 2463: case 2464: case 2465: case 2466: case 2467: case 2468: case 2469: case 2470: case 2471: case 2472: case 2473: case 2474: case 2475: case 2476: case 2477: case 2478: case 2479: case 2480: case 2481: case 2482: case 2483: case 2484: case 2485: case 2486: case 2487: case 2488: case 2489: case 2490: case 2491: case 2492: case 2493: case 2494: case 2495: case 2496: case 2497: case 2498: case 2499: case 2500: case 2501: case 2502: case 2503: case 2504: case 2505: case 2506: case 2507: case 2508: case 2509: case 2510: case 2511: case 2512: case 2513: case 2514: case 2515: case 2516: case 2517: case 2518: case 2519: case 2520: case 2521: case 2522: case 2523: case 2524: case 2525: case 2526: case 2527: case 2528: case 2529: case 2530: case 2531: case 2532: case 2533: case 2534: case 2535: case 2536: case 2537: case 2538: case 2539: case 2540: case 2541: case 2542: case 2543: case 2544: case 2545: case 2546: case 2547: case 2548: case 2549: case 2550: case 2551: case 2552: case 2553: case 2554: case 2555: case 2556: case 2557: case 2558: case 2559: case 2560: case 2561: case 2562: case 2563: case 2564: case 2565: case 2566: case 2567: case 2568: case 2569: case 2570: case 2571: case 2572: case 2573: case 2574: case 2575: case 2576: case 2577: case 2578: case 2579: case 2580: case 2581: case 2582: case 2583: case 2584: case 2585: case 2586: case 2587: case 2588: case 2589: case 2590: case 2591: case 2592: case 2593: case 2594: case 2595: case 2596: case 2597: case 2598: case 2599: case 2600: case 2601: case 2602: case 2603: case 2604: case 2605: case 2606: case 2607: case 2608: case 2609: case 2610: case 2611: case 2612: case 2613: case 2614: case 2615: case 2616: case 2617: case 2618: case 2619: case 2620: case 2621: case 2622: case 2623: case 2624: case 2625: case 2626: case 2627: case 2628: case 2629: case 2630: case 2631: case 2632: case 2633: case 2634: case 2635: case 2636: case 2637: case 2638: case 2639: case 2640: case 2641: case 2642: case 2643: case 2644: case 2645: case 2646: case 2647: case 2648: case 2649: case 2650: case 2651: case 2652: case 2653: case 2654: case 2655: case 2656: case 2657: case 2658: case 2659: case 2660: case 2661: case 2662: case 2663: case 2664: case 2665: case 2666: case 2667: case 2668: case 2669: case 2670: case 2671: case 2672: case 2673: case 2674: case 2675: case 2676: case 2677: case 2678: case 2679: case 2680: case 2681: case 2682: case 2683: case 2684: case 2685: case 2686: case 2687: case 2688: case 2689: case 2690: case 2691: case 2692: case 2693: case 2694: case 2695: case 2696: case 2697: case 2698: case 2699: case 2700: case 2701: case 2702: case 2703: case 2704: case 2705: case 2706: case 2707: case 2708: case 2709: case 2710: case 2711: case 2712: case 2713: case 2714: case 2715: case 2716: case 2717: case 2718: case 2719: case 2720: case 2721: case 2722: case 2723: case 2724: case 2725: case 2726: case 2727: case 2728: case 2729: case 2730: case 2731: case 2732: case 2733: case 2734: case 2735: case 2736: case 2737: case 2738: case 2739: case 2740: case 2741: case 2742: case 2743: case 2744: case 2745: case 2746: case 2747: case 2748: case 2749: case 2750: case 2751: case 2752: case 2753: case 2754: case 2755: case 2756: case 2757: case 2758: case 2759: case 2760: case 2761: case 2762: case 2763: case 2764: case 2765: case 2766: case 2767: case 2768: case 2769: case 2770: case 2771: case 2772: case 2773: case 2774: case 2775: case 2776: case 2777: case 2778: case 2779: case 2780: case 2781: case 2782: case 2783: case 2784: case 2785: case 2786: case 2787: case 2788: case 2789: case 2790: case 2791: case 2792: case 2793: case 2794: case 2795: case 2796: case 2797: case 2798: case 2799: case 2800: case 2801: case 2802: case 2803: case 2804: case 2805: case 2806: case 2807: case 2808: case 2809: case 2810: case 2811: case 2812: case 2813: case 2814: case 2815: case 2816: case 2817: case 2818: case 2819: case 2820: case 2821: case 2822: case 2823: case 2824: case 2825: case 2826: case 2827: case 2828: case 2829: case 2830: case 2831: case 2832: case 2833: case 2834: case 2835: case 2836: case 2837: case 2838: case 2839: case 2840: case 2841: case 2842: case 2843: case 2844: case 2845: case 2846: case 2847: case 2848: case 2849: case 2850: case 2851: case 2852: case 2853: case 2854: case 2855: case 2856: case 2857: case 2858: case 2859: case 2860: case 2861: case 2862: case 2863: case 2864: case 2865: case 2866: case 2867: case 2868: case 2869: case 2870: case 2871: case 2872: case 2873: case 2874: case 2875: case 2876: case 2877: case 2878: case 2879: case 2880: case 2881: case 2882: case 2883: case 2884: case 2885: case 2886: case 2887: case 2888: case 2889: case 2890: case 2891: case 2892: case 2893: case 2894: case 2895: case 2896: case 2897: case 2898: case 2899: case 2900: case 2901: case 2902: case 2903: case 2904: case 2905: case 2906: case 2907: case 2908: case 2909: case 2910: case 2911: case 2912: case 2913: case 2914: case 2915: case 2916: case 2917: case 2918: case 2919: case 2920: case 2921: case 2922: case 2923: case 2924: case 2925: case 2926: case 2927: case 2928: case 2929: case 2930: case 2931: case 2932: case 2933: case 2934: case 2935: case 2936: case 2937: case 2938: case 2939: case 2940: case 2941: case 2942: case 2943: case 2944: case 2945: case 2946: case 2947: case 2948: case 2949: case 2950: case 2951: case 2952: case 2953: case 2954: case 2955: case 2956: case 2957: case 2958: case 2959: case 2960: case 2961: case 2962: case 2963: case 2964: case 2965: case 2966: case 2967: case 2968: case 2969: case 2970: case 2971: case 2972: case 2973: case 2974: case 2975: case 2976: case 2977: case 2978: case 2979: case 2980: case 2981: case 2982: case 2983: case 2984: case 2985: case 2986: case 2987: case 2988: case 2989: case 2990: case 2991: case 2992: case 2993: case 2994: case 2995: case 2996: case 2997: case 2998: case 2999: case 3000: case 3001: case 3002: case 3003: case 3004: case 3005: case 3006: case 3007: case 3008: case 3009: case 3010: case 3011: case 3012: case 3013: case 3014: case 3015: case 3016: case 3017: case 3018: case 3019: case 3020: case 3021: case 3022: case 3023: case 3024: case 3025: case 3026: case 3027: case 3028: case 3029: case 3030: case 3031: case 3032: case 3033: case 3034: case 3035: case 3036: case 3037: case 3038: case 3039: case 3040: case 3041: case 3042: case 3043: case 3044: case 3045: case 3046: case 3047: case 3048: case 3049: case 3050: case 3051: case 3052: case 3053: case 3054: case 3055: case 3056: case 3057: case 3058: case 3059: case 3060: case 3061: case 3062: case 3063: case 3064: case 3065: case 3066: case 3067: case 3068: case 3069: case 3070: case 3071: case 3072: case 3073: case 3074: case 3075: case 3076: case 3077: case 3078: case 3079: case 3080: case 3081: case 3082: case 3083: case 3084: case 3085: case 3086: case 3087: case 3088: case 3089: case 3090: case 3091: case 3092: case 3093: case 3094: case 3095: case 3096: case 3097: case 3098: case 3099: case 3100: case 3101: case 3102: case 3103: case 3104: case 3105: case 3106: case 3107: case 3108: case 3109: case 3110: case 3111: case 3112: case 3113: case 3114: case 3115: case 3116: case 3117: case 3118: case 3119: case 3120: case 3121: case 3122: case 3123: case 3124: case 3125: case 3126: case 3127: case 3128: case 3129: case 3130: case 3131: case 3132: case 3133: case 3134: case 3135: case 3136: case 3137: case 3138: case 3139: case 3140: case 3141: case 3142: case 3143: case 3144: case 3145: case 3146: case 3147: case 3148: case 3149: case 3150: case 3151: case 3152: case 3153: case 3154: case 3155: case 3156: case 3157: case 3158: case 3159: case 3160: case 3161: case 3162: case 3163: case 3164: case 3165: case 3166: case 3167: case 3168: case 3169: case 3170: case 3171: case 3172: case 3173: case 3174: case 3175: case 3176: case 3177: case 3178: case 3179: case 3180: case 3181: case 3182: case 3183: case 3184: case 3185: case 3186: case 3187: case 3188: case 3189: case 3190: case 3191: case 3192: case 3193: case 3194: case 3195: case 3196: case 3197: case 3198: case 3199: case 3200: case 3201: case 3202: case 3203: case 3204: case 3205: case 3206: case 3207: case 3208: case 3209: case 3210: case 3211: case 3212: case 3213: case 3214: case 3215: case 3216: case 3217: case 3218: case 3219: case 3220: case 3221: case 3222: case 3223: case 3224: case 3225: case 3226: case 3227: case 3228: case 3229: case 3230: case 3231: case 3232: case 3233: case 3234: case 3235: case 3236: case 3237: case 3238: case 3239: case 3240: case 3241: case 3242: case 3243: case 3244: case 3245: case 3246: case 3247: case 3248: case 3249: case 3250: case 3251: case 3252: case 3253: case 3254: case 3255: case 3256: case 3257: case 3258: case 3259: case 3260: case 3261: case 3262: case 3263: case 3264: case 3265: case 3266: case 3267: case 3268: case 3269: case 3270: case 3271: case 3272: case 3273: case 3274: case 3275: case 3276: case 3277: case 3278: case 3279: case 3280: case 3281: case 3282: case 3283: case 3284: case 3285: case 3286: case 3287: case 3288: case 3289: case 3290: case 3291: case 3292: case 3293: case 3294: case 3295: case 3296: case 3297: case 3298: case 3299: case 3300: case 3301: case 3302: case 3303: case 3304: case 3305: case 3306: case 3307: case 3308: case 3309: case 3310: case 3311: case 3312: case 3313: case 3314: case 3315: case 3316: case 3317: case 3318: case 3319: case 3320: case 3321: case 3322: case 3323: case 3324: case 3325: case 3326: case 3327: case 3328: case 3329: case 3330: case 3331: case 3332: case 3333: case 3334: case 3335: case 3336: case 3337: case 3338: case 3339: case 3340: case 3341: case 3342: case 3343: case 3344: case 3345: case 3346: case 3347: case 3348: case 3349: case 3350: case 3351: case 3352: case 3353: return BlockType::RedstoneWire;
+ case 4031: case 4032: case 4033: case 4034: case 4035: case 4036: case 4037: case 4038: case 4039: case 4040: case 4041: case 4042: case 4043: case 4044: case 4045: case 4046: case 4047: case 4048: case 4049: case 4050: case 4051: case 4052: case 4053: case 4054: case 4055: case 4056: case 4057: case 4058: case 4059: case 4060: case 4061: case 4062: case 4063: case 4064: case 4065: case 4066: case 4067: case 4068: case 4069: case 4070: case 4071: case 4072: case 4073: case 4074: case 4075: case 4076: case 4077: case 4078: case 4079: case 4080: case 4081: case 4082: case 4083: case 4084: case 4085: case 4086: case 4087: case 4088: case 4089: case 4090: case 4091: case 4092: case 4093: case 4094: return BlockType::Repeater;
+ case 9225: case 9226: case 9227: case 9228: case 9229: case 9230: case 9231: case 9232: case 9233: case 9234: case 9235: case 9236: return BlockType::RepeatingCommandBlock;
+ case 15829: case 15830: case 15831: case 15832: case 15833: return BlockType::RespawnAnchor;
+ case 7889: case 7890: return BlockType::RoseBush;
+ case 66: return BlockType::Sand;
+ case 246: return BlockType::Sandstone;
+ case 8349: case 8351: case 8353: return BlockType::SandstoneSlab;
+ case 5171: case 5173: case 5175: case 5177: case 5179: case 5181: case 5183: case 5185: case 5187: case 5189: case 5191: case 5193: case 5195: case 5197: case 5199: case 5201: case 5203: case 5205: case 5207: case 5209: case 5211: case 5213: case 5215: case 5217: case 5219: case 5221: case 5223: case 5225: case 5227: case 5229: case 5231: case 5233: case 5235: case 5237: case 5239: case 5241: case 5243: case 5245: case 5247: case 5249: return BlockType::SandstoneStairs;
+ case 13786: case 13787: case 13788: case 13792: case 13793: case 13794: case 13798: case 13799: case 13800: case 13804: case 13805: case 13806: case 13810: case 13811: case 13812: case 13816: case 13817: case 13818: case 13822: case 13823: case 13824: case 13828: case 13829: case 13830: case 13834: case 13835: case 13836: case 13840: case 13841: case 13842: case 13846: case 13847: case 13848: case 13852: case 13853: case 13854: case 13858: case 13859: case 13860: case 13864: case 13865: case 13866: case 13870: case 13871: case 13872: case 13876: case 13877: case 13878: case 13882: case 13883: case 13884: case 13888: case 13889: case 13890: case 13894: case 13895: case 13896: case 13900: case 13901: case 13902: case 13906: case 13907: case 13908: case 13912: case 13913: case 13914: case 13918: case 13919: case 13920: case 13924: case 13925: case 13926: case 13930: case 13931: case 13932: case 13936: case 13937: case 13938: case 13942: case 13943: case 13944: case 13948: case 13949: case 13950: case 13954: case 13955: case 13956: case 13960: case 13961: case 13962: case 13966: case 13967: case 13968: case 13972: case 13973: case 13974: case 13978: case 13979: case 13980: case 13984: case 13985: case 13986: case 13990: case 13991: case 13992: case 13996: case 13997: case 13998: case 14002: case 14003: case 14004: case 14008: case 14009: case 14010: case 14014: case 14015: case 14016: case 14020: case 14021: case 14022: case 14026: case 14027: case 14028: case 14032: case 14033: case 14034: case 14038: case 14039: case 14040: case 14044: case 14045: case 14046: case 14050: case 14051: case 14052: case 14056: case 14057: case 14058: case 14062: case 14063: case 14064: case 14068: case 14069: case 14070: case 14074: case 14075: case 14076: case 14080: case 14081: case 14082: case 14086: case 14087: case 14088: case 14092: case 14093: case 14094: case 14098: case 14099: case 14100: case 14104: case 14105: case 14106: return BlockType::SandstoneWall;
+ case 14756: case 14758: case 14760: case 14762: case 14764: case 14766: case 14768: case 14770: case 14772: case 14774: case 14776: case 14778: case 14780: case 14782: case 14784: case 14786: return BlockType::Scaffolding;
+ case 7862: return BlockType::SeaLantern;
+ case 9641: case 9643: case 9645: case 9647: return BlockType::SeaPickle;
+ case 1345: return BlockType::Seagrass;
+ case 14989: return BlockType::Shroomlight;
+ case 9272: case 9273: case 9274: case 9275: case 9276: case 9277: return BlockType::ShulkerBox;
+ case 6490: case 6491: case 6492: case 6493: case 6494: case 6495: case 6496: case 6497: case 6498: case 6499: case 6500: case 6501: case 6502: case 6503: case 6504: case 6505: return BlockType::SkeletonSkull;
+ case 6506: case 6507: case 6508: case 6509: return BlockType::SkeletonWallSkull;
+ case 7535: return BlockType::SlimeBlock;
+ case 14849: return BlockType::SmithingTable;
+ case 14803: case 14804: case 14805: case 14806: case 14807: case 14808: case 14809: case 14810: return BlockType::Smoker;
+ case 8416: return BlockType::SmoothQuartz;
+ case 10832: case 10834: case 10836: return BlockType::SmoothQuartzSlab;
+ case 10310: case 10312: case 10314: case 10316: case 10318: case 10320: case 10322: case 10324: case 10326: case 10328: case 10330: case 10332: case 10334: case 10336: case 10338: case 10340: case 10342: case 10344: case 10346: case 10348: case 10350: case 10352: case 10354: case 10356: case 10358: case 10360: case 10362: case 10364: case 10366: case 10368: case 10370: case 10372: case 10374: case 10376: case 10378: case 10380: case 10382: case 10384: case 10386: case 10388: return BlockType::SmoothQuartzStairs;
+ case 8417: return BlockType::SmoothRedSandstone;
+ case 10796: case 10798: case 10800: return BlockType::SmoothRedSandstoneSlab;
+ case 9750: case 9752: case 9754: case 9756: case 9758: case 9760: case 9762: case 9764: case 9766: case 9768: case 9770: case 9772: case 9774: case 9776: case 9778: case 9780: case 9782: case 9784: case 9786: case 9788: case 9790: case 9792: case 9794: case 9796: case 9798: case 9800: case 9802: case 9804: case 9806: case 9808: case 9810: case 9812: case 9814: case 9816: case 9818: case 9820: case 9822: case 9824: case 9826: case 9828: return BlockType::SmoothRedSandstoneStairs;
+ case 8415: return BlockType::SmoothSandstone;
+ case 10826: case 10828: case 10830: return BlockType::SmoothSandstoneSlab;
+ case 10230: case 10232: case 10234: case 10236: case 10238: case 10240: case 10242: case 10244: case 10246: case 10248: case 10250: case 10252: case 10254: case 10256: case 10258: case 10260: case 10262: case 10264: case 10266: case 10268: case 10270: case 10272: case 10274: case 10276: case 10278: case 10280: case 10282: case 10284: case 10286: case 10288: case 10290: case 10292: case 10294: case 10296: case 10298: case 10300: case 10302: case 10304: case 10306: case 10308: return BlockType::SmoothSandstoneStairs;
+ case 8414: return BlockType::SmoothStone;
+ case 8343: case 8345: case 8347: return BlockType::SmoothStoneSlab;
+ case 3921: case 3922: case 3923: case 3924: case 3925: case 3926: case 3927: case 3928: return BlockType::Snow;
+ case 3930: return BlockType::SnowBlock;
+ case 14923: case 14925: case 14927: case 14929: case 14931: case 14933: case 14935: case 14937: case 14939: case 14941: case 14943: case 14945: case 14947: case 14949: case 14951: case 14953: return BlockType::SoulCampfire;
+ case 1952: return BlockType::SoulFire;
+ case 14888: case 14889: return BlockType::SoulLantern;
+ case 4000: return BlockType::SoulSand;
+ case 4001: return BlockType::SoulSoil;
+ case 4008: return BlockType::SoulTorch;
+ case 4009: case 4010: case 4011: case 4012: return BlockType::SoulWallTorch;
+ case 1953: return BlockType::Spawner;
+ case 229: return BlockType::Sponge;
+ case 6370: case 6371: case 6372: case 6373: case 6374: case 6375: case 6376: case 6377: case 6378: case 6379: case 6380: case 6381: case 6382: case 6383: case 6384: case 6385: case 6386: case 6387: case 6388: case 6389: case 6390: case 6391: case 6392: case 6393: return BlockType::SpruceButton;
+ case 8738: case 8739: case 8740: case 8741: case 8742: case 8743: case 8744: case 8745: case 8746: case 8747: case 8748: case 8749: case 8750: case 8751: case 8752: case 8753: case 8754: case 8755: case 8756: case 8757: case 8758: case 8759: case 8760: case 8761: case 8762: case 8763: case 8764: case 8765: case 8766: case 8767: case 8768: case 8769: case 8770: case 8771: case 8772: case 8773: case 8774: case 8775: case 8776: case 8777: case 8778: case 8779: case 8780: case 8781: case 8782: case 8783: case 8784: case 8785: case 8786: case 8787: case 8788: case 8789: case 8790: case 8791: case 8792: case 8793: case 8794: case 8795: case 8796: case 8797: case 8798: case 8799: case 8800: case 8801: return BlockType::SpruceDoor;
+ case 8580: case 8581: case 8584: case 8585: case 8588: case 8589: case 8592: case 8593: case 8596: case 8597: case 8600: case 8601: case 8604: case 8605: case 8608: case 8609: return BlockType::SpruceFence;
+ case 8418: case 8419: case 8420: case 8421: case 8422: case 8423: case 8424: case 8425: case 8426: case 8427: case 8428: case 8429: case 8430: case 8431: case 8432: case 8433: case 8434: case 8435: case 8436: case 8437: case 8438: case 8439: case 8440: case 8441: case 8442: case 8443: case 8444: case 8445: case 8446: case 8447: case 8448: case 8449: return BlockType::SpruceFenceGate;
+ case 159: case 160: case 161: case 162: case 163: case 164: case 165: case 166: case 167: case 168: case 169: case 170: case 171: case 172: return BlockType::SpruceLeaves;
+ case 76: case 77: case 78: return BlockType::SpruceLog;
+ case 16: return BlockType::SprucePlanks;
+ case 3875: case 3876: return BlockType::SprucePressurePlate;
+ case 23: case 24: return BlockType::SpruceSapling;
+ case 3414: case 3416: case 3418: case 3420: case 3422: case 3424: case 3426: case 3428: case 3430: case 3432: case 3434: case 3436: case 3438: case 3440: case 3442: case 3444: return BlockType::SpruceSign;
+ case 8307: case 8309: case 8311: return BlockType::SpruceSlab;
+ case 5405: case 5407: case 5409: case 5411: case 5413: case 5415: case 5417: case 5419: case 5421: case 5423: case 5425: case 5427: case 5429: case 5431: case 5433: case 5435: case 5437: case 5439: case 5441: case 5443: case 5445: case 5447: case 5449: case 5451: case 5453: case 5455: case 5457: case 5459: case 5461: case 5463: case 5465: case 5467: case 5469: case 5471: case 5473: case 5475: case 5477: case 5479: case 5481: case 5483: return BlockType::SpruceStairs;
+ case 4176: case 4178: case 4180: case 4182: case 4184: case 4186: case 4188: case 4190: case 4192: case 4194: case 4196: case 4198: case 4200: case 4202: case 4204: case 4206: case 4208: case 4210: case 4212: case 4214: case 4216: case 4218: case 4220: case 4222: case 4224: case 4226: case 4228: case 4230: case 4232: case 4234: case 4236: case 4238: return BlockType::SpruceTrapdoor;
+ case 3744: case 3746: case 3748: case 3750: return BlockType::SpruceWallSign;
+ case 112: case 113: case 114: return BlockType::SpruceWood;
+ case 1329: case 1330: case 1331: case 1332: case 1333: case 1334: case 1335: case 1336: case 1337: case 1338: case 1339: case 1340: return BlockType::StickyPiston;
+ case 1: return BlockType::Stone;
+ case 8379: case 8381: case 8383: return BlockType::StoneBrickSlab;
+ case 4933: case 4935: case 4937: case 4939: case 4941: case 4943: case 4945: case 4947: case 4949: case 4951: case 4953: case 4955: case 4957: case 4959: case 4961: case 4963: case 4965: case 4967: case 4969: case 4971: case 4973: case 4975: case 4977: case 4979: case 4981: case 4983: case 4985: case 4987: case 4989: case 4991: case 4993: case 4995: case 4997: case 4999: case 5001: case 5003: case 5005: case 5007: case 5009: case 5011: return BlockType::StoneBrickStairs;
+ case 12490: case 12491: case 12492: case 12496: case 12497: case 12498: case 12502: case 12503: case 12504: case 12508: case 12509: case 12510: case 12514: case 12515: case 12516: case 12520: case 12521: case 12522: case 12526: case 12527: case 12528: case 12532: case 12533: case 12534: case 12538: case 12539: case 12540: case 12544: case 12545: case 12546: case 12550: case 12551: case 12552: case 12556: case 12557: case 12558: case 12562: case 12563: case 12564: case 12568: case 12569: case 12570: case 12574: case 12575: case 12576: case 12580: case 12581: case 12582: case 12586: case 12587: case 12588: case 12592: case 12593: case 12594: case 12598: case 12599: case 12600: case 12604: case 12605: case 12606: case 12610: case 12611: case 12612: case 12616: case 12617: case 12618: case 12622: case 12623: case 12624: case 12628: case 12629: case 12630: case 12634: case 12635: case 12636: case 12640: case 12641: case 12642: case 12646: case 12647: case 12648: case 12652: case 12653: case 12654: case 12658: case 12659: case 12660: case 12664: case 12665: case 12666: case 12670: case 12671: case 12672: case 12676: case 12677: case 12678: case 12682: case 12683: case 12684: case 12688: case 12689: case 12690: case 12694: case 12695: case 12696: case 12700: case 12701: case 12702: case 12706: case 12707: case 12708: case 12712: case 12713: case 12714: case 12718: case 12719: case 12720: case 12724: case 12725: case 12726: case 12730: case 12731: case 12732: case 12736: case 12737: case 12738: case 12742: case 12743: case 12744: case 12748: case 12749: case 12750: case 12754: case 12755: case 12756: case 12760: case 12761: case 12762: case 12766: case 12767: case 12768: case 12772: case 12773: case 12774: case 12778: case 12779: case 12780: case 12784: case 12785: case 12786: case 12790: case 12791: case 12792: case 12796: case 12797: case 12798: case 12802: case 12803: case 12804: case 12808: case 12809: case 12810: return BlockType::StoneBrickWall;
+ case 4495: return BlockType::StoneBricks;
+ case 3897: case 3898: case 3899: case 3900: case 3901: case 3902: case 3903: case 3904: case 3905: case 3906: case 3907: case 3908: case 3909: case 3910: case 3911: case 3912: case 3913: case 3914: case 3915: case 3916: case 3917: case 3918: case 3919: case 3920: return BlockType::StoneButton;
+ case 3807: case 3808: return BlockType::StonePressurePlate;
+ case 8337: case 8339: case 8341: return BlockType::StoneSlab;
+ case 10150: case 10152: case 10154: case 10156: case 10158: case 10160: case 10162: case 10164: case 10166: case 10168: case 10170: case 10172: case 10174: case 10176: case 10178: case 10180: case 10182: case 10184: case 10186: case 10188: case 10190: case 10192: case 10194: case 10196: case 10198: case 10200: case 10202: case 10204: case 10206: case 10208: case 10210: case 10212: case 10214: case 10216: case 10218: case 10220: case 10222: case 10224: case 10226: case 10228: return BlockType::StoneStairs;
+ case 14850: case 14851: case 14852: case 14853: return BlockType::Stonecutter;
+ case 100: case 101: case 102: return BlockType::StrippedAcaciaLog;
+ case 139: case 140: case 141: return BlockType::StrippedAcaciaWood;
+ case 94: case 95: case 96: return BlockType::StrippedBirchLog;
+ case 133: case 134: case 135: return BlockType::StrippedBirchWood;
+ case 14984: case 14985: case 14986: return BlockType::StrippedCrimsonHyphae;
+ case 14978: case 14979: case 14980: return BlockType::StrippedCrimsonStem;
+ case 103: case 104: case 105: return BlockType::StrippedDarkOakLog;
+ case 142: case 143: case 144: return BlockType::StrippedDarkOakWood;
+ case 97: case 98: case 99: return BlockType::StrippedJungleLog;
+ case 136: case 137: case 138: return BlockType::StrippedJungleWood;
+ case 106: case 107: case 108: return BlockType::StrippedOakLog;
+ case 127: case 128: case 129: return BlockType::StrippedOakWood;
+ case 91: case 92: case 93: return BlockType::StrippedSpruceLog;
+ case 130: case 131: case 132: return BlockType::StrippedSpruceWood;
+ case 14967: case 14968: case 14969: return BlockType::StrippedWarpedHyphae;
+ case 14961: case 14962: case 14963: return BlockType::StrippedWarpedStem;
+ case 15735: case 15736: case 15737: case 15738: return BlockType::StructureBlock;
+ case 9259: return BlockType::StructureVoid;
+ case 3948: case 3949: case 3950: case 3951: case 3952: case 3953: case 3954: case 3955: case 3956: case 3957: case 3958: case 3959: case 3960: case 3961: case 3962: case 3963: return BlockType::SugarCane;
+ case 7885: case 7886: return BlockType::Sunflower;
+ case 14954: case 14955: case 14956: case 14957: return BlockType::SweetBerryBush;
+ case 1430: case 1431: return BlockType::TNT;
+ case 7893: case 7894: return BlockType::TallGrass;
+ case 1346: case 1347: return BlockType::TallSeagrass;
+ case 15760: case 15761: case 15762: case 15763: case 15764: case 15765: case 15766: case 15767: case 15768: case 15769: case 15770: case 15771: case 15772: case 15773: case 15774: case 15775: return BlockType::Target;
+ case 7882: return BlockType::Terracotta;
+ case 1435: return BlockType::Torch;
+ case 6623: case 6625: case 6627: case 6629: case 6631: case 6633: case 6635: case 6637: case 6639: case 6641: case 6643: case 6645: return BlockType::TrappedChest;
+ case 5275: case 5276: case 5277: case 5278: case 5279: case 5280: case 5281: case 5282: case 5283: case 5284: case 5285: case 5286: case 5287: case 5288: case 5289: case 5290: case 5291: case 5292: case 5293: case 5294: case 5295: case 5296: case 5297: case 5298: case 5299: case 5300: case 5301: case 5302: case 5303: case 5304: case 5305: case 5306: case 5307: case 5308: case 5309: case 5310: case 5311: case 5312: case 5313: case 5314: case 5315: case 5316: case 5317: case 5318: case 5319: case 5320: case 5321: case 5322: case 5323: case 5324: case 5325: case 5326: case 5327: case 5328: case 5329: case 5330: case 5331: case 5332: case 5333: case 5334: case 5335: case 5336: case 5337: case 5338: case 5339: case 5340: case 5341: case 5342: case 5343: case 5344: case 5345: case 5346: case 5347: case 5348: case 5349: case 5350: case 5351: case 5352: case 5353: case 5354: case 5355: case 5356: case 5357: case 5358: case 5359: case 5360: case 5361: case 5362: case 5363: case 5364: case 5365: case 5366: case 5367: case 5368: case 5369: case 5370: case 5371: case 5372: case 5373: case 5374: case 5375: case 5376: case 5377: case 5378: case 5379: case 5380: case 5381: case 5382: case 5383: case 5384: case 5385: case 5386: case 5387: case 5388: case 5389: case 5390: case 5391: case 5392: case 5393: case 5394: case 5395: case 5396: case 5397: case 5398: case 5399: case 5400: case 5401: case 5402: return BlockType::Tripwire;
+ case 5259: case 5260: case 5261: case 5262: case 5263: case 5264: case 5265: case 5266: case 5267: case 5268: case 5269: case 5270: case 5271: case 5272: case 5273: case 5274: return BlockType::TripwireHook;
+ case 9531: return BlockType::TubeCoral;
+ case 9515: return BlockType::TubeCoralBlock;
+ case 9551: return BlockType::TubeCoralFan;
+ case 9601: case 9603: case 9605: case 9607: return BlockType::TubeCoralWallFan;
+ case 9498: case 9499: case 9500: case 9501: case 9502: case 9503: case 9504: case 9505: case 9506: case 9507: case 9508: case 9509: return BlockType::TurtleEgg;
+ case 15017: case 15018: case 15019: case 15020: case 15021: case 15022: case 15023: case 15024: case 15025: case 15026: case 15027: case 15028: case 15029: case 15030: case 15031: case 15032: case 15033: case 15034: case 15035: case 15036: case 15037: case 15038: case 15039: case 15040: case 15041: case 15042: return BlockType::TwistingVines;
+ case 15043: return BlockType::TwistingVinesPlant;
+ case 4788: case 4789: case 4790: case 4791: case 4792: case 4793: case 4794: case 4795: case 4796: case 4797: case 4798: case 4799: case 4800: case 4801: case 4802: case 4803: case 4804: case 4805: case 4806: case 4807: case 4808: case 4809: case 4810: case 4811: case 4812: case 4813: case 4814: case 4815: case 4816: case 4817: case 4818: case 4819: return BlockType::Vine;
+ case 9665: return BlockType::VoidAir;
+ case 1436: case 1437: case 1438: case 1439: return BlockType::WallTorch;
+ case 15503: case 15504: case 15505: case 15506: case 15507: case 15508: case 15509: case 15510: case 15511: case 15512: case 15513: case 15514: case 15515: case 15516: case 15517: case 15518: case 15519: case 15520: case 15521: case 15522: case 15523: case 15524: case 15525: case 15526: return BlockType::WarpedButton;
+ case 15591: case 15592: case 15593: case 15594: case 15595: case 15596: case 15597: case 15598: case 15599: case 15600: case 15601: case 15602: case 15603: case 15604: case 15605: case 15606: case 15607: case 15608: case 15609: case 15610: case 15611: case 15612: case 15613: case 15614: case 15615: case 15616: case 15617: case 15618: case 15619: case 15620: case 15621: case 15622: case 15623: case 15624: case 15625: case 15626: case 15627: case 15628: case 15629: case 15630: case 15631: case 15632: case 15633: case 15634: case 15635: case 15636: case 15637: case 15638: case 15639: case 15640: case 15641: case 15642: case 15643: case 15644: case 15645: case 15646: case 15647: case 15648: case 15649: case 15650: case 15651: case 15652: case 15653: case 15654: return BlockType::WarpedDoor;
+ case 15097: case 15098: case 15101: case 15102: case 15105: case 15106: case 15109: case 15110: case 15113: case 15114: case 15117: case 15118: case 15121: case 15122: case 15125: case 15126: return BlockType::WarpedFence;
+ case 15287: case 15288: case 15289: case 15290: case 15291: case 15292: case 15293: case 15294: case 15295: case 15296: case 15297: case 15298: case 15299: case 15300: case 15301: case 15302: case 15303: case 15304: case 15305: case 15306: case 15307: case 15308: case 15309: case 15310: case 15311: case 15312: case 15313: case 15314: case 15315: case 15316: case 15317: case 15318: return BlockType::WarpedFenceGate;
+ case 14971: return BlockType::WarpedFungus;
+ case 14964: case 14965: case 14966: return BlockType::WarpedHyphae;
+ case 14970: return BlockType::WarpedNylium;
+ case 15046: return BlockType::WarpedPlanks;
+ case 15061: case 15062: return BlockType::WarpedPressurePlate;
+ case 14973: return BlockType::WarpedRoots;
+ case 15688: case 15690: case 15692: case 15694: case 15696: case 15698: case 15700: case 15702: case 15704: case 15706: case 15708: case 15710: case 15712: case 15714: case 15716: case 15718: return BlockType::WarpedSign;
+ case 15054: case 15056: case 15058: return BlockType::WarpedSlab;
+ case 15400: case 15402: case 15404: case 15406: case 15408: case 15410: case 15412: case 15414: case 15416: case 15418: case 15420: case 15422: case 15424: case 15426: case 15428: case 15430: case 15432: case 15434: case 15436: case 15438: case 15440: case 15442: case 15444: case 15446: case 15448: case 15450: case 15452: case 15454: case 15456: case 15458: case 15460: case 15462: case 15464: case 15466: case 15468: case 15470: case 15472: case 15474: case 15476: case 15478: return BlockType::WarpedStairs;
+ case 14958: case 14959: case 14960: return BlockType::WarpedStem;
+ case 15192: case 15194: case 15196: case 15198: case 15200: case 15202: case 15204: case 15206: case 15208: case 15210: case 15212: case 15214: case 15216: case 15218: case 15220: case 15222: case 15224: case 15226: case 15228: case 15230: case 15232: case 15234: case 15236: case 15238: case 15240: case 15242: case 15244: case 15246: case 15248: case 15250: case 15252: case 15254: return BlockType::WarpedTrapdoor;
+ case 15728: case 15730: case 15732: case 15734: return BlockType::WarpedWallSign;
+ case 14972: return BlockType::WarpedWartBlock;
+ case 34: case 35: case 36: case 37: case 38: case 39: case 40: case 41: case 42: case 43: case 44: case 45: case 46: case 47: case 48: case 49: return BlockType::Water;
+ case 14990: case 14991: case 14992: case 14993: case 14994: case 14995: case 14996: case 14997: case 14998: case 14999: case 15000: case 15001: case 15002: case 15003: case 15004: case 15005: case 15006: case 15007: case 15008: case 15009: case 15010: case 15011: case 15012: case 15013: case 15014: case 15015: return BlockType::WeepingVines;
+ case 15016: return BlockType::WeepingVinesPlant;
+ case 230: return BlockType::WetSponge;
+ case 3357: case 3358: case 3359: case 3360: case 3361: case 3362: case 3363: case 3364: return BlockType::Wheat;
+ case 7897: case 7898: case 7899: case 7900: case 7901: case 7902: case 7903: case 7904: case 7905: case 7906: case 7907: case 7908: case 7909: case 7910: case 7911: case 7912: return BlockType::WhiteBanner;
+ case 1049: case 1050: case 1051: case 1052: case 1053: case 1054: case 1055: case 1056: case 1057: case 1058: case 1059: case 1060: case 1061: case 1062: case 1063: case 1064: return BlockType::WhiteBed;
+ case 7866: return BlockType::WhiteCarpet;
+ case 9438: return BlockType::WhiteConcrete;
+ case 9454: return BlockType::WhiteConcretePowder;
+ case 9374: case 9375: case 9376: case 9377: return BlockType::WhiteGlazedTerracotta;
+ case 9278: case 9279: case 9280: case 9281: case 9282: case 9283: return BlockType::WhiteShulkerBox;
+ case 4095: return BlockType::WhiteStainedGlass;
+ case 6865: case 6866: case 6869: case 6870: case 6873: case 6874: case 6877: case 6878: case 6881: case 6882: case 6885: case 6886: case 6889: case 6890: case 6893: case 6894: return BlockType::WhiteStainedGlassPane;
+ case 6847: return BlockType::WhiteTerracotta;
+ case 1419: return BlockType::WhiteTulip;
+ case 8153: case 8154: case 8155: case 8156: return BlockType::WhiteWallBanner;
+ case 1384: return BlockType::WhiteWool;
+ case 1423: return BlockType::WitherRose;
+ case 6510: case 6511: case 6512: case 6513: case 6514: case 6515: case 6516: case 6517: case 6518: case 6519: case 6520: case 6521: case 6522: case 6523: case 6524: case 6525: return BlockType::WitherSkeletonSkull;
+ case 6526: case 6527: case 6528: case 6529: return BlockType::WitherSkeletonWallSkull;
+ case 7961: case 7962: case 7963: case 7964: case 7965: case 7966: case 7967: case 7968: case 7969: case 7970: case 7971: case 7972: case 7973: case 7974: case 7975: case 7976: return BlockType::YellowBanner;
+ case 1113: case 1114: case 1115: case 1116: case 1117: case 1118: case 1119: case 1120: case 1121: case 1122: case 1123: case 1124: case 1125: case 1126: case 1127: case 1128: return BlockType::YellowBed;
+ case 7870: return BlockType::YellowCarpet;
+ case 9442: return BlockType::YellowConcrete;
+ case 9458: return BlockType::YellowConcretePowder;
+ case 9390: case 9391: case 9392: case 9393: return BlockType::YellowGlazedTerracotta;
+ case 9302: case 9303: case 9304: case 9305: case 9306: case 9307: return BlockType::YellowShulkerBox;
+ case 4099: return BlockType::YellowStainedGlass;
+ case 6993: case 6994: case 6997: case 6998: case 7001: case 7002: case 7005: case 7006: case 7009: case 7010: case 7013: case 7014: case 7017: case 7018: case 7021: case 7022: return BlockType::YellowStainedGlassPane;
+ case 6851: return BlockType::YellowTerracotta;
+ case 8169: case 8170: case 8171: case 8172: return BlockType::YellowWallBanner;
+ case 1388: return BlockType::YellowWool;
+ case 6530: case 6531: case 6532: case 6533: case 6534: case 6535: case 6536: case 6537: case 6538: case 6539: case 6540: case 6541: case 6542: case 6543: case 6544: case 6545: return BlockType::ZombieHead;
+ default: return BlockType::ZombieWallHead;
+ }
+}
diff --git a/src/Registries/BlockStates.h b/src/Registries/BlockStates.h
new file mode 100644
index 000000000..4419fc896
--- /dev/null
+++ b/src/Registries/BlockStates.h
@@ -0,0 +1,25485 @@
+#pragma once
+
+#include "Globals.h"
+#include "BlockState.h"
+#include "Defines.h"
+
+namespace Block
+{
+ namespace AcaciaButton
+ {
+ enum class Face
+ {
+ Floor,
+ Wall,
+ Ceiling
+ };
+ constexpr BlockState AcaciaButton(const enum Face Face, const eBlockFace Facing, const bool Powered)
+ {
+ if (Face == Face::Floor)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6442;
+ else return 6443;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6444;
+ else return 6445;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6446;
+ else return 6447;
+ else
+ if (Powered) return 6448;
+ else return 6449;
+ else if (Face == Face::Wall)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6450;
+ else return 6451;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6452;
+ else return 6453;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6454;
+ else return 6455;
+ else
+ if (Powered) return 6456;
+ else return 6457;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6458;
+ else return 6459;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6460;
+ else return 6461;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6462;
+ else return 6463;
+ else
+ if (Powered) return 6464;
+ else return 6465;
+ }
+ BlockState AcaciaButton();
+ enum Face Face(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace AcaciaDoor
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ enum class Hinge
+ {
+ Left,
+ Right
+ };
+ constexpr BlockState AcaciaDoor(const eBlockFace Facing, const enum Half Half, const enum Hinge Hinge, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8930;
+ else return 8931;
+ else
+ if (Powered) return 8932;
+ else return 8933;
+ else
+ if (Open)
+ if (Powered) return 8934;
+ else return 8935;
+ else
+ if (Powered) return 8936;
+ else return 8937;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8938;
+ else return 8939;
+ else
+ if (Powered) return 8940;
+ else return 8941;
+ else
+ if (Open)
+ if (Powered) return 8942;
+ else return 8943;
+ else
+ if (Powered) return 8944;
+ else return 8945;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8946;
+ else return 8947;
+ else
+ if (Powered) return 8948;
+ else return 8949;
+ else
+ if (Open)
+ if (Powered) return 8950;
+ else return 8951;
+ else
+ if (Powered) return 8952;
+ else return 8953;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8954;
+ else return 8955;
+ else
+ if (Powered) return 8956;
+ else return 8957;
+ else
+ if (Open)
+ if (Powered) return 8958;
+ else return 8959;
+ else
+ if (Powered) return 8960;
+ else return 8961;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8962;
+ else return 8963;
+ else
+ if (Powered) return 8964;
+ else return 8965;
+ else
+ if (Open)
+ if (Powered) return 8966;
+ else return 8967;
+ else
+ if (Powered) return 8968;
+ else return 8969;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8970;
+ else return 8971;
+ else
+ if (Powered) return 8972;
+ else return 8973;
+ else
+ if (Open)
+ if (Powered) return 8974;
+ else return 8975;
+ else
+ if (Powered) return 8976;
+ else return 8977;
+ else
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8978;
+ else return 8979;
+ else
+ if (Powered) return 8980;
+ else return 8981;
+ else
+ if (Open)
+ if (Powered) return 8982;
+ else return 8983;
+ else
+ if (Powered) return 8984;
+ else return 8985;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8986;
+ else return 8987;
+ else
+ if (Powered) return 8988;
+ else return 8989;
+ else
+ if (Open)
+ if (Powered) return 8990;
+ else return 8991;
+ else
+ if (Powered) return 8992;
+ else return 8993;
+ }
+ BlockState AcaciaDoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Hinge Hinge(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace AcaciaFence
+ {
+ constexpr BlockState AcaciaFence(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 8676;
+ else return 8677;
+ else
+ if (West) return 8680;
+ else return 8681;
+ else
+ if (South)
+ if (West) return 8684;
+ else return 8685;
+ else
+ if (West) return 8688;
+ else return 8689;
+ else
+ if (North)
+ if (South)
+ if (West) return 8692;
+ else return 8693;
+ else
+ if (West) return 8696;
+ else return 8697;
+ else
+ if (South)
+ if (West) return 8700;
+ else return 8701;
+ else
+ if (West) return 8704;
+ else return 8705;
+ }
+ BlockState AcaciaFence();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace AcaciaFenceGate
+ {
+ constexpr BlockState AcaciaFenceGate(const eBlockFace Facing, const bool InWall, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8514;
+ else return 8515;
+ else
+ if (Powered) return 8516;
+ else return 8517;
+ else
+ if (Open)
+ if (Powered) return 8518;
+ else return 8519;
+ else
+ if (Powered) return 8520;
+ else return 8521;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8522;
+ else return 8523;
+ else
+ if (Powered) return 8524;
+ else return 8525;
+ else
+ if (Open)
+ if (Powered) return 8526;
+ else return 8527;
+ else
+ if (Powered) return 8528;
+ else return 8529;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8530;
+ else return 8531;
+ else
+ if (Powered) return 8532;
+ else return 8533;
+ else
+ if (Open)
+ if (Powered) return 8534;
+ else return 8535;
+ else
+ if (Powered) return 8536;
+ else return 8537;
+ else
+ if (InWall)
+ if (Open)
+ if (Powered) return 8538;
+ else return 8539;
+ else
+ if (Powered) return 8540;
+ else return 8541;
+ else
+ if (Open)
+ if (Powered) return 8542;
+ else return 8543;
+ else
+ if (Powered) return 8544;
+ else return 8545;
+ }
+ BlockState AcaciaFenceGate();
+ eBlockFace Facing(BlockState Block);
+ bool InWall(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace AcaciaLeaves
+ {
+ constexpr BlockState AcaciaLeaves(const unsigned char Distance, const bool Persistent)
+ {
+ if (Distance == 1)
+ if (Persistent) return 201;
+ else return 202;
+ else if (Distance == 2)
+ if (Persistent) return 203;
+ else return 204;
+ else if (Distance == 3)
+ if (Persistent) return 205;
+ else return 206;
+ else if (Distance == 4)
+ if (Persistent) return 207;
+ else return 208;
+ else if (Distance == 5)
+ if (Persistent) return 209;
+ else return 210;
+ else if (Distance == 6)
+ if (Persistent) return 211;
+ else return 212;
+ else
+ if (Persistent) return 213;
+ else return 214;
+ }
+ BlockState AcaciaLeaves();
+ unsigned char Distance(BlockState Block);
+ bool Persistent(BlockState Block);
+ }
+ namespace AcaciaLog
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState AcaciaLog(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 85;
+ else if (Axis == Axis::Y) return 86;
+ else return 87;
+ }
+ BlockState AcaciaLog();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace AcaciaPlanks
+ {
+ constexpr BlockState AcaciaPlanks()
+ {
+ return 19;
+ }
+ }
+ namespace AcaciaPressurePlate
+ {
+ constexpr BlockState AcaciaPressurePlate(const bool Powered)
+ {
+ if (Powered) return 3881;
+ else return 3882;
+ }
+ BlockState AcaciaPressurePlate();
+ bool Powered(BlockState Block);
+ }
+ namespace AcaciaSapling
+ {
+ constexpr BlockState AcaciaSapling(const unsigned char Stage)
+ {
+ if (Stage == 0) return 29;
+ else return 30;
+ }
+ BlockState AcaciaSapling();
+ unsigned char Stage(BlockState Block);
+ }
+ namespace AcaciaSign
+ {
+ constexpr BlockState AcaciaSign(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 3478;
+ else if (Rotation == 1) return 3480;
+ else if (Rotation == 2) return 3482;
+ else if (Rotation == 3) return 3484;
+ else if (Rotation == 4) return 3486;
+ else if (Rotation == 5) return 3488;
+ else if (Rotation == 6) return 3490;
+ else if (Rotation == 7) return 3492;
+ else if (Rotation == 8) return 3494;
+ else if (Rotation == 9) return 3496;
+ else if (Rotation == 10) return 3498;
+ else if (Rotation == 11) return 3500;
+ else if (Rotation == 12) return 3502;
+ else if (Rotation == 13) return 3504;
+ else if (Rotation == 14) return 3506;
+ else return 3508;
+ }
+ BlockState AcaciaSign();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace AcaciaSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState AcaciaSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8325;
+ else if (Type == Type::Bottom) return 8327;
+ else return 8329;
+ }
+ BlockState AcaciaSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace AcaciaStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState AcaciaStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7376;
+ else if (Shape == Shape::InnerLeft) return 7378;
+ else if (Shape == Shape::InnerRight) return 7380;
+ else if (Shape == Shape::OuterLeft) return 7382;
+ else return 7384;
+ else
+ if (Shape == Shape::Straight) return 7386;
+ else if (Shape == Shape::InnerLeft) return 7388;
+ else if (Shape == Shape::InnerRight) return 7390;
+ else if (Shape == Shape::OuterLeft) return 7392;
+ else return 7394;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7396;
+ else if (Shape == Shape::InnerLeft) return 7398;
+ else if (Shape == Shape::InnerRight) return 7400;
+ else if (Shape == Shape::OuterLeft) return 7402;
+ else return 7404;
+ else
+ if (Shape == Shape::Straight) return 7406;
+ else if (Shape == Shape::InnerLeft) return 7408;
+ else if (Shape == Shape::InnerRight) return 7410;
+ else if (Shape == Shape::OuterLeft) return 7412;
+ else return 7414;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7416;
+ else if (Shape == Shape::InnerLeft) return 7418;
+ else if (Shape == Shape::InnerRight) return 7420;
+ else if (Shape == Shape::OuterLeft) return 7422;
+ else return 7424;
+ else
+ if (Shape == Shape::Straight) return 7426;
+ else if (Shape == Shape::InnerLeft) return 7428;
+ else if (Shape == Shape::InnerRight) return 7430;
+ else if (Shape == Shape::OuterLeft) return 7432;
+ else return 7434;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7436;
+ else if (Shape == Shape::InnerLeft) return 7438;
+ else if (Shape == Shape::InnerRight) return 7440;
+ else if (Shape == Shape::OuterLeft) return 7442;
+ else return 7444;
+ else
+ if (Shape == Shape::Straight) return 7446;
+ else if (Shape == Shape::InnerLeft) return 7448;
+ else if (Shape == Shape::InnerRight) return 7450;
+ else if (Shape == Shape::OuterLeft) return 7452;
+ else return 7454;
+ }
+ BlockState AcaciaStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace AcaciaTrapdoor
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ constexpr BlockState AcaciaTrapdoor(const eBlockFace Facing, const enum Half Half, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4368;
+ else return 4370;
+ else
+ if (Powered) return 4372;
+ else return 4374;
+ else
+ if (Open)
+ if (Powered) return 4376;
+ else return 4378;
+ else
+ if (Powered) return 4380;
+ else return 4382;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4384;
+ else return 4386;
+ else
+ if (Powered) return 4388;
+ else return 4390;
+ else
+ if (Open)
+ if (Powered) return 4392;
+ else return 4394;
+ else
+ if (Powered) return 4396;
+ else return 4398;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4400;
+ else return 4402;
+ else
+ if (Powered) return 4404;
+ else return 4406;
+ else
+ if (Open)
+ if (Powered) return 4408;
+ else return 4410;
+ else
+ if (Powered) return 4412;
+ else return 4414;
+ else
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4416;
+ else return 4418;
+ else
+ if (Powered) return 4420;
+ else return 4422;
+ else
+ if (Open)
+ if (Powered) return 4424;
+ else return 4426;
+ else
+ if (Powered) return 4428;
+ else return 4430;
+ }
+ BlockState AcaciaTrapdoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace AcaciaWallSign
+ {
+ constexpr BlockState AcaciaWallSign(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3760;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3762;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 3764;
+ else return 3766;
+ }
+ BlockState AcaciaWallSign();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace AcaciaWood
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState AcaciaWood(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 121;
+ else if (Axis == Axis::Y) return 122;
+ else return 123;
+ }
+ BlockState AcaciaWood();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace ActivatorRail
+ {
+ enum class Shape
+ {
+ NorthSouth,
+ EastWest,
+ AscendingEast,
+ AscendingWest,
+ AscendingNorth,
+ AscendingSouth
+ };
+ constexpr BlockState ActivatorRail(const bool Powered, const enum Shape Shape)
+ {
+ if (Powered)
+ if (Shape == Shape::NorthSouth) return 6823;
+ else if (Shape == Shape::EastWest) return 6824;
+ else if (Shape == Shape::AscendingEast) return 6825;
+ else if (Shape == Shape::AscendingWest) return 6826;
+ else if (Shape == Shape::AscendingNorth) return 6827;
+ else return 6828;
+ else
+ if (Shape == Shape::NorthSouth) return 6829;
+ else if (Shape == Shape::EastWest) return 6830;
+ else if (Shape == Shape::AscendingEast) return 6831;
+ else if (Shape == Shape::AscendingWest) return 6832;
+ else if (Shape == Shape::AscendingNorth) return 6833;
+ else return 6834;
+ }
+ BlockState ActivatorRail();
+ bool Powered(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace Air
+ {
+ constexpr BlockState Air()
+ {
+ return -0;
+ }
+ }
+ namespace Allium
+ {
+ constexpr BlockState Allium()
+ {
+ return 1415;
+ }
+ }
+ namespace AncientDebris
+ {
+ constexpr BlockState AncientDebris()
+ {
+ return 15827;
+ }
+ }
+ namespace Andesite
+ {
+ constexpr BlockState Andesite()
+ {
+ return 6;
+ }
+ }
+ namespace AndesiteSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState AndesiteSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 10844;
+ else if (Type == Type::Bottom) return 10846;
+ else return 10848;
+ }
+ BlockState AndesiteSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace AndesiteStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState AndesiteStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10470;
+ else if (Shape == Shape::InnerLeft) return 10472;
+ else if (Shape == Shape::InnerRight) return 10474;
+ else if (Shape == Shape::OuterLeft) return 10476;
+ else return 10478;
+ else
+ if (Shape == Shape::Straight) return 10480;
+ else if (Shape == Shape::InnerLeft) return 10482;
+ else if (Shape == Shape::InnerRight) return 10484;
+ else if (Shape == Shape::OuterLeft) return 10486;
+ else return 10488;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10490;
+ else if (Shape == Shape::InnerLeft) return 10492;
+ else if (Shape == Shape::InnerRight) return 10494;
+ else if (Shape == Shape::OuterLeft) return 10496;
+ else return 10498;
+ else
+ if (Shape == Shape::Straight) return 10500;
+ else if (Shape == Shape::InnerLeft) return 10502;
+ else if (Shape == Shape::InnerRight) return 10504;
+ else if (Shape == Shape::OuterLeft) return 10506;
+ else return 10508;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10510;
+ else if (Shape == Shape::InnerLeft) return 10512;
+ else if (Shape == Shape::InnerRight) return 10514;
+ else if (Shape == Shape::OuterLeft) return 10516;
+ else return 10518;
+ else
+ if (Shape == Shape::Straight) return 10520;
+ else if (Shape == Shape::InnerLeft) return 10522;
+ else if (Shape == Shape::InnerRight) return 10524;
+ else if (Shape == Shape::OuterLeft) return 10526;
+ else return 10528;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10530;
+ else if (Shape == Shape::InnerLeft) return 10532;
+ else if (Shape == Shape::InnerRight) return 10534;
+ else if (Shape == Shape::OuterLeft) return 10536;
+ else return 10538;
+ else
+ if (Shape == Shape::Straight) return 10540;
+ else if (Shape == Shape::InnerLeft) return 10542;
+ else if (Shape == Shape::InnerRight) return 10544;
+ else if (Shape == Shape::OuterLeft) return 10546;
+ else return 10548;
+ }
+ BlockState AndesiteStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace AndesiteWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState AndesiteWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13138;
+ else if (West == West::Low) return 13139;
+ else return 13140;
+ else
+ if (West == West::None) return 13144;
+ else if (West == West::Low) return 13145;
+ else return 13146;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13150;
+ else if (West == West::Low) return 13151;
+ else return 13152;
+ else
+ if (West == West::None) return 13156;
+ else if (West == West::Low) return 13157;
+ else return 13158;
+ else
+ if (Up)
+ if (West == West::None) return 13162;
+ else if (West == West::Low) return 13163;
+ else return 13164;
+ else
+ if (West == West::None) return 13168;
+ else if (West == West::Low) return 13169;
+ else return 13170;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13174;
+ else if (West == West::Low) return 13175;
+ else return 13176;
+ else
+ if (West == West::None) return 13180;
+ else if (West == West::Low) return 13181;
+ else return 13182;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13186;
+ else if (West == West::Low) return 13187;
+ else return 13188;
+ else
+ if (West == West::None) return 13192;
+ else if (West == West::Low) return 13193;
+ else return 13194;
+ else
+ if (Up)
+ if (West == West::None) return 13198;
+ else if (West == West::Low) return 13199;
+ else return 13200;
+ else
+ if (West == West::None) return 13204;
+ else if (West == West::Low) return 13205;
+ else return 13206;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13210;
+ else if (West == West::Low) return 13211;
+ else return 13212;
+ else
+ if (West == West::None) return 13216;
+ else if (West == West::Low) return 13217;
+ else return 13218;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13222;
+ else if (West == West::Low) return 13223;
+ else return 13224;
+ else
+ if (West == West::None) return 13228;
+ else if (West == West::Low) return 13229;
+ else return 13230;
+ else
+ if (Up)
+ if (West == West::None) return 13234;
+ else if (West == West::Low) return 13235;
+ else return 13236;
+ else
+ if (West == West::None) return 13240;
+ else if (West == West::Low) return 13241;
+ else return 13242;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13246;
+ else if (West == West::Low) return 13247;
+ else return 13248;
+ else
+ if (West == West::None) return 13252;
+ else if (West == West::Low) return 13253;
+ else return 13254;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13258;
+ else if (West == West::Low) return 13259;
+ else return 13260;
+ else
+ if (West == West::None) return 13264;
+ else if (West == West::Low) return 13265;
+ else return 13266;
+ else
+ if (Up)
+ if (West == West::None) return 13270;
+ else if (West == West::Low) return 13271;
+ else return 13272;
+ else
+ if (West == West::None) return 13276;
+ else if (West == West::Low) return 13277;
+ else return 13278;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13282;
+ else if (West == West::Low) return 13283;
+ else return 13284;
+ else
+ if (West == West::None) return 13288;
+ else if (West == West::Low) return 13289;
+ else return 13290;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13294;
+ else if (West == West::Low) return 13295;
+ else return 13296;
+ else
+ if (West == West::None) return 13300;
+ else if (West == West::Low) return 13301;
+ else return 13302;
+ else
+ if (Up)
+ if (West == West::None) return 13306;
+ else if (West == West::Low) return 13307;
+ else return 13308;
+ else
+ if (West == West::None) return 13312;
+ else if (West == West::Low) return 13313;
+ else return 13314;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13318;
+ else if (West == West::Low) return 13319;
+ else return 13320;
+ else
+ if (West == West::None) return 13324;
+ else if (West == West::Low) return 13325;
+ else return 13326;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13330;
+ else if (West == West::Low) return 13331;
+ else return 13332;
+ else
+ if (West == West::None) return 13336;
+ else if (West == West::Low) return 13337;
+ else return 13338;
+ else
+ if (Up)
+ if (West == West::None) return 13342;
+ else if (West == West::Low) return 13343;
+ else return 13344;
+ else
+ if (West == West::None) return 13348;
+ else if (West == West::Low) return 13349;
+ else return 13350;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13354;
+ else if (West == West::Low) return 13355;
+ else return 13356;
+ else
+ if (West == West::None) return 13360;
+ else if (West == West::Low) return 13361;
+ else return 13362;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13366;
+ else if (West == West::Low) return 13367;
+ else return 13368;
+ else
+ if (West == West::None) return 13372;
+ else if (West == West::Low) return 13373;
+ else return 13374;
+ else
+ if (Up)
+ if (West == West::None) return 13378;
+ else if (West == West::Low) return 13379;
+ else return 13380;
+ else
+ if (West == West::None) return 13384;
+ else if (West == West::Low) return 13385;
+ else return 13386;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13390;
+ else if (West == West::Low) return 13391;
+ else return 13392;
+ else
+ if (West == West::None) return 13396;
+ else if (West == West::Low) return 13397;
+ else return 13398;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13402;
+ else if (West == West::Low) return 13403;
+ else return 13404;
+ else
+ if (West == West::None) return 13408;
+ else if (West == West::Low) return 13409;
+ else return 13410;
+ else
+ if (Up)
+ if (West == West::None) return 13414;
+ else if (West == West::Low) return 13415;
+ else return 13416;
+ else
+ if (West == West::None) return 13420;
+ else if (West == West::Low) return 13421;
+ else return 13422;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13426;
+ else if (West == West::Low) return 13427;
+ else return 13428;
+ else
+ if (West == West::None) return 13432;
+ else if (West == West::Low) return 13433;
+ else return 13434;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13438;
+ else if (West == West::Low) return 13439;
+ else return 13440;
+ else
+ if (West == West::None) return 13444;
+ else if (West == West::Low) return 13445;
+ else return 13446;
+ else
+ if (Up)
+ if (West == West::None) return 13450;
+ else if (West == West::Low) return 13451;
+ else return 13452;
+ else
+ if (West == West::None) return 13456;
+ else if (West == West::Low) return 13457;
+ else return 13458;
+ }
+ BlockState AndesiteWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace Anvil
+ {
+ constexpr BlockState Anvil(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6610;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6611;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 6612;
+ else return 6613;
+ }
+ BlockState Anvil();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace AttachedMelonStem
+ {
+ constexpr BlockState AttachedMelonStem(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4768;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4769;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 4770;
+ else return 4771;
+ }
+ BlockState AttachedMelonStem();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace AttachedPumpkinStem
+ {
+ constexpr BlockState AttachedPumpkinStem(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4764;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4765;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 4766;
+ else return 4767;
+ }
+ BlockState AttachedPumpkinStem();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace AzureBluet
+ {
+ constexpr BlockState AzureBluet()
+ {
+ return 1416;
+ }
+ }
+ namespace Bamboo
+ {
+ enum class Leaves
+ {
+ None,
+ Small,
+ Large
+ };
+ constexpr BlockState Bamboo(const unsigned char Age, const enum Leaves Leaves, const unsigned char Stage)
+ {
+ if (Age == 0)
+ if (Leaves == Leaves::None)
+ if (Stage == 0) return 9652;
+ else return 9653;
+ else if (Leaves == Leaves::Small)
+ if (Stage == 0) return 9654;
+ else return 9655;
+ else
+ if (Stage == 0) return 9656;
+ else return 9657;
+ else
+ if (Leaves == Leaves::None)
+ if (Stage == 0) return 9658;
+ else return 9659;
+ else if (Leaves == Leaves::Small)
+ if (Stage == 0) return 9660;
+ else return 9661;
+ else
+ if (Stage == 0) return 9662;
+ else return 9663;
+ }
+ BlockState Bamboo();
+ unsigned char Age(BlockState Block);
+ enum Leaves Leaves(BlockState Block);
+ unsigned char Stage(BlockState Block);
+ }
+ namespace BambooSapling
+ {
+ constexpr BlockState BambooSapling()
+ {
+ return 9651;
+ }
+ }
+ namespace Barrel
+ {
+ constexpr BlockState Barrel(const eBlockFace Facing, const bool Open)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Open) return 14791;
+ else return 14792;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP)
+ if (Open) return 14793;
+ else return 14794;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Open) return 14795;
+ else return 14796;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Open) return 14797;
+ else return 14798;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP)
+ if (Open) return 14799;
+ else return 14800;
+ else
+ if (Open) return 14801;
+ else return 14802;
+ }
+ BlockState Barrel();
+ eBlockFace Facing(BlockState Block);
+ bool Open(BlockState Block);
+ }
+ namespace Barrier
+ {
+ constexpr BlockState Barrier()
+ {
+ return 7536;
+ }
+ }
+ namespace Basalt
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState Basalt(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 4002;
+ else if (Axis == Axis::Y) return 4003;
+ else return 4004;
+ }
+ BlockState Basalt();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace Beacon
+ {
+ constexpr BlockState Beacon()
+ {
+ return 5656;
+ }
+ }
+ namespace Bedrock
+ {
+ constexpr BlockState Bedrock()
+ {
+ return 33;
+ }
+ }
+ namespace BeeNest
+ {
+ constexpr BlockState BeeNest(const eBlockFace Facing, const unsigned char HoneyLevel)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (HoneyLevel == 0) return 15776;
+ else if (HoneyLevel == 1) return 15777;
+ else if (HoneyLevel == 2) return 15778;
+ else if (HoneyLevel == 3) return 15779;
+ else if (HoneyLevel == 4) return 15780;
+ else return 15781;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (HoneyLevel == 0) return 15782;
+ else if (HoneyLevel == 1) return 15783;
+ else if (HoneyLevel == 2) return 15784;
+ else if (HoneyLevel == 3) return 15785;
+ else if (HoneyLevel == 4) return 15786;
+ else return 15787;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (HoneyLevel == 0) return 15788;
+ else if (HoneyLevel == 1) return 15789;
+ else if (HoneyLevel == 2) return 15790;
+ else if (HoneyLevel == 3) return 15791;
+ else if (HoneyLevel == 4) return 15792;
+ else return 15793;
+ else
+ if (HoneyLevel == 0) return 15794;
+ else if (HoneyLevel == 1) return 15795;
+ else if (HoneyLevel == 2) return 15796;
+ else if (HoneyLevel == 3) return 15797;
+ else if (HoneyLevel == 4) return 15798;
+ else return 15799;
+ }
+ BlockState BeeNest();
+ eBlockFace Facing(BlockState Block);
+ unsigned char HoneyLevel(BlockState Block);
+ }
+ namespace Beehive
+ {
+ constexpr BlockState Beehive(const eBlockFace Facing, const unsigned char HoneyLevel)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (HoneyLevel == 0) return 15800;
+ else if (HoneyLevel == 1) return 15801;
+ else if (HoneyLevel == 2) return 15802;
+ else if (HoneyLevel == 3) return 15803;
+ else if (HoneyLevel == 4) return 15804;
+ else return 15805;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (HoneyLevel == 0) return 15806;
+ else if (HoneyLevel == 1) return 15807;
+ else if (HoneyLevel == 2) return 15808;
+ else if (HoneyLevel == 3) return 15809;
+ else if (HoneyLevel == 4) return 15810;
+ else return 15811;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (HoneyLevel == 0) return 15812;
+ else if (HoneyLevel == 1) return 15813;
+ else if (HoneyLevel == 2) return 15814;
+ else if (HoneyLevel == 3) return 15815;
+ else if (HoneyLevel == 4) return 15816;
+ else return 15817;
+ else
+ if (HoneyLevel == 0) return 15818;
+ else if (HoneyLevel == 1) return 15819;
+ else if (HoneyLevel == 2) return 15820;
+ else if (HoneyLevel == 3) return 15821;
+ else if (HoneyLevel == 4) return 15822;
+ else return 15823;
+ }
+ BlockState Beehive();
+ eBlockFace Facing(BlockState Block);
+ unsigned char HoneyLevel(BlockState Block);
+ }
+ namespace Beetroots
+ {
+ constexpr BlockState Beetroots(const unsigned char Age)
+ {
+ if (Age == 0) return 9219;
+ else if (Age == 1) return 9220;
+ else if (Age == 2) return 9221;
+ else return 9222;
+ }
+ BlockState Beetroots();
+ unsigned char Age(BlockState Block);
+ }
+ namespace Bell
+ {
+ enum class Attachment
+ {
+ Floor,
+ Ceiling,
+ SingleWall,
+ DoubleWall
+ };
+ constexpr BlockState Bell(const enum Attachment Attachment, const eBlockFace Facing, const bool Powered)
+ {
+ if (Attachment == Attachment::Floor)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 14854;
+ else return 14855;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 14856;
+ else return 14857;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 14858;
+ else return 14859;
+ else
+ if (Powered) return 14860;
+ else return 14861;
+ else if (Attachment == Attachment::Ceiling)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 14862;
+ else return 14863;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 14864;
+ else return 14865;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 14866;
+ else return 14867;
+ else
+ if (Powered) return 14868;
+ else return 14869;
+ else if (Attachment == Attachment::SingleWall)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 14870;
+ else return 14871;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 14872;
+ else return 14873;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 14874;
+ else return 14875;
+ else
+ if (Powered) return 14876;
+ else return 14877;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 14878;
+ else return 14879;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 14880;
+ else return 14881;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 14882;
+ else return 14883;
+ else
+ if (Powered) return 14884;
+ else return 14885;
+ }
+ BlockState Bell();
+ enum Attachment Attachment(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace BirchButton
+ {
+ enum class Face
+ {
+ Floor,
+ Wall,
+ Ceiling
+ };
+ constexpr BlockState BirchButton(const enum Face Face, const eBlockFace Facing, const bool Powered)
+ {
+ if (Face == Face::Floor)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6394;
+ else return 6395;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6396;
+ else return 6397;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6398;
+ else return 6399;
+ else
+ if (Powered) return 6400;
+ else return 6401;
+ else if (Face == Face::Wall)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6402;
+ else return 6403;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6404;
+ else return 6405;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6406;
+ else return 6407;
+ else
+ if (Powered) return 6408;
+ else return 6409;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6410;
+ else return 6411;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6412;
+ else return 6413;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6414;
+ else return 6415;
+ else
+ if (Powered) return 6416;
+ else return 6417;
+ }
+ BlockState BirchButton();
+ enum Face Face(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace BirchDoor
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ enum class Hinge
+ {
+ Left,
+ Right
+ };
+ constexpr BlockState BirchDoor(const eBlockFace Facing, const enum Half Half, const enum Hinge Hinge, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8802;
+ else return 8803;
+ else
+ if (Powered) return 8804;
+ else return 8805;
+ else
+ if (Open)
+ if (Powered) return 8806;
+ else return 8807;
+ else
+ if (Powered) return 8808;
+ else return 8809;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8810;
+ else return 8811;
+ else
+ if (Powered) return 8812;
+ else return 8813;
+ else
+ if (Open)
+ if (Powered) return 8814;
+ else return 8815;
+ else
+ if (Powered) return 8816;
+ else return 8817;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8818;
+ else return 8819;
+ else
+ if (Powered) return 8820;
+ else return 8821;
+ else
+ if (Open)
+ if (Powered) return 8822;
+ else return 8823;
+ else
+ if (Powered) return 8824;
+ else return 8825;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8826;
+ else return 8827;
+ else
+ if (Powered) return 8828;
+ else return 8829;
+ else
+ if (Open)
+ if (Powered) return 8830;
+ else return 8831;
+ else
+ if (Powered) return 8832;
+ else return 8833;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8834;
+ else return 8835;
+ else
+ if (Powered) return 8836;
+ else return 8837;
+ else
+ if (Open)
+ if (Powered) return 8838;
+ else return 8839;
+ else
+ if (Powered) return 8840;
+ else return 8841;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8842;
+ else return 8843;
+ else
+ if (Powered) return 8844;
+ else return 8845;
+ else
+ if (Open)
+ if (Powered) return 8846;
+ else return 8847;
+ else
+ if (Powered) return 8848;
+ else return 8849;
+ else
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8850;
+ else return 8851;
+ else
+ if (Powered) return 8852;
+ else return 8853;
+ else
+ if (Open)
+ if (Powered) return 8854;
+ else return 8855;
+ else
+ if (Powered) return 8856;
+ else return 8857;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8858;
+ else return 8859;
+ else
+ if (Powered) return 8860;
+ else return 8861;
+ else
+ if (Open)
+ if (Powered) return 8862;
+ else return 8863;
+ else
+ if (Powered) return 8864;
+ else return 8865;
+ }
+ BlockState BirchDoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Hinge Hinge(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace BirchFence
+ {
+ constexpr BlockState BirchFence(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 8612;
+ else return 8613;
+ else
+ if (West) return 8616;
+ else return 8617;
+ else
+ if (South)
+ if (West) return 8620;
+ else return 8621;
+ else
+ if (West) return 8624;
+ else return 8625;
+ else
+ if (North)
+ if (South)
+ if (West) return 8628;
+ else return 8629;
+ else
+ if (West) return 8632;
+ else return 8633;
+ else
+ if (South)
+ if (West) return 8636;
+ else return 8637;
+ else
+ if (West) return 8640;
+ else return 8641;
+ }
+ BlockState BirchFence();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace BirchFenceGate
+ {
+ constexpr BlockState BirchFenceGate(const eBlockFace Facing, const bool InWall, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8450;
+ else return 8451;
+ else
+ if (Powered) return 8452;
+ else return 8453;
+ else
+ if (Open)
+ if (Powered) return 8454;
+ else return 8455;
+ else
+ if (Powered) return 8456;
+ else return 8457;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8458;
+ else return 8459;
+ else
+ if (Powered) return 8460;
+ else return 8461;
+ else
+ if (Open)
+ if (Powered) return 8462;
+ else return 8463;
+ else
+ if (Powered) return 8464;
+ else return 8465;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8466;
+ else return 8467;
+ else
+ if (Powered) return 8468;
+ else return 8469;
+ else
+ if (Open)
+ if (Powered) return 8470;
+ else return 8471;
+ else
+ if (Powered) return 8472;
+ else return 8473;
+ else
+ if (InWall)
+ if (Open)
+ if (Powered) return 8474;
+ else return 8475;
+ else
+ if (Powered) return 8476;
+ else return 8477;
+ else
+ if (Open)
+ if (Powered) return 8478;
+ else return 8479;
+ else
+ if (Powered) return 8480;
+ else return 8481;
+ }
+ BlockState BirchFenceGate();
+ eBlockFace Facing(BlockState Block);
+ bool InWall(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace BirchLeaves
+ {
+ constexpr BlockState BirchLeaves(const unsigned char Distance, const bool Persistent)
+ {
+ if (Distance == 1)
+ if (Persistent) return 173;
+ else return 174;
+ else if (Distance == 2)
+ if (Persistent) return 175;
+ else return 176;
+ else if (Distance == 3)
+ if (Persistent) return 177;
+ else return 178;
+ else if (Distance == 4)
+ if (Persistent) return 179;
+ else return 180;
+ else if (Distance == 5)
+ if (Persistent) return 181;
+ else return 182;
+ else if (Distance == 6)
+ if (Persistent) return 183;
+ else return 184;
+ else
+ if (Persistent) return 185;
+ else return 186;
+ }
+ BlockState BirchLeaves();
+ unsigned char Distance(BlockState Block);
+ bool Persistent(BlockState Block);
+ }
+ namespace BirchLog
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState BirchLog(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 79;
+ else if (Axis == Axis::Y) return 80;
+ else return 81;
+ }
+ BlockState BirchLog();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace BirchPlanks
+ {
+ constexpr BlockState BirchPlanks()
+ {
+ return 17;
+ }
+ }
+ namespace BirchPressurePlate
+ {
+ constexpr BlockState BirchPressurePlate(const bool Powered)
+ {
+ if (Powered) return 3877;
+ else return 3878;
+ }
+ BlockState BirchPressurePlate();
+ bool Powered(BlockState Block);
+ }
+ namespace BirchSapling
+ {
+ constexpr BlockState BirchSapling(const unsigned char Stage)
+ {
+ if (Stage == 0) return 25;
+ else return 26;
+ }
+ BlockState BirchSapling();
+ unsigned char Stage(BlockState Block);
+ }
+ namespace BirchSign
+ {
+ constexpr BlockState BirchSign(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 3446;
+ else if (Rotation == 1) return 3448;
+ else if (Rotation == 2) return 3450;
+ else if (Rotation == 3) return 3452;
+ else if (Rotation == 4) return 3454;
+ else if (Rotation == 5) return 3456;
+ else if (Rotation == 6) return 3458;
+ else if (Rotation == 7) return 3460;
+ else if (Rotation == 8) return 3462;
+ else if (Rotation == 9) return 3464;
+ else if (Rotation == 10) return 3466;
+ else if (Rotation == 11) return 3468;
+ else if (Rotation == 12) return 3470;
+ else if (Rotation == 13) return 3472;
+ else if (Rotation == 14) return 3474;
+ else return 3476;
+ }
+ BlockState BirchSign();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace BirchSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState BirchSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8313;
+ else if (Type == Type::Bottom) return 8315;
+ else return 8317;
+ }
+ BlockState BirchSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace BirchStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState BirchStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5485;
+ else if (Shape == Shape::InnerLeft) return 5487;
+ else if (Shape == Shape::InnerRight) return 5489;
+ else if (Shape == Shape::OuterLeft) return 5491;
+ else return 5493;
+ else
+ if (Shape == Shape::Straight) return 5495;
+ else if (Shape == Shape::InnerLeft) return 5497;
+ else if (Shape == Shape::InnerRight) return 5499;
+ else if (Shape == Shape::OuterLeft) return 5501;
+ else return 5503;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5505;
+ else if (Shape == Shape::InnerLeft) return 5507;
+ else if (Shape == Shape::InnerRight) return 5509;
+ else if (Shape == Shape::OuterLeft) return 5511;
+ else return 5513;
+ else
+ if (Shape == Shape::Straight) return 5515;
+ else if (Shape == Shape::InnerLeft) return 5517;
+ else if (Shape == Shape::InnerRight) return 5519;
+ else if (Shape == Shape::OuterLeft) return 5521;
+ else return 5523;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5525;
+ else if (Shape == Shape::InnerLeft) return 5527;
+ else if (Shape == Shape::InnerRight) return 5529;
+ else if (Shape == Shape::OuterLeft) return 5531;
+ else return 5533;
+ else
+ if (Shape == Shape::Straight) return 5535;
+ else if (Shape == Shape::InnerLeft) return 5537;
+ else if (Shape == Shape::InnerRight) return 5539;
+ else if (Shape == Shape::OuterLeft) return 5541;
+ else return 5543;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5545;
+ else if (Shape == Shape::InnerLeft) return 5547;
+ else if (Shape == Shape::InnerRight) return 5549;
+ else if (Shape == Shape::OuterLeft) return 5551;
+ else return 5553;
+ else
+ if (Shape == Shape::Straight) return 5555;
+ else if (Shape == Shape::InnerLeft) return 5557;
+ else if (Shape == Shape::InnerRight) return 5559;
+ else if (Shape == Shape::OuterLeft) return 5561;
+ else return 5563;
+ }
+ BlockState BirchStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace BirchTrapdoor
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ constexpr BlockState BirchTrapdoor(const eBlockFace Facing, const enum Half Half, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4240;
+ else return 4242;
+ else
+ if (Powered) return 4244;
+ else return 4246;
+ else
+ if (Open)
+ if (Powered) return 4248;
+ else return 4250;
+ else
+ if (Powered) return 4252;
+ else return 4254;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4256;
+ else return 4258;
+ else
+ if (Powered) return 4260;
+ else return 4262;
+ else
+ if (Open)
+ if (Powered) return 4264;
+ else return 4266;
+ else
+ if (Powered) return 4268;
+ else return 4270;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4272;
+ else return 4274;
+ else
+ if (Powered) return 4276;
+ else return 4278;
+ else
+ if (Open)
+ if (Powered) return 4280;
+ else return 4282;
+ else
+ if (Powered) return 4284;
+ else return 4286;
+ else
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4288;
+ else return 4290;
+ else
+ if (Powered) return 4292;
+ else return 4294;
+ else
+ if (Open)
+ if (Powered) return 4296;
+ else return 4298;
+ else
+ if (Powered) return 4300;
+ else return 4302;
+ }
+ BlockState BirchTrapdoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace BirchWallSign
+ {
+ constexpr BlockState BirchWallSign(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3752;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3754;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 3756;
+ else return 3758;
+ }
+ BlockState BirchWallSign();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace BirchWood
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState BirchWood(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 115;
+ else if (Axis == Axis::Y) return 116;
+ else return 117;
+ }
+ BlockState BirchWood();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace BlackBanner
+ {
+ constexpr BlockState BlackBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 8137;
+ else if (Rotation == 1) return 8138;
+ else if (Rotation == 2) return 8139;
+ else if (Rotation == 3) return 8140;
+ else if (Rotation == 4) return 8141;
+ else if (Rotation == 5) return 8142;
+ else if (Rotation == 6) return 8143;
+ else if (Rotation == 7) return 8144;
+ else if (Rotation == 8) return 8145;
+ else if (Rotation == 9) return 8146;
+ else if (Rotation == 10) return 8147;
+ else if (Rotation == 11) return 8148;
+ else if (Rotation == 12) return 8149;
+ else if (Rotation == 13) return 8150;
+ else if (Rotation == 14) return 8151;
+ else return 8152;
+ }
+ BlockState BlackBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace BlackBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState BlackBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1289;
+ else return 1290;
+ else
+ if (Part == Part::Head) return 1291;
+ else return 1292;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1293;
+ else return 1294;
+ else
+ if (Part == Part::Head) return 1295;
+ else return 1296;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1297;
+ else return 1298;
+ else
+ if (Part == Part::Head) return 1299;
+ else return 1300;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1301;
+ else return 1302;
+ else
+ if (Part == Part::Head) return 1303;
+ else return 1304;
+ }
+ BlockState BlackBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace BlackCarpet
+ {
+ constexpr BlockState BlackCarpet()
+ {
+ return 7881;
+ }
+ }
+ namespace BlackConcrete
+ {
+ constexpr BlockState BlackConcrete()
+ {
+ return 9453;
+ }
+ }
+ namespace BlackConcretePowder
+ {
+ constexpr BlockState BlackConcretePowder()
+ {
+ return 9469;
+ }
+ }
+ namespace BlackGlazedTerracotta
+ {
+ constexpr BlockState BlackGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9434;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9435;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9436;
+ else return 9437;
+ }
+ BlockState BlackGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace BlackShulkerBox
+ {
+ constexpr BlockState BlackShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9368;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9369;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9370;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9371;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9372;
+ else return 9373;
+ }
+ BlockState BlackShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace BlackStainedGlass
+ {
+ constexpr BlockState BlackStainedGlass()
+ {
+ return 4110;
+ }
+ }
+ namespace BlackStainedGlassPane
+ {
+ constexpr BlockState BlackStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 7345;
+ else return 7346;
+ else
+ if (West) return 7349;
+ else return 7350;
+ else
+ if (South)
+ if (West) return 7353;
+ else return 7354;
+ else
+ if (West) return 7357;
+ else return 7358;
+ else
+ if (North)
+ if (South)
+ if (West) return 7361;
+ else return 7362;
+ else
+ if (West) return 7365;
+ else return 7366;
+ else
+ if (South)
+ if (West) return 7369;
+ else return 7370;
+ else
+ if (West) return 7373;
+ else return 7374;
+ }
+ BlockState BlackStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace BlackTerracotta
+ {
+ constexpr BlockState BlackTerracotta()
+ {
+ return 6862;
+ }
+ }
+ namespace BlackWallBanner
+ {
+ constexpr BlockState BlackWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8213;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8214;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8215;
+ else return 8216;
+ }
+ BlockState BlackWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace BlackWool
+ {
+ constexpr BlockState BlackWool()
+ {
+ return 1399;
+ }
+ }
+ namespace Blackstone
+ {
+ constexpr BlockState Blackstone()
+ {
+ return 15839;
+ }
+ }
+ namespace BlackstoneSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState BlackstoneSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 16245;
+ else if (Type == Type::Bottom) return 16247;
+ else return 16249;
+ }
+ BlockState BlackstoneSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace BlackstoneStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState BlackstoneStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 15841;
+ else if (Shape == Shape::InnerLeft) return 15843;
+ else if (Shape == Shape::InnerRight) return 15845;
+ else if (Shape == Shape::OuterLeft) return 15847;
+ else return 15849;
+ else
+ if (Shape == Shape::Straight) return 15851;
+ else if (Shape == Shape::InnerLeft) return 15853;
+ else if (Shape == Shape::InnerRight) return 15855;
+ else if (Shape == Shape::OuterLeft) return 15857;
+ else return 15859;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 15861;
+ else if (Shape == Shape::InnerLeft) return 15863;
+ else if (Shape == Shape::InnerRight) return 15865;
+ else if (Shape == Shape::OuterLeft) return 15867;
+ else return 15869;
+ else
+ if (Shape == Shape::Straight) return 15871;
+ else if (Shape == Shape::InnerLeft) return 15873;
+ else if (Shape == Shape::InnerRight) return 15875;
+ else if (Shape == Shape::OuterLeft) return 15877;
+ else return 15879;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 15881;
+ else if (Shape == Shape::InnerLeft) return 15883;
+ else if (Shape == Shape::InnerRight) return 15885;
+ else if (Shape == Shape::OuterLeft) return 15887;
+ else return 15889;
+ else
+ if (Shape == Shape::Straight) return 15891;
+ else if (Shape == Shape::InnerLeft) return 15893;
+ else if (Shape == Shape::InnerRight) return 15895;
+ else if (Shape == Shape::OuterLeft) return 15897;
+ else return 15899;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 15901;
+ else if (Shape == Shape::InnerLeft) return 15903;
+ else if (Shape == Shape::InnerRight) return 15905;
+ else if (Shape == Shape::OuterLeft) return 15907;
+ else return 15909;
+ else
+ if (Shape == Shape::Straight) return 15911;
+ else if (Shape == Shape::InnerLeft) return 15913;
+ else if (Shape == Shape::InnerRight) return 15915;
+ else if (Shape == Shape::OuterLeft) return 15917;
+ else return 15919;
+ }
+ BlockState BlackstoneStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace BlackstoneWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState BlackstoneWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 15923;
+ else if (West == West::Low) return 15924;
+ else return 15925;
+ else
+ if (West == West::None) return 15929;
+ else if (West == West::Low) return 15930;
+ else return 15931;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 15935;
+ else if (West == West::Low) return 15936;
+ else return 15937;
+ else
+ if (West == West::None) return 15941;
+ else if (West == West::Low) return 15942;
+ else return 15943;
+ else
+ if (Up)
+ if (West == West::None) return 15947;
+ else if (West == West::Low) return 15948;
+ else return 15949;
+ else
+ if (West == West::None) return 15953;
+ else if (West == West::Low) return 15954;
+ else return 15955;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 15959;
+ else if (West == West::Low) return 15960;
+ else return 15961;
+ else
+ if (West == West::None) return 15965;
+ else if (West == West::Low) return 15966;
+ else return 15967;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 15971;
+ else if (West == West::Low) return 15972;
+ else return 15973;
+ else
+ if (West == West::None) return 15977;
+ else if (West == West::Low) return 15978;
+ else return 15979;
+ else
+ if (Up)
+ if (West == West::None) return 15983;
+ else if (West == West::Low) return 15984;
+ else return 15985;
+ else
+ if (West == West::None) return 15989;
+ else if (West == West::Low) return 15990;
+ else return 15991;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 15995;
+ else if (West == West::Low) return 15996;
+ else return 15997;
+ else
+ if (West == West::None) return 16001;
+ else if (West == West::Low) return 16002;
+ else return 16003;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16007;
+ else if (West == West::Low) return 16008;
+ else return 16009;
+ else
+ if (West == West::None) return 16013;
+ else if (West == West::Low) return 16014;
+ else return 16015;
+ else
+ if (Up)
+ if (West == West::None) return 16019;
+ else if (West == West::Low) return 16020;
+ else return 16021;
+ else
+ if (West == West::None) return 16025;
+ else if (West == West::Low) return 16026;
+ else return 16027;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16031;
+ else if (West == West::Low) return 16032;
+ else return 16033;
+ else
+ if (West == West::None) return 16037;
+ else if (West == West::Low) return 16038;
+ else return 16039;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16043;
+ else if (West == West::Low) return 16044;
+ else return 16045;
+ else
+ if (West == West::None) return 16049;
+ else if (West == West::Low) return 16050;
+ else return 16051;
+ else
+ if (Up)
+ if (West == West::None) return 16055;
+ else if (West == West::Low) return 16056;
+ else return 16057;
+ else
+ if (West == West::None) return 16061;
+ else if (West == West::Low) return 16062;
+ else return 16063;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16067;
+ else if (West == West::Low) return 16068;
+ else return 16069;
+ else
+ if (West == West::None) return 16073;
+ else if (West == West::Low) return 16074;
+ else return 16075;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16079;
+ else if (West == West::Low) return 16080;
+ else return 16081;
+ else
+ if (West == West::None) return 16085;
+ else if (West == West::Low) return 16086;
+ else return 16087;
+ else
+ if (Up)
+ if (West == West::None) return 16091;
+ else if (West == West::Low) return 16092;
+ else return 16093;
+ else
+ if (West == West::None) return 16097;
+ else if (West == West::Low) return 16098;
+ else return 16099;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16103;
+ else if (West == West::Low) return 16104;
+ else return 16105;
+ else
+ if (West == West::None) return 16109;
+ else if (West == West::Low) return 16110;
+ else return 16111;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16115;
+ else if (West == West::Low) return 16116;
+ else return 16117;
+ else
+ if (West == West::None) return 16121;
+ else if (West == West::Low) return 16122;
+ else return 16123;
+ else
+ if (Up)
+ if (West == West::None) return 16127;
+ else if (West == West::Low) return 16128;
+ else return 16129;
+ else
+ if (West == West::None) return 16133;
+ else if (West == West::Low) return 16134;
+ else return 16135;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16139;
+ else if (West == West::Low) return 16140;
+ else return 16141;
+ else
+ if (West == West::None) return 16145;
+ else if (West == West::Low) return 16146;
+ else return 16147;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16151;
+ else if (West == West::Low) return 16152;
+ else return 16153;
+ else
+ if (West == West::None) return 16157;
+ else if (West == West::Low) return 16158;
+ else return 16159;
+ else
+ if (Up)
+ if (West == West::None) return 16163;
+ else if (West == West::Low) return 16164;
+ else return 16165;
+ else
+ if (West == West::None) return 16169;
+ else if (West == West::Low) return 16170;
+ else return 16171;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16175;
+ else if (West == West::Low) return 16176;
+ else return 16177;
+ else
+ if (West == West::None) return 16181;
+ else if (West == West::Low) return 16182;
+ else return 16183;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16187;
+ else if (West == West::Low) return 16188;
+ else return 16189;
+ else
+ if (West == West::None) return 16193;
+ else if (West == West::Low) return 16194;
+ else return 16195;
+ else
+ if (Up)
+ if (West == West::None) return 16199;
+ else if (West == West::Low) return 16200;
+ else return 16201;
+ else
+ if (West == West::None) return 16205;
+ else if (West == West::Low) return 16206;
+ else return 16207;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16211;
+ else if (West == West::Low) return 16212;
+ else return 16213;
+ else
+ if (West == West::None) return 16217;
+ else if (West == West::Low) return 16218;
+ else return 16219;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16223;
+ else if (West == West::Low) return 16224;
+ else return 16225;
+ else
+ if (West == West::None) return 16229;
+ else if (West == West::Low) return 16230;
+ else return 16231;
+ else
+ if (Up)
+ if (West == West::None) return 16235;
+ else if (West == West::Low) return 16236;
+ else return 16237;
+ else
+ if (West == West::None) return 16241;
+ else if (West == West::Low) return 16242;
+ else return 16243;
+ }
+ BlockState BlackstoneWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace BlastFurnace
+ {
+ constexpr BlockState BlastFurnace(const eBlockFace Facing, const bool Lit)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Lit) return 14811;
+ else return 14812;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Lit) return 14813;
+ else return 14814;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Lit) return 14815;
+ else return 14816;
+ else
+ if (Lit) return 14817;
+ else return 14818;
+ }
+ BlockState BlastFurnace();
+ eBlockFace Facing(BlockState Block);
+ bool Lit(BlockState Block);
+ }
+ namespace BlueBanner
+ {
+ constexpr BlockState BlueBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 8073;
+ else if (Rotation == 1) return 8074;
+ else if (Rotation == 2) return 8075;
+ else if (Rotation == 3) return 8076;
+ else if (Rotation == 4) return 8077;
+ else if (Rotation == 5) return 8078;
+ else if (Rotation == 6) return 8079;
+ else if (Rotation == 7) return 8080;
+ else if (Rotation == 8) return 8081;
+ else if (Rotation == 9) return 8082;
+ else if (Rotation == 10) return 8083;
+ else if (Rotation == 11) return 8084;
+ else if (Rotation == 12) return 8085;
+ else if (Rotation == 13) return 8086;
+ else if (Rotation == 14) return 8087;
+ else return 8088;
+ }
+ BlockState BlueBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace BlueBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState BlueBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1225;
+ else return 1226;
+ else
+ if (Part == Part::Head) return 1227;
+ else return 1228;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1229;
+ else return 1230;
+ else
+ if (Part == Part::Head) return 1231;
+ else return 1232;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1233;
+ else return 1234;
+ else
+ if (Part == Part::Head) return 1235;
+ else return 1236;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1237;
+ else return 1238;
+ else
+ if (Part == Part::Head) return 1239;
+ else return 1240;
+ }
+ BlockState BlueBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace BlueCarpet
+ {
+ constexpr BlockState BlueCarpet()
+ {
+ return 7877;
+ }
+ }
+ namespace BlueConcrete
+ {
+ constexpr BlockState BlueConcrete()
+ {
+ return 9449;
+ }
+ }
+ namespace BlueConcretePowder
+ {
+ constexpr BlockState BlueConcretePowder()
+ {
+ return 9465;
+ }
+ }
+ namespace BlueGlazedTerracotta
+ {
+ constexpr BlockState BlueGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9418;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9419;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9420;
+ else return 9421;
+ }
+ BlockState BlueGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace BlueIce
+ {
+ constexpr BlockState BlueIce()
+ {
+ return 9648;
+ }
+ }
+ namespace BlueOrchid
+ {
+ constexpr BlockState BlueOrchid()
+ {
+ return 1414;
+ }
+ }
+ namespace BlueShulkerBox
+ {
+ constexpr BlockState BlueShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9344;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9345;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9346;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9347;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9348;
+ else return 9349;
+ }
+ BlockState BlueShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace BlueStainedGlass
+ {
+ constexpr BlockState BlueStainedGlass()
+ {
+ return 4106;
+ }
+ }
+ namespace BlueStainedGlassPane
+ {
+ constexpr BlockState BlueStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 7217;
+ else return 7218;
+ else
+ if (West) return 7221;
+ else return 7222;
+ else
+ if (South)
+ if (West) return 7225;
+ else return 7226;
+ else
+ if (West) return 7229;
+ else return 7230;
+ else
+ if (North)
+ if (South)
+ if (West) return 7233;
+ else return 7234;
+ else
+ if (West) return 7237;
+ else return 7238;
+ else
+ if (South)
+ if (West) return 7241;
+ else return 7242;
+ else
+ if (West) return 7245;
+ else return 7246;
+ }
+ BlockState BlueStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace BlueTerracotta
+ {
+ constexpr BlockState BlueTerracotta()
+ {
+ return 6858;
+ }
+ }
+ namespace BlueWallBanner
+ {
+ constexpr BlockState BlueWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8197;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8198;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8199;
+ else return 8200;
+ }
+ BlockState BlueWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace BlueWool
+ {
+ constexpr BlockState BlueWool()
+ {
+ return 1395;
+ }
+ }
+ namespace BoneBlock
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState BoneBlock(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 9256;
+ else if (Axis == Axis::Y) return 9257;
+ else return 9258;
+ }
+ BlockState BoneBlock();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace Bookshelf
+ {
+ constexpr BlockState Bookshelf()
+ {
+ return 1432;
+ }
+ }
+ namespace BrainCoral
+ {
+ constexpr BlockState BrainCoral()
+ {
+ return 9533;
+ }
+ }
+ namespace BrainCoralBlock
+ {
+ constexpr BlockState BrainCoralBlock()
+ {
+ return 9516;
+ }
+ }
+ namespace BrainCoralFan
+ {
+ constexpr BlockState BrainCoralFan()
+ {
+ return 9553;
+ }
+ }
+ namespace BrainCoralWallFan
+ {
+ constexpr BlockState BrainCoralWallFan(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9609;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9611;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9613;
+ else return 9615;
+ }
+ BlockState BrainCoralWallFan();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace BrewingStand
+ {
+ constexpr BlockState BrewingStand(const bool HasBottle_0, const bool HasBottle_1, const bool HasBottle_2)
+ {
+ if (HasBottle_0)
+ if (HasBottle_1)
+ if (HasBottle_2) return 5133;
+ else return 5134;
+ else
+ if (HasBottle_2) return 5135;
+ else return 5136;
+ else
+ if (HasBottle_1)
+ if (HasBottle_2) return 5137;
+ else return 5138;
+ else
+ if (HasBottle_2) return 5139;
+ else return 5140;
+ }
+ BlockState BrewingStand();
+ bool HasBottle_0(BlockState Block);
+ bool HasBottle_1(BlockState Block);
+ bool HasBottle_2(BlockState Block);
+ }
+ namespace BrickSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState BrickSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8373;
+ else if (Type == Type::Bottom) return 8375;
+ else return 8377;
+ }
+ BlockState BrickSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace BrickStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState BrickStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 4853;
+ else if (Shape == Shape::InnerLeft) return 4855;
+ else if (Shape == Shape::InnerRight) return 4857;
+ else if (Shape == Shape::OuterLeft) return 4859;
+ else return 4861;
+ else
+ if (Shape == Shape::Straight) return 4863;
+ else if (Shape == Shape::InnerLeft) return 4865;
+ else if (Shape == Shape::InnerRight) return 4867;
+ else if (Shape == Shape::OuterLeft) return 4869;
+ else return 4871;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 4873;
+ else if (Shape == Shape::InnerLeft) return 4875;
+ else if (Shape == Shape::InnerRight) return 4877;
+ else if (Shape == Shape::OuterLeft) return 4879;
+ else return 4881;
+ else
+ if (Shape == Shape::Straight) return 4883;
+ else if (Shape == Shape::InnerLeft) return 4885;
+ else if (Shape == Shape::InnerRight) return 4887;
+ else if (Shape == Shape::OuterLeft) return 4889;
+ else return 4891;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 4893;
+ else if (Shape == Shape::InnerLeft) return 4895;
+ else if (Shape == Shape::InnerRight) return 4897;
+ else if (Shape == Shape::OuterLeft) return 4899;
+ else return 4901;
+ else
+ if (Shape == Shape::Straight) return 4903;
+ else if (Shape == Shape::InnerLeft) return 4905;
+ else if (Shape == Shape::InnerRight) return 4907;
+ else if (Shape == Shape::OuterLeft) return 4909;
+ else return 4911;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 4913;
+ else if (Shape == Shape::InnerLeft) return 4915;
+ else if (Shape == Shape::InnerRight) return 4917;
+ else if (Shape == Shape::OuterLeft) return 4919;
+ else return 4921;
+ else
+ if (Shape == Shape::Straight) return 4923;
+ else if (Shape == Shape::InnerLeft) return 4925;
+ else if (Shape == Shape::InnerRight) return 4927;
+ else if (Shape == Shape::OuterLeft) return 4929;
+ else return 4931;
+ }
+ BlockState BrickStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace BrickWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState BrickWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 10870;
+ else if (West == West::Low) return 10871;
+ else return 10872;
+ else
+ if (West == West::None) return 10876;
+ else if (West == West::Low) return 10877;
+ else return 10878;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 10882;
+ else if (West == West::Low) return 10883;
+ else return 10884;
+ else
+ if (West == West::None) return 10888;
+ else if (West == West::Low) return 10889;
+ else return 10890;
+ else
+ if (Up)
+ if (West == West::None) return 10894;
+ else if (West == West::Low) return 10895;
+ else return 10896;
+ else
+ if (West == West::None) return 10900;
+ else if (West == West::Low) return 10901;
+ else return 10902;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 10906;
+ else if (West == West::Low) return 10907;
+ else return 10908;
+ else
+ if (West == West::None) return 10912;
+ else if (West == West::Low) return 10913;
+ else return 10914;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 10918;
+ else if (West == West::Low) return 10919;
+ else return 10920;
+ else
+ if (West == West::None) return 10924;
+ else if (West == West::Low) return 10925;
+ else return 10926;
+ else
+ if (Up)
+ if (West == West::None) return 10930;
+ else if (West == West::Low) return 10931;
+ else return 10932;
+ else
+ if (West == West::None) return 10936;
+ else if (West == West::Low) return 10937;
+ else return 10938;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 10942;
+ else if (West == West::Low) return 10943;
+ else return 10944;
+ else
+ if (West == West::None) return 10948;
+ else if (West == West::Low) return 10949;
+ else return 10950;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 10954;
+ else if (West == West::Low) return 10955;
+ else return 10956;
+ else
+ if (West == West::None) return 10960;
+ else if (West == West::Low) return 10961;
+ else return 10962;
+ else
+ if (Up)
+ if (West == West::None) return 10966;
+ else if (West == West::Low) return 10967;
+ else return 10968;
+ else
+ if (West == West::None) return 10972;
+ else if (West == West::Low) return 10973;
+ else return 10974;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 10978;
+ else if (West == West::Low) return 10979;
+ else return 10980;
+ else
+ if (West == West::None) return 10984;
+ else if (West == West::Low) return 10985;
+ else return 10986;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 10990;
+ else if (West == West::Low) return 10991;
+ else return 10992;
+ else
+ if (West == West::None) return 10996;
+ else if (West == West::Low) return 10997;
+ else return 10998;
+ else
+ if (Up)
+ if (West == West::None) return 11002;
+ else if (West == West::Low) return 11003;
+ else return 11004;
+ else
+ if (West == West::None) return 11008;
+ else if (West == West::Low) return 11009;
+ else return 11010;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11014;
+ else if (West == West::Low) return 11015;
+ else return 11016;
+ else
+ if (West == West::None) return 11020;
+ else if (West == West::Low) return 11021;
+ else return 11022;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11026;
+ else if (West == West::Low) return 11027;
+ else return 11028;
+ else
+ if (West == West::None) return 11032;
+ else if (West == West::Low) return 11033;
+ else return 11034;
+ else
+ if (Up)
+ if (West == West::None) return 11038;
+ else if (West == West::Low) return 11039;
+ else return 11040;
+ else
+ if (West == West::None) return 11044;
+ else if (West == West::Low) return 11045;
+ else return 11046;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11050;
+ else if (West == West::Low) return 11051;
+ else return 11052;
+ else
+ if (West == West::None) return 11056;
+ else if (West == West::Low) return 11057;
+ else return 11058;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11062;
+ else if (West == West::Low) return 11063;
+ else return 11064;
+ else
+ if (West == West::None) return 11068;
+ else if (West == West::Low) return 11069;
+ else return 11070;
+ else
+ if (Up)
+ if (West == West::None) return 11074;
+ else if (West == West::Low) return 11075;
+ else return 11076;
+ else
+ if (West == West::None) return 11080;
+ else if (West == West::Low) return 11081;
+ else return 11082;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11086;
+ else if (West == West::Low) return 11087;
+ else return 11088;
+ else
+ if (West == West::None) return 11092;
+ else if (West == West::Low) return 11093;
+ else return 11094;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11098;
+ else if (West == West::Low) return 11099;
+ else return 11100;
+ else
+ if (West == West::None) return 11104;
+ else if (West == West::Low) return 11105;
+ else return 11106;
+ else
+ if (Up)
+ if (West == West::None) return 11110;
+ else if (West == West::Low) return 11111;
+ else return 11112;
+ else
+ if (West == West::None) return 11116;
+ else if (West == West::Low) return 11117;
+ else return 11118;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11122;
+ else if (West == West::Low) return 11123;
+ else return 11124;
+ else
+ if (West == West::None) return 11128;
+ else if (West == West::Low) return 11129;
+ else return 11130;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11134;
+ else if (West == West::Low) return 11135;
+ else return 11136;
+ else
+ if (West == West::None) return 11140;
+ else if (West == West::Low) return 11141;
+ else return 11142;
+ else
+ if (Up)
+ if (West == West::None) return 11146;
+ else if (West == West::Low) return 11147;
+ else return 11148;
+ else
+ if (West == West::None) return 11152;
+ else if (West == West::Low) return 11153;
+ else return 11154;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11158;
+ else if (West == West::Low) return 11159;
+ else return 11160;
+ else
+ if (West == West::None) return 11164;
+ else if (West == West::Low) return 11165;
+ else return 11166;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11170;
+ else if (West == West::Low) return 11171;
+ else return 11172;
+ else
+ if (West == West::None) return 11176;
+ else if (West == West::Low) return 11177;
+ else return 11178;
+ else
+ if (Up)
+ if (West == West::None) return 11182;
+ else if (West == West::Low) return 11183;
+ else return 11184;
+ else
+ if (West == West::None) return 11188;
+ else if (West == West::Low) return 11189;
+ else return 11190;
+ }
+ BlockState BrickWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace Bricks
+ {
+ constexpr BlockState Bricks()
+ {
+ return 1429;
+ }
+ }
+ namespace BrownBanner
+ {
+ constexpr BlockState BrownBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 8089;
+ else if (Rotation == 1) return 8090;
+ else if (Rotation == 2) return 8091;
+ else if (Rotation == 3) return 8092;
+ else if (Rotation == 4) return 8093;
+ else if (Rotation == 5) return 8094;
+ else if (Rotation == 6) return 8095;
+ else if (Rotation == 7) return 8096;
+ else if (Rotation == 8) return 8097;
+ else if (Rotation == 9) return 8098;
+ else if (Rotation == 10) return 8099;
+ else if (Rotation == 11) return 8100;
+ else if (Rotation == 12) return 8101;
+ else if (Rotation == 13) return 8102;
+ else if (Rotation == 14) return 8103;
+ else return 8104;
+ }
+ BlockState BrownBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace BrownBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState BrownBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1241;
+ else return 1242;
+ else
+ if (Part == Part::Head) return 1243;
+ else return 1244;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1245;
+ else return 1246;
+ else
+ if (Part == Part::Head) return 1247;
+ else return 1248;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1249;
+ else return 1250;
+ else
+ if (Part == Part::Head) return 1251;
+ else return 1252;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1253;
+ else return 1254;
+ else
+ if (Part == Part::Head) return 1255;
+ else return 1256;
+ }
+ BlockState BrownBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace BrownCarpet
+ {
+ constexpr BlockState BrownCarpet()
+ {
+ return 7878;
+ }
+ }
+ namespace BrownConcrete
+ {
+ constexpr BlockState BrownConcrete()
+ {
+ return 9450;
+ }
+ }
+ namespace BrownConcretePowder
+ {
+ constexpr BlockState BrownConcretePowder()
+ {
+ return 9466;
+ }
+ }
+ namespace BrownGlazedTerracotta
+ {
+ constexpr BlockState BrownGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9422;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9423;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9424;
+ else return 9425;
+ }
+ BlockState BrownGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace BrownMushroom
+ {
+ constexpr BlockState BrownMushroom()
+ {
+ return 1425;
+ }
+ }
+ namespace BrownMushroomBlock
+ {
+ constexpr BlockState BrownMushroomBlock(const bool Down, const bool East, const bool North, const bool South, const bool Up, const bool West)
+ {
+ if (Down)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4505;
+ else return 4506;
+ else
+ if (West) return 4507;
+ else return 4508;
+ else
+ if (Up)
+ if (West) return 4509;
+ else return 4510;
+ else
+ if (West) return 4511;
+ else return 4512;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4513;
+ else return 4514;
+ else
+ if (West) return 4515;
+ else return 4516;
+ else
+ if (Up)
+ if (West) return 4517;
+ else return 4518;
+ else
+ if (West) return 4519;
+ else return 4520;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4521;
+ else return 4522;
+ else
+ if (West) return 4523;
+ else return 4524;
+ else
+ if (Up)
+ if (West) return 4525;
+ else return 4526;
+ else
+ if (West) return 4527;
+ else return 4528;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4529;
+ else return 4530;
+ else
+ if (West) return 4531;
+ else return 4532;
+ else
+ if (Up)
+ if (West) return 4533;
+ else return 4534;
+ else
+ if (West) return 4535;
+ else return 4536;
+ else
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4537;
+ else return 4538;
+ else
+ if (West) return 4539;
+ else return 4540;
+ else
+ if (Up)
+ if (West) return 4541;
+ else return 4542;
+ else
+ if (West) return 4543;
+ else return 4544;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4545;
+ else return 4546;
+ else
+ if (West) return 4547;
+ else return 4548;
+ else
+ if (Up)
+ if (West) return 4549;
+ else return 4550;
+ else
+ if (West) return 4551;
+ else return 4552;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4553;
+ else return 4554;
+ else
+ if (West) return 4555;
+ else return 4556;
+ else
+ if (Up)
+ if (West) return 4557;
+ else return 4558;
+ else
+ if (West) return 4559;
+ else return 4560;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4561;
+ else return 4562;
+ else
+ if (West) return 4563;
+ else return 4564;
+ else
+ if (Up)
+ if (West) return 4565;
+ else return 4566;
+ else
+ if (West) return 4567;
+ else return 4568;
+ }
+ BlockState BrownMushroomBlock();
+ bool Down(BlockState Block);
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool Up(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace BrownShulkerBox
+ {
+ constexpr BlockState BrownShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9350;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9351;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9352;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9353;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9354;
+ else return 9355;
+ }
+ BlockState BrownShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace BrownStainedGlass
+ {
+ constexpr BlockState BrownStainedGlass()
+ {
+ return 4107;
+ }
+ }
+ namespace BrownStainedGlassPane
+ {
+ constexpr BlockState BrownStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 7249;
+ else return 7250;
+ else
+ if (West) return 7253;
+ else return 7254;
+ else
+ if (South)
+ if (West) return 7257;
+ else return 7258;
+ else
+ if (West) return 7261;
+ else return 7262;
+ else
+ if (North)
+ if (South)
+ if (West) return 7265;
+ else return 7266;
+ else
+ if (West) return 7269;
+ else return 7270;
+ else
+ if (South)
+ if (West) return 7273;
+ else return 7274;
+ else
+ if (West) return 7277;
+ else return 7278;
+ }
+ BlockState BrownStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace BrownTerracotta
+ {
+ constexpr BlockState BrownTerracotta()
+ {
+ return 6859;
+ }
+ }
+ namespace BrownWallBanner
+ {
+ constexpr BlockState BrownWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8201;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8202;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8203;
+ else return 8204;
+ }
+ BlockState BrownWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace BrownWool
+ {
+ constexpr BlockState BrownWool()
+ {
+ return 1396;
+ }
+ }
+ namespace BubbleColumn
+ {
+ constexpr BlockState BubbleColumn(const bool Drag)
+ {
+ if (Drag) return 9667;
+ else return 9668;
+ }
+ BlockState BubbleColumn();
+ bool Drag(BlockState Block);
+ }
+ namespace BubbleCoral
+ {
+ constexpr BlockState BubbleCoral()
+ {
+ return 9535;
+ }
+ }
+ namespace BubbleCoralBlock
+ {
+ constexpr BlockState BubbleCoralBlock()
+ {
+ return 9517;
+ }
+ }
+ namespace BubbleCoralFan
+ {
+ constexpr BlockState BubbleCoralFan()
+ {
+ return 9555;
+ }
+ }
+ namespace BubbleCoralWallFan
+ {
+ constexpr BlockState BubbleCoralWallFan(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9617;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9619;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9621;
+ else return 9623;
+ }
+ BlockState BubbleCoralWallFan();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace Cactus
+ {
+ constexpr BlockState Cactus(const unsigned char Age)
+ {
+ if (Age == 0) return 3931;
+ else if (Age == 1) return 3932;
+ else if (Age == 2) return 3933;
+ else if (Age == 3) return 3934;
+ else if (Age == 4) return 3935;
+ else if (Age == 5) return 3936;
+ else if (Age == 6) return 3937;
+ else if (Age == 7) return 3938;
+ else if (Age == 8) return 3939;
+ else if (Age == 9) return 3940;
+ else if (Age == 10) return 3941;
+ else if (Age == 11) return 3942;
+ else if (Age == 12) return 3943;
+ else if (Age == 13) return 3944;
+ else if (Age == 14) return 3945;
+ else return 3946;
+ }
+ BlockState Cactus();
+ unsigned char Age(BlockState Block);
+ }
+ namespace Cake
+ {
+ constexpr BlockState Cake(const unsigned char Bites)
+ {
+ if (Bites == 0) return 4024;
+ else if (Bites == 1) return 4025;
+ else if (Bites == 2) return 4026;
+ else if (Bites == 3) return 4027;
+ else if (Bites == 4) return 4028;
+ else if (Bites == 5) return 4029;
+ else return 4030;
+ }
+ BlockState Cake();
+ unsigned char Bites(BlockState Block);
+ }
+ namespace Campfire
+ {
+ constexpr BlockState Campfire(const eBlockFace Facing, const bool Lit, const bool SignalFire)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Lit)
+ if (SignalFire) return 14891;
+ else return 14893;
+ else
+ if (SignalFire) return 14895;
+ else return 14897;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Lit)
+ if (SignalFire) return 14899;
+ else return 14901;
+ else
+ if (SignalFire) return 14903;
+ else return 14905;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Lit)
+ if (SignalFire) return 14907;
+ else return 14909;
+ else
+ if (SignalFire) return 14911;
+ else return 14913;
+ else
+ if (Lit)
+ if (SignalFire) return 14915;
+ else return 14917;
+ else
+ if (SignalFire) return 14919;
+ else return 14921;
+ }
+ BlockState Campfire();
+ eBlockFace Facing(BlockState Block);
+ bool Lit(BlockState Block);
+ bool SignalFire(BlockState Block);
+ }
+ namespace Carrots
+ {
+ constexpr BlockState Carrots(const unsigned char Age)
+ {
+ if (Age == 0) return 6330;
+ else if (Age == 1) return 6331;
+ else if (Age == 2) return 6332;
+ else if (Age == 3) return 6333;
+ else if (Age == 4) return 6334;
+ else if (Age == 5) return 6335;
+ else if (Age == 6) return 6336;
+ else return 6337;
+ }
+ BlockState Carrots();
+ unsigned char Age(BlockState Block);
+ }
+ namespace CartographyTable
+ {
+ constexpr BlockState CartographyTable()
+ {
+ return 14819;
+ }
+ }
+ namespace CarvedPumpkin
+ {
+ constexpr BlockState CarvedPumpkin(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4016;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4017;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 4018;
+ else return 4019;
+ }
+ BlockState CarvedPumpkin();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace Cauldron
+ {
+ constexpr BlockState Cauldron(const unsigned char Level)
+ {
+ if (Level == 0) return 5141;
+ else if (Level == 1) return 5142;
+ else if (Level == 2) return 5143;
+ else return 5144;
+ }
+ BlockState Cauldron();
+ unsigned char Level(BlockState Block);
+ }
+ namespace CaveAir
+ {
+ constexpr BlockState CaveAir()
+ {
+ return 9666;
+ }
+ }
+ namespace Chain
+ {
+ constexpr BlockState Chain()
+ {
+ return 4730;
+ }
+ }
+ namespace ChainCommandBlock
+ {
+ constexpr BlockState ChainCommandBlock(const bool Conditional, const eBlockFace Facing)
+ {
+ if (Conditional)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9237;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9238;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9239;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9240;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9241;
+ else return 9242;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9243;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9244;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9245;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9246;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9247;
+ else return 9248;
+ }
+ BlockState ChainCommandBlock();
+ bool Conditional(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace Chest
+ {
+ enum class Type
+ {
+ Single,
+ Left,
+ Right
+ };
+ constexpr BlockState Chest(const eBlockFace Facing, const enum Type Type)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Type == Type::Single) return 2035;
+ else if (Type == Type::Left) return 2037;
+ else return 2039;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Type == Type::Single) return 2041;
+ else if (Type == Type::Left) return 2043;
+ else return 2045;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Type == Type::Single) return 2047;
+ else if (Type == Type::Left) return 2049;
+ else return 2051;
+ else
+ if (Type == Type::Single) return 2053;
+ else if (Type == Type::Left) return 2055;
+ else return 2057;
+ }
+ BlockState Chest();
+ eBlockFace Facing(BlockState Block);
+ enum Type Type(BlockState Block);
+ }
+ namespace ChippedAnvil
+ {
+ constexpr BlockState ChippedAnvil(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6614;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6615;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 6616;
+ else return 6617;
+ }
+ BlockState ChippedAnvil();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace ChiseledNetherBricks
+ {
+ constexpr BlockState ChiseledNetherBricks()
+ {
+ return 17101;
+ }
+ }
+ namespace ChiseledPolishedBlackstone
+ {
+ constexpr BlockState ChiseledPolishedBlackstone()
+ {
+ return 16253;
+ }
+ }
+ namespace ChiseledQuartzBlock
+ {
+ constexpr BlockState ChiseledQuartzBlock()
+ {
+ return 6739;
+ }
+ }
+ namespace ChiseledRedSandstone
+ {
+ constexpr BlockState ChiseledRedSandstone()
+ {
+ return 8218;
+ }
+ }
+ namespace ChiseledSandstone
+ {
+ constexpr BlockState ChiseledSandstone()
+ {
+ return 247;
+ }
+ }
+ namespace ChiseledStoneBricks
+ {
+ constexpr BlockState ChiseledStoneBricks()
+ {
+ return 4498;
+ }
+ }
+ namespace ChorusFlower
+ {
+ constexpr BlockState ChorusFlower(const unsigned char Age)
+ {
+ if (Age == 0) return 9128;
+ else if (Age == 1) return 9129;
+ else if (Age == 2) return 9130;
+ else if (Age == 3) return 9131;
+ else if (Age == 4) return 9132;
+ else return 9133;
+ }
+ BlockState ChorusFlower();
+ unsigned char Age(BlockState Block);
+ }
+ namespace ChorusPlant
+ {
+ constexpr BlockState ChorusPlant(const bool Down, const bool East, const bool North, const bool South, const bool Up, const bool West)
+ {
+ if (Down)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 9064;
+ else return 9065;
+ else
+ if (West) return 9066;
+ else return 9067;
+ else
+ if (Up)
+ if (West) return 9068;
+ else return 9069;
+ else
+ if (West) return 9070;
+ else return 9071;
+ else
+ if (South)
+ if (Up)
+ if (West) return 9072;
+ else return 9073;
+ else
+ if (West) return 9074;
+ else return 9075;
+ else
+ if (Up)
+ if (West) return 9076;
+ else return 9077;
+ else
+ if (West) return 9078;
+ else return 9079;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 9080;
+ else return 9081;
+ else
+ if (West) return 9082;
+ else return 9083;
+ else
+ if (Up)
+ if (West) return 9084;
+ else return 9085;
+ else
+ if (West) return 9086;
+ else return 9087;
+ else
+ if (South)
+ if (Up)
+ if (West) return 9088;
+ else return 9089;
+ else
+ if (West) return 9090;
+ else return 9091;
+ else
+ if (Up)
+ if (West) return 9092;
+ else return 9093;
+ else
+ if (West) return 9094;
+ else return 9095;
+ else
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 9096;
+ else return 9097;
+ else
+ if (West) return 9098;
+ else return 9099;
+ else
+ if (Up)
+ if (West) return 9100;
+ else return 9101;
+ else
+ if (West) return 9102;
+ else return 9103;
+ else
+ if (South)
+ if (Up)
+ if (West) return 9104;
+ else return 9105;
+ else
+ if (West) return 9106;
+ else return 9107;
+ else
+ if (Up)
+ if (West) return 9108;
+ else return 9109;
+ else
+ if (West) return 9110;
+ else return 9111;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 9112;
+ else return 9113;
+ else
+ if (West) return 9114;
+ else return 9115;
+ else
+ if (Up)
+ if (West) return 9116;
+ else return 9117;
+ else
+ if (West) return 9118;
+ else return 9119;
+ else
+ if (South)
+ if (Up)
+ if (West) return 9120;
+ else return 9121;
+ else
+ if (West) return 9122;
+ else return 9123;
+ else
+ if (Up)
+ if (West) return 9124;
+ else return 9125;
+ else
+ if (West) return 9126;
+ else return 9127;
+ }
+ BlockState ChorusPlant();
+ bool Down(BlockState Block);
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool Up(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace Clay
+ {
+ constexpr BlockState Clay()
+ {
+ return 3947;
+ }
+ }
+ namespace CoalBlock
+ {
+ constexpr BlockState CoalBlock()
+ {
+ return 7883;
+ }
+ }
+ namespace CoalOre
+ {
+ constexpr BlockState CoalOre()
+ {
+ return 71;
+ }
+ }
+ namespace CoarseDirt
+ {
+ constexpr BlockState CoarseDirt()
+ {
+ return 11;
+ }
+ }
+ namespace Cobblestone
+ {
+ constexpr BlockState Cobblestone()
+ {
+ return 14;
+ }
+ }
+ namespace CobblestoneSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState CobblestoneSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8367;
+ else if (Type == Type::Bottom) return 8369;
+ else return 8371;
+ }
+ BlockState CobblestoneSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace CobblestoneStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState CobblestoneStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 3656;
+ else if (Shape == Shape::InnerLeft) return 3658;
+ else if (Shape == Shape::InnerRight) return 3660;
+ else if (Shape == Shape::OuterLeft) return 3662;
+ else return 3664;
+ else
+ if (Shape == Shape::Straight) return 3666;
+ else if (Shape == Shape::InnerLeft) return 3668;
+ else if (Shape == Shape::InnerRight) return 3670;
+ else if (Shape == Shape::OuterLeft) return 3672;
+ else return 3674;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 3676;
+ else if (Shape == Shape::InnerLeft) return 3678;
+ else if (Shape == Shape::InnerRight) return 3680;
+ else if (Shape == Shape::OuterLeft) return 3682;
+ else return 3684;
+ else
+ if (Shape == Shape::Straight) return 3686;
+ else if (Shape == Shape::InnerLeft) return 3688;
+ else if (Shape == Shape::InnerRight) return 3690;
+ else if (Shape == Shape::OuterLeft) return 3692;
+ else return 3694;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 3696;
+ else if (Shape == Shape::InnerLeft) return 3698;
+ else if (Shape == Shape::InnerRight) return 3700;
+ else if (Shape == Shape::OuterLeft) return 3702;
+ else return 3704;
+ else
+ if (Shape == Shape::Straight) return 3706;
+ else if (Shape == Shape::InnerLeft) return 3708;
+ else if (Shape == Shape::InnerRight) return 3710;
+ else if (Shape == Shape::OuterLeft) return 3712;
+ else return 3714;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 3716;
+ else if (Shape == Shape::InnerLeft) return 3718;
+ else if (Shape == Shape::InnerRight) return 3720;
+ else if (Shape == Shape::OuterLeft) return 3722;
+ else return 3724;
+ else
+ if (Shape == Shape::Straight) return 3726;
+ else if (Shape == Shape::InnerLeft) return 3728;
+ else if (Shape == Shape::InnerRight) return 3730;
+ else if (Shape == Shape::OuterLeft) return 3732;
+ else return 3734;
+ }
+ BlockState CobblestoneStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace CobblestoneWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState CobblestoneWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 5660;
+ else if (West == West::Low) return 5661;
+ else return 5662;
+ else
+ if (West == West::None) return 5666;
+ else if (West == West::Low) return 5667;
+ else return 5668;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 5672;
+ else if (West == West::Low) return 5673;
+ else return 5674;
+ else
+ if (West == West::None) return 5678;
+ else if (West == West::Low) return 5679;
+ else return 5680;
+ else
+ if (Up)
+ if (West == West::None) return 5684;
+ else if (West == West::Low) return 5685;
+ else return 5686;
+ else
+ if (West == West::None) return 5690;
+ else if (West == West::Low) return 5691;
+ else return 5692;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 5696;
+ else if (West == West::Low) return 5697;
+ else return 5698;
+ else
+ if (West == West::None) return 5702;
+ else if (West == West::Low) return 5703;
+ else return 5704;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 5708;
+ else if (West == West::Low) return 5709;
+ else return 5710;
+ else
+ if (West == West::None) return 5714;
+ else if (West == West::Low) return 5715;
+ else return 5716;
+ else
+ if (Up)
+ if (West == West::None) return 5720;
+ else if (West == West::Low) return 5721;
+ else return 5722;
+ else
+ if (West == West::None) return 5726;
+ else if (West == West::Low) return 5727;
+ else return 5728;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 5732;
+ else if (West == West::Low) return 5733;
+ else return 5734;
+ else
+ if (West == West::None) return 5738;
+ else if (West == West::Low) return 5739;
+ else return 5740;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 5744;
+ else if (West == West::Low) return 5745;
+ else return 5746;
+ else
+ if (West == West::None) return 5750;
+ else if (West == West::Low) return 5751;
+ else return 5752;
+ else
+ if (Up)
+ if (West == West::None) return 5756;
+ else if (West == West::Low) return 5757;
+ else return 5758;
+ else
+ if (West == West::None) return 5762;
+ else if (West == West::Low) return 5763;
+ else return 5764;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 5768;
+ else if (West == West::Low) return 5769;
+ else return 5770;
+ else
+ if (West == West::None) return 5774;
+ else if (West == West::Low) return 5775;
+ else return 5776;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 5780;
+ else if (West == West::Low) return 5781;
+ else return 5782;
+ else
+ if (West == West::None) return 5786;
+ else if (West == West::Low) return 5787;
+ else return 5788;
+ else
+ if (Up)
+ if (West == West::None) return 5792;
+ else if (West == West::Low) return 5793;
+ else return 5794;
+ else
+ if (West == West::None) return 5798;
+ else if (West == West::Low) return 5799;
+ else return 5800;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 5804;
+ else if (West == West::Low) return 5805;
+ else return 5806;
+ else
+ if (West == West::None) return 5810;
+ else if (West == West::Low) return 5811;
+ else return 5812;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 5816;
+ else if (West == West::Low) return 5817;
+ else return 5818;
+ else
+ if (West == West::None) return 5822;
+ else if (West == West::Low) return 5823;
+ else return 5824;
+ else
+ if (Up)
+ if (West == West::None) return 5828;
+ else if (West == West::Low) return 5829;
+ else return 5830;
+ else
+ if (West == West::None) return 5834;
+ else if (West == West::Low) return 5835;
+ else return 5836;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 5840;
+ else if (West == West::Low) return 5841;
+ else return 5842;
+ else
+ if (West == West::None) return 5846;
+ else if (West == West::Low) return 5847;
+ else return 5848;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 5852;
+ else if (West == West::Low) return 5853;
+ else return 5854;
+ else
+ if (West == West::None) return 5858;
+ else if (West == West::Low) return 5859;
+ else return 5860;
+ else
+ if (Up)
+ if (West == West::None) return 5864;
+ else if (West == West::Low) return 5865;
+ else return 5866;
+ else
+ if (West == West::None) return 5870;
+ else if (West == West::Low) return 5871;
+ else return 5872;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 5876;
+ else if (West == West::Low) return 5877;
+ else return 5878;
+ else
+ if (West == West::None) return 5882;
+ else if (West == West::Low) return 5883;
+ else return 5884;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 5888;
+ else if (West == West::Low) return 5889;
+ else return 5890;
+ else
+ if (West == West::None) return 5894;
+ else if (West == West::Low) return 5895;
+ else return 5896;
+ else
+ if (Up)
+ if (West == West::None) return 5900;
+ else if (West == West::Low) return 5901;
+ else return 5902;
+ else
+ if (West == West::None) return 5906;
+ else if (West == West::Low) return 5907;
+ else return 5908;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 5912;
+ else if (West == West::Low) return 5913;
+ else return 5914;
+ else
+ if (West == West::None) return 5918;
+ else if (West == West::Low) return 5919;
+ else return 5920;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 5924;
+ else if (West == West::Low) return 5925;
+ else return 5926;
+ else
+ if (West == West::None) return 5930;
+ else if (West == West::Low) return 5931;
+ else return 5932;
+ else
+ if (Up)
+ if (West == West::None) return 5936;
+ else if (West == West::Low) return 5937;
+ else return 5938;
+ else
+ if (West == West::None) return 5942;
+ else if (West == West::Low) return 5943;
+ else return 5944;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 5948;
+ else if (West == West::Low) return 5949;
+ else return 5950;
+ else
+ if (West == West::None) return 5954;
+ else if (West == West::Low) return 5955;
+ else return 5956;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 5960;
+ else if (West == West::Low) return 5961;
+ else return 5962;
+ else
+ if (West == West::None) return 5966;
+ else if (West == West::Low) return 5967;
+ else return 5968;
+ else
+ if (Up)
+ if (West == West::None) return 5972;
+ else if (West == West::Low) return 5973;
+ else return 5974;
+ else
+ if (West == West::None) return 5978;
+ else if (West == West::Low) return 5979;
+ else return 5980;
+ }
+ BlockState CobblestoneWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace Cobweb
+ {
+ constexpr BlockState Cobweb()
+ {
+ return 1341;
+ }
+ }
+ namespace Cocoa
+ {
+ constexpr BlockState Cocoa(const unsigned char Age, const eBlockFace Facing)
+ {
+ if (Age == 0)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 5158;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 5159;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 5160;
+ else return 5161;
+ else if (Age == 1)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 5162;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 5163;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 5164;
+ else return 5165;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 5166;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 5167;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 5168;
+ else return 5169;
+ }
+ BlockState Cocoa();
+ unsigned char Age(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace CommandBlock
+ {
+ constexpr BlockState CommandBlock(const bool Conditional, const eBlockFace Facing)
+ {
+ if (Conditional)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 5644;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 5645;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 5646;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 5647;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 5648;
+ else return 5649;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 5650;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 5651;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 5652;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 5653;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 5654;
+ else return 5655;
+ }
+ BlockState CommandBlock();
+ bool Conditional(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace Comparator
+ {
+ enum class Mode
+ {
+ Compare,
+ Subtract
+ };
+ constexpr BlockState Comparator(const eBlockFace Facing, const enum Mode Mode, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Mode == Mode::Compare)
+ if (Powered) return 6678;
+ else return 6679;
+ else
+ if (Powered) return 6680;
+ else return 6681;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Mode == Mode::Compare)
+ if (Powered) return 6682;
+ else return 6683;
+ else
+ if (Powered) return 6684;
+ else return 6685;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Mode == Mode::Compare)
+ if (Powered) return 6686;
+ else return 6687;
+ else
+ if (Powered) return 6688;
+ else return 6689;
+ else
+ if (Mode == Mode::Compare)
+ if (Powered) return 6690;
+ else return 6691;
+ else
+ if (Powered) return 6692;
+ else return 6693;
+ }
+ BlockState Comparator();
+ eBlockFace Facing(BlockState Block);
+ enum Mode Mode(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace Composter
+ {
+ constexpr BlockState Composter(const unsigned char Level)
+ {
+ if (Level == 0) return 15751;
+ else if (Level == 1) return 15752;
+ else if (Level == 2) return 15753;
+ else if (Level == 3) return 15754;
+ else if (Level == 4) return 15755;
+ else if (Level == 5) return 15756;
+ else if (Level == 6) return 15757;
+ else if (Level == 7) return 15758;
+ else return 15759;
+ }
+ BlockState Composter();
+ unsigned char Level(BlockState Block);
+ }
+ namespace Conduit
+ {
+ constexpr BlockState Conduit()
+ {
+ return 9650;
+ }
+ }
+ namespace Cornflower
+ {
+ constexpr BlockState Cornflower()
+ {
+ return 1422;
+ }
+ }
+ namespace CrackedNetherBricks
+ {
+ constexpr BlockState CrackedNetherBricks()
+ {
+ return 17102;
+ }
+ }
+ namespace CrackedPolishedBlackstoneBricks
+ {
+ constexpr BlockState CrackedPolishedBlackstoneBricks()
+ {
+ return 16252;
+ }
+ }
+ namespace CrackedStoneBricks
+ {
+ constexpr BlockState CrackedStoneBricks()
+ {
+ return 4497;
+ }
+ }
+ namespace CraftingTable
+ {
+ constexpr BlockState CraftingTable()
+ {
+ return 3356;
+ }
+ }
+ namespace CreeperHead
+ {
+ constexpr BlockState CreeperHead(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 6570;
+ else if (Rotation == 1) return 6571;
+ else if (Rotation == 2) return 6572;
+ else if (Rotation == 3) return 6573;
+ else if (Rotation == 4) return 6574;
+ else if (Rotation == 5) return 6575;
+ else if (Rotation == 6) return 6576;
+ else if (Rotation == 7) return 6577;
+ else if (Rotation == 8) return 6578;
+ else if (Rotation == 9) return 6579;
+ else if (Rotation == 10) return 6580;
+ else if (Rotation == 11) return 6581;
+ else if (Rotation == 12) return 6582;
+ else if (Rotation == 13) return 6583;
+ else if (Rotation == 14) return 6584;
+ else return 6585;
+ }
+ BlockState CreeperHead();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace CreeperWallHead
+ {
+ constexpr BlockState CreeperWallHead(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6586;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6587;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 6588;
+ else return 6589;
+ }
+ BlockState CreeperWallHead();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace CrimsonButton
+ {
+ enum class Face
+ {
+ Floor,
+ Wall,
+ Ceiling
+ };
+ constexpr BlockState CrimsonButton(const enum Face Face, const eBlockFace Facing, const bool Powered)
+ {
+ if (Face == Face::Floor)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 15479;
+ else return 15480;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 15481;
+ else return 15482;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 15483;
+ else return 15484;
+ else
+ if (Powered) return 15485;
+ else return 15486;
+ else if (Face == Face::Wall)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 15487;
+ else return 15488;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 15489;
+ else return 15490;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 15491;
+ else return 15492;
+ else
+ if (Powered) return 15493;
+ else return 15494;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 15495;
+ else return 15496;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 15497;
+ else return 15498;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 15499;
+ else return 15500;
+ else
+ if (Powered) return 15501;
+ else return 15502;
+ }
+ BlockState CrimsonButton();
+ enum Face Face(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace CrimsonDoor
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ enum class Hinge
+ {
+ Left,
+ Right
+ };
+ constexpr BlockState CrimsonDoor(const eBlockFace Facing, const enum Half Half, const enum Hinge Hinge, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15527;
+ else return 15528;
+ else
+ if (Powered) return 15529;
+ else return 15530;
+ else
+ if (Open)
+ if (Powered) return 15531;
+ else return 15532;
+ else
+ if (Powered) return 15533;
+ else return 15534;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15535;
+ else return 15536;
+ else
+ if (Powered) return 15537;
+ else return 15538;
+ else
+ if (Open)
+ if (Powered) return 15539;
+ else return 15540;
+ else
+ if (Powered) return 15541;
+ else return 15542;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15543;
+ else return 15544;
+ else
+ if (Powered) return 15545;
+ else return 15546;
+ else
+ if (Open)
+ if (Powered) return 15547;
+ else return 15548;
+ else
+ if (Powered) return 15549;
+ else return 15550;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15551;
+ else return 15552;
+ else
+ if (Powered) return 15553;
+ else return 15554;
+ else
+ if (Open)
+ if (Powered) return 15555;
+ else return 15556;
+ else
+ if (Powered) return 15557;
+ else return 15558;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15559;
+ else return 15560;
+ else
+ if (Powered) return 15561;
+ else return 15562;
+ else
+ if (Open)
+ if (Powered) return 15563;
+ else return 15564;
+ else
+ if (Powered) return 15565;
+ else return 15566;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15567;
+ else return 15568;
+ else
+ if (Powered) return 15569;
+ else return 15570;
+ else
+ if (Open)
+ if (Powered) return 15571;
+ else return 15572;
+ else
+ if (Powered) return 15573;
+ else return 15574;
+ else
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15575;
+ else return 15576;
+ else
+ if (Powered) return 15577;
+ else return 15578;
+ else
+ if (Open)
+ if (Powered) return 15579;
+ else return 15580;
+ else
+ if (Powered) return 15581;
+ else return 15582;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15583;
+ else return 15584;
+ else
+ if (Powered) return 15585;
+ else return 15586;
+ else
+ if (Open)
+ if (Powered) return 15587;
+ else return 15588;
+ else
+ if (Powered) return 15589;
+ else return 15590;
+ }
+ BlockState CrimsonDoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Hinge Hinge(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace CrimsonFence
+ {
+ constexpr BlockState CrimsonFence(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 15065;
+ else return 15066;
+ else
+ if (West) return 15069;
+ else return 15070;
+ else
+ if (South)
+ if (West) return 15073;
+ else return 15074;
+ else
+ if (West) return 15077;
+ else return 15078;
+ else
+ if (North)
+ if (South)
+ if (West) return 15081;
+ else return 15082;
+ else
+ if (West) return 15085;
+ else return 15086;
+ else
+ if (South)
+ if (West) return 15089;
+ else return 15090;
+ else
+ if (West) return 15093;
+ else return 15094;
+ }
+ BlockState CrimsonFence();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace CrimsonFenceGate
+ {
+ constexpr BlockState CrimsonFenceGate(const eBlockFace Facing, const bool InWall, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 15255;
+ else return 15256;
+ else
+ if (Powered) return 15257;
+ else return 15258;
+ else
+ if (Open)
+ if (Powered) return 15259;
+ else return 15260;
+ else
+ if (Powered) return 15261;
+ else return 15262;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (InWall)
+ if (Open)
+ if (Powered) return 15263;
+ else return 15264;
+ else
+ if (Powered) return 15265;
+ else return 15266;
+ else
+ if (Open)
+ if (Powered) return 15267;
+ else return 15268;
+ else
+ if (Powered) return 15269;
+ else return 15270;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 15271;
+ else return 15272;
+ else
+ if (Powered) return 15273;
+ else return 15274;
+ else
+ if (Open)
+ if (Powered) return 15275;
+ else return 15276;
+ else
+ if (Powered) return 15277;
+ else return 15278;
+ else
+ if (InWall)
+ if (Open)
+ if (Powered) return 15279;
+ else return 15280;
+ else
+ if (Powered) return 15281;
+ else return 15282;
+ else
+ if (Open)
+ if (Powered) return 15283;
+ else return 15284;
+ else
+ if (Powered) return 15285;
+ else return 15286;
+ }
+ BlockState CrimsonFenceGate();
+ eBlockFace Facing(BlockState Block);
+ bool InWall(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace CrimsonFungus
+ {
+ constexpr BlockState CrimsonFungus()
+ {
+ return 14988;
+ }
+ }
+ namespace CrimsonHyphae
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState CrimsonHyphae(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 14981;
+ else if (Axis == Axis::Y) return 14982;
+ else return 14983;
+ }
+ BlockState CrimsonHyphae();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace CrimsonNylium
+ {
+ constexpr BlockState CrimsonNylium()
+ {
+ return 14987;
+ }
+ }
+ namespace CrimsonPlanks
+ {
+ constexpr BlockState CrimsonPlanks()
+ {
+ return 15045;
+ }
+ }
+ namespace CrimsonPressurePlate
+ {
+ constexpr BlockState CrimsonPressurePlate(const bool Powered)
+ {
+ if (Powered) return 15059;
+ else return 15060;
+ }
+ BlockState CrimsonPressurePlate();
+ bool Powered(BlockState Block);
+ }
+ namespace CrimsonRoots
+ {
+ constexpr BlockState CrimsonRoots()
+ {
+ return 15044;
+ }
+ }
+ namespace CrimsonSign
+ {
+ constexpr BlockState CrimsonSign(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 15656;
+ else if (Rotation == 1) return 15658;
+ else if (Rotation == 2) return 15660;
+ else if (Rotation == 3) return 15662;
+ else if (Rotation == 4) return 15664;
+ else if (Rotation == 5) return 15666;
+ else if (Rotation == 6) return 15668;
+ else if (Rotation == 7) return 15670;
+ else if (Rotation == 8) return 15672;
+ else if (Rotation == 9) return 15674;
+ else if (Rotation == 10) return 15676;
+ else if (Rotation == 11) return 15678;
+ else if (Rotation == 12) return 15680;
+ else if (Rotation == 13) return 15682;
+ else if (Rotation == 14) return 15684;
+ else return 15686;
+ }
+ BlockState CrimsonSign();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace CrimsonSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState CrimsonSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 15048;
+ else if (Type == Type::Bottom) return 15050;
+ else return 15052;
+ }
+ BlockState CrimsonSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace CrimsonStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState CrimsonStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 15320;
+ else if (Shape == Shape::InnerLeft) return 15322;
+ else if (Shape == Shape::InnerRight) return 15324;
+ else if (Shape == Shape::OuterLeft) return 15326;
+ else return 15328;
+ else
+ if (Shape == Shape::Straight) return 15330;
+ else if (Shape == Shape::InnerLeft) return 15332;
+ else if (Shape == Shape::InnerRight) return 15334;
+ else if (Shape == Shape::OuterLeft) return 15336;
+ else return 15338;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 15340;
+ else if (Shape == Shape::InnerLeft) return 15342;
+ else if (Shape == Shape::InnerRight) return 15344;
+ else if (Shape == Shape::OuterLeft) return 15346;
+ else return 15348;
+ else
+ if (Shape == Shape::Straight) return 15350;
+ else if (Shape == Shape::InnerLeft) return 15352;
+ else if (Shape == Shape::InnerRight) return 15354;
+ else if (Shape == Shape::OuterLeft) return 15356;
+ else return 15358;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 15360;
+ else if (Shape == Shape::InnerLeft) return 15362;
+ else if (Shape == Shape::InnerRight) return 15364;
+ else if (Shape == Shape::OuterLeft) return 15366;
+ else return 15368;
+ else
+ if (Shape == Shape::Straight) return 15370;
+ else if (Shape == Shape::InnerLeft) return 15372;
+ else if (Shape == Shape::InnerRight) return 15374;
+ else if (Shape == Shape::OuterLeft) return 15376;
+ else return 15378;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 15380;
+ else if (Shape == Shape::InnerLeft) return 15382;
+ else if (Shape == Shape::InnerRight) return 15384;
+ else if (Shape == Shape::OuterLeft) return 15386;
+ else return 15388;
+ else
+ if (Shape == Shape::Straight) return 15390;
+ else if (Shape == Shape::InnerLeft) return 15392;
+ else if (Shape == Shape::InnerRight) return 15394;
+ else if (Shape == Shape::OuterLeft) return 15396;
+ else return 15398;
+ }
+ BlockState CrimsonStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace CrimsonStem
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState CrimsonStem(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 14975;
+ else if (Axis == Axis::Y) return 14976;
+ else return 14977;
+ }
+ BlockState CrimsonStem();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace CrimsonTrapdoor
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ constexpr BlockState CrimsonTrapdoor(const eBlockFace Facing, const enum Half Half, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 15128;
+ else return 15130;
+ else
+ if (Powered) return 15132;
+ else return 15134;
+ else
+ if (Open)
+ if (Powered) return 15136;
+ else return 15138;
+ else
+ if (Powered) return 15140;
+ else return 15142;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 15144;
+ else return 15146;
+ else
+ if (Powered) return 15148;
+ else return 15150;
+ else
+ if (Open)
+ if (Powered) return 15152;
+ else return 15154;
+ else
+ if (Powered) return 15156;
+ else return 15158;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 15160;
+ else return 15162;
+ else
+ if (Powered) return 15164;
+ else return 15166;
+ else
+ if (Open)
+ if (Powered) return 15168;
+ else return 15170;
+ else
+ if (Powered) return 15172;
+ else return 15174;
+ else
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 15176;
+ else return 15178;
+ else
+ if (Powered) return 15180;
+ else return 15182;
+ else
+ if (Open)
+ if (Powered) return 15184;
+ else return 15186;
+ else
+ if (Powered) return 15188;
+ else return 15190;
+ }
+ BlockState CrimsonTrapdoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace CrimsonWallSign
+ {
+ constexpr BlockState CrimsonWallSign(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 15720;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 15722;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 15724;
+ else return 15726;
+ }
+ BlockState CrimsonWallSign();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace CryingObsidian
+ {
+ constexpr BlockState CryingObsidian()
+ {
+ return 15828;
+ }
+ }
+ namespace CutRedSandstone
+ {
+ constexpr BlockState CutRedSandstone()
+ {
+ return 8219;
+ }
+ }
+ namespace CutRedSandstoneSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState CutRedSandstoneSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8403;
+ else if (Type == Type::Bottom) return 8405;
+ else return 8407;
+ }
+ BlockState CutRedSandstoneSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace CutSandstone
+ {
+ constexpr BlockState CutSandstone()
+ {
+ return 248;
+ }
+ }
+ namespace CutSandstoneSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState CutSandstoneSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8355;
+ else if (Type == Type::Bottom) return 8357;
+ else return 8359;
+ }
+ BlockState CutSandstoneSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace CyanBanner
+ {
+ constexpr BlockState CyanBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 8041;
+ else if (Rotation == 1) return 8042;
+ else if (Rotation == 2) return 8043;
+ else if (Rotation == 3) return 8044;
+ else if (Rotation == 4) return 8045;
+ else if (Rotation == 5) return 8046;
+ else if (Rotation == 6) return 8047;
+ else if (Rotation == 7) return 8048;
+ else if (Rotation == 8) return 8049;
+ else if (Rotation == 9) return 8050;
+ else if (Rotation == 10) return 8051;
+ else if (Rotation == 11) return 8052;
+ else if (Rotation == 12) return 8053;
+ else if (Rotation == 13) return 8054;
+ else if (Rotation == 14) return 8055;
+ else return 8056;
+ }
+ BlockState CyanBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace CyanBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState CyanBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1193;
+ else return 1194;
+ else
+ if (Part == Part::Head) return 1195;
+ else return 1196;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1197;
+ else return 1198;
+ else
+ if (Part == Part::Head) return 1199;
+ else return 1200;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1201;
+ else return 1202;
+ else
+ if (Part == Part::Head) return 1203;
+ else return 1204;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1205;
+ else return 1206;
+ else
+ if (Part == Part::Head) return 1207;
+ else return 1208;
+ }
+ BlockState CyanBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace CyanCarpet
+ {
+ constexpr BlockState CyanCarpet()
+ {
+ return 7875;
+ }
+ }
+ namespace CyanConcrete
+ {
+ constexpr BlockState CyanConcrete()
+ {
+ return 9447;
+ }
+ }
+ namespace CyanConcretePowder
+ {
+ constexpr BlockState CyanConcretePowder()
+ {
+ return 9463;
+ }
+ }
+ namespace CyanGlazedTerracotta
+ {
+ constexpr BlockState CyanGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9410;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9411;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9412;
+ else return 9413;
+ }
+ BlockState CyanGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace CyanShulkerBox
+ {
+ constexpr BlockState CyanShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9332;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9333;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9334;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9335;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9336;
+ else return 9337;
+ }
+ BlockState CyanShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace CyanStainedGlass
+ {
+ constexpr BlockState CyanStainedGlass()
+ {
+ return 4104;
+ }
+ }
+ namespace CyanStainedGlassPane
+ {
+ constexpr BlockState CyanStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 7153;
+ else return 7154;
+ else
+ if (West) return 7157;
+ else return 7158;
+ else
+ if (South)
+ if (West) return 7161;
+ else return 7162;
+ else
+ if (West) return 7165;
+ else return 7166;
+ else
+ if (North)
+ if (South)
+ if (West) return 7169;
+ else return 7170;
+ else
+ if (West) return 7173;
+ else return 7174;
+ else
+ if (South)
+ if (West) return 7177;
+ else return 7178;
+ else
+ if (West) return 7181;
+ else return 7182;
+ }
+ BlockState CyanStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace CyanTerracotta
+ {
+ constexpr BlockState CyanTerracotta()
+ {
+ return 6856;
+ }
+ }
+ namespace CyanWallBanner
+ {
+ constexpr BlockState CyanWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8189;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8190;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8191;
+ else return 8192;
+ }
+ BlockState CyanWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace CyanWool
+ {
+ constexpr BlockState CyanWool()
+ {
+ return 1393;
+ }
+ }
+ namespace DamagedAnvil
+ {
+ constexpr BlockState DamagedAnvil(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6618;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6619;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 6620;
+ else return 6621;
+ }
+ BlockState DamagedAnvil();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace Dandelion
+ {
+ constexpr BlockState Dandelion()
+ {
+ return 1412;
+ }
+ }
+ namespace DarkOakButton
+ {
+ enum class Face
+ {
+ Floor,
+ Wall,
+ Ceiling
+ };
+ constexpr BlockState DarkOakButton(const enum Face Face, const eBlockFace Facing, const bool Powered)
+ {
+ if (Face == Face::Floor)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6466;
+ else return 6467;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6468;
+ else return 6469;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6470;
+ else return 6471;
+ else
+ if (Powered) return 6472;
+ else return 6473;
+ else if (Face == Face::Wall)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6474;
+ else return 6475;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6476;
+ else return 6477;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6478;
+ else return 6479;
+ else
+ if (Powered) return 6480;
+ else return 6481;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6482;
+ else return 6483;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6484;
+ else return 6485;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6486;
+ else return 6487;
+ else
+ if (Powered) return 6488;
+ else return 6489;
+ }
+ BlockState DarkOakButton();
+ enum Face Face(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace DarkOakDoor
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ enum class Hinge
+ {
+ Left,
+ Right
+ };
+ constexpr BlockState DarkOakDoor(const eBlockFace Facing, const enum Half Half, const enum Hinge Hinge, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8994;
+ else return 8995;
+ else
+ if (Powered) return 8996;
+ else return 8997;
+ else
+ if (Open)
+ if (Powered) return 8998;
+ else return 8999;
+ else
+ if (Powered) return 9000;
+ else return 9001;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 9002;
+ else return 9003;
+ else
+ if (Powered) return 9004;
+ else return 9005;
+ else
+ if (Open)
+ if (Powered) return 9006;
+ else return 9007;
+ else
+ if (Powered) return 9008;
+ else return 9009;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 9010;
+ else return 9011;
+ else
+ if (Powered) return 9012;
+ else return 9013;
+ else
+ if (Open)
+ if (Powered) return 9014;
+ else return 9015;
+ else
+ if (Powered) return 9016;
+ else return 9017;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 9018;
+ else return 9019;
+ else
+ if (Powered) return 9020;
+ else return 9021;
+ else
+ if (Open)
+ if (Powered) return 9022;
+ else return 9023;
+ else
+ if (Powered) return 9024;
+ else return 9025;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 9026;
+ else return 9027;
+ else
+ if (Powered) return 9028;
+ else return 9029;
+ else
+ if (Open)
+ if (Powered) return 9030;
+ else return 9031;
+ else
+ if (Powered) return 9032;
+ else return 9033;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 9034;
+ else return 9035;
+ else
+ if (Powered) return 9036;
+ else return 9037;
+ else
+ if (Open)
+ if (Powered) return 9038;
+ else return 9039;
+ else
+ if (Powered) return 9040;
+ else return 9041;
+ else
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 9042;
+ else return 9043;
+ else
+ if (Powered) return 9044;
+ else return 9045;
+ else
+ if (Open)
+ if (Powered) return 9046;
+ else return 9047;
+ else
+ if (Powered) return 9048;
+ else return 9049;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 9050;
+ else return 9051;
+ else
+ if (Powered) return 9052;
+ else return 9053;
+ else
+ if (Open)
+ if (Powered) return 9054;
+ else return 9055;
+ else
+ if (Powered) return 9056;
+ else return 9057;
+ }
+ BlockState DarkOakDoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Hinge Hinge(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace DarkOakFence
+ {
+ constexpr BlockState DarkOakFence(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 8708;
+ else return 8709;
+ else
+ if (West) return 8712;
+ else return 8713;
+ else
+ if (South)
+ if (West) return 8716;
+ else return 8717;
+ else
+ if (West) return 8720;
+ else return 8721;
+ else
+ if (North)
+ if (South)
+ if (West) return 8724;
+ else return 8725;
+ else
+ if (West) return 8728;
+ else return 8729;
+ else
+ if (South)
+ if (West) return 8732;
+ else return 8733;
+ else
+ if (West) return 8736;
+ else return 8737;
+ }
+ BlockState DarkOakFence();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace DarkOakFenceGate
+ {
+ constexpr BlockState DarkOakFenceGate(const eBlockFace Facing, const bool InWall, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8546;
+ else return 8547;
+ else
+ if (Powered) return 8548;
+ else return 8549;
+ else
+ if (Open)
+ if (Powered) return 8550;
+ else return 8551;
+ else
+ if (Powered) return 8552;
+ else return 8553;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8554;
+ else return 8555;
+ else
+ if (Powered) return 8556;
+ else return 8557;
+ else
+ if (Open)
+ if (Powered) return 8558;
+ else return 8559;
+ else
+ if (Powered) return 8560;
+ else return 8561;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8562;
+ else return 8563;
+ else
+ if (Powered) return 8564;
+ else return 8565;
+ else
+ if (Open)
+ if (Powered) return 8566;
+ else return 8567;
+ else
+ if (Powered) return 8568;
+ else return 8569;
+ else
+ if (InWall)
+ if (Open)
+ if (Powered) return 8570;
+ else return 8571;
+ else
+ if (Powered) return 8572;
+ else return 8573;
+ else
+ if (Open)
+ if (Powered) return 8574;
+ else return 8575;
+ else
+ if (Powered) return 8576;
+ else return 8577;
+ }
+ BlockState DarkOakFenceGate();
+ eBlockFace Facing(BlockState Block);
+ bool InWall(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace DarkOakLeaves
+ {
+ constexpr BlockState DarkOakLeaves(const unsigned char Distance, const bool Persistent)
+ {
+ if (Distance == 1)
+ if (Persistent) return 215;
+ else return 216;
+ else if (Distance == 2)
+ if (Persistent) return 217;
+ else return 218;
+ else if (Distance == 3)
+ if (Persistent) return 219;
+ else return 220;
+ else if (Distance == 4)
+ if (Persistent) return 221;
+ else return 222;
+ else if (Distance == 5)
+ if (Persistent) return 223;
+ else return 224;
+ else if (Distance == 6)
+ if (Persistent) return 225;
+ else return 226;
+ else
+ if (Persistent) return 227;
+ else return 228;
+ }
+ BlockState DarkOakLeaves();
+ unsigned char Distance(BlockState Block);
+ bool Persistent(BlockState Block);
+ }
+ namespace DarkOakLog
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState DarkOakLog(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 88;
+ else if (Axis == Axis::Y) return 89;
+ else return 90;
+ }
+ BlockState DarkOakLog();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace DarkOakPlanks
+ {
+ constexpr BlockState DarkOakPlanks()
+ {
+ return 20;
+ }
+ }
+ namespace DarkOakPressurePlate
+ {
+ constexpr BlockState DarkOakPressurePlate(const bool Powered)
+ {
+ if (Powered) return 3883;
+ else return 3884;
+ }
+ BlockState DarkOakPressurePlate();
+ bool Powered(BlockState Block);
+ }
+ namespace DarkOakSapling
+ {
+ constexpr BlockState DarkOakSapling(const unsigned char Stage)
+ {
+ if (Stage == 0) return 31;
+ else return 32;
+ }
+ BlockState DarkOakSapling();
+ unsigned char Stage(BlockState Block);
+ }
+ namespace DarkOakSign
+ {
+ constexpr BlockState DarkOakSign(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 3542;
+ else if (Rotation == 1) return 3544;
+ else if (Rotation == 2) return 3546;
+ else if (Rotation == 3) return 3548;
+ else if (Rotation == 4) return 3550;
+ else if (Rotation == 5) return 3552;
+ else if (Rotation == 6) return 3554;
+ else if (Rotation == 7) return 3556;
+ else if (Rotation == 8) return 3558;
+ else if (Rotation == 9) return 3560;
+ else if (Rotation == 10) return 3562;
+ else if (Rotation == 11) return 3564;
+ else if (Rotation == 12) return 3566;
+ else if (Rotation == 13) return 3568;
+ else if (Rotation == 14) return 3570;
+ else return 3572;
+ }
+ BlockState DarkOakSign();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace DarkOakSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState DarkOakSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8331;
+ else if (Type == Type::Bottom) return 8333;
+ else return 8335;
+ }
+ BlockState DarkOakSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace DarkOakStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState DarkOakStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7456;
+ else if (Shape == Shape::InnerLeft) return 7458;
+ else if (Shape == Shape::InnerRight) return 7460;
+ else if (Shape == Shape::OuterLeft) return 7462;
+ else return 7464;
+ else
+ if (Shape == Shape::Straight) return 7466;
+ else if (Shape == Shape::InnerLeft) return 7468;
+ else if (Shape == Shape::InnerRight) return 7470;
+ else if (Shape == Shape::OuterLeft) return 7472;
+ else return 7474;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7476;
+ else if (Shape == Shape::InnerLeft) return 7478;
+ else if (Shape == Shape::InnerRight) return 7480;
+ else if (Shape == Shape::OuterLeft) return 7482;
+ else return 7484;
+ else
+ if (Shape == Shape::Straight) return 7486;
+ else if (Shape == Shape::InnerLeft) return 7488;
+ else if (Shape == Shape::InnerRight) return 7490;
+ else if (Shape == Shape::OuterLeft) return 7492;
+ else return 7494;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7496;
+ else if (Shape == Shape::InnerLeft) return 7498;
+ else if (Shape == Shape::InnerRight) return 7500;
+ else if (Shape == Shape::OuterLeft) return 7502;
+ else return 7504;
+ else
+ if (Shape == Shape::Straight) return 7506;
+ else if (Shape == Shape::InnerLeft) return 7508;
+ else if (Shape == Shape::InnerRight) return 7510;
+ else if (Shape == Shape::OuterLeft) return 7512;
+ else return 7514;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7516;
+ else if (Shape == Shape::InnerLeft) return 7518;
+ else if (Shape == Shape::InnerRight) return 7520;
+ else if (Shape == Shape::OuterLeft) return 7522;
+ else return 7524;
+ else
+ if (Shape == Shape::Straight) return 7526;
+ else if (Shape == Shape::InnerLeft) return 7528;
+ else if (Shape == Shape::InnerRight) return 7530;
+ else if (Shape == Shape::OuterLeft) return 7532;
+ else return 7534;
+ }
+ BlockState DarkOakStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace DarkOakTrapdoor
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ constexpr BlockState DarkOakTrapdoor(const eBlockFace Facing, const enum Half Half, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4432;
+ else return 4434;
+ else
+ if (Powered) return 4436;
+ else return 4438;
+ else
+ if (Open)
+ if (Powered) return 4440;
+ else return 4442;
+ else
+ if (Powered) return 4444;
+ else return 4446;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4448;
+ else return 4450;
+ else
+ if (Powered) return 4452;
+ else return 4454;
+ else
+ if (Open)
+ if (Powered) return 4456;
+ else return 4458;
+ else
+ if (Powered) return 4460;
+ else return 4462;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4464;
+ else return 4466;
+ else
+ if (Powered) return 4468;
+ else return 4470;
+ else
+ if (Open)
+ if (Powered) return 4472;
+ else return 4474;
+ else
+ if (Powered) return 4476;
+ else return 4478;
+ else
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4480;
+ else return 4482;
+ else
+ if (Powered) return 4484;
+ else return 4486;
+ else
+ if (Open)
+ if (Powered) return 4488;
+ else return 4490;
+ else
+ if (Powered) return 4492;
+ else return 4494;
+ }
+ BlockState DarkOakTrapdoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace DarkOakWallSign
+ {
+ constexpr BlockState DarkOakWallSign(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3776;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3778;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 3780;
+ else return 3782;
+ }
+ BlockState DarkOakWallSign();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace DarkOakWood
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState DarkOakWood(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 124;
+ else if (Axis == Axis::Y) return 125;
+ else return 126;
+ }
+ BlockState DarkOakWood();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace DarkPrismarine
+ {
+ constexpr BlockState DarkPrismarine()
+ {
+ return 7603;
+ }
+ }
+ namespace DarkPrismarineSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState DarkPrismarineSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 7857;
+ else if (Type == Type::Bottom) return 7859;
+ else return 7861;
+ }
+ BlockState DarkPrismarineSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace DarkPrismarineStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState DarkPrismarineStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7765;
+ else if (Shape == Shape::InnerLeft) return 7767;
+ else if (Shape == Shape::InnerRight) return 7769;
+ else if (Shape == Shape::OuterLeft) return 7771;
+ else return 7773;
+ else
+ if (Shape == Shape::Straight) return 7775;
+ else if (Shape == Shape::InnerLeft) return 7777;
+ else if (Shape == Shape::InnerRight) return 7779;
+ else if (Shape == Shape::OuterLeft) return 7781;
+ else return 7783;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7785;
+ else if (Shape == Shape::InnerLeft) return 7787;
+ else if (Shape == Shape::InnerRight) return 7789;
+ else if (Shape == Shape::OuterLeft) return 7791;
+ else return 7793;
+ else
+ if (Shape == Shape::Straight) return 7795;
+ else if (Shape == Shape::InnerLeft) return 7797;
+ else if (Shape == Shape::InnerRight) return 7799;
+ else if (Shape == Shape::OuterLeft) return 7801;
+ else return 7803;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7805;
+ else if (Shape == Shape::InnerLeft) return 7807;
+ else if (Shape == Shape::InnerRight) return 7809;
+ else if (Shape == Shape::OuterLeft) return 7811;
+ else return 7813;
+ else
+ if (Shape == Shape::Straight) return 7815;
+ else if (Shape == Shape::InnerLeft) return 7817;
+ else if (Shape == Shape::InnerRight) return 7819;
+ else if (Shape == Shape::OuterLeft) return 7821;
+ else return 7823;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7825;
+ else if (Shape == Shape::InnerLeft) return 7827;
+ else if (Shape == Shape::InnerRight) return 7829;
+ else if (Shape == Shape::OuterLeft) return 7831;
+ else return 7833;
+ else
+ if (Shape == Shape::Straight) return 7835;
+ else if (Shape == Shape::InnerLeft) return 7837;
+ else if (Shape == Shape::InnerRight) return 7839;
+ else if (Shape == Shape::OuterLeft) return 7841;
+ else return 7843;
+ }
+ BlockState DarkPrismarineStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace DaylightDetector
+ {
+ constexpr BlockState DaylightDetector(const bool Inverted, const unsigned char Power)
+ {
+ if (Inverted)
+ if (Power == 0) return 6694;
+ else if (Power == 1) return 6695;
+ else if (Power == 2) return 6696;
+ else if (Power == 3) return 6697;
+ else if (Power == 4) return 6698;
+ else if (Power == 5) return 6699;
+ else if (Power == 6) return 6700;
+ else if (Power == 7) return 6701;
+ else if (Power == 8) return 6702;
+ else if (Power == 9) return 6703;
+ else if (Power == 10) return 6704;
+ else if (Power == 11) return 6705;
+ else if (Power == 12) return 6706;
+ else if (Power == 13) return 6707;
+ else if (Power == 14) return 6708;
+ else return 6709;
+ else
+ if (Power == 0) return 6710;
+ else if (Power == 1) return 6711;
+ else if (Power == 2) return 6712;
+ else if (Power == 3) return 6713;
+ else if (Power == 4) return 6714;
+ else if (Power == 5) return 6715;
+ else if (Power == 6) return 6716;
+ else if (Power == 7) return 6717;
+ else if (Power == 8) return 6718;
+ else if (Power == 9) return 6719;
+ else if (Power == 10) return 6720;
+ else if (Power == 11) return 6721;
+ else if (Power == 12) return 6722;
+ else if (Power == 13) return 6723;
+ else if (Power == 14) return 6724;
+ else return 6725;
+ }
+ BlockState DaylightDetector();
+ bool Inverted(BlockState Block);
+ unsigned char Power(BlockState Block);
+ }
+ namespace DeadBrainCoral
+ {
+ constexpr BlockState DeadBrainCoral()
+ {
+ return 9523;
+ }
+ }
+ namespace DeadBrainCoralBlock
+ {
+ constexpr BlockState DeadBrainCoralBlock()
+ {
+ return 9511;
+ }
+ }
+ namespace DeadBrainCoralFan
+ {
+ constexpr BlockState DeadBrainCoralFan()
+ {
+ return 9543;
+ }
+ }
+ namespace DeadBrainCoralWallFan
+ {
+ constexpr BlockState DeadBrainCoralWallFan(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9569;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9571;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9573;
+ else return 9575;
+ }
+ BlockState DeadBrainCoralWallFan();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace DeadBubbleCoral
+ {
+ constexpr BlockState DeadBubbleCoral()
+ {
+ return 9525;
+ }
+ }
+ namespace DeadBubbleCoralBlock
+ {
+ constexpr BlockState DeadBubbleCoralBlock()
+ {
+ return 9512;
+ }
+ }
+ namespace DeadBubbleCoralFan
+ {
+ constexpr BlockState DeadBubbleCoralFan()
+ {
+ return 9545;
+ }
+ }
+ namespace DeadBubbleCoralWallFan
+ {
+ constexpr BlockState DeadBubbleCoralWallFan(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9577;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9579;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9581;
+ else return 9583;
+ }
+ BlockState DeadBubbleCoralWallFan();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace DeadBush
+ {
+ constexpr BlockState DeadBush()
+ {
+ return 1344;
+ }
+ }
+ namespace DeadFireCoral
+ {
+ constexpr BlockState DeadFireCoral()
+ {
+ return 9527;
+ }
+ }
+ namespace DeadFireCoralBlock
+ {
+ constexpr BlockState DeadFireCoralBlock()
+ {
+ return 9513;
+ }
+ }
+ namespace DeadFireCoralFan
+ {
+ constexpr BlockState DeadFireCoralFan()
+ {
+ return 9547;
+ }
+ }
+ namespace DeadFireCoralWallFan
+ {
+ constexpr BlockState DeadFireCoralWallFan(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9585;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9587;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9589;
+ else return 9591;
+ }
+ BlockState DeadFireCoralWallFan();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace DeadHornCoral
+ {
+ constexpr BlockState DeadHornCoral()
+ {
+ return 9529;
+ }
+ }
+ namespace DeadHornCoralBlock
+ {
+ constexpr BlockState DeadHornCoralBlock()
+ {
+ return 9514;
+ }
+ }
+ namespace DeadHornCoralFan
+ {
+ constexpr BlockState DeadHornCoralFan()
+ {
+ return 9549;
+ }
+ }
+ namespace DeadHornCoralWallFan
+ {
+ constexpr BlockState DeadHornCoralWallFan(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9593;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9595;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9597;
+ else return 9599;
+ }
+ BlockState DeadHornCoralWallFan();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace DeadTubeCoral
+ {
+ constexpr BlockState DeadTubeCoral()
+ {
+ return 9521;
+ }
+ }
+ namespace DeadTubeCoralBlock
+ {
+ constexpr BlockState DeadTubeCoralBlock()
+ {
+ return 9510;
+ }
+ }
+ namespace DeadTubeCoralFan
+ {
+ constexpr BlockState DeadTubeCoralFan()
+ {
+ return 9541;
+ }
+ }
+ namespace DeadTubeCoralWallFan
+ {
+ constexpr BlockState DeadTubeCoralWallFan(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9561;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9563;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9565;
+ else return 9567;
+ }
+ BlockState DeadTubeCoralWallFan();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace DetectorRail
+ {
+ enum class Shape
+ {
+ NorthSouth,
+ EastWest,
+ AscendingEast,
+ AscendingWest,
+ AscendingNorth,
+ AscendingSouth
+ };
+ constexpr BlockState DetectorRail(const bool Powered, const enum Shape Shape)
+ {
+ if (Powered)
+ if (Shape == Shape::NorthSouth) return 1317;
+ else if (Shape == Shape::EastWest) return 1318;
+ else if (Shape == Shape::AscendingEast) return 1319;
+ else if (Shape == Shape::AscendingWest) return 1320;
+ else if (Shape == Shape::AscendingNorth) return 1321;
+ else return 1322;
+ else
+ if (Shape == Shape::NorthSouth) return 1323;
+ else if (Shape == Shape::EastWest) return 1324;
+ else if (Shape == Shape::AscendingEast) return 1325;
+ else if (Shape == Shape::AscendingWest) return 1326;
+ else if (Shape == Shape::AscendingNorth) return 1327;
+ else return 1328;
+ }
+ BlockState DetectorRail();
+ bool Powered(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace DiamondBlock
+ {
+ constexpr BlockState DiamondBlock()
+ {
+ return 3355;
+ }
+ }
+ namespace DiamondOre
+ {
+ constexpr BlockState DiamondOre()
+ {
+ return 3354;
+ }
+ }
+ namespace Diorite
+ {
+ constexpr BlockState Diorite()
+ {
+ return 4;
+ }
+ }
+ namespace DioriteSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState DioriteSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 10862;
+ else if (Type == Type::Bottom) return 10864;
+ else return 10866;
+ }
+ BlockState DioriteSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace DioriteStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState DioriteStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10710;
+ else if (Shape == Shape::InnerLeft) return 10712;
+ else if (Shape == Shape::InnerRight) return 10714;
+ else if (Shape == Shape::OuterLeft) return 10716;
+ else return 10718;
+ else
+ if (Shape == Shape::Straight) return 10720;
+ else if (Shape == Shape::InnerLeft) return 10722;
+ else if (Shape == Shape::InnerRight) return 10724;
+ else if (Shape == Shape::OuterLeft) return 10726;
+ else return 10728;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10730;
+ else if (Shape == Shape::InnerLeft) return 10732;
+ else if (Shape == Shape::InnerRight) return 10734;
+ else if (Shape == Shape::OuterLeft) return 10736;
+ else return 10738;
+ else
+ if (Shape == Shape::Straight) return 10740;
+ else if (Shape == Shape::InnerLeft) return 10742;
+ else if (Shape == Shape::InnerRight) return 10744;
+ else if (Shape == Shape::OuterLeft) return 10746;
+ else return 10748;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10750;
+ else if (Shape == Shape::InnerLeft) return 10752;
+ else if (Shape == Shape::InnerRight) return 10754;
+ else if (Shape == Shape::OuterLeft) return 10756;
+ else return 10758;
+ else
+ if (Shape == Shape::Straight) return 10760;
+ else if (Shape == Shape::InnerLeft) return 10762;
+ else if (Shape == Shape::InnerRight) return 10764;
+ else if (Shape == Shape::OuterLeft) return 10766;
+ else return 10768;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10770;
+ else if (Shape == Shape::InnerLeft) return 10772;
+ else if (Shape == Shape::InnerRight) return 10774;
+ else if (Shape == Shape::OuterLeft) return 10776;
+ else return 10778;
+ else
+ if (Shape == Shape::Straight) return 10780;
+ else if (Shape == Shape::InnerLeft) return 10782;
+ else if (Shape == Shape::InnerRight) return 10784;
+ else if (Shape == Shape::OuterLeft) return 10786;
+ else return 10788;
+ }
+ BlockState DioriteStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace DioriteWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState DioriteWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14434;
+ else if (West == West::Low) return 14435;
+ else return 14436;
+ else
+ if (West == West::None) return 14440;
+ else if (West == West::Low) return 14441;
+ else return 14442;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14446;
+ else if (West == West::Low) return 14447;
+ else return 14448;
+ else
+ if (West == West::None) return 14452;
+ else if (West == West::Low) return 14453;
+ else return 14454;
+ else
+ if (Up)
+ if (West == West::None) return 14458;
+ else if (West == West::Low) return 14459;
+ else return 14460;
+ else
+ if (West == West::None) return 14464;
+ else if (West == West::Low) return 14465;
+ else return 14466;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14470;
+ else if (West == West::Low) return 14471;
+ else return 14472;
+ else
+ if (West == West::None) return 14476;
+ else if (West == West::Low) return 14477;
+ else return 14478;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14482;
+ else if (West == West::Low) return 14483;
+ else return 14484;
+ else
+ if (West == West::None) return 14488;
+ else if (West == West::Low) return 14489;
+ else return 14490;
+ else
+ if (Up)
+ if (West == West::None) return 14494;
+ else if (West == West::Low) return 14495;
+ else return 14496;
+ else
+ if (West == West::None) return 14500;
+ else if (West == West::Low) return 14501;
+ else return 14502;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14506;
+ else if (West == West::Low) return 14507;
+ else return 14508;
+ else
+ if (West == West::None) return 14512;
+ else if (West == West::Low) return 14513;
+ else return 14514;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14518;
+ else if (West == West::Low) return 14519;
+ else return 14520;
+ else
+ if (West == West::None) return 14524;
+ else if (West == West::Low) return 14525;
+ else return 14526;
+ else
+ if (Up)
+ if (West == West::None) return 14530;
+ else if (West == West::Low) return 14531;
+ else return 14532;
+ else
+ if (West == West::None) return 14536;
+ else if (West == West::Low) return 14537;
+ else return 14538;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14542;
+ else if (West == West::Low) return 14543;
+ else return 14544;
+ else
+ if (West == West::None) return 14548;
+ else if (West == West::Low) return 14549;
+ else return 14550;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14554;
+ else if (West == West::Low) return 14555;
+ else return 14556;
+ else
+ if (West == West::None) return 14560;
+ else if (West == West::Low) return 14561;
+ else return 14562;
+ else
+ if (Up)
+ if (West == West::None) return 14566;
+ else if (West == West::Low) return 14567;
+ else return 14568;
+ else
+ if (West == West::None) return 14572;
+ else if (West == West::Low) return 14573;
+ else return 14574;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14578;
+ else if (West == West::Low) return 14579;
+ else return 14580;
+ else
+ if (West == West::None) return 14584;
+ else if (West == West::Low) return 14585;
+ else return 14586;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14590;
+ else if (West == West::Low) return 14591;
+ else return 14592;
+ else
+ if (West == West::None) return 14596;
+ else if (West == West::Low) return 14597;
+ else return 14598;
+ else
+ if (Up)
+ if (West == West::None) return 14602;
+ else if (West == West::Low) return 14603;
+ else return 14604;
+ else
+ if (West == West::None) return 14608;
+ else if (West == West::Low) return 14609;
+ else return 14610;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14614;
+ else if (West == West::Low) return 14615;
+ else return 14616;
+ else
+ if (West == West::None) return 14620;
+ else if (West == West::Low) return 14621;
+ else return 14622;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14626;
+ else if (West == West::Low) return 14627;
+ else return 14628;
+ else
+ if (West == West::None) return 14632;
+ else if (West == West::Low) return 14633;
+ else return 14634;
+ else
+ if (Up)
+ if (West == West::None) return 14638;
+ else if (West == West::Low) return 14639;
+ else return 14640;
+ else
+ if (West == West::None) return 14644;
+ else if (West == West::Low) return 14645;
+ else return 14646;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14650;
+ else if (West == West::Low) return 14651;
+ else return 14652;
+ else
+ if (West == West::None) return 14656;
+ else if (West == West::Low) return 14657;
+ else return 14658;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14662;
+ else if (West == West::Low) return 14663;
+ else return 14664;
+ else
+ if (West == West::None) return 14668;
+ else if (West == West::Low) return 14669;
+ else return 14670;
+ else
+ if (Up)
+ if (West == West::None) return 14674;
+ else if (West == West::Low) return 14675;
+ else return 14676;
+ else
+ if (West == West::None) return 14680;
+ else if (West == West::Low) return 14681;
+ else return 14682;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14686;
+ else if (West == West::Low) return 14687;
+ else return 14688;
+ else
+ if (West == West::None) return 14692;
+ else if (West == West::Low) return 14693;
+ else return 14694;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14698;
+ else if (West == West::Low) return 14699;
+ else return 14700;
+ else
+ if (West == West::None) return 14704;
+ else if (West == West::Low) return 14705;
+ else return 14706;
+ else
+ if (Up)
+ if (West == West::None) return 14710;
+ else if (West == West::Low) return 14711;
+ else return 14712;
+ else
+ if (West == West::None) return 14716;
+ else if (West == West::Low) return 14717;
+ else return 14718;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14722;
+ else if (West == West::Low) return 14723;
+ else return 14724;
+ else
+ if (West == West::None) return 14728;
+ else if (West == West::Low) return 14729;
+ else return 14730;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14734;
+ else if (West == West::Low) return 14735;
+ else return 14736;
+ else
+ if (West == West::None) return 14740;
+ else if (West == West::Low) return 14741;
+ else return 14742;
+ else
+ if (Up)
+ if (West == West::None) return 14746;
+ else if (West == West::Low) return 14747;
+ else return 14748;
+ else
+ if (West == West::None) return 14752;
+ else if (West == West::Low) return 14753;
+ else return 14754;
+ }
+ BlockState DioriteWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace Dirt
+ {
+ constexpr BlockState Dirt()
+ {
+ return 10;
+ }
+ }
+ namespace Dispenser
+ {
+ constexpr BlockState Dispenser(const eBlockFace Facing, const bool Triggered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Triggered) return 234;
+ else return 235;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP)
+ if (Triggered) return 236;
+ else return 237;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Triggered) return 238;
+ else return 239;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Triggered) return 240;
+ else return 241;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP)
+ if (Triggered) return 242;
+ else return 243;
+ else
+ if (Triggered) return 244;
+ else return 245;
+ }
+ BlockState Dispenser();
+ eBlockFace Facing(BlockState Block);
+ bool Triggered(BlockState Block);
+ }
+ namespace DragonEgg
+ {
+ constexpr BlockState DragonEgg()
+ {
+ return 5155;
+ }
+ }
+ namespace DragonHead
+ {
+ constexpr BlockState DragonHead(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 6590;
+ else if (Rotation == 1) return 6591;
+ else if (Rotation == 2) return 6592;
+ else if (Rotation == 3) return 6593;
+ else if (Rotation == 4) return 6594;
+ else if (Rotation == 5) return 6595;
+ else if (Rotation == 6) return 6596;
+ else if (Rotation == 7) return 6597;
+ else if (Rotation == 8) return 6598;
+ else if (Rotation == 9) return 6599;
+ else if (Rotation == 10) return 6600;
+ else if (Rotation == 11) return 6601;
+ else if (Rotation == 12) return 6602;
+ else if (Rotation == 13) return 6603;
+ else if (Rotation == 14) return 6604;
+ else return 6605;
+ }
+ BlockState DragonHead();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace DragonWallHead
+ {
+ constexpr BlockState DragonWallHead(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6606;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6607;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 6608;
+ else return 6609;
+ }
+ BlockState DragonWallHead();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace DriedKelpBlock
+ {
+ constexpr BlockState DriedKelpBlock()
+ {
+ return 9497;
+ }
+ }
+ namespace Dropper
+ {
+ constexpr BlockState Dropper(const eBlockFace Facing, const bool Triggered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Triggered) return 6835;
+ else return 6836;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP)
+ if (Triggered) return 6837;
+ else return 6838;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Triggered) return 6839;
+ else return 6840;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Triggered) return 6841;
+ else return 6842;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP)
+ if (Triggered) return 6843;
+ else return 6844;
+ else
+ if (Triggered) return 6845;
+ else return 6846;
+ }
+ BlockState Dropper();
+ eBlockFace Facing(BlockState Block);
+ bool Triggered(BlockState Block);
+ }
+ namespace EmeraldBlock
+ {
+ constexpr BlockState EmeraldBlock()
+ {
+ return 5403;
+ }
+ }
+ namespace EmeraldOre
+ {
+ constexpr BlockState EmeraldOre()
+ {
+ return 5250;
+ }
+ }
+ namespace EnchantingTable
+ {
+ constexpr BlockState EnchantingTable()
+ {
+ return 5132;
+ }
+ }
+ namespace EndGateway
+ {
+ constexpr BlockState EndGateway()
+ {
+ return 9224;
+ }
+ }
+ namespace EndPortal
+ {
+ constexpr BlockState EndPortal()
+ {
+ return 5145;
+ }
+ }
+ namespace EndPortalFrame
+ {
+ constexpr BlockState EndPortalFrame(const bool Eye, const eBlockFace Facing)
+ {
+ if (Eye)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 5146;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 5147;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 5148;
+ else return 5149;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 5150;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 5151;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 5152;
+ else return 5153;
+ }
+ BlockState EndPortalFrame();
+ bool Eye(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace EndRod
+ {
+ constexpr BlockState EndRod(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9058;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9059;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9060;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9061;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9062;
+ else return 9063;
+ }
+ BlockState EndRod();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace EndStone
+ {
+ constexpr BlockState EndStone()
+ {
+ return 5154;
+ }
+ }
+ namespace EndStoneBrickSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState EndStoneBrickSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 10820;
+ else if (Type == Type::Bottom) return 10822;
+ else return 10824;
+ }
+ BlockState EndStoneBrickSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace EndStoneBrickStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState EndStoneBrickStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10070;
+ else if (Shape == Shape::InnerLeft) return 10072;
+ else if (Shape == Shape::InnerRight) return 10074;
+ else if (Shape == Shape::OuterLeft) return 10076;
+ else return 10078;
+ else
+ if (Shape == Shape::Straight) return 10080;
+ else if (Shape == Shape::InnerLeft) return 10082;
+ else if (Shape == Shape::InnerRight) return 10084;
+ else if (Shape == Shape::OuterLeft) return 10086;
+ else return 10088;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10090;
+ else if (Shape == Shape::InnerLeft) return 10092;
+ else if (Shape == Shape::InnerRight) return 10094;
+ else if (Shape == Shape::OuterLeft) return 10096;
+ else return 10098;
+ else
+ if (Shape == Shape::Straight) return 10100;
+ else if (Shape == Shape::InnerLeft) return 10102;
+ else if (Shape == Shape::InnerRight) return 10104;
+ else if (Shape == Shape::OuterLeft) return 10106;
+ else return 10108;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10110;
+ else if (Shape == Shape::InnerLeft) return 10112;
+ else if (Shape == Shape::InnerRight) return 10114;
+ else if (Shape == Shape::OuterLeft) return 10116;
+ else return 10118;
+ else
+ if (Shape == Shape::Straight) return 10120;
+ else if (Shape == Shape::InnerLeft) return 10122;
+ else if (Shape == Shape::InnerRight) return 10124;
+ else if (Shape == Shape::OuterLeft) return 10126;
+ else return 10128;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10130;
+ else if (Shape == Shape::InnerLeft) return 10132;
+ else if (Shape == Shape::InnerRight) return 10134;
+ else if (Shape == Shape::OuterLeft) return 10136;
+ else return 10138;
+ else
+ if (Shape == Shape::Straight) return 10140;
+ else if (Shape == Shape::InnerLeft) return 10142;
+ else if (Shape == Shape::InnerRight) return 10144;
+ else if (Shape == Shape::OuterLeft) return 10146;
+ else return 10148;
+ }
+ BlockState EndStoneBrickStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace EndStoneBrickWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState EndStoneBrickWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14110;
+ else if (West == West::Low) return 14111;
+ else return 14112;
+ else
+ if (West == West::None) return 14116;
+ else if (West == West::Low) return 14117;
+ else return 14118;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14122;
+ else if (West == West::Low) return 14123;
+ else return 14124;
+ else
+ if (West == West::None) return 14128;
+ else if (West == West::Low) return 14129;
+ else return 14130;
+ else
+ if (Up)
+ if (West == West::None) return 14134;
+ else if (West == West::Low) return 14135;
+ else return 14136;
+ else
+ if (West == West::None) return 14140;
+ else if (West == West::Low) return 14141;
+ else return 14142;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14146;
+ else if (West == West::Low) return 14147;
+ else return 14148;
+ else
+ if (West == West::None) return 14152;
+ else if (West == West::Low) return 14153;
+ else return 14154;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14158;
+ else if (West == West::Low) return 14159;
+ else return 14160;
+ else
+ if (West == West::None) return 14164;
+ else if (West == West::Low) return 14165;
+ else return 14166;
+ else
+ if (Up)
+ if (West == West::None) return 14170;
+ else if (West == West::Low) return 14171;
+ else return 14172;
+ else
+ if (West == West::None) return 14176;
+ else if (West == West::Low) return 14177;
+ else return 14178;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14182;
+ else if (West == West::Low) return 14183;
+ else return 14184;
+ else
+ if (West == West::None) return 14188;
+ else if (West == West::Low) return 14189;
+ else return 14190;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14194;
+ else if (West == West::Low) return 14195;
+ else return 14196;
+ else
+ if (West == West::None) return 14200;
+ else if (West == West::Low) return 14201;
+ else return 14202;
+ else
+ if (Up)
+ if (West == West::None) return 14206;
+ else if (West == West::Low) return 14207;
+ else return 14208;
+ else
+ if (West == West::None) return 14212;
+ else if (West == West::Low) return 14213;
+ else return 14214;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14218;
+ else if (West == West::Low) return 14219;
+ else return 14220;
+ else
+ if (West == West::None) return 14224;
+ else if (West == West::Low) return 14225;
+ else return 14226;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14230;
+ else if (West == West::Low) return 14231;
+ else return 14232;
+ else
+ if (West == West::None) return 14236;
+ else if (West == West::Low) return 14237;
+ else return 14238;
+ else
+ if (Up)
+ if (West == West::None) return 14242;
+ else if (West == West::Low) return 14243;
+ else return 14244;
+ else
+ if (West == West::None) return 14248;
+ else if (West == West::Low) return 14249;
+ else return 14250;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14254;
+ else if (West == West::Low) return 14255;
+ else return 14256;
+ else
+ if (West == West::None) return 14260;
+ else if (West == West::Low) return 14261;
+ else return 14262;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14266;
+ else if (West == West::Low) return 14267;
+ else return 14268;
+ else
+ if (West == West::None) return 14272;
+ else if (West == West::Low) return 14273;
+ else return 14274;
+ else
+ if (Up)
+ if (West == West::None) return 14278;
+ else if (West == West::Low) return 14279;
+ else return 14280;
+ else
+ if (West == West::None) return 14284;
+ else if (West == West::Low) return 14285;
+ else return 14286;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14290;
+ else if (West == West::Low) return 14291;
+ else return 14292;
+ else
+ if (West == West::None) return 14296;
+ else if (West == West::Low) return 14297;
+ else return 14298;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14302;
+ else if (West == West::Low) return 14303;
+ else return 14304;
+ else
+ if (West == West::None) return 14308;
+ else if (West == West::Low) return 14309;
+ else return 14310;
+ else
+ if (Up)
+ if (West == West::None) return 14314;
+ else if (West == West::Low) return 14315;
+ else return 14316;
+ else
+ if (West == West::None) return 14320;
+ else if (West == West::Low) return 14321;
+ else return 14322;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14326;
+ else if (West == West::Low) return 14327;
+ else return 14328;
+ else
+ if (West == West::None) return 14332;
+ else if (West == West::Low) return 14333;
+ else return 14334;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14338;
+ else if (West == West::Low) return 14339;
+ else return 14340;
+ else
+ if (West == West::None) return 14344;
+ else if (West == West::Low) return 14345;
+ else return 14346;
+ else
+ if (Up)
+ if (West == West::None) return 14350;
+ else if (West == West::Low) return 14351;
+ else return 14352;
+ else
+ if (West == West::None) return 14356;
+ else if (West == West::Low) return 14357;
+ else return 14358;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14362;
+ else if (West == West::Low) return 14363;
+ else return 14364;
+ else
+ if (West == West::None) return 14368;
+ else if (West == West::Low) return 14369;
+ else return 14370;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14374;
+ else if (West == West::Low) return 14375;
+ else return 14376;
+ else
+ if (West == West::None) return 14380;
+ else if (West == West::Low) return 14381;
+ else return 14382;
+ else
+ if (Up)
+ if (West == West::None) return 14386;
+ else if (West == West::Low) return 14387;
+ else return 14388;
+ else
+ if (West == West::None) return 14392;
+ else if (West == West::Low) return 14393;
+ else return 14394;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14398;
+ else if (West == West::Low) return 14399;
+ else return 14400;
+ else
+ if (West == West::None) return 14404;
+ else if (West == West::Low) return 14405;
+ else return 14406;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14410;
+ else if (West == West::Low) return 14411;
+ else return 14412;
+ else
+ if (West == West::None) return 14416;
+ else if (West == West::Low) return 14417;
+ else return 14418;
+ else
+ if (Up)
+ if (West == West::None) return 14422;
+ else if (West == West::Low) return 14423;
+ else return 14424;
+ else
+ if (West == West::None) return 14428;
+ else if (West == West::Low) return 14429;
+ else return 14430;
+ }
+ BlockState EndStoneBrickWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace EndStoneBricks
+ {
+ constexpr BlockState EndStoneBricks()
+ {
+ return 9218;
+ }
+ }
+ namespace EnderChest
+ {
+ constexpr BlockState EnderChest(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 5252;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 5254;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 5256;
+ else return 5258;
+ }
+ BlockState EnderChest();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace Farmland
+ {
+ constexpr BlockState Farmland(const unsigned char Moisture)
+ {
+ if (Moisture == 0) return 3365;
+ else if (Moisture == 1) return 3366;
+ else if (Moisture == 2) return 3367;
+ else if (Moisture == 3) return 3368;
+ else if (Moisture == 4) return 3369;
+ else if (Moisture == 5) return 3370;
+ else if (Moisture == 6) return 3371;
+ else return 3372;
+ }
+ BlockState Farmland();
+ unsigned char Moisture(BlockState Block);
+ }
+ namespace Fern
+ {
+ constexpr BlockState Fern()
+ {
+ return 1343;
+ }
+ }
+ namespace Fire
+ {
+ constexpr BlockState Fire(const unsigned char Age, const bool East, const bool North, const bool South, const bool Up, const bool West)
+ {
+ if (Age == 0)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1440;
+ else return 1441;
+ else
+ if (West) return 1442;
+ else return 1443;
+ else
+ if (Up)
+ if (West) return 1444;
+ else return 1445;
+ else
+ if (West) return 1446;
+ else return 1447;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1448;
+ else return 1449;
+ else
+ if (West) return 1450;
+ else return 1451;
+ else
+ if (Up)
+ if (West) return 1452;
+ else return 1453;
+ else
+ if (West) return 1454;
+ else return 1455;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1456;
+ else return 1457;
+ else
+ if (West) return 1458;
+ else return 1459;
+ else
+ if (Up)
+ if (West) return 1460;
+ else return 1461;
+ else
+ if (West) return 1462;
+ else return 1463;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1464;
+ else return 1465;
+ else
+ if (West) return 1466;
+ else return 1467;
+ else
+ if (Up)
+ if (West) return 1468;
+ else return 1469;
+ else
+ if (West) return 1470;
+ else return 1471;
+ else if (Age == 1)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1472;
+ else return 1473;
+ else
+ if (West) return 1474;
+ else return 1475;
+ else
+ if (Up)
+ if (West) return 1476;
+ else return 1477;
+ else
+ if (West) return 1478;
+ else return 1479;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1480;
+ else return 1481;
+ else
+ if (West) return 1482;
+ else return 1483;
+ else
+ if (Up)
+ if (West) return 1484;
+ else return 1485;
+ else
+ if (West) return 1486;
+ else return 1487;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1488;
+ else return 1489;
+ else
+ if (West) return 1490;
+ else return 1491;
+ else
+ if (Up)
+ if (West) return 1492;
+ else return 1493;
+ else
+ if (West) return 1494;
+ else return 1495;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1496;
+ else return 1497;
+ else
+ if (West) return 1498;
+ else return 1499;
+ else
+ if (Up)
+ if (West) return 1500;
+ else return 1501;
+ else
+ if (West) return 1502;
+ else return 1503;
+ else if (Age == 2)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1504;
+ else return 1505;
+ else
+ if (West) return 1506;
+ else return 1507;
+ else
+ if (Up)
+ if (West) return 1508;
+ else return 1509;
+ else
+ if (West) return 1510;
+ else return 1511;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1512;
+ else return 1513;
+ else
+ if (West) return 1514;
+ else return 1515;
+ else
+ if (Up)
+ if (West) return 1516;
+ else return 1517;
+ else
+ if (West) return 1518;
+ else return 1519;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1520;
+ else return 1521;
+ else
+ if (West) return 1522;
+ else return 1523;
+ else
+ if (Up)
+ if (West) return 1524;
+ else return 1525;
+ else
+ if (West) return 1526;
+ else return 1527;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1528;
+ else return 1529;
+ else
+ if (West) return 1530;
+ else return 1531;
+ else
+ if (Up)
+ if (West) return 1532;
+ else return 1533;
+ else
+ if (West) return 1534;
+ else return 1535;
+ else if (Age == 3)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1536;
+ else return 1537;
+ else
+ if (West) return 1538;
+ else return 1539;
+ else
+ if (Up)
+ if (West) return 1540;
+ else return 1541;
+ else
+ if (West) return 1542;
+ else return 1543;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1544;
+ else return 1545;
+ else
+ if (West) return 1546;
+ else return 1547;
+ else
+ if (Up)
+ if (West) return 1548;
+ else return 1549;
+ else
+ if (West) return 1550;
+ else return 1551;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1552;
+ else return 1553;
+ else
+ if (West) return 1554;
+ else return 1555;
+ else
+ if (Up)
+ if (West) return 1556;
+ else return 1557;
+ else
+ if (West) return 1558;
+ else return 1559;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1560;
+ else return 1561;
+ else
+ if (West) return 1562;
+ else return 1563;
+ else
+ if (Up)
+ if (West) return 1564;
+ else return 1565;
+ else
+ if (West) return 1566;
+ else return 1567;
+ else if (Age == 4)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1568;
+ else return 1569;
+ else
+ if (West) return 1570;
+ else return 1571;
+ else
+ if (Up)
+ if (West) return 1572;
+ else return 1573;
+ else
+ if (West) return 1574;
+ else return 1575;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1576;
+ else return 1577;
+ else
+ if (West) return 1578;
+ else return 1579;
+ else
+ if (Up)
+ if (West) return 1580;
+ else return 1581;
+ else
+ if (West) return 1582;
+ else return 1583;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1584;
+ else return 1585;
+ else
+ if (West) return 1586;
+ else return 1587;
+ else
+ if (Up)
+ if (West) return 1588;
+ else return 1589;
+ else
+ if (West) return 1590;
+ else return 1591;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1592;
+ else return 1593;
+ else
+ if (West) return 1594;
+ else return 1595;
+ else
+ if (Up)
+ if (West) return 1596;
+ else return 1597;
+ else
+ if (West) return 1598;
+ else return 1599;
+ else if (Age == 5)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1600;
+ else return 1601;
+ else
+ if (West) return 1602;
+ else return 1603;
+ else
+ if (Up)
+ if (West) return 1604;
+ else return 1605;
+ else
+ if (West) return 1606;
+ else return 1607;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1608;
+ else return 1609;
+ else
+ if (West) return 1610;
+ else return 1611;
+ else
+ if (Up)
+ if (West) return 1612;
+ else return 1613;
+ else
+ if (West) return 1614;
+ else return 1615;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1616;
+ else return 1617;
+ else
+ if (West) return 1618;
+ else return 1619;
+ else
+ if (Up)
+ if (West) return 1620;
+ else return 1621;
+ else
+ if (West) return 1622;
+ else return 1623;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1624;
+ else return 1625;
+ else
+ if (West) return 1626;
+ else return 1627;
+ else
+ if (Up)
+ if (West) return 1628;
+ else return 1629;
+ else
+ if (West) return 1630;
+ else return 1631;
+ else if (Age == 6)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1632;
+ else return 1633;
+ else
+ if (West) return 1634;
+ else return 1635;
+ else
+ if (Up)
+ if (West) return 1636;
+ else return 1637;
+ else
+ if (West) return 1638;
+ else return 1639;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1640;
+ else return 1641;
+ else
+ if (West) return 1642;
+ else return 1643;
+ else
+ if (Up)
+ if (West) return 1644;
+ else return 1645;
+ else
+ if (West) return 1646;
+ else return 1647;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1648;
+ else return 1649;
+ else
+ if (West) return 1650;
+ else return 1651;
+ else
+ if (Up)
+ if (West) return 1652;
+ else return 1653;
+ else
+ if (West) return 1654;
+ else return 1655;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1656;
+ else return 1657;
+ else
+ if (West) return 1658;
+ else return 1659;
+ else
+ if (Up)
+ if (West) return 1660;
+ else return 1661;
+ else
+ if (West) return 1662;
+ else return 1663;
+ else if (Age == 7)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1664;
+ else return 1665;
+ else
+ if (West) return 1666;
+ else return 1667;
+ else
+ if (Up)
+ if (West) return 1668;
+ else return 1669;
+ else
+ if (West) return 1670;
+ else return 1671;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1672;
+ else return 1673;
+ else
+ if (West) return 1674;
+ else return 1675;
+ else
+ if (Up)
+ if (West) return 1676;
+ else return 1677;
+ else
+ if (West) return 1678;
+ else return 1679;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1680;
+ else return 1681;
+ else
+ if (West) return 1682;
+ else return 1683;
+ else
+ if (Up)
+ if (West) return 1684;
+ else return 1685;
+ else
+ if (West) return 1686;
+ else return 1687;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1688;
+ else return 1689;
+ else
+ if (West) return 1690;
+ else return 1691;
+ else
+ if (Up)
+ if (West) return 1692;
+ else return 1693;
+ else
+ if (West) return 1694;
+ else return 1695;
+ else if (Age == 8)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1696;
+ else return 1697;
+ else
+ if (West) return 1698;
+ else return 1699;
+ else
+ if (Up)
+ if (West) return 1700;
+ else return 1701;
+ else
+ if (West) return 1702;
+ else return 1703;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1704;
+ else return 1705;
+ else
+ if (West) return 1706;
+ else return 1707;
+ else
+ if (Up)
+ if (West) return 1708;
+ else return 1709;
+ else
+ if (West) return 1710;
+ else return 1711;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1712;
+ else return 1713;
+ else
+ if (West) return 1714;
+ else return 1715;
+ else
+ if (Up)
+ if (West) return 1716;
+ else return 1717;
+ else
+ if (West) return 1718;
+ else return 1719;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1720;
+ else return 1721;
+ else
+ if (West) return 1722;
+ else return 1723;
+ else
+ if (Up)
+ if (West) return 1724;
+ else return 1725;
+ else
+ if (West) return 1726;
+ else return 1727;
+ else if (Age == 9)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1728;
+ else return 1729;
+ else
+ if (West) return 1730;
+ else return 1731;
+ else
+ if (Up)
+ if (West) return 1732;
+ else return 1733;
+ else
+ if (West) return 1734;
+ else return 1735;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1736;
+ else return 1737;
+ else
+ if (West) return 1738;
+ else return 1739;
+ else
+ if (Up)
+ if (West) return 1740;
+ else return 1741;
+ else
+ if (West) return 1742;
+ else return 1743;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1744;
+ else return 1745;
+ else
+ if (West) return 1746;
+ else return 1747;
+ else
+ if (Up)
+ if (West) return 1748;
+ else return 1749;
+ else
+ if (West) return 1750;
+ else return 1751;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1752;
+ else return 1753;
+ else
+ if (West) return 1754;
+ else return 1755;
+ else
+ if (Up)
+ if (West) return 1756;
+ else return 1757;
+ else
+ if (West) return 1758;
+ else return 1759;
+ else if (Age == 10)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1760;
+ else return 1761;
+ else
+ if (West) return 1762;
+ else return 1763;
+ else
+ if (Up)
+ if (West) return 1764;
+ else return 1765;
+ else
+ if (West) return 1766;
+ else return 1767;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1768;
+ else return 1769;
+ else
+ if (West) return 1770;
+ else return 1771;
+ else
+ if (Up)
+ if (West) return 1772;
+ else return 1773;
+ else
+ if (West) return 1774;
+ else return 1775;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1776;
+ else return 1777;
+ else
+ if (West) return 1778;
+ else return 1779;
+ else
+ if (Up)
+ if (West) return 1780;
+ else return 1781;
+ else
+ if (West) return 1782;
+ else return 1783;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1784;
+ else return 1785;
+ else
+ if (West) return 1786;
+ else return 1787;
+ else
+ if (Up)
+ if (West) return 1788;
+ else return 1789;
+ else
+ if (West) return 1790;
+ else return 1791;
+ else if (Age == 11)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1792;
+ else return 1793;
+ else
+ if (West) return 1794;
+ else return 1795;
+ else
+ if (Up)
+ if (West) return 1796;
+ else return 1797;
+ else
+ if (West) return 1798;
+ else return 1799;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1800;
+ else return 1801;
+ else
+ if (West) return 1802;
+ else return 1803;
+ else
+ if (Up)
+ if (West) return 1804;
+ else return 1805;
+ else
+ if (West) return 1806;
+ else return 1807;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1808;
+ else return 1809;
+ else
+ if (West) return 1810;
+ else return 1811;
+ else
+ if (Up)
+ if (West) return 1812;
+ else return 1813;
+ else
+ if (West) return 1814;
+ else return 1815;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1816;
+ else return 1817;
+ else
+ if (West) return 1818;
+ else return 1819;
+ else
+ if (Up)
+ if (West) return 1820;
+ else return 1821;
+ else
+ if (West) return 1822;
+ else return 1823;
+ else if (Age == 12)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1824;
+ else return 1825;
+ else
+ if (West) return 1826;
+ else return 1827;
+ else
+ if (Up)
+ if (West) return 1828;
+ else return 1829;
+ else
+ if (West) return 1830;
+ else return 1831;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1832;
+ else return 1833;
+ else
+ if (West) return 1834;
+ else return 1835;
+ else
+ if (Up)
+ if (West) return 1836;
+ else return 1837;
+ else
+ if (West) return 1838;
+ else return 1839;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1840;
+ else return 1841;
+ else
+ if (West) return 1842;
+ else return 1843;
+ else
+ if (Up)
+ if (West) return 1844;
+ else return 1845;
+ else
+ if (West) return 1846;
+ else return 1847;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1848;
+ else return 1849;
+ else
+ if (West) return 1850;
+ else return 1851;
+ else
+ if (Up)
+ if (West) return 1852;
+ else return 1853;
+ else
+ if (West) return 1854;
+ else return 1855;
+ else if (Age == 13)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1856;
+ else return 1857;
+ else
+ if (West) return 1858;
+ else return 1859;
+ else
+ if (Up)
+ if (West) return 1860;
+ else return 1861;
+ else
+ if (West) return 1862;
+ else return 1863;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1864;
+ else return 1865;
+ else
+ if (West) return 1866;
+ else return 1867;
+ else
+ if (Up)
+ if (West) return 1868;
+ else return 1869;
+ else
+ if (West) return 1870;
+ else return 1871;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1872;
+ else return 1873;
+ else
+ if (West) return 1874;
+ else return 1875;
+ else
+ if (Up)
+ if (West) return 1876;
+ else return 1877;
+ else
+ if (West) return 1878;
+ else return 1879;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1880;
+ else return 1881;
+ else
+ if (West) return 1882;
+ else return 1883;
+ else
+ if (Up)
+ if (West) return 1884;
+ else return 1885;
+ else
+ if (West) return 1886;
+ else return 1887;
+ else if (Age == 14)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1888;
+ else return 1889;
+ else
+ if (West) return 1890;
+ else return 1891;
+ else
+ if (Up)
+ if (West) return 1892;
+ else return 1893;
+ else
+ if (West) return 1894;
+ else return 1895;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1896;
+ else return 1897;
+ else
+ if (West) return 1898;
+ else return 1899;
+ else
+ if (Up)
+ if (West) return 1900;
+ else return 1901;
+ else
+ if (West) return 1902;
+ else return 1903;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1904;
+ else return 1905;
+ else
+ if (West) return 1906;
+ else return 1907;
+ else
+ if (Up)
+ if (West) return 1908;
+ else return 1909;
+ else
+ if (West) return 1910;
+ else return 1911;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1912;
+ else return 1913;
+ else
+ if (West) return 1914;
+ else return 1915;
+ else
+ if (Up)
+ if (West) return 1916;
+ else return 1917;
+ else
+ if (West) return 1918;
+ else return 1919;
+ else
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1920;
+ else return 1921;
+ else
+ if (West) return 1922;
+ else return 1923;
+ else
+ if (Up)
+ if (West) return 1924;
+ else return 1925;
+ else
+ if (West) return 1926;
+ else return 1927;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1928;
+ else return 1929;
+ else
+ if (West) return 1930;
+ else return 1931;
+ else
+ if (Up)
+ if (West) return 1932;
+ else return 1933;
+ else
+ if (West) return 1934;
+ else return 1935;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 1936;
+ else return 1937;
+ else
+ if (West) return 1938;
+ else return 1939;
+ else
+ if (Up)
+ if (West) return 1940;
+ else return 1941;
+ else
+ if (West) return 1942;
+ else return 1943;
+ else
+ if (South)
+ if (Up)
+ if (West) return 1944;
+ else return 1945;
+ else
+ if (West) return 1946;
+ else return 1947;
+ else
+ if (Up)
+ if (West) return 1948;
+ else return 1949;
+ else
+ if (West) return 1950;
+ else return 1951;
+ }
+ BlockState Fire();
+ unsigned char Age(BlockState Block);
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool Up(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace FireCoral
+ {
+ constexpr BlockState FireCoral()
+ {
+ return 9537;
+ }
+ }
+ namespace FireCoralBlock
+ {
+ constexpr BlockState FireCoralBlock()
+ {
+ return 9518;
+ }
+ }
+ namespace FireCoralFan
+ {
+ constexpr BlockState FireCoralFan()
+ {
+ return 9557;
+ }
+ }
+ namespace FireCoralWallFan
+ {
+ constexpr BlockState FireCoralWallFan(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9625;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9627;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9629;
+ else return 9631;
+ }
+ BlockState FireCoralWallFan();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace FletchingTable
+ {
+ constexpr BlockState FletchingTable()
+ {
+ return 14820;
+ }
+ }
+ namespace FlowerPot
+ {
+ constexpr BlockState FlowerPot()
+ {
+ return 6305;
+ }
+ }
+ namespace FrostedIce
+ {
+ constexpr BlockState FrostedIce(const unsigned char Age)
+ {
+ if (Age == 0) return 9249;
+ else if (Age == 1) return 9250;
+ else if (Age == 2) return 9251;
+ else return 9252;
+ }
+ BlockState FrostedIce();
+ unsigned char Age(BlockState Block);
+ }
+ namespace Furnace
+ {
+ constexpr BlockState Furnace(const eBlockFace Facing, const bool Lit)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Lit) return 3373;
+ else return 3374;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Lit) return 3375;
+ else return 3376;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Lit) return 3377;
+ else return 3378;
+ else
+ if (Lit) return 3379;
+ else return 3380;
+ }
+ BlockState Furnace();
+ eBlockFace Facing(BlockState Block);
+ bool Lit(BlockState Block);
+ }
+ namespace GildedBlackstone
+ {
+ constexpr BlockState GildedBlackstone()
+ {
+ return 16664;
+ }
+ }
+ namespace Glass
+ {
+ constexpr BlockState Glass()
+ {
+ return 231;
+ }
+ }
+ namespace GlassPane
+ {
+ constexpr BlockState GlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 4733;
+ else return 4734;
+ else
+ if (West) return 4737;
+ else return 4738;
+ else
+ if (South)
+ if (West) return 4741;
+ else return 4742;
+ else
+ if (West) return 4745;
+ else return 4746;
+ else
+ if (North)
+ if (South)
+ if (West) return 4749;
+ else return 4750;
+ else
+ if (West) return 4753;
+ else return 4754;
+ else
+ if (South)
+ if (West) return 4757;
+ else return 4758;
+ else
+ if (West) return 4761;
+ else return 4762;
+ }
+ BlockState GlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace Glowstone
+ {
+ constexpr BlockState Glowstone()
+ {
+ return 4013;
+ }
+ }
+ namespace GoldBlock
+ {
+ constexpr BlockState GoldBlock()
+ {
+ return 1427;
+ }
+ }
+ namespace GoldOre
+ {
+ constexpr BlockState GoldOre()
+ {
+ return 69;
+ }
+ }
+ namespace Granite
+ {
+ constexpr BlockState Granite()
+ {
+ return 2;
+ }
+ }
+ namespace GraniteSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState GraniteSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 10838;
+ else if (Type == Type::Bottom) return 10840;
+ else return 10842;
+ }
+ BlockState GraniteSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace GraniteStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState GraniteStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10390;
+ else if (Shape == Shape::InnerLeft) return 10392;
+ else if (Shape == Shape::InnerRight) return 10394;
+ else if (Shape == Shape::OuterLeft) return 10396;
+ else return 10398;
+ else
+ if (Shape == Shape::Straight) return 10400;
+ else if (Shape == Shape::InnerLeft) return 10402;
+ else if (Shape == Shape::InnerRight) return 10404;
+ else if (Shape == Shape::OuterLeft) return 10406;
+ else return 10408;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10410;
+ else if (Shape == Shape::InnerLeft) return 10412;
+ else if (Shape == Shape::InnerRight) return 10414;
+ else if (Shape == Shape::OuterLeft) return 10416;
+ else return 10418;
+ else
+ if (Shape == Shape::Straight) return 10420;
+ else if (Shape == Shape::InnerLeft) return 10422;
+ else if (Shape == Shape::InnerRight) return 10424;
+ else if (Shape == Shape::OuterLeft) return 10426;
+ else return 10428;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10430;
+ else if (Shape == Shape::InnerLeft) return 10432;
+ else if (Shape == Shape::InnerRight) return 10434;
+ else if (Shape == Shape::OuterLeft) return 10436;
+ else return 10438;
+ else
+ if (Shape == Shape::Straight) return 10440;
+ else if (Shape == Shape::InnerLeft) return 10442;
+ else if (Shape == Shape::InnerRight) return 10444;
+ else if (Shape == Shape::OuterLeft) return 10446;
+ else return 10448;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10450;
+ else if (Shape == Shape::InnerLeft) return 10452;
+ else if (Shape == Shape::InnerRight) return 10454;
+ else if (Shape == Shape::OuterLeft) return 10456;
+ else return 10458;
+ else
+ if (Shape == Shape::Straight) return 10460;
+ else if (Shape == Shape::InnerLeft) return 10462;
+ else if (Shape == Shape::InnerRight) return 10464;
+ else if (Shape == Shape::OuterLeft) return 10466;
+ else return 10468;
+ }
+ BlockState GraniteStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace GraniteWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState GraniteWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12166;
+ else if (West == West::Low) return 12167;
+ else return 12168;
+ else
+ if (West == West::None) return 12172;
+ else if (West == West::Low) return 12173;
+ else return 12174;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12178;
+ else if (West == West::Low) return 12179;
+ else return 12180;
+ else
+ if (West == West::None) return 12184;
+ else if (West == West::Low) return 12185;
+ else return 12186;
+ else
+ if (Up)
+ if (West == West::None) return 12190;
+ else if (West == West::Low) return 12191;
+ else return 12192;
+ else
+ if (West == West::None) return 12196;
+ else if (West == West::Low) return 12197;
+ else return 12198;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12202;
+ else if (West == West::Low) return 12203;
+ else return 12204;
+ else
+ if (West == West::None) return 12208;
+ else if (West == West::Low) return 12209;
+ else return 12210;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12214;
+ else if (West == West::Low) return 12215;
+ else return 12216;
+ else
+ if (West == West::None) return 12220;
+ else if (West == West::Low) return 12221;
+ else return 12222;
+ else
+ if (Up)
+ if (West == West::None) return 12226;
+ else if (West == West::Low) return 12227;
+ else return 12228;
+ else
+ if (West == West::None) return 12232;
+ else if (West == West::Low) return 12233;
+ else return 12234;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12238;
+ else if (West == West::Low) return 12239;
+ else return 12240;
+ else
+ if (West == West::None) return 12244;
+ else if (West == West::Low) return 12245;
+ else return 12246;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12250;
+ else if (West == West::Low) return 12251;
+ else return 12252;
+ else
+ if (West == West::None) return 12256;
+ else if (West == West::Low) return 12257;
+ else return 12258;
+ else
+ if (Up)
+ if (West == West::None) return 12262;
+ else if (West == West::Low) return 12263;
+ else return 12264;
+ else
+ if (West == West::None) return 12268;
+ else if (West == West::Low) return 12269;
+ else return 12270;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12274;
+ else if (West == West::Low) return 12275;
+ else return 12276;
+ else
+ if (West == West::None) return 12280;
+ else if (West == West::Low) return 12281;
+ else return 12282;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12286;
+ else if (West == West::Low) return 12287;
+ else return 12288;
+ else
+ if (West == West::None) return 12292;
+ else if (West == West::Low) return 12293;
+ else return 12294;
+ else
+ if (Up)
+ if (West == West::None) return 12298;
+ else if (West == West::Low) return 12299;
+ else return 12300;
+ else
+ if (West == West::None) return 12304;
+ else if (West == West::Low) return 12305;
+ else return 12306;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12310;
+ else if (West == West::Low) return 12311;
+ else return 12312;
+ else
+ if (West == West::None) return 12316;
+ else if (West == West::Low) return 12317;
+ else return 12318;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12322;
+ else if (West == West::Low) return 12323;
+ else return 12324;
+ else
+ if (West == West::None) return 12328;
+ else if (West == West::Low) return 12329;
+ else return 12330;
+ else
+ if (Up)
+ if (West == West::None) return 12334;
+ else if (West == West::Low) return 12335;
+ else return 12336;
+ else
+ if (West == West::None) return 12340;
+ else if (West == West::Low) return 12341;
+ else return 12342;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12346;
+ else if (West == West::Low) return 12347;
+ else return 12348;
+ else
+ if (West == West::None) return 12352;
+ else if (West == West::Low) return 12353;
+ else return 12354;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12358;
+ else if (West == West::Low) return 12359;
+ else return 12360;
+ else
+ if (West == West::None) return 12364;
+ else if (West == West::Low) return 12365;
+ else return 12366;
+ else
+ if (Up)
+ if (West == West::None) return 12370;
+ else if (West == West::Low) return 12371;
+ else return 12372;
+ else
+ if (West == West::None) return 12376;
+ else if (West == West::Low) return 12377;
+ else return 12378;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12382;
+ else if (West == West::Low) return 12383;
+ else return 12384;
+ else
+ if (West == West::None) return 12388;
+ else if (West == West::Low) return 12389;
+ else return 12390;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12394;
+ else if (West == West::Low) return 12395;
+ else return 12396;
+ else
+ if (West == West::None) return 12400;
+ else if (West == West::Low) return 12401;
+ else return 12402;
+ else
+ if (Up)
+ if (West == West::None) return 12406;
+ else if (West == West::Low) return 12407;
+ else return 12408;
+ else
+ if (West == West::None) return 12412;
+ else if (West == West::Low) return 12413;
+ else return 12414;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12418;
+ else if (West == West::Low) return 12419;
+ else return 12420;
+ else
+ if (West == West::None) return 12424;
+ else if (West == West::Low) return 12425;
+ else return 12426;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12430;
+ else if (West == West::Low) return 12431;
+ else return 12432;
+ else
+ if (West == West::None) return 12436;
+ else if (West == West::Low) return 12437;
+ else return 12438;
+ else
+ if (Up)
+ if (West == West::None) return 12442;
+ else if (West == West::Low) return 12443;
+ else return 12444;
+ else
+ if (West == West::None) return 12448;
+ else if (West == West::Low) return 12449;
+ else return 12450;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12454;
+ else if (West == West::Low) return 12455;
+ else return 12456;
+ else
+ if (West == West::None) return 12460;
+ else if (West == West::Low) return 12461;
+ else return 12462;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12466;
+ else if (West == West::Low) return 12467;
+ else return 12468;
+ else
+ if (West == West::None) return 12472;
+ else if (West == West::Low) return 12473;
+ else return 12474;
+ else
+ if (Up)
+ if (West == West::None) return 12478;
+ else if (West == West::Low) return 12479;
+ else return 12480;
+ else
+ if (West == West::None) return 12484;
+ else if (West == West::Low) return 12485;
+ else return 12486;
+ }
+ BlockState GraniteWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace Grass
+ {
+ constexpr BlockState Grass()
+ {
+ return 1342;
+ }
+ }
+ namespace GrassBlock
+ {
+ constexpr BlockState GrassBlock(const bool Snowy)
+ {
+ if (Snowy) return 8;
+ else return 9;
+ }
+ BlockState GrassBlock();
+ bool Snowy(BlockState Block);
+ }
+ namespace GrassPath
+ {
+ constexpr BlockState GrassPath()
+ {
+ return 9223;
+ }
+ }
+ namespace Gravel
+ {
+ constexpr BlockState Gravel()
+ {
+ return 68;
+ }
+ }
+ namespace GrayBanner
+ {
+ constexpr BlockState GrayBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 8009;
+ else if (Rotation == 1) return 8010;
+ else if (Rotation == 2) return 8011;
+ else if (Rotation == 3) return 8012;
+ else if (Rotation == 4) return 8013;
+ else if (Rotation == 5) return 8014;
+ else if (Rotation == 6) return 8015;
+ else if (Rotation == 7) return 8016;
+ else if (Rotation == 8) return 8017;
+ else if (Rotation == 9) return 8018;
+ else if (Rotation == 10) return 8019;
+ else if (Rotation == 11) return 8020;
+ else if (Rotation == 12) return 8021;
+ else if (Rotation == 13) return 8022;
+ else if (Rotation == 14) return 8023;
+ else return 8024;
+ }
+ BlockState GrayBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace GrayBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState GrayBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1161;
+ else return 1162;
+ else
+ if (Part == Part::Head) return 1163;
+ else return 1164;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1165;
+ else return 1166;
+ else
+ if (Part == Part::Head) return 1167;
+ else return 1168;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1169;
+ else return 1170;
+ else
+ if (Part == Part::Head) return 1171;
+ else return 1172;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1173;
+ else return 1174;
+ else
+ if (Part == Part::Head) return 1175;
+ else return 1176;
+ }
+ BlockState GrayBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace GrayCarpet
+ {
+ constexpr BlockState GrayCarpet()
+ {
+ return 7873;
+ }
+ }
+ namespace GrayConcrete
+ {
+ constexpr BlockState GrayConcrete()
+ {
+ return 9445;
+ }
+ }
+ namespace GrayConcretePowder
+ {
+ constexpr BlockState GrayConcretePowder()
+ {
+ return 9461;
+ }
+ }
+ namespace GrayGlazedTerracotta
+ {
+ constexpr BlockState GrayGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9402;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9403;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9404;
+ else return 9405;
+ }
+ BlockState GrayGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace GrayShulkerBox
+ {
+ constexpr BlockState GrayShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9320;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9321;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9322;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9323;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9324;
+ else return 9325;
+ }
+ BlockState GrayShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace GrayStainedGlass
+ {
+ constexpr BlockState GrayStainedGlass()
+ {
+ return 4102;
+ }
+ }
+ namespace GrayStainedGlassPane
+ {
+ constexpr BlockState GrayStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 7089;
+ else return 7090;
+ else
+ if (West) return 7093;
+ else return 7094;
+ else
+ if (South)
+ if (West) return 7097;
+ else return 7098;
+ else
+ if (West) return 7101;
+ else return 7102;
+ else
+ if (North)
+ if (South)
+ if (West) return 7105;
+ else return 7106;
+ else
+ if (West) return 7109;
+ else return 7110;
+ else
+ if (South)
+ if (West) return 7113;
+ else return 7114;
+ else
+ if (West) return 7117;
+ else return 7118;
+ }
+ BlockState GrayStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace GrayTerracotta
+ {
+ constexpr BlockState GrayTerracotta()
+ {
+ return 6854;
+ }
+ }
+ namespace GrayWallBanner
+ {
+ constexpr BlockState GrayWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8181;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8182;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8183;
+ else return 8184;
+ }
+ BlockState GrayWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace GrayWool
+ {
+ constexpr BlockState GrayWool()
+ {
+ return 1391;
+ }
+ }
+ namespace GreenBanner
+ {
+ constexpr BlockState GreenBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 8105;
+ else if (Rotation == 1) return 8106;
+ else if (Rotation == 2) return 8107;
+ else if (Rotation == 3) return 8108;
+ else if (Rotation == 4) return 8109;
+ else if (Rotation == 5) return 8110;
+ else if (Rotation == 6) return 8111;
+ else if (Rotation == 7) return 8112;
+ else if (Rotation == 8) return 8113;
+ else if (Rotation == 9) return 8114;
+ else if (Rotation == 10) return 8115;
+ else if (Rotation == 11) return 8116;
+ else if (Rotation == 12) return 8117;
+ else if (Rotation == 13) return 8118;
+ else if (Rotation == 14) return 8119;
+ else return 8120;
+ }
+ BlockState GreenBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace GreenBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState GreenBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1257;
+ else return 1258;
+ else
+ if (Part == Part::Head) return 1259;
+ else return 1260;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1261;
+ else return 1262;
+ else
+ if (Part == Part::Head) return 1263;
+ else return 1264;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1265;
+ else return 1266;
+ else
+ if (Part == Part::Head) return 1267;
+ else return 1268;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1269;
+ else return 1270;
+ else
+ if (Part == Part::Head) return 1271;
+ else return 1272;
+ }
+ BlockState GreenBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace GreenCarpet
+ {
+ constexpr BlockState GreenCarpet()
+ {
+ return 7879;
+ }
+ }
+ namespace GreenConcrete
+ {
+ constexpr BlockState GreenConcrete()
+ {
+ return 9451;
+ }
+ }
+ namespace GreenConcretePowder
+ {
+ constexpr BlockState GreenConcretePowder()
+ {
+ return 9467;
+ }
+ }
+ namespace GreenGlazedTerracotta
+ {
+ constexpr BlockState GreenGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9426;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9427;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9428;
+ else return 9429;
+ }
+ BlockState GreenGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace GreenShulkerBox
+ {
+ constexpr BlockState GreenShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9356;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9357;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9358;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9359;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9360;
+ else return 9361;
+ }
+ BlockState GreenShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace GreenStainedGlass
+ {
+ constexpr BlockState GreenStainedGlass()
+ {
+ return 4108;
+ }
+ }
+ namespace GreenStainedGlassPane
+ {
+ constexpr BlockState GreenStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 7281;
+ else return 7282;
+ else
+ if (West) return 7285;
+ else return 7286;
+ else
+ if (South)
+ if (West) return 7289;
+ else return 7290;
+ else
+ if (West) return 7293;
+ else return 7294;
+ else
+ if (North)
+ if (South)
+ if (West) return 7297;
+ else return 7298;
+ else
+ if (West) return 7301;
+ else return 7302;
+ else
+ if (South)
+ if (West) return 7305;
+ else return 7306;
+ else
+ if (West) return 7309;
+ else return 7310;
+ }
+ BlockState GreenStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace GreenTerracotta
+ {
+ constexpr BlockState GreenTerracotta()
+ {
+ return 6860;
+ }
+ }
+ namespace GreenWallBanner
+ {
+ constexpr BlockState GreenWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8205;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8206;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8207;
+ else return 8208;
+ }
+ BlockState GreenWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace GreenWool
+ {
+ constexpr BlockState GreenWool()
+ {
+ return 1397;
+ }
+ }
+ namespace Grindstone
+ {
+ enum class Face
+ {
+ Floor,
+ Wall,
+ Ceiling
+ };
+ constexpr BlockState Grindstone(const enum Face Face, const eBlockFace Facing)
+ {
+ if (Face == Face::Floor)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 14821;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 14822;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 14823;
+ else return 14824;
+ else if (Face == Face::Wall)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 14825;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 14826;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 14827;
+ else return 14828;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 14829;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 14830;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 14831;
+ else return 14832;
+ }
+ BlockState Grindstone();
+ enum Face Face(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace HayBale
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState HayBale(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 7863;
+ else if (Axis == Axis::Y) return 7864;
+ else return 7865;
+ }
+ BlockState HayBale();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace HeavyWeightedPressurePlate
+ {
+ constexpr BlockState HeavyWeightedPressurePlate(const unsigned char Power)
+ {
+ if (Power == 0) return 6662;
+ else if (Power == 1) return 6663;
+ else if (Power == 2) return 6664;
+ else if (Power == 3) return 6665;
+ else if (Power == 4) return 6666;
+ else if (Power == 5) return 6667;
+ else if (Power == 6) return 6668;
+ else if (Power == 7) return 6669;
+ else if (Power == 8) return 6670;
+ else if (Power == 9) return 6671;
+ else if (Power == 10) return 6672;
+ else if (Power == 11) return 6673;
+ else if (Power == 12) return 6674;
+ else if (Power == 13) return 6675;
+ else if (Power == 14) return 6676;
+ else return 6677;
+ }
+ BlockState HeavyWeightedPressurePlate();
+ unsigned char Power(BlockState Block);
+ }
+ namespace HoneyBlock
+ {
+ constexpr BlockState HoneyBlock()
+ {
+ return 15824;
+ }
+ }
+ namespace HoneycombBlock
+ {
+ constexpr BlockState HoneycombBlock()
+ {
+ return 15825;
+ }
+ }
+ namespace Hopper
+ {
+ constexpr BlockState Hopper(const bool Enabled, const eBlockFace Facing)
+ {
+ if (Enabled)
+ if (Facing == eBlockFace::BLOCK_FACE_YM) return 6728;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6729;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6730;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 6731;
+ else return 6732;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_YM) return 6733;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6734;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6735;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 6736;
+ else return 6737;
+ }
+ BlockState Hopper();
+ bool Enabled(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace HornCoral
+ {
+ constexpr BlockState HornCoral()
+ {
+ return 9539;
+ }
+ }
+ namespace HornCoralBlock
+ {
+ constexpr BlockState HornCoralBlock()
+ {
+ return 9519;
+ }
+ }
+ namespace HornCoralFan
+ {
+ constexpr BlockState HornCoralFan()
+ {
+ return 9559;
+ }
+ }
+ namespace HornCoralWallFan
+ {
+ constexpr BlockState HornCoralWallFan(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9633;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9635;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9637;
+ else return 9639;
+ }
+ BlockState HornCoralWallFan();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace Ice
+ {
+ constexpr BlockState Ice()
+ {
+ return 3929;
+ }
+ }
+ namespace InfestedChiseledStoneBricks
+ {
+ constexpr BlockState InfestedChiseledStoneBricks()
+ {
+ return 4504;
+ }
+ }
+ namespace InfestedCobblestone
+ {
+ constexpr BlockState InfestedCobblestone()
+ {
+ return 4500;
+ }
+ }
+ namespace InfestedCrackedStoneBricks
+ {
+ constexpr BlockState InfestedCrackedStoneBricks()
+ {
+ return 4503;
+ }
+ }
+ namespace InfestedMossyStoneBricks
+ {
+ constexpr BlockState InfestedMossyStoneBricks()
+ {
+ return 4502;
+ }
+ }
+ namespace InfestedStone
+ {
+ constexpr BlockState InfestedStone()
+ {
+ return 4499;
+ }
+ }
+ namespace InfestedStoneBricks
+ {
+ constexpr BlockState InfestedStoneBricks()
+ {
+ return 4501;
+ }
+ }
+ namespace IronBars
+ {
+ constexpr BlockState IronBars(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 4699;
+ else return 4700;
+ else
+ if (West) return 4703;
+ else return 4704;
+ else
+ if (South)
+ if (West) return 4707;
+ else return 4708;
+ else
+ if (West) return 4711;
+ else return 4712;
+ else
+ if (North)
+ if (South)
+ if (West) return 4715;
+ else return 4716;
+ else
+ if (West) return 4719;
+ else return 4720;
+ else
+ if (South)
+ if (West) return 4723;
+ else return 4724;
+ else
+ if (West) return 4727;
+ else return 4728;
+ }
+ BlockState IronBars();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace IronBlock
+ {
+ constexpr BlockState IronBlock()
+ {
+ return 1428;
+ }
+ }
+ namespace IronDoor
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ enum class Hinge
+ {
+ Left,
+ Right
+ };
+ constexpr BlockState IronDoor(const eBlockFace Facing, const enum Half Half, const enum Hinge Hinge, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3809;
+ else return 3810;
+ else
+ if (Powered) return 3811;
+ else return 3812;
+ else
+ if (Open)
+ if (Powered) return 3813;
+ else return 3814;
+ else
+ if (Powered) return 3815;
+ else return 3816;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3817;
+ else return 3818;
+ else
+ if (Powered) return 3819;
+ else return 3820;
+ else
+ if (Open)
+ if (Powered) return 3821;
+ else return 3822;
+ else
+ if (Powered) return 3823;
+ else return 3824;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3825;
+ else return 3826;
+ else
+ if (Powered) return 3827;
+ else return 3828;
+ else
+ if (Open)
+ if (Powered) return 3829;
+ else return 3830;
+ else
+ if (Powered) return 3831;
+ else return 3832;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3833;
+ else return 3834;
+ else
+ if (Powered) return 3835;
+ else return 3836;
+ else
+ if (Open)
+ if (Powered) return 3837;
+ else return 3838;
+ else
+ if (Powered) return 3839;
+ else return 3840;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3841;
+ else return 3842;
+ else
+ if (Powered) return 3843;
+ else return 3844;
+ else
+ if (Open)
+ if (Powered) return 3845;
+ else return 3846;
+ else
+ if (Powered) return 3847;
+ else return 3848;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3849;
+ else return 3850;
+ else
+ if (Powered) return 3851;
+ else return 3852;
+ else
+ if (Open)
+ if (Powered) return 3853;
+ else return 3854;
+ else
+ if (Powered) return 3855;
+ else return 3856;
+ else
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3857;
+ else return 3858;
+ else
+ if (Powered) return 3859;
+ else return 3860;
+ else
+ if (Open)
+ if (Powered) return 3861;
+ else return 3862;
+ else
+ if (Powered) return 3863;
+ else return 3864;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3865;
+ else return 3866;
+ else
+ if (Powered) return 3867;
+ else return 3868;
+ else
+ if (Open)
+ if (Powered) return 3869;
+ else return 3870;
+ else
+ if (Powered) return 3871;
+ else return 3872;
+ }
+ BlockState IronDoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Hinge Hinge(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace IronOre
+ {
+ constexpr BlockState IronOre()
+ {
+ return 70;
+ }
+ }
+ namespace IronTrapdoor
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ constexpr BlockState IronTrapdoor(const eBlockFace Facing, const enum Half Half, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 7538;
+ else return 7540;
+ else
+ if (Powered) return 7542;
+ else return 7544;
+ else
+ if (Open)
+ if (Powered) return 7546;
+ else return 7548;
+ else
+ if (Powered) return 7550;
+ else return 7552;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 7554;
+ else return 7556;
+ else
+ if (Powered) return 7558;
+ else return 7560;
+ else
+ if (Open)
+ if (Powered) return 7562;
+ else return 7564;
+ else
+ if (Powered) return 7566;
+ else return 7568;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 7570;
+ else return 7572;
+ else
+ if (Powered) return 7574;
+ else return 7576;
+ else
+ if (Open)
+ if (Powered) return 7578;
+ else return 7580;
+ else
+ if (Powered) return 7582;
+ else return 7584;
+ else
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 7586;
+ else return 7588;
+ else
+ if (Powered) return 7590;
+ else return 7592;
+ else
+ if (Open)
+ if (Powered) return 7594;
+ else return 7596;
+ else
+ if (Powered) return 7598;
+ else return 7600;
+ }
+ BlockState IronTrapdoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace JackOLantern
+ {
+ constexpr BlockState JackOLantern(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4020;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4021;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 4022;
+ else return 4023;
+ }
+ BlockState JackOLantern();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace Jigsaw
+ {
+ enum class Orientation
+ {
+ DownEast,
+ DownNorth,
+ DownSouth,
+ DownWest,
+ UpEast,
+ UpNorth,
+ UpSouth,
+ UpWest,
+ WestUp,
+ EastUp,
+ NorthUp,
+ SouthUp
+ };
+ constexpr BlockState Jigsaw(const enum Orientation Orientation)
+ {
+ if (Orientation == Orientation::DownEast) return 15739;
+ else if (Orientation == Orientation::DownNorth) return 15740;
+ else if (Orientation == Orientation::DownSouth) return 15741;
+ else if (Orientation == Orientation::DownWest) return 15742;
+ else if (Orientation == Orientation::UpEast) return 15743;
+ else if (Orientation == Orientation::UpNorth) return 15744;
+ else if (Orientation == Orientation::UpSouth) return 15745;
+ else if (Orientation == Orientation::UpWest) return 15746;
+ else if (Orientation == Orientation::WestUp) return 15747;
+ else if (Orientation == Orientation::EastUp) return 15748;
+ else if (Orientation == Orientation::NorthUp) return 15749;
+ else return 15750;
+ }
+ BlockState Jigsaw();
+ enum Orientation Orientation(BlockState Block);
+ }
+ namespace Jukebox
+ {
+ constexpr BlockState Jukebox(const bool HasRecord)
+ {
+ if (HasRecord) return 3964;
+ else return 3965;
+ }
+ BlockState Jukebox();
+ bool HasRecord(BlockState Block);
+ }
+ namespace JungleButton
+ {
+ enum class Face
+ {
+ Floor,
+ Wall,
+ Ceiling
+ };
+ constexpr BlockState JungleButton(const enum Face Face, const eBlockFace Facing, const bool Powered)
+ {
+ if (Face == Face::Floor)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6418;
+ else return 6419;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6420;
+ else return 6421;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6422;
+ else return 6423;
+ else
+ if (Powered) return 6424;
+ else return 6425;
+ else if (Face == Face::Wall)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6426;
+ else return 6427;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6428;
+ else return 6429;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6430;
+ else return 6431;
+ else
+ if (Powered) return 6432;
+ else return 6433;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6434;
+ else return 6435;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6436;
+ else return 6437;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6438;
+ else return 6439;
+ else
+ if (Powered) return 6440;
+ else return 6441;
+ }
+ BlockState JungleButton();
+ enum Face Face(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace JungleDoor
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ enum class Hinge
+ {
+ Left,
+ Right
+ };
+ constexpr BlockState JungleDoor(const eBlockFace Facing, const enum Half Half, const enum Hinge Hinge, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8866;
+ else return 8867;
+ else
+ if (Powered) return 8868;
+ else return 8869;
+ else
+ if (Open)
+ if (Powered) return 8870;
+ else return 8871;
+ else
+ if (Powered) return 8872;
+ else return 8873;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8874;
+ else return 8875;
+ else
+ if (Powered) return 8876;
+ else return 8877;
+ else
+ if (Open)
+ if (Powered) return 8878;
+ else return 8879;
+ else
+ if (Powered) return 8880;
+ else return 8881;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8882;
+ else return 8883;
+ else
+ if (Powered) return 8884;
+ else return 8885;
+ else
+ if (Open)
+ if (Powered) return 8886;
+ else return 8887;
+ else
+ if (Powered) return 8888;
+ else return 8889;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8890;
+ else return 8891;
+ else
+ if (Powered) return 8892;
+ else return 8893;
+ else
+ if (Open)
+ if (Powered) return 8894;
+ else return 8895;
+ else
+ if (Powered) return 8896;
+ else return 8897;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8898;
+ else return 8899;
+ else
+ if (Powered) return 8900;
+ else return 8901;
+ else
+ if (Open)
+ if (Powered) return 8902;
+ else return 8903;
+ else
+ if (Powered) return 8904;
+ else return 8905;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8906;
+ else return 8907;
+ else
+ if (Powered) return 8908;
+ else return 8909;
+ else
+ if (Open)
+ if (Powered) return 8910;
+ else return 8911;
+ else
+ if (Powered) return 8912;
+ else return 8913;
+ else
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8914;
+ else return 8915;
+ else
+ if (Powered) return 8916;
+ else return 8917;
+ else
+ if (Open)
+ if (Powered) return 8918;
+ else return 8919;
+ else
+ if (Powered) return 8920;
+ else return 8921;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8922;
+ else return 8923;
+ else
+ if (Powered) return 8924;
+ else return 8925;
+ else
+ if (Open)
+ if (Powered) return 8926;
+ else return 8927;
+ else
+ if (Powered) return 8928;
+ else return 8929;
+ }
+ BlockState JungleDoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Hinge Hinge(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace JungleFence
+ {
+ constexpr BlockState JungleFence(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 8644;
+ else return 8645;
+ else
+ if (West) return 8648;
+ else return 8649;
+ else
+ if (South)
+ if (West) return 8652;
+ else return 8653;
+ else
+ if (West) return 8656;
+ else return 8657;
+ else
+ if (North)
+ if (South)
+ if (West) return 8660;
+ else return 8661;
+ else
+ if (West) return 8664;
+ else return 8665;
+ else
+ if (South)
+ if (West) return 8668;
+ else return 8669;
+ else
+ if (West) return 8672;
+ else return 8673;
+ }
+ BlockState JungleFence();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace JungleFenceGate
+ {
+ constexpr BlockState JungleFenceGate(const eBlockFace Facing, const bool InWall, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8482;
+ else return 8483;
+ else
+ if (Powered) return 8484;
+ else return 8485;
+ else
+ if (Open)
+ if (Powered) return 8486;
+ else return 8487;
+ else
+ if (Powered) return 8488;
+ else return 8489;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8490;
+ else return 8491;
+ else
+ if (Powered) return 8492;
+ else return 8493;
+ else
+ if (Open)
+ if (Powered) return 8494;
+ else return 8495;
+ else
+ if (Powered) return 8496;
+ else return 8497;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8498;
+ else return 8499;
+ else
+ if (Powered) return 8500;
+ else return 8501;
+ else
+ if (Open)
+ if (Powered) return 8502;
+ else return 8503;
+ else
+ if (Powered) return 8504;
+ else return 8505;
+ else
+ if (InWall)
+ if (Open)
+ if (Powered) return 8506;
+ else return 8507;
+ else
+ if (Powered) return 8508;
+ else return 8509;
+ else
+ if (Open)
+ if (Powered) return 8510;
+ else return 8511;
+ else
+ if (Powered) return 8512;
+ else return 8513;
+ }
+ BlockState JungleFenceGate();
+ eBlockFace Facing(BlockState Block);
+ bool InWall(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace JungleLeaves
+ {
+ constexpr BlockState JungleLeaves(const unsigned char Distance, const bool Persistent)
+ {
+ if (Distance == 1)
+ if (Persistent) return 187;
+ else return 188;
+ else if (Distance == 2)
+ if (Persistent) return 189;
+ else return 190;
+ else if (Distance == 3)
+ if (Persistent) return 191;
+ else return 192;
+ else if (Distance == 4)
+ if (Persistent) return 193;
+ else return 194;
+ else if (Distance == 5)
+ if (Persistent) return 195;
+ else return 196;
+ else if (Distance == 6)
+ if (Persistent) return 197;
+ else return 198;
+ else
+ if (Persistent) return 199;
+ else return 200;
+ }
+ BlockState JungleLeaves();
+ unsigned char Distance(BlockState Block);
+ bool Persistent(BlockState Block);
+ }
+ namespace JungleLog
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState JungleLog(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 82;
+ else if (Axis == Axis::Y) return 83;
+ else return 84;
+ }
+ BlockState JungleLog();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace JunglePlanks
+ {
+ constexpr BlockState JunglePlanks()
+ {
+ return 18;
+ }
+ }
+ namespace JunglePressurePlate
+ {
+ constexpr BlockState JunglePressurePlate(const bool Powered)
+ {
+ if (Powered) return 3879;
+ else return 3880;
+ }
+ BlockState JunglePressurePlate();
+ bool Powered(BlockState Block);
+ }
+ namespace JungleSapling
+ {
+ constexpr BlockState JungleSapling(const unsigned char Stage)
+ {
+ if (Stage == 0) return 27;
+ else return 28;
+ }
+ BlockState JungleSapling();
+ unsigned char Stage(BlockState Block);
+ }
+ namespace JungleSign
+ {
+ constexpr BlockState JungleSign(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 3510;
+ else if (Rotation == 1) return 3512;
+ else if (Rotation == 2) return 3514;
+ else if (Rotation == 3) return 3516;
+ else if (Rotation == 4) return 3518;
+ else if (Rotation == 5) return 3520;
+ else if (Rotation == 6) return 3522;
+ else if (Rotation == 7) return 3524;
+ else if (Rotation == 8) return 3526;
+ else if (Rotation == 9) return 3528;
+ else if (Rotation == 10) return 3530;
+ else if (Rotation == 11) return 3532;
+ else if (Rotation == 12) return 3534;
+ else if (Rotation == 13) return 3536;
+ else if (Rotation == 14) return 3538;
+ else return 3540;
+ }
+ BlockState JungleSign();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace JungleSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState JungleSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8319;
+ else if (Type == Type::Bottom) return 8321;
+ else return 8323;
+ }
+ BlockState JungleSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace JungleStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState JungleStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5565;
+ else if (Shape == Shape::InnerLeft) return 5567;
+ else if (Shape == Shape::InnerRight) return 5569;
+ else if (Shape == Shape::OuterLeft) return 5571;
+ else return 5573;
+ else
+ if (Shape == Shape::Straight) return 5575;
+ else if (Shape == Shape::InnerLeft) return 5577;
+ else if (Shape == Shape::InnerRight) return 5579;
+ else if (Shape == Shape::OuterLeft) return 5581;
+ else return 5583;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5585;
+ else if (Shape == Shape::InnerLeft) return 5587;
+ else if (Shape == Shape::InnerRight) return 5589;
+ else if (Shape == Shape::OuterLeft) return 5591;
+ else return 5593;
+ else
+ if (Shape == Shape::Straight) return 5595;
+ else if (Shape == Shape::InnerLeft) return 5597;
+ else if (Shape == Shape::InnerRight) return 5599;
+ else if (Shape == Shape::OuterLeft) return 5601;
+ else return 5603;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5605;
+ else if (Shape == Shape::InnerLeft) return 5607;
+ else if (Shape == Shape::InnerRight) return 5609;
+ else if (Shape == Shape::OuterLeft) return 5611;
+ else return 5613;
+ else
+ if (Shape == Shape::Straight) return 5615;
+ else if (Shape == Shape::InnerLeft) return 5617;
+ else if (Shape == Shape::InnerRight) return 5619;
+ else if (Shape == Shape::OuterLeft) return 5621;
+ else return 5623;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5625;
+ else if (Shape == Shape::InnerLeft) return 5627;
+ else if (Shape == Shape::InnerRight) return 5629;
+ else if (Shape == Shape::OuterLeft) return 5631;
+ else return 5633;
+ else
+ if (Shape == Shape::Straight) return 5635;
+ else if (Shape == Shape::InnerLeft) return 5637;
+ else if (Shape == Shape::InnerRight) return 5639;
+ else if (Shape == Shape::OuterLeft) return 5641;
+ else return 5643;
+ }
+ BlockState JungleStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace JungleTrapdoor
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ constexpr BlockState JungleTrapdoor(const eBlockFace Facing, const enum Half Half, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4304;
+ else return 4306;
+ else
+ if (Powered) return 4308;
+ else return 4310;
+ else
+ if (Open)
+ if (Powered) return 4312;
+ else return 4314;
+ else
+ if (Powered) return 4316;
+ else return 4318;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4320;
+ else return 4322;
+ else
+ if (Powered) return 4324;
+ else return 4326;
+ else
+ if (Open)
+ if (Powered) return 4328;
+ else return 4330;
+ else
+ if (Powered) return 4332;
+ else return 4334;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4336;
+ else return 4338;
+ else
+ if (Powered) return 4340;
+ else return 4342;
+ else
+ if (Open)
+ if (Powered) return 4344;
+ else return 4346;
+ else
+ if (Powered) return 4348;
+ else return 4350;
+ else
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4352;
+ else return 4354;
+ else
+ if (Powered) return 4356;
+ else return 4358;
+ else
+ if (Open)
+ if (Powered) return 4360;
+ else return 4362;
+ else
+ if (Powered) return 4364;
+ else return 4366;
+ }
+ BlockState JungleTrapdoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace JungleWallSign
+ {
+ constexpr BlockState JungleWallSign(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3768;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3770;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 3772;
+ else return 3774;
+ }
+ BlockState JungleWallSign();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace JungleWood
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState JungleWood(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 118;
+ else if (Axis == Axis::Y) return 119;
+ else return 120;
+ }
+ BlockState JungleWood();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace Kelp
+ {
+ constexpr BlockState Kelp(const unsigned char Age)
+ {
+ if (Age == 0) return 9470;
+ else if (Age == 1) return 9471;
+ else if (Age == 2) return 9472;
+ else if (Age == 3) return 9473;
+ else if (Age == 4) return 9474;
+ else if (Age == 5) return 9475;
+ else if (Age == 6) return 9476;
+ else if (Age == 7) return 9477;
+ else if (Age == 8) return 9478;
+ else if (Age == 9) return 9479;
+ else if (Age == 10) return 9480;
+ else if (Age == 11) return 9481;
+ else if (Age == 12) return 9482;
+ else if (Age == 13) return 9483;
+ else if (Age == 14) return 9484;
+ else if (Age == 15) return 9485;
+ else if (Age == 16) return 9486;
+ else if (Age == 17) return 9487;
+ else if (Age == 18) return 9488;
+ else if (Age == 19) return 9489;
+ else if (Age == 20) return 9490;
+ else if (Age == 21) return 9491;
+ else if (Age == 22) return 9492;
+ else if (Age == 23) return 9493;
+ else if (Age == 24) return 9494;
+ else return 9495;
+ }
+ BlockState Kelp();
+ unsigned char Age(BlockState Block);
+ }
+ namespace KelpPlant
+ {
+ constexpr BlockState KelpPlant()
+ {
+ return 9496;
+ }
+ }
+ namespace Ladder
+ {
+ constexpr BlockState Ladder(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3638;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3640;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 3642;
+ else return 3644;
+ }
+ BlockState Ladder();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace Lantern
+ {
+ constexpr BlockState Lantern(const bool Hanging)
+ {
+ if (Hanging) return 14886;
+ else return 14887;
+ }
+ BlockState Lantern();
+ bool Hanging(BlockState Block);
+ }
+ namespace LapisBlock
+ {
+ constexpr BlockState LapisBlock()
+ {
+ return 233;
+ }
+ }
+ namespace LapisOre
+ {
+ constexpr BlockState LapisOre()
+ {
+ return 232;
+ }
+ }
+ namespace LargeFern
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ constexpr BlockState LargeFern(const enum Half Half)
+ {
+ if (Half == Half::Upper) return 7895;
+ else return 7896;
+ }
+ BlockState LargeFern();
+ enum Half Half(BlockState Block);
+ }
+ namespace Lava
+ {
+ constexpr BlockState Lava(const unsigned char Level)
+ {
+ if (Level == 0) return 50;
+ else if (Level == 1) return 51;
+ else if (Level == 2) return 52;
+ else if (Level == 3) return 53;
+ else if (Level == 4) return 54;
+ else if (Level == 5) return 55;
+ else if (Level == 6) return 56;
+ else if (Level == 7) return 57;
+ else if (Level == 8) return 58;
+ else if (Level == 9) return 59;
+ else if (Level == 10) return 60;
+ else if (Level == 11) return 61;
+ else if (Level == 12) return 62;
+ else if (Level == 13) return 63;
+ else if (Level == 14) return 64;
+ else return 65;
+ }
+ BlockState Lava();
+ unsigned char Level(BlockState Block);
+ }
+ namespace Lectern
+ {
+ constexpr BlockState Lectern(const eBlockFace Facing, const bool HasBook, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (HasBook)
+ if (Powered) return 14833;
+ else return 14834;
+ else
+ if (Powered) return 14835;
+ else return 14836;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (HasBook)
+ if (Powered) return 14837;
+ else return 14838;
+ else
+ if (Powered) return 14839;
+ else return 14840;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (HasBook)
+ if (Powered) return 14841;
+ else return 14842;
+ else
+ if (Powered) return 14843;
+ else return 14844;
+ else
+ if (HasBook)
+ if (Powered) return 14845;
+ else return 14846;
+ else
+ if (Powered) return 14847;
+ else return 14848;
+ }
+ BlockState Lectern();
+ eBlockFace Facing(BlockState Block);
+ bool HasBook(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace Lever
+ {
+ enum class Face
+ {
+ Floor,
+ Wall,
+ Ceiling
+ };
+ constexpr BlockState Lever(const enum Face Face, const eBlockFace Facing, const bool Powered)
+ {
+ if (Face == Face::Floor)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 3783;
+ else return 3784;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 3785;
+ else return 3786;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 3787;
+ else return 3788;
+ else
+ if (Powered) return 3789;
+ else return 3790;
+ else if (Face == Face::Wall)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 3791;
+ else return 3792;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 3793;
+ else return 3794;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 3795;
+ else return 3796;
+ else
+ if (Powered) return 3797;
+ else return 3798;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 3799;
+ else return 3800;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 3801;
+ else return 3802;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 3803;
+ else return 3804;
+ else
+ if (Powered) return 3805;
+ else return 3806;
+ }
+ BlockState Lever();
+ enum Face Face(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace LightBlueBanner
+ {
+ constexpr BlockState LightBlueBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 7945;
+ else if (Rotation == 1) return 7946;
+ else if (Rotation == 2) return 7947;
+ else if (Rotation == 3) return 7948;
+ else if (Rotation == 4) return 7949;
+ else if (Rotation == 5) return 7950;
+ else if (Rotation == 6) return 7951;
+ else if (Rotation == 7) return 7952;
+ else if (Rotation == 8) return 7953;
+ else if (Rotation == 9) return 7954;
+ else if (Rotation == 10) return 7955;
+ else if (Rotation == 11) return 7956;
+ else if (Rotation == 12) return 7957;
+ else if (Rotation == 13) return 7958;
+ else if (Rotation == 14) return 7959;
+ else return 7960;
+ }
+ BlockState LightBlueBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace LightBlueBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState LightBlueBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1097;
+ else return 1098;
+ else
+ if (Part == Part::Head) return 1099;
+ else return 1100;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1101;
+ else return 1102;
+ else
+ if (Part == Part::Head) return 1103;
+ else return 1104;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1105;
+ else return 1106;
+ else
+ if (Part == Part::Head) return 1107;
+ else return 1108;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1109;
+ else return 1110;
+ else
+ if (Part == Part::Head) return 1111;
+ else return 1112;
+ }
+ BlockState LightBlueBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace LightBlueCarpet
+ {
+ constexpr BlockState LightBlueCarpet()
+ {
+ return 7869;
+ }
+ }
+ namespace LightBlueConcrete
+ {
+ constexpr BlockState LightBlueConcrete()
+ {
+ return 9441;
+ }
+ }
+ namespace LightBlueConcretePowder
+ {
+ constexpr BlockState LightBlueConcretePowder()
+ {
+ return 9457;
+ }
+ }
+ namespace LightBlueGlazedTerracotta
+ {
+ constexpr BlockState LightBlueGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9386;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9387;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9388;
+ else return 9389;
+ }
+ BlockState LightBlueGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace LightBlueShulkerBox
+ {
+ constexpr BlockState LightBlueShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9296;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9297;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9298;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9299;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9300;
+ else return 9301;
+ }
+ BlockState LightBlueShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace LightBlueStainedGlass
+ {
+ constexpr BlockState LightBlueStainedGlass()
+ {
+ return 4098;
+ }
+ }
+ namespace LightBlueStainedGlassPane
+ {
+ constexpr BlockState LightBlueStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 6961;
+ else return 6962;
+ else
+ if (West) return 6965;
+ else return 6966;
+ else
+ if (South)
+ if (West) return 6969;
+ else return 6970;
+ else
+ if (West) return 6973;
+ else return 6974;
+ else
+ if (North)
+ if (South)
+ if (West) return 6977;
+ else return 6978;
+ else
+ if (West) return 6981;
+ else return 6982;
+ else
+ if (South)
+ if (West) return 6985;
+ else return 6986;
+ else
+ if (West) return 6989;
+ else return 6990;
+ }
+ BlockState LightBlueStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace LightBlueTerracotta
+ {
+ constexpr BlockState LightBlueTerracotta()
+ {
+ return 6850;
+ }
+ }
+ namespace LightBlueWallBanner
+ {
+ constexpr BlockState LightBlueWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8165;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8166;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8167;
+ else return 8168;
+ }
+ BlockState LightBlueWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace LightBlueWool
+ {
+ constexpr BlockState LightBlueWool()
+ {
+ return 1387;
+ }
+ }
+ namespace LightGrayBanner
+ {
+ constexpr BlockState LightGrayBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 8025;
+ else if (Rotation == 1) return 8026;
+ else if (Rotation == 2) return 8027;
+ else if (Rotation == 3) return 8028;
+ else if (Rotation == 4) return 8029;
+ else if (Rotation == 5) return 8030;
+ else if (Rotation == 6) return 8031;
+ else if (Rotation == 7) return 8032;
+ else if (Rotation == 8) return 8033;
+ else if (Rotation == 9) return 8034;
+ else if (Rotation == 10) return 8035;
+ else if (Rotation == 11) return 8036;
+ else if (Rotation == 12) return 8037;
+ else if (Rotation == 13) return 8038;
+ else if (Rotation == 14) return 8039;
+ else return 8040;
+ }
+ BlockState LightGrayBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace LightGrayBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState LightGrayBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1177;
+ else return 1178;
+ else
+ if (Part == Part::Head) return 1179;
+ else return 1180;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1181;
+ else return 1182;
+ else
+ if (Part == Part::Head) return 1183;
+ else return 1184;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1185;
+ else return 1186;
+ else
+ if (Part == Part::Head) return 1187;
+ else return 1188;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1189;
+ else return 1190;
+ else
+ if (Part == Part::Head) return 1191;
+ else return 1192;
+ }
+ BlockState LightGrayBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace LightGrayCarpet
+ {
+ constexpr BlockState LightGrayCarpet()
+ {
+ return 7874;
+ }
+ }
+ namespace LightGrayConcrete
+ {
+ constexpr BlockState LightGrayConcrete()
+ {
+ return 9446;
+ }
+ }
+ namespace LightGrayConcretePowder
+ {
+ constexpr BlockState LightGrayConcretePowder()
+ {
+ return 9462;
+ }
+ }
+ namespace LightGrayGlazedTerracotta
+ {
+ constexpr BlockState LightGrayGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9406;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9407;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9408;
+ else return 9409;
+ }
+ BlockState LightGrayGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace LightGrayShulkerBox
+ {
+ constexpr BlockState LightGrayShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9326;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9327;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9328;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9329;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9330;
+ else return 9331;
+ }
+ BlockState LightGrayShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace LightGrayStainedGlass
+ {
+ constexpr BlockState LightGrayStainedGlass()
+ {
+ return 4103;
+ }
+ }
+ namespace LightGrayStainedGlassPane
+ {
+ constexpr BlockState LightGrayStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 7121;
+ else return 7122;
+ else
+ if (West) return 7125;
+ else return 7126;
+ else
+ if (South)
+ if (West) return 7129;
+ else return 7130;
+ else
+ if (West) return 7133;
+ else return 7134;
+ else
+ if (North)
+ if (South)
+ if (West) return 7137;
+ else return 7138;
+ else
+ if (West) return 7141;
+ else return 7142;
+ else
+ if (South)
+ if (West) return 7145;
+ else return 7146;
+ else
+ if (West) return 7149;
+ else return 7150;
+ }
+ BlockState LightGrayStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace LightGrayTerracotta
+ {
+ constexpr BlockState LightGrayTerracotta()
+ {
+ return 6855;
+ }
+ }
+ namespace LightGrayWallBanner
+ {
+ constexpr BlockState LightGrayWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8185;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8186;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8187;
+ else return 8188;
+ }
+ BlockState LightGrayWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace LightGrayWool
+ {
+ constexpr BlockState LightGrayWool()
+ {
+ return 1392;
+ }
+ }
+ namespace LightWeightedPressurePlate
+ {
+ constexpr BlockState LightWeightedPressurePlate(const unsigned char Power)
+ {
+ if (Power == 0) return 6646;
+ else if (Power == 1) return 6647;
+ else if (Power == 2) return 6648;
+ else if (Power == 3) return 6649;
+ else if (Power == 4) return 6650;
+ else if (Power == 5) return 6651;
+ else if (Power == 6) return 6652;
+ else if (Power == 7) return 6653;
+ else if (Power == 8) return 6654;
+ else if (Power == 9) return 6655;
+ else if (Power == 10) return 6656;
+ else if (Power == 11) return 6657;
+ else if (Power == 12) return 6658;
+ else if (Power == 13) return 6659;
+ else if (Power == 14) return 6660;
+ else return 6661;
+ }
+ BlockState LightWeightedPressurePlate();
+ unsigned char Power(BlockState Block);
+ }
+ namespace Lilac
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ constexpr BlockState Lilac(const enum Half Half)
+ {
+ if (Half == Half::Upper) return 7887;
+ else return 7888;
+ }
+ BlockState Lilac();
+ enum Half Half(BlockState Block);
+ }
+ namespace LilyOfTheValley
+ {
+ constexpr BlockState LilyOfTheValley()
+ {
+ return 1424;
+ }
+ }
+ namespace LilyPad
+ {
+ constexpr BlockState LilyPad()
+ {
+ return 5014;
+ }
+ }
+ namespace LimeBanner
+ {
+ constexpr BlockState LimeBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 7977;
+ else if (Rotation == 1) return 7978;
+ else if (Rotation == 2) return 7979;
+ else if (Rotation == 3) return 7980;
+ else if (Rotation == 4) return 7981;
+ else if (Rotation == 5) return 7982;
+ else if (Rotation == 6) return 7983;
+ else if (Rotation == 7) return 7984;
+ else if (Rotation == 8) return 7985;
+ else if (Rotation == 9) return 7986;
+ else if (Rotation == 10) return 7987;
+ else if (Rotation == 11) return 7988;
+ else if (Rotation == 12) return 7989;
+ else if (Rotation == 13) return 7990;
+ else if (Rotation == 14) return 7991;
+ else return 7992;
+ }
+ BlockState LimeBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace LimeBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState LimeBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1129;
+ else return 1130;
+ else
+ if (Part == Part::Head) return 1131;
+ else return 1132;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1133;
+ else return 1134;
+ else
+ if (Part == Part::Head) return 1135;
+ else return 1136;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1137;
+ else return 1138;
+ else
+ if (Part == Part::Head) return 1139;
+ else return 1140;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1141;
+ else return 1142;
+ else
+ if (Part == Part::Head) return 1143;
+ else return 1144;
+ }
+ BlockState LimeBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace LimeCarpet
+ {
+ constexpr BlockState LimeCarpet()
+ {
+ return 7871;
+ }
+ }
+ namespace LimeConcrete
+ {
+ constexpr BlockState LimeConcrete()
+ {
+ return 9443;
+ }
+ }
+ namespace LimeConcretePowder
+ {
+ constexpr BlockState LimeConcretePowder()
+ {
+ return 9459;
+ }
+ }
+ namespace LimeGlazedTerracotta
+ {
+ constexpr BlockState LimeGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9394;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9395;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9396;
+ else return 9397;
+ }
+ BlockState LimeGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace LimeShulkerBox
+ {
+ constexpr BlockState LimeShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9308;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9309;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9310;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9311;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9312;
+ else return 9313;
+ }
+ BlockState LimeShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace LimeStainedGlass
+ {
+ constexpr BlockState LimeStainedGlass()
+ {
+ return 4100;
+ }
+ }
+ namespace LimeStainedGlassPane
+ {
+ constexpr BlockState LimeStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 7025;
+ else return 7026;
+ else
+ if (West) return 7029;
+ else return 7030;
+ else
+ if (South)
+ if (West) return 7033;
+ else return 7034;
+ else
+ if (West) return 7037;
+ else return 7038;
+ else
+ if (North)
+ if (South)
+ if (West) return 7041;
+ else return 7042;
+ else
+ if (West) return 7045;
+ else return 7046;
+ else
+ if (South)
+ if (West) return 7049;
+ else return 7050;
+ else
+ if (West) return 7053;
+ else return 7054;
+ }
+ BlockState LimeStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace LimeTerracotta
+ {
+ constexpr BlockState LimeTerracotta()
+ {
+ return 6852;
+ }
+ }
+ namespace LimeWallBanner
+ {
+ constexpr BlockState LimeWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8173;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8174;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8175;
+ else return 8176;
+ }
+ BlockState LimeWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace LimeWool
+ {
+ constexpr BlockState LimeWool()
+ {
+ return 1389;
+ }
+ }
+ namespace Lodestone
+ {
+ constexpr BlockState Lodestone()
+ {
+ return 15838;
+ }
+ }
+ namespace Loom
+ {
+ constexpr BlockState Loom(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 14787;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 14788;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 14789;
+ else return 14790;
+ }
+ BlockState Loom();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace MagentaBanner
+ {
+ constexpr BlockState MagentaBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 7929;
+ else if (Rotation == 1) return 7930;
+ else if (Rotation == 2) return 7931;
+ else if (Rotation == 3) return 7932;
+ else if (Rotation == 4) return 7933;
+ else if (Rotation == 5) return 7934;
+ else if (Rotation == 6) return 7935;
+ else if (Rotation == 7) return 7936;
+ else if (Rotation == 8) return 7937;
+ else if (Rotation == 9) return 7938;
+ else if (Rotation == 10) return 7939;
+ else if (Rotation == 11) return 7940;
+ else if (Rotation == 12) return 7941;
+ else if (Rotation == 13) return 7942;
+ else if (Rotation == 14) return 7943;
+ else return 7944;
+ }
+ BlockState MagentaBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace MagentaBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState MagentaBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1081;
+ else return 1082;
+ else
+ if (Part == Part::Head) return 1083;
+ else return 1084;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1085;
+ else return 1086;
+ else
+ if (Part == Part::Head) return 1087;
+ else return 1088;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1089;
+ else return 1090;
+ else
+ if (Part == Part::Head) return 1091;
+ else return 1092;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1093;
+ else return 1094;
+ else
+ if (Part == Part::Head) return 1095;
+ else return 1096;
+ }
+ BlockState MagentaBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace MagentaCarpet
+ {
+ constexpr BlockState MagentaCarpet()
+ {
+ return 7868;
+ }
+ }
+ namespace MagentaConcrete
+ {
+ constexpr BlockState MagentaConcrete()
+ {
+ return 9440;
+ }
+ }
+ namespace MagentaConcretePowder
+ {
+ constexpr BlockState MagentaConcretePowder()
+ {
+ return 9456;
+ }
+ }
+ namespace MagentaGlazedTerracotta
+ {
+ constexpr BlockState MagentaGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9382;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9383;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9384;
+ else return 9385;
+ }
+ BlockState MagentaGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace MagentaShulkerBox
+ {
+ constexpr BlockState MagentaShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9290;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9291;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9292;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9293;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9294;
+ else return 9295;
+ }
+ BlockState MagentaShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace MagentaStainedGlass
+ {
+ constexpr BlockState MagentaStainedGlass()
+ {
+ return 4097;
+ }
+ }
+ namespace MagentaStainedGlassPane
+ {
+ constexpr BlockState MagentaStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 6929;
+ else return 6930;
+ else
+ if (West) return 6933;
+ else return 6934;
+ else
+ if (South)
+ if (West) return 6937;
+ else return 6938;
+ else
+ if (West) return 6941;
+ else return 6942;
+ else
+ if (North)
+ if (South)
+ if (West) return 6945;
+ else return 6946;
+ else
+ if (West) return 6949;
+ else return 6950;
+ else
+ if (South)
+ if (West) return 6953;
+ else return 6954;
+ else
+ if (West) return 6957;
+ else return 6958;
+ }
+ BlockState MagentaStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace MagentaTerracotta
+ {
+ constexpr BlockState MagentaTerracotta()
+ {
+ return 6849;
+ }
+ }
+ namespace MagentaWallBanner
+ {
+ constexpr BlockState MagentaWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8161;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8162;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8163;
+ else return 8164;
+ }
+ BlockState MagentaWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace MagentaWool
+ {
+ constexpr BlockState MagentaWool()
+ {
+ return 1386;
+ }
+ }
+ namespace MagmaBlock
+ {
+ constexpr BlockState MagmaBlock()
+ {
+ return 9253;
+ }
+ }
+ namespace Melon
+ {
+ constexpr BlockState Melon()
+ {
+ return 4763;
+ }
+ }
+ namespace MelonStem
+ {
+ constexpr BlockState MelonStem(const unsigned char Age)
+ {
+ if (Age == 0) return 4780;
+ else if (Age == 1) return 4781;
+ else if (Age == 2) return 4782;
+ else if (Age == 3) return 4783;
+ else if (Age == 4) return 4784;
+ else if (Age == 5) return 4785;
+ else if (Age == 6) return 4786;
+ else return 4787;
+ }
+ BlockState MelonStem();
+ unsigned char Age(BlockState Block);
+ }
+ namespace MossyCobblestone
+ {
+ constexpr BlockState MossyCobblestone()
+ {
+ return 1433;
+ }
+ }
+ namespace MossyCobblestoneSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState MossyCobblestoneSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 10814;
+ else if (Type == Type::Bottom) return 10816;
+ else return 10818;
+ }
+ BlockState MossyCobblestoneSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace MossyCobblestoneStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState MossyCobblestoneStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9990;
+ else if (Shape == Shape::InnerLeft) return 9992;
+ else if (Shape == Shape::InnerRight) return 9994;
+ else if (Shape == Shape::OuterLeft) return 9996;
+ else return 9998;
+ else
+ if (Shape == Shape::Straight) return 10000;
+ else if (Shape == Shape::InnerLeft) return 10002;
+ else if (Shape == Shape::InnerRight) return 10004;
+ else if (Shape == Shape::OuterLeft) return 10006;
+ else return 10008;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10010;
+ else if (Shape == Shape::InnerLeft) return 10012;
+ else if (Shape == Shape::InnerRight) return 10014;
+ else if (Shape == Shape::OuterLeft) return 10016;
+ else return 10018;
+ else
+ if (Shape == Shape::Straight) return 10020;
+ else if (Shape == Shape::InnerLeft) return 10022;
+ else if (Shape == Shape::InnerRight) return 10024;
+ else if (Shape == Shape::OuterLeft) return 10026;
+ else return 10028;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10030;
+ else if (Shape == Shape::InnerLeft) return 10032;
+ else if (Shape == Shape::InnerRight) return 10034;
+ else if (Shape == Shape::OuterLeft) return 10036;
+ else return 10038;
+ else
+ if (Shape == Shape::Straight) return 10040;
+ else if (Shape == Shape::InnerLeft) return 10042;
+ else if (Shape == Shape::InnerRight) return 10044;
+ else if (Shape == Shape::OuterLeft) return 10046;
+ else return 10048;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10050;
+ else if (Shape == Shape::InnerLeft) return 10052;
+ else if (Shape == Shape::InnerRight) return 10054;
+ else if (Shape == Shape::OuterLeft) return 10056;
+ else return 10058;
+ else
+ if (Shape == Shape::Straight) return 10060;
+ else if (Shape == Shape::InnerLeft) return 10062;
+ else if (Shape == Shape::InnerRight) return 10064;
+ else if (Shape == Shape::OuterLeft) return 10066;
+ else return 10068;
+ }
+ BlockState MossyCobblestoneStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace MossyCobblestoneWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState MossyCobblestoneWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 5984;
+ else if (West == West::Low) return 5985;
+ else return 5986;
+ else
+ if (West == West::None) return 5990;
+ else if (West == West::Low) return 5991;
+ else return 5992;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 5996;
+ else if (West == West::Low) return 5997;
+ else return 5998;
+ else
+ if (West == West::None) return 6002;
+ else if (West == West::Low) return 6003;
+ else return 6004;
+ else
+ if (Up)
+ if (West == West::None) return 6008;
+ else if (West == West::Low) return 6009;
+ else return 6010;
+ else
+ if (West == West::None) return 6014;
+ else if (West == West::Low) return 6015;
+ else return 6016;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 6020;
+ else if (West == West::Low) return 6021;
+ else return 6022;
+ else
+ if (West == West::None) return 6026;
+ else if (West == West::Low) return 6027;
+ else return 6028;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 6032;
+ else if (West == West::Low) return 6033;
+ else return 6034;
+ else
+ if (West == West::None) return 6038;
+ else if (West == West::Low) return 6039;
+ else return 6040;
+ else
+ if (Up)
+ if (West == West::None) return 6044;
+ else if (West == West::Low) return 6045;
+ else return 6046;
+ else
+ if (West == West::None) return 6050;
+ else if (West == West::Low) return 6051;
+ else return 6052;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 6056;
+ else if (West == West::Low) return 6057;
+ else return 6058;
+ else
+ if (West == West::None) return 6062;
+ else if (West == West::Low) return 6063;
+ else return 6064;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 6068;
+ else if (West == West::Low) return 6069;
+ else return 6070;
+ else
+ if (West == West::None) return 6074;
+ else if (West == West::Low) return 6075;
+ else return 6076;
+ else
+ if (Up)
+ if (West == West::None) return 6080;
+ else if (West == West::Low) return 6081;
+ else return 6082;
+ else
+ if (West == West::None) return 6086;
+ else if (West == West::Low) return 6087;
+ else return 6088;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 6092;
+ else if (West == West::Low) return 6093;
+ else return 6094;
+ else
+ if (West == West::None) return 6098;
+ else if (West == West::Low) return 6099;
+ else return 6100;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 6104;
+ else if (West == West::Low) return 6105;
+ else return 6106;
+ else
+ if (West == West::None) return 6110;
+ else if (West == West::Low) return 6111;
+ else return 6112;
+ else
+ if (Up)
+ if (West == West::None) return 6116;
+ else if (West == West::Low) return 6117;
+ else return 6118;
+ else
+ if (West == West::None) return 6122;
+ else if (West == West::Low) return 6123;
+ else return 6124;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 6128;
+ else if (West == West::Low) return 6129;
+ else return 6130;
+ else
+ if (West == West::None) return 6134;
+ else if (West == West::Low) return 6135;
+ else return 6136;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 6140;
+ else if (West == West::Low) return 6141;
+ else return 6142;
+ else
+ if (West == West::None) return 6146;
+ else if (West == West::Low) return 6147;
+ else return 6148;
+ else
+ if (Up)
+ if (West == West::None) return 6152;
+ else if (West == West::Low) return 6153;
+ else return 6154;
+ else
+ if (West == West::None) return 6158;
+ else if (West == West::Low) return 6159;
+ else return 6160;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 6164;
+ else if (West == West::Low) return 6165;
+ else return 6166;
+ else
+ if (West == West::None) return 6170;
+ else if (West == West::Low) return 6171;
+ else return 6172;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 6176;
+ else if (West == West::Low) return 6177;
+ else return 6178;
+ else
+ if (West == West::None) return 6182;
+ else if (West == West::Low) return 6183;
+ else return 6184;
+ else
+ if (Up)
+ if (West == West::None) return 6188;
+ else if (West == West::Low) return 6189;
+ else return 6190;
+ else
+ if (West == West::None) return 6194;
+ else if (West == West::Low) return 6195;
+ else return 6196;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 6200;
+ else if (West == West::Low) return 6201;
+ else return 6202;
+ else
+ if (West == West::None) return 6206;
+ else if (West == West::Low) return 6207;
+ else return 6208;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 6212;
+ else if (West == West::Low) return 6213;
+ else return 6214;
+ else
+ if (West == West::None) return 6218;
+ else if (West == West::Low) return 6219;
+ else return 6220;
+ else
+ if (Up)
+ if (West == West::None) return 6224;
+ else if (West == West::Low) return 6225;
+ else return 6226;
+ else
+ if (West == West::None) return 6230;
+ else if (West == West::Low) return 6231;
+ else return 6232;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 6236;
+ else if (West == West::Low) return 6237;
+ else return 6238;
+ else
+ if (West == West::None) return 6242;
+ else if (West == West::Low) return 6243;
+ else return 6244;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 6248;
+ else if (West == West::Low) return 6249;
+ else return 6250;
+ else
+ if (West == West::None) return 6254;
+ else if (West == West::Low) return 6255;
+ else return 6256;
+ else
+ if (Up)
+ if (West == West::None) return 6260;
+ else if (West == West::Low) return 6261;
+ else return 6262;
+ else
+ if (West == West::None) return 6266;
+ else if (West == West::Low) return 6267;
+ else return 6268;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 6272;
+ else if (West == West::Low) return 6273;
+ else return 6274;
+ else
+ if (West == West::None) return 6278;
+ else if (West == West::Low) return 6279;
+ else return 6280;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 6284;
+ else if (West == West::Low) return 6285;
+ else return 6286;
+ else
+ if (West == West::None) return 6290;
+ else if (West == West::Low) return 6291;
+ else return 6292;
+ else
+ if (Up)
+ if (West == West::None) return 6296;
+ else if (West == West::Low) return 6297;
+ else return 6298;
+ else
+ if (West == West::None) return 6302;
+ else if (West == West::Low) return 6303;
+ else return 6304;
+ }
+ BlockState MossyCobblestoneWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace MossyStoneBrickSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState MossyStoneBrickSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 10802;
+ else if (Type == Type::Bottom) return 10804;
+ else return 10806;
+ }
+ BlockState MossyStoneBrickSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace MossyStoneBrickStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState MossyStoneBrickStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9830;
+ else if (Shape == Shape::InnerLeft) return 9832;
+ else if (Shape == Shape::InnerRight) return 9834;
+ else if (Shape == Shape::OuterLeft) return 9836;
+ else return 9838;
+ else
+ if (Shape == Shape::Straight) return 9840;
+ else if (Shape == Shape::InnerLeft) return 9842;
+ else if (Shape == Shape::InnerRight) return 9844;
+ else if (Shape == Shape::OuterLeft) return 9846;
+ else return 9848;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9850;
+ else if (Shape == Shape::InnerLeft) return 9852;
+ else if (Shape == Shape::InnerRight) return 9854;
+ else if (Shape == Shape::OuterLeft) return 9856;
+ else return 9858;
+ else
+ if (Shape == Shape::Straight) return 9860;
+ else if (Shape == Shape::InnerLeft) return 9862;
+ else if (Shape == Shape::InnerRight) return 9864;
+ else if (Shape == Shape::OuterLeft) return 9866;
+ else return 9868;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9870;
+ else if (Shape == Shape::InnerLeft) return 9872;
+ else if (Shape == Shape::InnerRight) return 9874;
+ else if (Shape == Shape::OuterLeft) return 9876;
+ else return 9878;
+ else
+ if (Shape == Shape::Straight) return 9880;
+ else if (Shape == Shape::InnerLeft) return 9882;
+ else if (Shape == Shape::InnerRight) return 9884;
+ else if (Shape == Shape::OuterLeft) return 9886;
+ else return 9888;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9890;
+ else if (Shape == Shape::InnerLeft) return 9892;
+ else if (Shape == Shape::InnerRight) return 9894;
+ else if (Shape == Shape::OuterLeft) return 9896;
+ else return 9898;
+ else
+ if (Shape == Shape::Straight) return 9900;
+ else if (Shape == Shape::InnerLeft) return 9902;
+ else if (Shape == Shape::InnerRight) return 9904;
+ else if (Shape == Shape::OuterLeft) return 9906;
+ else return 9908;
+ }
+ BlockState MossyStoneBrickStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace MossyStoneBrickWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState MossyStoneBrickWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11842;
+ else if (West == West::Low) return 11843;
+ else return 11844;
+ else
+ if (West == West::None) return 11848;
+ else if (West == West::Low) return 11849;
+ else return 11850;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11854;
+ else if (West == West::Low) return 11855;
+ else return 11856;
+ else
+ if (West == West::None) return 11860;
+ else if (West == West::Low) return 11861;
+ else return 11862;
+ else
+ if (Up)
+ if (West == West::None) return 11866;
+ else if (West == West::Low) return 11867;
+ else return 11868;
+ else
+ if (West == West::None) return 11872;
+ else if (West == West::Low) return 11873;
+ else return 11874;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11878;
+ else if (West == West::Low) return 11879;
+ else return 11880;
+ else
+ if (West == West::None) return 11884;
+ else if (West == West::Low) return 11885;
+ else return 11886;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11890;
+ else if (West == West::Low) return 11891;
+ else return 11892;
+ else
+ if (West == West::None) return 11896;
+ else if (West == West::Low) return 11897;
+ else return 11898;
+ else
+ if (Up)
+ if (West == West::None) return 11902;
+ else if (West == West::Low) return 11903;
+ else return 11904;
+ else
+ if (West == West::None) return 11908;
+ else if (West == West::Low) return 11909;
+ else return 11910;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11914;
+ else if (West == West::Low) return 11915;
+ else return 11916;
+ else
+ if (West == West::None) return 11920;
+ else if (West == West::Low) return 11921;
+ else return 11922;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11926;
+ else if (West == West::Low) return 11927;
+ else return 11928;
+ else
+ if (West == West::None) return 11932;
+ else if (West == West::Low) return 11933;
+ else return 11934;
+ else
+ if (Up)
+ if (West == West::None) return 11938;
+ else if (West == West::Low) return 11939;
+ else return 11940;
+ else
+ if (West == West::None) return 11944;
+ else if (West == West::Low) return 11945;
+ else return 11946;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11950;
+ else if (West == West::Low) return 11951;
+ else return 11952;
+ else
+ if (West == West::None) return 11956;
+ else if (West == West::Low) return 11957;
+ else return 11958;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11962;
+ else if (West == West::Low) return 11963;
+ else return 11964;
+ else
+ if (West == West::None) return 11968;
+ else if (West == West::Low) return 11969;
+ else return 11970;
+ else
+ if (Up)
+ if (West == West::None) return 11974;
+ else if (West == West::Low) return 11975;
+ else return 11976;
+ else
+ if (West == West::None) return 11980;
+ else if (West == West::Low) return 11981;
+ else return 11982;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11986;
+ else if (West == West::Low) return 11987;
+ else return 11988;
+ else
+ if (West == West::None) return 11992;
+ else if (West == West::Low) return 11993;
+ else return 11994;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11998;
+ else if (West == West::Low) return 11999;
+ else return 12000;
+ else
+ if (West == West::None) return 12004;
+ else if (West == West::Low) return 12005;
+ else return 12006;
+ else
+ if (Up)
+ if (West == West::None) return 12010;
+ else if (West == West::Low) return 12011;
+ else return 12012;
+ else
+ if (West == West::None) return 12016;
+ else if (West == West::Low) return 12017;
+ else return 12018;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12022;
+ else if (West == West::Low) return 12023;
+ else return 12024;
+ else
+ if (West == West::None) return 12028;
+ else if (West == West::Low) return 12029;
+ else return 12030;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12034;
+ else if (West == West::Low) return 12035;
+ else return 12036;
+ else
+ if (West == West::None) return 12040;
+ else if (West == West::Low) return 12041;
+ else return 12042;
+ else
+ if (Up)
+ if (West == West::None) return 12046;
+ else if (West == West::Low) return 12047;
+ else return 12048;
+ else
+ if (West == West::None) return 12052;
+ else if (West == West::Low) return 12053;
+ else return 12054;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12058;
+ else if (West == West::Low) return 12059;
+ else return 12060;
+ else
+ if (West == West::None) return 12064;
+ else if (West == West::Low) return 12065;
+ else return 12066;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12070;
+ else if (West == West::Low) return 12071;
+ else return 12072;
+ else
+ if (West == West::None) return 12076;
+ else if (West == West::Low) return 12077;
+ else return 12078;
+ else
+ if (Up)
+ if (West == West::None) return 12082;
+ else if (West == West::Low) return 12083;
+ else return 12084;
+ else
+ if (West == West::None) return 12088;
+ else if (West == West::Low) return 12089;
+ else return 12090;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12094;
+ else if (West == West::Low) return 12095;
+ else return 12096;
+ else
+ if (West == West::None) return 12100;
+ else if (West == West::Low) return 12101;
+ else return 12102;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12106;
+ else if (West == West::Low) return 12107;
+ else return 12108;
+ else
+ if (West == West::None) return 12112;
+ else if (West == West::Low) return 12113;
+ else return 12114;
+ else
+ if (Up)
+ if (West == West::None) return 12118;
+ else if (West == West::Low) return 12119;
+ else return 12120;
+ else
+ if (West == West::None) return 12124;
+ else if (West == West::Low) return 12125;
+ else return 12126;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12130;
+ else if (West == West::Low) return 12131;
+ else return 12132;
+ else
+ if (West == West::None) return 12136;
+ else if (West == West::Low) return 12137;
+ else return 12138;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12142;
+ else if (West == West::Low) return 12143;
+ else return 12144;
+ else
+ if (West == West::None) return 12148;
+ else if (West == West::Low) return 12149;
+ else return 12150;
+ else
+ if (Up)
+ if (West == West::None) return 12154;
+ else if (West == West::Low) return 12155;
+ else return 12156;
+ else
+ if (West == West::None) return 12160;
+ else if (West == West::Low) return 12161;
+ else return 12162;
+ }
+ BlockState MossyStoneBrickWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace MossyStoneBricks
+ {
+ constexpr BlockState MossyStoneBricks()
+ {
+ return 4496;
+ }
+ }
+ namespace MovingPiston
+ {
+ enum class Type
+ {
+ Normal,
+ Sticky
+ };
+ constexpr BlockState MovingPiston(const eBlockFace Facing, const enum Type Type)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Type == Type::Normal) return 1400;
+ else return 1401;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP)
+ if (Type == Type::Normal) return 1402;
+ else return 1403;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Type == Type::Normal) return 1404;
+ else return 1405;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Type == Type::Normal) return 1406;
+ else return 1407;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP)
+ if (Type == Type::Normal) return 1408;
+ else return 1409;
+ else
+ if (Type == Type::Normal) return 1410;
+ else return 1411;
+ }
+ BlockState MovingPiston();
+ eBlockFace Facing(BlockState Block);
+ enum Type Type(BlockState Block);
+ }
+ namespace MushroomStem
+ {
+ constexpr BlockState MushroomStem(const bool Down, const bool East, const bool North, const bool South, const bool Up, const bool West)
+ {
+ if (Down)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4633;
+ else return 4634;
+ else
+ if (West) return 4635;
+ else return 4636;
+ else
+ if (Up)
+ if (West) return 4637;
+ else return 4638;
+ else
+ if (West) return 4639;
+ else return 4640;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4641;
+ else return 4642;
+ else
+ if (West) return 4643;
+ else return 4644;
+ else
+ if (Up)
+ if (West) return 4645;
+ else return 4646;
+ else
+ if (West) return 4647;
+ else return 4648;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4649;
+ else return 4650;
+ else
+ if (West) return 4651;
+ else return 4652;
+ else
+ if (Up)
+ if (West) return 4653;
+ else return 4654;
+ else
+ if (West) return 4655;
+ else return 4656;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4657;
+ else return 4658;
+ else
+ if (West) return 4659;
+ else return 4660;
+ else
+ if (Up)
+ if (West) return 4661;
+ else return 4662;
+ else
+ if (West) return 4663;
+ else return 4664;
+ else
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4665;
+ else return 4666;
+ else
+ if (West) return 4667;
+ else return 4668;
+ else
+ if (Up)
+ if (West) return 4669;
+ else return 4670;
+ else
+ if (West) return 4671;
+ else return 4672;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4673;
+ else return 4674;
+ else
+ if (West) return 4675;
+ else return 4676;
+ else
+ if (Up)
+ if (West) return 4677;
+ else return 4678;
+ else
+ if (West) return 4679;
+ else return 4680;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4681;
+ else return 4682;
+ else
+ if (West) return 4683;
+ else return 4684;
+ else
+ if (Up)
+ if (West) return 4685;
+ else return 4686;
+ else
+ if (West) return 4687;
+ else return 4688;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4689;
+ else return 4690;
+ else
+ if (West) return 4691;
+ else return 4692;
+ else
+ if (Up)
+ if (West) return 4693;
+ else return 4694;
+ else
+ if (West) return 4695;
+ else return 4696;
+ }
+ BlockState MushroomStem();
+ bool Down(BlockState Block);
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool Up(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace Mycelium
+ {
+ constexpr BlockState Mycelium(const bool Snowy)
+ {
+ if (Snowy) return 5012;
+ else return 5013;
+ }
+ BlockState Mycelium();
+ bool Snowy(BlockState Block);
+ }
+ namespace NetherBrickFence
+ {
+ constexpr BlockState NetherBrickFence(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 5018;
+ else return 5019;
+ else
+ if (West) return 5022;
+ else return 5023;
+ else
+ if (South)
+ if (West) return 5026;
+ else return 5027;
+ else
+ if (West) return 5030;
+ else return 5031;
+ else
+ if (North)
+ if (South)
+ if (West) return 5034;
+ else return 5035;
+ else
+ if (West) return 5038;
+ else return 5039;
+ else
+ if (South)
+ if (West) return 5042;
+ else return 5043;
+ else
+ if (West) return 5046;
+ else return 5047;
+ }
+ BlockState NetherBrickFence();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace NetherBrickSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState NetherBrickSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8385;
+ else if (Type == Type::Bottom) return 8387;
+ else return 8389;
+ }
+ BlockState NetherBrickSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace NetherBrickStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState NetherBrickStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5049;
+ else if (Shape == Shape::InnerLeft) return 5051;
+ else if (Shape == Shape::InnerRight) return 5053;
+ else if (Shape == Shape::OuterLeft) return 5055;
+ else return 5057;
+ else
+ if (Shape == Shape::Straight) return 5059;
+ else if (Shape == Shape::InnerLeft) return 5061;
+ else if (Shape == Shape::InnerRight) return 5063;
+ else if (Shape == Shape::OuterLeft) return 5065;
+ else return 5067;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5069;
+ else if (Shape == Shape::InnerLeft) return 5071;
+ else if (Shape == Shape::InnerRight) return 5073;
+ else if (Shape == Shape::OuterLeft) return 5075;
+ else return 5077;
+ else
+ if (Shape == Shape::Straight) return 5079;
+ else if (Shape == Shape::InnerLeft) return 5081;
+ else if (Shape == Shape::InnerRight) return 5083;
+ else if (Shape == Shape::OuterLeft) return 5085;
+ else return 5087;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5089;
+ else if (Shape == Shape::InnerLeft) return 5091;
+ else if (Shape == Shape::InnerRight) return 5093;
+ else if (Shape == Shape::OuterLeft) return 5095;
+ else return 5097;
+ else
+ if (Shape == Shape::Straight) return 5099;
+ else if (Shape == Shape::InnerLeft) return 5101;
+ else if (Shape == Shape::InnerRight) return 5103;
+ else if (Shape == Shape::OuterLeft) return 5105;
+ else return 5107;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5109;
+ else if (Shape == Shape::InnerLeft) return 5111;
+ else if (Shape == Shape::InnerRight) return 5113;
+ else if (Shape == Shape::OuterLeft) return 5115;
+ else return 5117;
+ else
+ if (Shape == Shape::Straight) return 5119;
+ else if (Shape == Shape::InnerLeft) return 5121;
+ else if (Shape == Shape::InnerRight) return 5123;
+ else if (Shape == Shape::OuterLeft) return 5125;
+ else return 5127;
+ }
+ BlockState NetherBrickStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace NetherBrickWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState NetherBrickWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12814;
+ else if (West == West::Low) return 12815;
+ else return 12816;
+ else
+ if (West == West::None) return 12820;
+ else if (West == West::Low) return 12821;
+ else return 12822;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12826;
+ else if (West == West::Low) return 12827;
+ else return 12828;
+ else
+ if (West == West::None) return 12832;
+ else if (West == West::Low) return 12833;
+ else return 12834;
+ else
+ if (Up)
+ if (West == West::None) return 12838;
+ else if (West == West::Low) return 12839;
+ else return 12840;
+ else
+ if (West == West::None) return 12844;
+ else if (West == West::Low) return 12845;
+ else return 12846;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12850;
+ else if (West == West::Low) return 12851;
+ else return 12852;
+ else
+ if (West == West::None) return 12856;
+ else if (West == West::Low) return 12857;
+ else return 12858;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12862;
+ else if (West == West::Low) return 12863;
+ else return 12864;
+ else
+ if (West == West::None) return 12868;
+ else if (West == West::Low) return 12869;
+ else return 12870;
+ else
+ if (Up)
+ if (West == West::None) return 12874;
+ else if (West == West::Low) return 12875;
+ else return 12876;
+ else
+ if (West == West::None) return 12880;
+ else if (West == West::Low) return 12881;
+ else return 12882;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12886;
+ else if (West == West::Low) return 12887;
+ else return 12888;
+ else
+ if (West == West::None) return 12892;
+ else if (West == West::Low) return 12893;
+ else return 12894;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12898;
+ else if (West == West::Low) return 12899;
+ else return 12900;
+ else
+ if (West == West::None) return 12904;
+ else if (West == West::Low) return 12905;
+ else return 12906;
+ else
+ if (Up)
+ if (West == West::None) return 12910;
+ else if (West == West::Low) return 12911;
+ else return 12912;
+ else
+ if (West == West::None) return 12916;
+ else if (West == West::Low) return 12917;
+ else return 12918;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12922;
+ else if (West == West::Low) return 12923;
+ else return 12924;
+ else
+ if (West == West::None) return 12928;
+ else if (West == West::Low) return 12929;
+ else return 12930;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12934;
+ else if (West == West::Low) return 12935;
+ else return 12936;
+ else
+ if (West == West::None) return 12940;
+ else if (West == West::Low) return 12941;
+ else return 12942;
+ else
+ if (Up)
+ if (West == West::None) return 12946;
+ else if (West == West::Low) return 12947;
+ else return 12948;
+ else
+ if (West == West::None) return 12952;
+ else if (West == West::Low) return 12953;
+ else return 12954;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12958;
+ else if (West == West::Low) return 12959;
+ else return 12960;
+ else
+ if (West == West::None) return 12964;
+ else if (West == West::Low) return 12965;
+ else return 12966;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12970;
+ else if (West == West::Low) return 12971;
+ else return 12972;
+ else
+ if (West == West::None) return 12976;
+ else if (West == West::Low) return 12977;
+ else return 12978;
+ else
+ if (Up)
+ if (West == West::None) return 12982;
+ else if (West == West::Low) return 12983;
+ else return 12984;
+ else
+ if (West == West::None) return 12988;
+ else if (West == West::Low) return 12989;
+ else return 12990;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12994;
+ else if (West == West::Low) return 12995;
+ else return 12996;
+ else
+ if (West == West::None) return 13000;
+ else if (West == West::Low) return 13001;
+ else return 13002;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13006;
+ else if (West == West::Low) return 13007;
+ else return 13008;
+ else
+ if (West == West::None) return 13012;
+ else if (West == West::Low) return 13013;
+ else return 13014;
+ else
+ if (Up)
+ if (West == West::None) return 13018;
+ else if (West == West::Low) return 13019;
+ else return 13020;
+ else
+ if (West == West::None) return 13024;
+ else if (West == West::Low) return 13025;
+ else return 13026;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13030;
+ else if (West == West::Low) return 13031;
+ else return 13032;
+ else
+ if (West == West::None) return 13036;
+ else if (West == West::Low) return 13037;
+ else return 13038;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13042;
+ else if (West == West::Low) return 13043;
+ else return 13044;
+ else
+ if (West == West::None) return 13048;
+ else if (West == West::Low) return 13049;
+ else return 13050;
+ else
+ if (Up)
+ if (West == West::None) return 13054;
+ else if (West == West::Low) return 13055;
+ else return 13056;
+ else
+ if (West == West::None) return 13060;
+ else if (West == West::Low) return 13061;
+ else return 13062;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13066;
+ else if (West == West::Low) return 13067;
+ else return 13068;
+ else
+ if (West == West::None) return 13072;
+ else if (West == West::Low) return 13073;
+ else return 13074;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13078;
+ else if (West == West::Low) return 13079;
+ else return 13080;
+ else
+ if (West == West::None) return 13084;
+ else if (West == West::Low) return 13085;
+ else return 13086;
+ else
+ if (Up)
+ if (West == West::None) return 13090;
+ else if (West == West::Low) return 13091;
+ else return 13092;
+ else
+ if (West == West::None) return 13096;
+ else if (West == West::Low) return 13097;
+ else return 13098;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13102;
+ else if (West == West::Low) return 13103;
+ else return 13104;
+ else
+ if (West == West::None) return 13108;
+ else if (West == West::Low) return 13109;
+ else return 13110;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13114;
+ else if (West == West::Low) return 13115;
+ else return 13116;
+ else
+ if (West == West::None) return 13120;
+ else if (West == West::Low) return 13121;
+ else return 13122;
+ else
+ if (Up)
+ if (West == West::None) return 13126;
+ else if (West == West::Low) return 13127;
+ else return 13128;
+ else
+ if (West == West::None) return 13132;
+ else if (West == West::Low) return 13133;
+ else return 13134;
+ }
+ BlockState NetherBrickWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace NetherBricks
+ {
+ constexpr BlockState NetherBricks()
+ {
+ return 5015;
+ }
+ }
+ namespace NetherGoldOre
+ {
+ constexpr BlockState NetherGoldOre()
+ {
+ return 72;
+ }
+ }
+ namespace NetherPortal
+ {
+ enum class Axis
+ {
+ X,
+ Z
+ };
+ constexpr BlockState NetherPortal(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 4014;
+ else return 4015;
+ }
+ BlockState NetherPortal();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace NetherQuartzOre
+ {
+ constexpr BlockState NetherQuartzOre()
+ {
+ return 6727;
+ }
+ }
+ namespace NetherSprouts
+ {
+ constexpr BlockState NetherSprouts()
+ {
+ return 14974;
+ }
+ }
+ namespace NetherWart
+ {
+ constexpr BlockState NetherWart(const unsigned char Age)
+ {
+ if (Age == 0) return 5128;
+ else if (Age == 1) return 5129;
+ else if (Age == 2) return 5130;
+ else return 5131;
+ }
+ BlockState NetherWart();
+ unsigned char Age(BlockState Block);
+ }
+ namespace NetherWartBlock
+ {
+ constexpr BlockState NetherWartBlock()
+ {
+ return 9254;
+ }
+ }
+ namespace NetheriteBlock
+ {
+ constexpr BlockState NetheriteBlock()
+ {
+ return 15826;
+ }
+ }
+ namespace Netherrack
+ {
+ constexpr BlockState Netherrack()
+ {
+ return 3999;
+ }
+ }
+ namespace NoteBlock
+ {
+ enum class Instrument
+ {
+ Harp,
+ Basedrum,
+ Snare,
+ Hat,
+ Bass,
+ Flute,
+ Bell,
+ Guitar,
+ Chime,
+ Xylophone,
+ IronXylophone,
+ CowBell,
+ Didgeridoo,
+ Bit,
+ Banjo,
+ Pling
+ };
+ constexpr BlockState NoteBlock(const enum Instrument Instrument, const unsigned char Note, const bool Powered)
+ {
+ if (Instrument == Instrument::Harp)
+ if (Note == 0)
+ if (Powered) return 249;
+ else return 250;
+ else if (Note == 1)
+ if (Powered) return 251;
+ else return 252;
+ else if (Note == 2)
+ if (Powered) return 253;
+ else return 254;
+ else if (Note == 3)
+ if (Powered) return 255;
+ else return 256;
+ else if (Note == 4)
+ if (Powered) return 257;
+ else return 258;
+ else if (Note == 5)
+ if (Powered) return 259;
+ else return 260;
+ else if (Note == 6)
+ if (Powered) return 261;
+ else return 262;
+ else if (Note == 7)
+ if (Powered) return 263;
+ else return 264;
+ else if (Note == 8)
+ if (Powered) return 265;
+ else return 266;
+ else if (Note == 9)
+ if (Powered) return 267;
+ else return 268;
+ else if (Note == 10)
+ if (Powered) return 269;
+ else return 270;
+ else if (Note == 11)
+ if (Powered) return 271;
+ else return 272;
+ else if (Note == 12)
+ if (Powered) return 273;
+ else return 274;
+ else if (Note == 13)
+ if (Powered) return 275;
+ else return 276;
+ else if (Note == 14)
+ if (Powered) return 277;
+ else return 278;
+ else if (Note == 15)
+ if (Powered) return 279;
+ else return 280;
+ else if (Note == 16)
+ if (Powered) return 281;
+ else return 282;
+ else if (Note == 17)
+ if (Powered) return 283;
+ else return 284;
+ else if (Note == 18)
+ if (Powered) return 285;
+ else return 286;
+ else if (Note == 19)
+ if (Powered) return 287;
+ else return 288;
+ else if (Note == 20)
+ if (Powered) return 289;
+ else return 290;
+ else if (Note == 21)
+ if (Powered) return 291;
+ else return 292;
+ else if (Note == 22)
+ if (Powered) return 293;
+ else return 294;
+ else if (Note == 23)
+ if (Powered) return 295;
+ else return 296;
+ else
+ if (Powered) return 297;
+ else return 298;
+ else if (Instrument == Instrument::Basedrum)
+ if (Note == 0)
+ if (Powered) return 299;
+ else return 300;
+ else if (Note == 1)
+ if (Powered) return 301;
+ else return 302;
+ else if (Note == 2)
+ if (Powered) return 303;
+ else return 304;
+ else if (Note == 3)
+ if (Powered) return 305;
+ else return 306;
+ else if (Note == 4)
+ if (Powered) return 307;
+ else return 308;
+ else if (Note == 5)
+ if (Powered) return 309;
+ else return 310;
+ else if (Note == 6)
+ if (Powered) return 311;
+ else return 312;
+ else if (Note == 7)
+ if (Powered) return 313;
+ else return 314;
+ else if (Note == 8)
+ if (Powered) return 315;
+ else return 316;
+ else if (Note == 9)
+ if (Powered) return 317;
+ else return 318;
+ else if (Note == 10)
+ if (Powered) return 319;
+ else return 320;
+ else if (Note == 11)
+ if (Powered) return 321;
+ else return 322;
+ else if (Note == 12)
+ if (Powered) return 323;
+ else return 324;
+ else if (Note == 13)
+ if (Powered) return 325;
+ else return 326;
+ else if (Note == 14)
+ if (Powered) return 327;
+ else return 328;
+ else if (Note == 15)
+ if (Powered) return 329;
+ else return 330;
+ else if (Note == 16)
+ if (Powered) return 331;
+ else return 332;
+ else if (Note == 17)
+ if (Powered) return 333;
+ else return 334;
+ else if (Note == 18)
+ if (Powered) return 335;
+ else return 336;
+ else if (Note == 19)
+ if (Powered) return 337;
+ else return 338;
+ else if (Note == 20)
+ if (Powered) return 339;
+ else return 340;
+ else if (Note == 21)
+ if (Powered) return 341;
+ else return 342;
+ else if (Note == 22)
+ if (Powered) return 343;
+ else return 344;
+ else if (Note == 23)
+ if (Powered) return 345;
+ else return 346;
+ else
+ if (Powered) return 347;
+ else return 348;
+ else if (Instrument == Instrument::Snare)
+ if (Note == 0)
+ if (Powered) return 349;
+ else return 350;
+ else if (Note == 1)
+ if (Powered) return 351;
+ else return 352;
+ else if (Note == 2)
+ if (Powered) return 353;
+ else return 354;
+ else if (Note == 3)
+ if (Powered) return 355;
+ else return 356;
+ else if (Note == 4)
+ if (Powered) return 357;
+ else return 358;
+ else if (Note == 5)
+ if (Powered) return 359;
+ else return 360;
+ else if (Note == 6)
+ if (Powered) return 361;
+ else return 362;
+ else if (Note == 7)
+ if (Powered) return 363;
+ else return 364;
+ else if (Note == 8)
+ if (Powered) return 365;
+ else return 366;
+ else if (Note == 9)
+ if (Powered) return 367;
+ else return 368;
+ else if (Note == 10)
+ if (Powered) return 369;
+ else return 370;
+ else if (Note == 11)
+ if (Powered) return 371;
+ else return 372;
+ else if (Note == 12)
+ if (Powered) return 373;
+ else return 374;
+ else if (Note == 13)
+ if (Powered) return 375;
+ else return 376;
+ else if (Note == 14)
+ if (Powered) return 377;
+ else return 378;
+ else if (Note == 15)
+ if (Powered) return 379;
+ else return 380;
+ else if (Note == 16)
+ if (Powered) return 381;
+ else return 382;
+ else if (Note == 17)
+ if (Powered) return 383;
+ else return 384;
+ else if (Note == 18)
+ if (Powered) return 385;
+ else return 386;
+ else if (Note == 19)
+ if (Powered) return 387;
+ else return 388;
+ else if (Note == 20)
+ if (Powered) return 389;
+ else return 390;
+ else if (Note == 21)
+ if (Powered) return 391;
+ else return 392;
+ else if (Note == 22)
+ if (Powered) return 393;
+ else return 394;
+ else if (Note == 23)
+ if (Powered) return 395;
+ else return 396;
+ else
+ if (Powered) return 397;
+ else return 398;
+ else if (Instrument == Instrument::Hat)
+ if (Note == 0)
+ if (Powered) return 399;
+ else return 400;
+ else if (Note == 1)
+ if (Powered) return 401;
+ else return 402;
+ else if (Note == 2)
+ if (Powered) return 403;
+ else return 404;
+ else if (Note == 3)
+ if (Powered) return 405;
+ else return 406;
+ else if (Note == 4)
+ if (Powered) return 407;
+ else return 408;
+ else if (Note == 5)
+ if (Powered) return 409;
+ else return 410;
+ else if (Note == 6)
+ if (Powered) return 411;
+ else return 412;
+ else if (Note == 7)
+ if (Powered) return 413;
+ else return 414;
+ else if (Note == 8)
+ if (Powered) return 415;
+ else return 416;
+ else if (Note == 9)
+ if (Powered) return 417;
+ else return 418;
+ else if (Note == 10)
+ if (Powered) return 419;
+ else return 420;
+ else if (Note == 11)
+ if (Powered) return 421;
+ else return 422;
+ else if (Note == 12)
+ if (Powered) return 423;
+ else return 424;
+ else if (Note == 13)
+ if (Powered) return 425;
+ else return 426;
+ else if (Note == 14)
+ if (Powered) return 427;
+ else return 428;
+ else if (Note == 15)
+ if (Powered) return 429;
+ else return 430;
+ else if (Note == 16)
+ if (Powered) return 431;
+ else return 432;
+ else if (Note == 17)
+ if (Powered) return 433;
+ else return 434;
+ else if (Note == 18)
+ if (Powered) return 435;
+ else return 436;
+ else if (Note == 19)
+ if (Powered) return 437;
+ else return 438;
+ else if (Note == 20)
+ if (Powered) return 439;
+ else return 440;
+ else if (Note == 21)
+ if (Powered) return 441;
+ else return 442;
+ else if (Note == 22)
+ if (Powered) return 443;
+ else return 444;
+ else if (Note == 23)
+ if (Powered) return 445;
+ else return 446;
+ else
+ if (Powered) return 447;
+ else return 448;
+ else if (Instrument == Instrument::Bass)
+ if (Note == 0)
+ if (Powered) return 449;
+ else return 450;
+ else if (Note == 1)
+ if (Powered) return 451;
+ else return 452;
+ else if (Note == 2)
+ if (Powered) return 453;
+ else return 454;
+ else if (Note == 3)
+ if (Powered) return 455;
+ else return 456;
+ else if (Note == 4)
+ if (Powered) return 457;
+ else return 458;
+ else if (Note == 5)
+ if (Powered) return 459;
+ else return 460;
+ else if (Note == 6)
+ if (Powered) return 461;
+ else return 462;
+ else if (Note == 7)
+ if (Powered) return 463;
+ else return 464;
+ else if (Note == 8)
+ if (Powered) return 465;
+ else return 466;
+ else if (Note == 9)
+ if (Powered) return 467;
+ else return 468;
+ else if (Note == 10)
+ if (Powered) return 469;
+ else return 470;
+ else if (Note == 11)
+ if (Powered) return 471;
+ else return 472;
+ else if (Note == 12)
+ if (Powered) return 473;
+ else return 474;
+ else if (Note == 13)
+ if (Powered) return 475;
+ else return 476;
+ else if (Note == 14)
+ if (Powered) return 477;
+ else return 478;
+ else if (Note == 15)
+ if (Powered) return 479;
+ else return 480;
+ else if (Note == 16)
+ if (Powered) return 481;
+ else return 482;
+ else if (Note == 17)
+ if (Powered) return 483;
+ else return 484;
+ else if (Note == 18)
+ if (Powered) return 485;
+ else return 486;
+ else if (Note == 19)
+ if (Powered) return 487;
+ else return 488;
+ else if (Note == 20)
+ if (Powered) return 489;
+ else return 490;
+ else if (Note == 21)
+ if (Powered) return 491;
+ else return 492;
+ else if (Note == 22)
+ if (Powered) return 493;
+ else return 494;
+ else if (Note == 23)
+ if (Powered) return 495;
+ else return 496;
+ else
+ if (Powered) return 497;
+ else return 498;
+ else if (Instrument == Instrument::Flute)
+ if (Note == 0)
+ if (Powered) return 499;
+ else return 500;
+ else if (Note == 1)
+ if (Powered) return 501;
+ else return 502;
+ else if (Note == 2)
+ if (Powered) return 503;
+ else return 504;
+ else if (Note == 3)
+ if (Powered) return 505;
+ else return 506;
+ else if (Note == 4)
+ if (Powered) return 507;
+ else return 508;
+ else if (Note == 5)
+ if (Powered) return 509;
+ else return 510;
+ else if (Note == 6)
+ if (Powered) return 511;
+ else return 512;
+ else if (Note == 7)
+ if (Powered) return 513;
+ else return 514;
+ else if (Note == 8)
+ if (Powered) return 515;
+ else return 516;
+ else if (Note == 9)
+ if (Powered) return 517;
+ else return 518;
+ else if (Note == 10)
+ if (Powered) return 519;
+ else return 520;
+ else if (Note == 11)
+ if (Powered) return 521;
+ else return 522;
+ else if (Note == 12)
+ if (Powered) return 523;
+ else return 524;
+ else if (Note == 13)
+ if (Powered) return 525;
+ else return 526;
+ else if (Note == 14)
+ if (Powered) return 527;
+ else return 528;
+ else if (Note == 15)
+ if (Powered) return 529;
+ else return 530;
+ else if (Note == 16)
+ if (Powered) return 531;
+ else return 532;
+ else if (Note == 17)
+ if (Powered) return 533;
+ else return 534;
+ else if (Note == 18)
+ if (Powered) return 535;
+ else return 536;
+ else if (Note == 19)
+ if (Powered) return 537;
+ else return 538;
+ else if (Note == 20)
+ if (Powered) return 539;
+ else return 540;
+ else if (Note == 21)
+ if (Powered) return 541;
+ else return 542;
+ else if (Note == 22)
+ if (Powered) return 543;
+ else return 544;
+ else if (Note == 23)
+ if (Powered) return 545;
+ else return 546;
+ else
+ if (Powered) return 547;
+ else return 548;
+ else if (Instrument == Instrument::Bell)
+ if (Note == 0)
+ if (Powered) return 549;
+ else return 550;
+ else if (Note == 1)
+ if (Powered) return 551;
+ else return 552;
+ else if (Note == 2)
+ if (Powered) return 553;
+ else return 554;
+ else if (Note == 3)
+ if (Powered) return 555;
+ else return 556;
+ else if (Note == 4)
+ if (Powered) return 557;
+ else return 558;
+ else if (Note == 5)
+ if (Powered) return 559;
+ else return 560;
+ else if (Note == 6)
+ if (Powered) return 561;
+ else return 562;
+ else if (Note == 7)
+ if (Powered) return 563;
+ else return 564;
+ else if (Note == 8)
+ if (Powered) return 565;
+ else return 566;
+ else if (Note == 9)
+ if (Powered) return 567;
+ else return 568;
+ else if (Note == 10)
+ if (Powered) return 569;
+ else return 570;
+ else if (Note == 11)
+ if (Powered) return 571;
+ else return 572;
+ else if (Note == 12)
+ if (Powered) return 573;
+ else return 574;
+ else if (Note == 13)
+ if (Powered) return 575;
+ else return 576;
+ else if (Note == 14)
+ if (Powered) return 577;
+ else return 578;
+ else if (Note == 15)
+ if (Powered) return 579;
+ else return 580;
+ else if (Note == 16)
+ if (Powered) return 581;
+ else return 582;
+ else if (Note == 17)
+ if (Powered) return 583;
+ else return 584;
+ else if (Note == 18)
+ if (Powered) return 585;
+ else return 586;
+ else if (Note == 19)
+ if (Powered) return 587;
+ else return 588;
+ else if (Note == 20)
+ if (Powered) return 589;
+ else return 590;
+ else if (Note == 21)
+ if (Powered) return 591;
+ else return 592;
+ else if (Note == 22)
+ if (Powered) return 593;
+ else return 594;
+ else if (Note == 23)
+ if (Powered) return 595;
+ else return 596;
+ else
+ if (Powered) return 597;
+ else return 598;
+ else if (Instrument == Instrument::Guitar)
+ if (Note == 0)
+ if (Powered) return 599;
+ else return 600;
+ else if (Note == 1)
+ if (Powered) return 601;
+ else return 602;
+ else if (Note == 2)
+ if (Powered) return 603;
+ else return 604;
+ else if (Note == 3)
+ if (Powered) return 605;
+ else return 606;
+ else if (Note == 4)
+ if (Powered) return 607;
+ else return 608;
+ else if (Note == 5)
+ if (Powered) return 609;
+ else return 610;
+ else if (Note == 6)
+ if (Powered) return 611;
+ else return 612;
+ else if (Note == 7)
+ if (Powered) return 613;
+ else return 614;
+ else if (Note == 8)
+ if (Powered) return 615;
+ else return 616;
+ else if (Note == 9)
+ if (Powered) return 617;
+ else return 618;
+ else if (Note == 10)
+ if (Powered) return 619;
+ else return 620;
+ else if (Note == 11)
+ if (Powered) return 621;
+ else return 622;
+ else if (Note == 12)
+ if (Powered) return 623;
+ else return 624;
+ else if (Note == 13)
+ if (Powered) return 625;
+ else return 626;
+ else if (Note == 14)
+ if (Powered) return 627;
+ else return 628;
+ else if (Note == 15)
+ if (Powered) return 629;
+ else return 630;
+ else if (Note == 16)
+ if (Powered) return 631;
+ else return 632;
+ else if (Note == 17)
+ if (Powered) return 633;
+ else return 634;
+ else if (Note == 18)
+ if (Powered) return 635;
+ else return 636;
+ else if (Note == 19)
+ if (Powered) return 637;
+ else return 638;
+ else if (Note == 20)
+ if (Powered) return 639;
+ else return 640;
+ else if (Note == 21)
+ if (Powered) return 641;
+ else return 642;
+ else if (Note == 22)
+ if (Powered) return 643;
+ else return 644;
+ else if (Note == 23)
+ if (Powered) return 645;
+ else return 646;
+ else
+ if (Powered) return 647;
+ else return 648;
+ else if (Instrument == Instrument::Chime)
+ if (Note == 0)
+ if (Powered) return 649;
+ else return 650;
+ else if (Note == 1)
+ if (Powered) return 651;
+ else return 652;
+ else if (Note == 2)
+ if (Powered) return 653;
+ else return 654;
+ else if (Note == 3)
+ if (Powered) return 655;
+ else return 656;
+ else if (Note == 4)
+ if (Powered) return 657;
+ else return 658;
+ else if (Note == 5)
+ if (Powered) return 659;
+ else return 660;
+ else if (Note == 6)
+ if (Powered) return 661;
+ else return 662;
+ else if (Note == 7)
+ if (Powered) return 663;
+ else return 664;
+ else if (Note == 8)
+ if (Powered) return 665;
+ else return 666;
+ else if (Note == 9)
+ if (Powered) return 667;
+ else return 668;
+ else if (Note == 10)
+ if (Powered) return 669;
+ else return 670;
+ else if (Note == 11)
+ if (Powered) return 671;
+ else return 672;
+ else if (Note == 12)
+ if (Powered) return 673;
+ else return 674;
+ else if (Note == 13)
+ if (Powered) return 675;
+ else return 676;
+ else if (Note == 14)
+ if (Powered) return 677;
+ else return 678;
+ else if (Note == 15)
+ if (Powered) return 679;
+ else return 680;
+ else if (Note == 16)
+ if (Powered) return 681;
+ else return 682;
+ else if (Note == 17)
+ if (Powered) return 683;
+ else return 684;
+ else if (Note == 18)
+ if (Powered) return 685;
+ else return 686;
+ else if (Note == 19)
+ if (Powered) return 687;
+ else return 688;
+ else if (Note == 20)
+ if (Powered) return 689;
+ else return 690;
+ else if (Note == 21)
+ if (Powered) return 691;
+ else return 692;
+ else if (Note == 22)
+ if (Powered) return 693;
+ else return 694;
+ else if (Note == 23)
+ if (Powered) return 695;
+ else return 696;
+ else
+ if (Powered) return 697;
+ else return 698;
+ else if (Instrument == Instrument::Xylophone)
+ if (Note == 0)
+ if (Powered) return 699;
+ else return 700;
+ else if (Note == 1)
+ if (Powered) return 701;
+ else return 702;
+ else if (Note == 2)
+ if (Powered) return 703;
+ else return 704;
+ else if (Note == 3)
+ if (Powered) return 705;
+ else return 706;
+ else if (Note == 4)
+ if (Powered) return 707;
+ else return 708;
+ else if (Note == 5)
+ if (Powered) return 709;
+ else return 710;
+ else if (Note == 6)
+ if (Powered) return 711;
+ else return 712;
+ else if (Note == 7)
+ if (Powered) return 713;
+ else return 714;
+ else if (Note == 8)
+ if (Powered) return 715;
+ else return 716;
+ else if (Note == 9)
+ if (Powered) return 717;
+ else return 718;
+ else if (Note == 10)
+ if (Powered) return 719;
+ else return 720;
+ else if (Note == 11)
+ if (Powered) return 721;
+ else return 722;
+ else if (Note == 12)
+ if (Powered) return 723;
+ else return 724;
+ else if (Note == 13)
+ if (Powered) return 725;
+ else return 726;
+ else if (Note == 14)
+ if (Powered) return 727;
+ else return 728;
+ else if (Note == 15)
+ if (Powered) return 729;
+ else return 730;
+ else if (Note == 16)
+ if (Powered) return 731;
+ else return 732;
+ else if (Note == 17)
+ if (Powered) return 733;
+ else return 734;
+ else if (Note == 18)
+ if (Powered) return 735;
+ else return 736;
+ else if (Note == 19)
+ if (Powered) return 737;
+ else return 738;
+ else if (Note == 20)
+ if (Powered) return 739;
+ else return 740;
+ else if (Note == 21)
+ if (Powered) return 741;
+ else return 742;
+ else if (Note == 22)
+ if (Powered) return 743;
+ else return 744;
+ else if (Note == 23)
+ if (Powered) return 745;
+ else return 746;
+ else
+ if (Powered) return 747;
+ else return 748;
+ else if (Instrument == Instrument::IronXylophone)
+ if (Note == 0)
+ if (Powered) return 749;
+ else return 750;
+ else if (Note == 1)
+ if (Powered) return 751;
+ else return 752;
+ else if (Note == 2)
+ if (Powered) return 753;
+ else return 754;
+ else if (Note == 3)
+ if (Powered) return 755;
+ else return 756;
+ else if (Note == 4)
+ if (Powered) return 757;
+ else return 758;
+ else if (Note == 5)
+ if (Powered) return 759;
+ else return 760;
+ else if (Note == 6)
+ if (Powered) return 761;
+ else return 762;
+ else if (Note == 7)
+ if (Powered) return 763;
+ else return 764;
+ else if (Note == 8)
+ if (Powered) return 765;
+ else return 766;
+ else if (Note == 9)
+ if (Powered) return 767;
+ else return 768;
+ else if (Note == 10)
+ if (Powered) return 769;
+ else return 770;
+ else if (Note == 11)
+ if (Powered) return 771;
+ else return 772;
+ else if (Note == 12)
+ if (Powered) return 773;
+ else return 774;
+ else if (Note == 13)
+ if (Powered) return 775;
+ else return 776;
+ else if (Note == 14)
+ if (Powered) return 777;
+ else return 778;
+ else if (Note == 15)
+ if (Powered) return 779;
+ else return 780;
+ else if (Note == 16)
+ if (Powered) return 781;
+ else return 782;
+ else if (Note == 17)
+ if (Powered) return 783;
+ else return 784;
+ else if (Note == 18)
+ if (Powered) return 785;
+ else return 786;
+ else if (Note == 19)
+ if (Powered) return 787;
+ else return 788;
+ else if (Note == 20)
+ if (Powered) return 789;
+ else return 790;
+ else if (Note == 21)
+ if (Powered) return 791;
+ else return 792;
+ else if (Note == 22)
+ if (Powered) return 793;
+ else return 794;
+ else if (Note == 23)
+ if (Powered) return 795;
+ else return 796;
+ else
+ if (Powered) return 797;
+ else return 798;
+ else if (Instrument == Instrument::CowBell)
+ if (Note == 0)
+ if (Powered) return 799;
+ else return 800;
+ else if (Note == 1)
+ if (Powered) return 801;
+ else return 802;
+ else if (Note == 2)
+ if (Powered) return 803;
+ else return 804;
+ else if (Note == 3)
+ if (Powered) return 805;
+ else return 806;
+ else if (Note == 4)
+ if (Powered) return 807;
+ else return 808;
+ else if (Note == 5)
+ if (Powered) return 809;
+ else return 810;
+ else if (Note == 6)
+ if (Powered) return 811;
+ else return 812;
+ else if (Note == 7)
+ if (Powered) return 813;
+ else return 814;
+ else if (Note == 8)
+ if (Powered) return 815;
+ else return 816;
+ else if (Note == 9)
+ if (Powered) return 817;
+ else return 818;
+ else if (Note == 10)
+ if (Powered) return 819;
+ else return 820;
+ else if (Note == 11)
+ if (Powered) return 821;
+ else return 822;
+ else if (Note == 12)
+ if (Powered) return 823;
+ else return 824;
+ else if (Note == 13)
+ if (Powered) return 825;
+ else return 826;
+ else if (Note == 14)
+ if (Powered) return 827;
+ else return 828;
+ else if (Note == 15)
+ if (Powered) return 829;
+ else return 830;
+ else if (Note == 16)
+ if (Powered) return 831;
+ else return 832;
+ else if (Note == 17)
+ if (Powered) return 833;
+ else return 834;
+ else if (Note == 18)
+ if (Powered) return 835;
+ else return 836;
+ else if (Note == 19)
+ if (Powered) return 837;
+ else return 838;
+ else if (Note == 20)
+ if (Powered) return 839;
+ else return 840;
+ else if (Note == 21)
+ if (Powered) return 841;
+ else return 842;
+ else if (Note == 22)
+ if (Powered) return 843;
+ else return 844;
+ else if (Note == 23)
+ if (Powered) return 845;
+ else return 846;
+ else
+ if (Powered) return 847;
+ else return 848;
+ else if (Instrument == Instrument::Didgeridoo)
+ if (Note == 0)
+ if (Powered) return 849;
+ else return 850;
+ else if (Note == 1)
+ if (Powered) return 851;
+ else return 852;
+ else if (Note == 2)
+ if (Powered) return 853;
+ else return 854;
+ else if (Note == 3)
+ if (Powered) return 855;
+ else return 856;
+ else if (Note == 4)
+ if (Powered) return 857;
+ else return 858;
+ else if (Note == 5)
+ if (Powered) return 859;
+ else return 860;
+ else if (Note == 6)
+ if (Powered) return 861;
+ else return 862;
+ else if (Note == 7)
+ if (Powered) return 863;
+ else return 864;
+ else if (Note == 8)
+ if (Powered) return 865;
+ else return 866;
+ else if (Note == 9)
+ if (Powered) return 867;
+ else return 868;
+ else if (Note == 10)
+ if (Powered) return 869;
+ else return 870;
+ else if (Note == 11)
+ if (Powered) return 871;
+ else return 872;
+ else if (Note == 12)
+ if (Powered) return 873;
+ else return 874;
+ else if (Note == 13)
+ if (Powered) return 875;
+ else return 876;
+ else if (Note == 14)
+ if (Powered) return 877;
+ else return 878;
+ else if (Note == 15)
+ if (Powered) return 879;
+ else return 880;
+ else if (Note == 16)
+ if (Powered) return 881;
+ else return 882;
+ else if (Note == 17)
+ if (Powered) return 883;
+ else return 884;
+ else if (Note == 18)
+ if (Powered) return 885;
+ else return 886;
+ else if (Note == 19)
+ if (Powered) return 887;
+ else return 888;
+ else if (Note == 20)
+ if (Powered) return 889;
+ else return 890;
+ else if (Note == 21)
+ if (Powered) return 891;
+ else return 892;
+ else if (Note == 22)
+ if (Powered) return 893;
+ else return 894;
+ else if (Note == 23)
+ if (Powered) return 895;
+ else return 896;
+ else
+ if (Powered) return 897;
+ else return 898;
+ else if (Instrument == Instrument::Bit)
+ if (Note == 0)
+ if (Powered) return 899;
+ else return 900;
+ else if (Note == 1)
+ if (Powered) return 901;
+ else return 902;
+ else if (Note == 2)
+ if (Powered) return 903;
+ else return 904;
+ else if (Note == 3)
+ if (Powered) return 905;
+ else return 906;
+ else if (Note == 4)
+ if (Powered) return 907;
+ else return 908;
+ else if (Note == 5)
+ if (Powered) return 909;
+ else return 910;
+ else if (Note == 6)
+ if (Powered) return 911;
+ else return 912;
+ else if (Note == 7)
+ if (Powered) return 913;
+ else return 914;
+ else if (Note == 8)
+ if (Powered) return 915;
+ else return 916;
+ else if (Note == 9)
+ if (Powered) return 917;
+ else return 918;
+ else if (Note == 10)
+ if (Powered) return 919;
+ else return 920;
+ else if (Note == 11)
+ if (Powered) return 921;
+ else return 922;
+ else if (Note == 12)
+ if (Powered) return 923;
+ else return 924;
+ else if (Note == 13)
+ if (Powered) return 925;
+ else return 926;
+ else if (Note == 14)
+ if (Powered) return 927;
+ else return 928;
+ else if (Note == 15)
+ if (Powered) return 929;
+ else return 930;
+ else if (Note == 16)
+ if (Powered) return 931;
+ else return 932;
+ else if (Note == 17)
+ if (Powered) return 933;
+ else return 934;
+ else if (Note == 18)
+ if (Powered) return 935;
+ else return 936;
+ else if (Note == 19)
+ if (Powered) return 937;
+ else return 938;
+ else if (Note == 20)
+ if (Powered) return 939;
+ else return 940;
+ else if (Note == 21)
+ if (Powered) return 941;
+ else return 942;
+ else if (Note == 22)
+ if (Powered) return 943;
+ else return 944;
+ else if (Note == 23)
+ if (Powered) return 945;
+ else return 946;
+ else
+ if (Powered) return 947;
+ else return 948;
+ else if (Instrument == Instrument::Banjo)
+ if (Note == 0)
+ if (Powered) return 949;
+ else return 950;
+ else if (Note == 1)
+ if (Powered) return 951;
+ else return 952;
+ else if (Note == 2)
+ if (Powered) return 953;
+ else return 954;
+ else if (Note == 3)
+ if (Powered) return 955;
+ else return 956;
+ else if (Note == 4)
+ if (Powered) return 957;
+ else return 958;
+ else if (Note == 5)
+ if (Powered) return 959;
+ else return 960;
+ else if (Note == 6)
+ if (Powered) return 961;
+ else return 962;
+ else if (Note == 7)
+ if (Powered) return 963;
+ else return 964;
+ else if (Note == 8)
+ if (Powered) return 965;
+ else return 966;
+ else if (Note == 9)
+ if (Powered) return 967;
+ else return 968;
+ else if (Note == 10)
+ if (Powered) return 969;
+ else return 970;
+ else if (Note == 11)
+ if (Powered) return 971;
+ else return 972;
+ else if (Note == 12)
+ if (Powered) return 973;
+ else return 974;
+ else if (Note == 13)
+ if (Powered) return 975;
+ else return 976;
+ else if (Note == 14)
+ if (Powered) return 977;
+ else return 978;
+ else if (Note == 15)
+ if (Powered) return 979;
+ else return 980;
+ else if (Note == 16)
+ if (Powered) return 981;
+ else return 982;
+ else if (Note == 17)
+ if (Powered) return 983;
+ else return 984;
+ else if (Note == 18)
+ if (Powered) return 985;
+ else return 986;
+ else if (Note == 19)
+ if (Powered) return 987;
+ else return 988;
+ else if (Note == 20)
+ if (Powered) return 989;
+ else return 990;
+ else if (Note == 21)
+ if (Powered) return 991;
+ else return 992;
+ else if (Note == 22)
+ if (Powered) return 993;
+ else return 994;
+ else if (Note == 23)
+ if (Powered) return 995;
+ else return 996;
+ else
+ if (Powered) return 997;
+ else return 998;
+ else
+ if (Note == 0)
+ if (Powered) return 999;
+ else return 1000;
+ else if (Note == 1)
+ if (Powered) return 1001;
+ else return 1002;
+ else if (Note == 2)
+ if (Powered) return 1003;
+ else return 1004;
+ else if (Note == 3)
+ if (Powered) return 1005;
+ else return 1006;
+ else if (Note == 4)
+ if (Powered) return 1007;
+ else return 1008;
+ else if (Note == 5)
+ if (Powered) return 1009;
+ else return 1010;
+ else if (Note == 6)
+ if (Powered) return 1011;
+ else return 1012;
+ else if (Note == 7)
+ if (Powered) return 1013;
+ else return 1014;
+ else if (Note == 8)
+ if (Powered) return 1015;
+ else return 1016;
+ else if (Note == 9)
+ if (Powered) return 1017;
+ else return 1018;
+ else if (Note == 10)
+ if (Powered) return 1019;
+ else return 1020;
+ else if (Note == 11)
+ if (Powered) return 1021;
+ else return 1022;
+ else if (Note == 12)
+ if (Powered) return 1023;
+ else return 1024;
+ else if (Note == 13)
+ if (Powered) return 1025;
+ else return 1026;
+ else if (Note == 14)
+ if (Powered) return 1027;
+ else return 1028;
+ else if (Note == 15)
+ if (Powered) return 1029;
+ else return 1030;
+ else if (Note == 16)
+ if (Powered) return 1031;
+ else return 1032;
+ else if (Note == 17)
+ if (Powered) return 1033;
+ else return 1034;
+ else if (Note == 18)
+ if (Powered) return 1035;
+ else return 1036;
+ else if (Note == 19)
+ if (Powered) return 1037;
+ else return 1038;
+ else if (Note == 20)
+ if (Powered) return 1039;
+ else return 1040;
+ else if (Note == 21)
+ if (Powered) return 1041;
+ else return 1042;
+ else if (Note == 22)
+ if (Powered) return 1043;
+ else return 1044;
+ else if (Note == 23)
+ if (Powered) return 1045;
+ else return 1046;
+ else
+ if (Powered) return 1047;
+ else return 1048;
+ }
+ BlockState NoteBlock();
+ enum Instrument Instrument(BlockState Block);
+ unsigned char Note(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace OakButton
+ {
+ enum class Face
+ {
+ Floor,
+ Wall,
+ Ceiling
+ };
+ constexpr BlockState OakButton(const enum Face Face, const eBlockFace Facing, const bool Powered)
+ {
+ if (Face == Face::Floor)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6346;
+ else return 6347;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6348;
+ else return 6349;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6350;
+ else return 6351;
+ else
+ if (Powered) return 6352;
+ else return 6353;
+ else if (Face == Face::Wall)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6354;
+ else return 6355;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6356;
+ else return 6357;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6358;
+ else return 6359;
+ else
+ if (Powered) return 6360;
+ else return 6361;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6362;
+ else return 6363;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6364;
+ else return 6365;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6366;
+ else return 6367;
+ else
+ if (Powered) return 6368;
+ else return 6369;
+ }
+ BlockState OakButton();
+ enum Face Face(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace OakDoor
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ enum class Hinge
+ {
+ Left,
+ Right
+ };
+ constexpr BlockState OakDoor(const eBlockFace Facing, const enum Half Half, const enum Hinge Hinge, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3573;
+ else return 3574;
+ else
+ if (Powered) return 3575;
+ else return 3576;
+ else
+ if (Open)
+ if (Powered) return 3577;
+ else return 3578;
+ else
+ if (Powered) return 3579;
+ else return 3580;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3581;
+ else return 3582;
+ else
+ if (Powered) return 3583;
+ else return 3584;
+ else
+ if (Open)
+ if (Powered) return 3585;
+ else return 3586;
+ else
+ if (Powered) return 3587;
+ else return 3588;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3589;
+ else return 3590;
+ else
+ if (Powered) return 3591;
+ else return 3592;
+ else
+ if (Open)
+ if (Powered) return 3593;
+ else return 3594;
+ else
+ if (Powered) return 3595;
+ else return 3596;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3597;
+ else return 3598;
+ else
+ if (Powered) return 3599;
+ else return 3600;
+ else
+ if (Open)
+ if (Powered) return 3601;
+ else return 3602;
+ else
+ if (Powered) return 3603;
+ else return 3604;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3605;
+ else return 3606;
+ else
+ if (Powered) return 3607;
+ else return 3608;
+ else
+ if (Open)
+ if (Powered) return 3609;
+ else return 3610;
+ else
+ if (Powered) return 3611;
+ else return 3612;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3613;
+ else return 3614;
+ else
+ if (Powered) return 3615;
+ else return 3616;
+ else
+ if (Open)
+ if (Powered) return 3617;
+ else return 3618;
+ else
+ if (Powered) return 3619;
+ else return 3620;
+ else
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3621;
+ else return 3622;
+ else
+ if (Powered) return 3623;
+ else return 3624;
+ else
+ if (Open)
+ if (Powered) return 3625;
+ else return 3626;
+ else
+ if (Powered) return 3627;
+ else return 3628;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 3629;
+ else return 3630;
+ else
+ if (Powered) return 3631;
+ else return 3632;
+ else
+ if (Open)
+ if (Powered) return 3633;
+ else return 3634;
+ else
+ if (Powered) return 3635;
+ else return 3636;
+ }
+ BlockState OakDoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Hinge Hinge(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace OakFence
+ {
+ constexpr BlockState OakFence(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 3968;
+ else return 3969;
+ else
+ if (West) return 3972;
+ else return 3973;
+ else
+ if (South)
+ if (West) return 3976;
+ else return 3977;
+ else
+ if (West) return 3980;
+ else return 3981;
+ else
+ if (North)
+ if (South)
+ if (West) return 3984;
+ else return 3985;
+ else
+ if (West) return 3988;
+ else return 3989;
+ else
+ if (South)
+ if (West) return 3992;
+ else return 3993;
+ else
+ if (West) return 3996;
+ else return 3997;
+ }
+ BlockState OakFence();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace OakFenceGate
+ {
+ constexpr BlockState OakFenceGate(const eBlockFace Facing, const bool InWall, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 4820;
+ else return 4821;
+ else
+ if (Powered) return 4822;
+ else return 4823;
+ else
+ if (Open)
+ if (Powered) return 4824;
+ else return 4825;
+ else
+ if (Powered) return 4826;
+ else return 4827;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (InWall)
+ if (Open)
+ if (Powered) return 4828;
+ else return 4829;
+ else
+ if (Powered) return 4830;
+ else return 4831;
+ else
+ if (Open)
+ if (Powered) return 4832;
+ else return 4833;
+ else
+ if (Powered) return 4834;
+ else return 4835;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 4836;
+ else return 4837;
+ else
+ if (Powered) return 4838;
+ else return 4839;
+ else
+ if (Open)
+ if (Powered) return 4840;
+ else return 4841;
+ else
+ if (Powered) return 4842;
+ else return 4843;
+ else
+ if (InWall)
+ if (Open)
+ if (Powered) return 4844;
+ else return 4845;
+ else
+ if (Powered) return 4846;
+ else return 4847;
+ else
+ if (Open)
+ if (Powered) return 4848;
+ else return 4849;
+ else
+ if (Powered) return 4850;
+ else return 4851;
+ }
+ BlockState OakFenceGate();
+ eBlockFace Facing(BlockState Block);
+ bool InWall(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace OakLeaves
+ {
+ constexpr BlockState OakLeaves(const unsigned char Distance, const bool Persistent)
+ {
+ if (Distance == 1)
+ if (Persistent) return 145;
+ else return 146;
+ else if (Distance == 2)
+ if (Persistent) return 147;
+ else return 148;
+ else if (Distance == 3)
+ if (Persistent) return 149;
+ else return 150;
+ else if (Distance == 4)
+ if (Persistent) return 151;
+ else return 152;
+ else if (Distance == 5)
+ if (Persistent) return 153;
+ else return 154;
+ else if (Distance == 6)
+ if (Persistent) return 155;
+ else return 156;
+ else
+ if (Persistent) return 157;
+ else return 158;
+ }
+ BlockState OakLeaves();
+ unsigned char Distance(BlockState Block);
+ bool Persistent(BlockState Block);
+ }
+ namespace OakLog
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState OakLog(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 73;
+ else if (Axis == Axis::Y) return 74;
+ else return 75;
+ }
+ BlockState OakLog();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace OakPlanks
+ {
+ constexpr BlockState OakPlanks()
+ {
+ return 15;
+ }
+ }
+ namespace OakPressurePlate
+ {
+ constexpr BlockState OakPressurePlate(const bool Powered)
+ {
+ if (Powered) return 3873;
+ else return 3874;
+ }
+ BlockState OakPressurePlate();
+ bool Powered(BlockState Block);
+ }
+ namespace OakSapling
+ {
+ constexpr BlockState OakSapling(const unsigned char Stage)
+ {
+ if (Stage == 0) return 21;
+ else return 22;
+ }
+ BlockState OakSapling();
+ unsigned char Stage(BlockState Block);
+ }
+ namespace OakSign
+ {
+ constexpr BlockState OakSign(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 3382;
+ else if (Rotation == 1) return 3384;
+ else if (Rotation == 2) return 3386;
+ else if (Rotation == 3) return 3388;
+ else if (Rotation == 4) return 3390;
+ else if (Rotation == 5) return 3392;
+ else if (Rotation == 6) return 3394;
+ else if (Rotation == 7) return 3396;
+ else if (Rotation == 8) return 3398;
+ else if (Rotation == 9) return 3400;
+ else if (Rotation == 10) return 3402;
+ else if (Rotation == 11) return 3404;
+ else if (Rotation == 12) return 3406;
+ else if (Rotation == 13) return 3408;
+ else if (Rotation == 14) return 3410;
+ else return 3412;
+ }
+ BlockState OakSign();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace OakSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState OakSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8301;
+ else if (Type == Type::Bottom) return 8303;
+ else return 8305;
+ }
+ BlockState OakSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace OakStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState OakStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 1955;
+ else if (Shape == Shape::InnerLeft) return 1957;
+ else if (Shape == Shape::InnerRight) return 1959;
+ else if (Shape == Shape::OuterLeft) return 1961;
+ else return 1963;
+ else
+ if (Shape == Shape::Straight) return 1965;
+ else if (Shape == Shape::InnerLeft) return 1967;
+ else if (Shape == Shape::InnerRight) return 1969;
+ else if (Shape == Shape::OuterLeft) return 1971;
+ else return 1973;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 1975;
+ else if (Shape == Shape::InnerLeft) return 1977;
+ else if (Shape == Shape::InnerRight) return 1979;
+ else if (Shape == Shape::OuterLeft) return 1981;
+ else return 1983;
+ else
+ if (Shape == Shape::Straight) return 1985;
+ else if (Shape == Shape::InnerLeft) return 1987;
+ else if (Shape == Shape::InnerRight) return 1989;
+ else if (Shape == Shape::OuterLeft) return 1991;
+ else return 1993;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 1995;
+ else if (Shape == Shape::InnerLeft) return 1997;
+ else if (Shape == Shape::InnerRight) return 1999;
+ else if (Shape == Shape::OuterLeft) return 2001;
+ else return 2003;
+ else
+ if (Shape == Shape::Straight) return 2005;
+ else if (Shape == Shape::InnerLeft) return 2007;
+ else if (Shape == Shape::InnerRight) return 2009;
+ else if (Shape == Shape::OuterLeft) return 2011;
+ else return 2013;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 2015;
+ else if (Shape == Shape::InnerLeft) return 2017;
+ else if (Shape == Shape::InnerRight) return 2019;
+ else if (Shape == Shape::OuterLeft) return 2021;
+ else return 2023;
+ else
+ if (Shape == Shape::Straight) return 2025;
+ else if (Shape == Shape::InnerLeft) return 2027;
+ else if (Shape == Shape::InnerRight) return 2029;
+ else if (Shape == Shape::OuterLeft) return 2031;
+ else return 2033;
+ }
+ BlockState OakStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace OakTrapdoor
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ constexpr BlockState OakTrapdoor(const eBlockFace Facing, const enum Half Half, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4112;
+ else return 4114;
+ else
+ if (Powered) return 4116;
+ else return 4118;
+ else
+ if (Open)
+ if (Powered) return 4120;
+ else return 4122;
+ else
+ if (Powered) return 4124;
+ else return 4126;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4128;
+ else return 4130;
+ else
+ if (Powered) return 4132;
+ else return 4134;
+ else
+ if (Open)
+ if (Powered) return 4136;
+ else return 4138;
+ else
+ if (Powered) return 4140;
+ else return 4142;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4144;
+ else return 4146;
+ else
+ if (Powered) return 4148;
+ else return 4150;
+ else
+ if (Open)
+ if (Powered) return 4152;
+ else return 4154;
+ else
+ if (Powered) return 4156;
+ else return 4158;
+ else
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4160;
+ else return 4162;
+ else
+ if (Powered) return 4164;
+ else return 4166;
+ else
+ if (Open)
+ if (Powered) return 4168;
+ else return 4170;
+ else
+ if (Powered) return 4172;
+ else return 4174;
+ }
+ BlockState OakTrapdoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace OakWallSign
+ {
+ constexpr BlockState OakWallSign(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3736;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3738;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 3740;
+ else return 3742;
+ }
+ BlockState OakWallSign();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace OakWood
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState OakWood(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 109;
+ else if (Axis == Axis::Y) return 110;
+ else return 111;
+ }
+ BlockState OakWood();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace Observer
+ {
+ constexpr BlockState Observer(const eBlockFace Facing, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 9260;
+ else return 9261;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP)
+ if (Powered) return 9262;
+ else return 9263;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 9264;
+ else return 9265;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 9266;
+ else return 9267;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP)
+ if (Powered) return 9268;
+ else return 9269;
+ else
+ if (Powered) return 9270;
+ else return 9271;
+ }
+ BlockState Observer();
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace Obsidian
+ {
+ constexpr BlockState Obsidian()
+ {
+ return 1434;
+ }
+ }
+ namespace OrangeBanner
+ {
+ constexpr BlockState OrangeBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 7913;
+ else if (Rotation == 1) return 7914;
+ else if (Rotation == 2) return 7915;
+ else if (Rotation == 3) return 7916;
+ else if (Rotation == 4) return 7917;
+ else if (Rotation == 5) return 7918;
+ else if (Rotation == 6) return 7919;
+ else if (Rotation == 7) return 7920;
+ else if (Rotation == 8) return 7921;
+ else if (Rotation == 9) return 7922;
+ else if (Rotation == 10) return 7923;
+ else if (Rotation == 11) return 7924;
+ else if (Rotation == 12) return 7925;
+ else if (Rotation == 13) return 7926;
+ else if (Rotation == 14) return 7927;
+ else return 7928;
+ }
+ BlockState OrangeBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace OrangeBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState OrangeBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1065;
+ else return 1066;
+ else
+ if (Part == Part::Head) return 1067;
+ else return 1068;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1069;
+ else return 1070;
+ else
+ if (Part == Part::Head) return 1071;
+ else return 1072;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1073;
+ else return 1074;
+ else
+ if (Part == Part::Head) return 1075;
+ else return 1076;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1077;
+ else return 1078;
+ else
+ if (Part == Part::Head) return 1079;
+ else return 1080;
+ }
+ BlockState OrangeBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace OrangeCarpet
+ {
+ constexpr BlockState OrangeCarpet()
+ {
+ return 7867;
+ }
+ }
+ namespace OrangeConcrete
+ {
+ constexpr BlockState OrangeConcrete()
+ {
+ return 9439;
+ }
+ }
+ namespace OrangeConcretePowder
+ {
+ constexpr BlockState OrangeConcretePowder()
+ {
+ return 9455;
+ }
+ }
+ namespace OrangeGlazedTerracotta
+ {
+ constexpr BlockState OrangeGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9378;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9379;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9380;
+ else return 9381;
+ }
+ BlockState OrangeGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace OrangeShulkerBox
+ {
+ constexpr BlockState OrangeShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9284;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9285;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9286;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9287;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9288;
+ else return 9289;
+ }
+ BlockState OrangeShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace OrangeStainedGlass
+ {
+ constexpr BlockState OrangeStainedGlass()
+ {
+ return 4096;
+ }
+ }
+ namespace OrangeStainedGlassPane
+ {
+ constexpr BlockState OrangeStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 6897;
+ else return 6898;
+ else
+ if (West) return 6901;
+ else return 6902;
+ else
+ if (South)
+ if (West) return 6905;
+ else return 6906;
+ else
+ if (West) return 6909;
+ else return 6910;
+ else
+ if (North)
+ if (South)
+ if (West) return 6913;
+ else return 6914;
+ else
+ if (West) return 6917;
+ else return 6918;
+ else
+ if (South)
+ if (West) return 6921;
+ else return 6922;
+ else
+ if (West) return 6925;
+ else return 6926;
+ }
+ BlockState OrangeStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace OrangeTerracotta
+ {
+ constexpr BlockState OrangeTerracotta()
+ {
+ return 6848;
+ }
+ }
+ namespace OrangeTulip
+ {
+ constexpr BlockState OrangeTulip()
+ {
+ return 1418;
+ }
+ }
+ namespace OrangeWallBanner
+ {
+ constexpr BlockState OrangeWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8157;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8158;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8159;
+ else return 8160;
+ }
+ BlockState OrangeWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace OrangeWool
+ {
+ constexpr BlockState OrangeWool()
+ {
+ return 1385;
+ }
+ }
+ namespace OxeyeDaisy
+ {
+ constexpr BlockState OxeyeDaisy()
+ {
+ return 1421;
+ }
+ }
+ namespace PackedIce
+ {
+ constexpr BlockState PackedIce()
+ {
+ return 7884;
+ }
+ }
+ namespace Peony
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ constexpr BlockState Peony(const enum Half Half)
+ {
+ if (Half == Half::Upper) return 7891;
+ else return 7892;
+ }
+ BlockState Peony();
+ enum Half Half(BlockState Block);
+ }
+ namespace PetrifiedOakSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState PetrifiedOakSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8361;
+ else if (Type == Type::Bottom) return 8363;
+ else return 8365;
+ }
+ BlockState PetrifiedOakSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace PinkBanner
+ {
+ constexpr BlockState PinkBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 7993;
+ else if (Rotation == 1) return 7994;
+ else if (Rotation == 2) return 7995;
+ else if (Rotation == 3) return 7996;
+ else if (Rotation == 4) return 7997;
+ else if (Rotation == 5) return 7998;
+ else if (Rotation == 6) return 7999;
+ else if (Rotation == 7) return 8000;
+ else if (Rotation == 8) return 8001;
+ else if (Rotation == 9) return 8002;
+ else if (Rotation == 10) return 8003;
+ else if (Rotation == 11) return 8004;
+ else if (Rotation == 12) return 8005;
+ else if (Rotation == 13) return 8006;
+ else if (Rotation == 14) return 8007;
+ else return 8008;
+ }
+ BlockState PinkBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace PinkBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState PinkBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1145;
+ else return 1146;
+ else
+ if (Part == Part::Head) return 1147;
+ else return 1148;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1149;
+ else return 1150;
+ else
+ if (Part == Part::Head) return 1151;
+ else return 1152;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1153;
+ else return 1154;
+ else
+ if (Part == Part::Head) return 1155;
+ else return 1156;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1157;
+ else return 1158;
+ else
+ if (Part == Part::Head) return 1159;
+ else return 1160;
+ }
+ BlockState PinkBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace PinkCarpet
+ {
+ constexpr BlockState PinkCarpet()
+ {
+ return 7872;
+ }
+ }
+ namespace PinkConcrete
+ {
+ constexpr BlockState PinkConcrete()
+ {
+ return 9444;
+ }
+ }
+ namespace PinkConcretePowder
+ {
+ constexpr BlockState PinkConcretePowder()
+ {
+ return 9460;
+ }
+ }
+ namespace PinkGlazedTerracotta
+ {
+ constexpr BlockState PinkGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9398;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9399;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9400;
+ else return 9401;
+ }
+ BlockState PinkGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace PinkShulkerBox
+ {
+ constexpr BlockState PinkShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9314;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9315;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9316;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9317;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9318;
+ else return 9319;
+ }
+ BlockState PinkShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace PinkStainedGlass
+ {
+ constexpr BlockState PinkStainedGlass()
+ {
+ return 4101;
+ }
+ }
+ namespace PinkStainedGlassPane
+ {
+ constexpr BlockState PinkStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 7057;
+ else return 7058;
+ else
+ if (West) return 7061;
+ else return 7062;
+ else
+ if (South)
+ if (West) return 7065;
+ else return 7066;
+ else
+ if (West) return 7069;
+ else return 7070;
+ else
+ if (North)
+ if (South)
+ if (West) return 7073;
+ else return 7074;
+ else
+ if (West) return 7077;
+ else return 7078;
+ else
+ if (South)
+ if (West) return 7081;
+ else return 7082;
+ else
+ if (West) return 7085;
+ else return 7086;
+ }
+ BlockState PinkStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace PinkTerracotta
+ {
+ constexpr BlockState PinkTerracotta()
+ {
+ return 6853;
+ }
+ }
+ namespace PinkTulip
+ {
+ constexpr BlockState PinkTulip()
+ {
+ return 1420;
+ }
+ }
+ namespace PinkWallBanner
+ {
+ constexpr BlockState PinkWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8177;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8178;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8179;
+ else return 8180;
+ }
+ BlockState PinkWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace PinkWool
+ {
+ constexpr BlockState PinkWool()
+ {
+ return 1390;
+ }
+ }
+ namespace Piston
+ {
+ constexpr BlockState Piston(const bool Extended, const eBlockFace Facing)
+ {
+ if (Extended)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 1348;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 1349;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 1350;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 1351;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 1352;
+ else return 1353;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 1354;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 1355;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 1356;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 1357;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 1358;
+ else return 1359;
+ }
+ BlockState Piston();
+ bool Extended(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace PistonHead
+ {
+ enum class Type
+ {
+ Normal,
+ Sticky
+ };
+ constexpr BlockState PistonHead(const eBlockFace Facing, const bool Short, const enum Type Type)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Short)
+ if (Type == Type::Normal) return 1360;
+ else return 1361;
+ else
+ if (Type == Type::Normal) return 1362;
+ else return 1363;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP)
+ if (Short)
+ if (Type == Type::Normal) return 1364;
+ else return 1365;
+ else
+ if (Type == Type::Normal) return 1366;
+ else return 1367;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Short)
+ if (Type == Type::Normal) return 1368;
+ else return 1369;
+ else
+ if (Type == Type::Normal) return 1370;
+ else return 1371;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Short)
+ if (Type == Type::Normal) return 1372;
+ else return 1373;
+ else
+ if (Type == Type::Normal) return 1374;
+ else return 1375;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP)
+ if (Short)
+ if (Type == Type::Normal) return 1376;
+ else return 1377;
+ else
+ if (Type == Type::Normal) return 1378;
+ else return 1379;
+ else
+ if (Short)
+ if (Type == Type::Normal) return 1380;
+ else return 1381;
+ else
+ if (Type == Type::Normal) return 1382;
+ else return 1383;
+ }
+ BlockState PistonHead();
+ eBlockFace Facing(BlockState Block);
+ bool Short(BlockState Block);
+ enum Type Type(BlockState Block);
+ }
+ namespace PlayerHead
+ {
+ constexpr BlockState PlayerHead(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 6550;
+ else if (Rotation == 1) return 6551;
+ else if (Rotation == 2) return 6552;
+ else if (Rotation == 3) return 6553;
+ else if (Rotation == 4) return 6554;
+ else if (Rotation == 5) return 6555;
+ else if (Rotation == 6) return 6556;
+ else if (Rotation == 7) return 6557;
+ else if (Rotation == 8) return 6558;
+ else if (Rotation == 9) return 6559;
+ else if (Rotation == 10) return 6560;
+ else if (Rotation == 11) return 6561;
+ else if (Rotation == 12) return 6562;
+ else if (Rotation == 13) return 6563;
+ else if (Rotation == 14) return 6564;
+ else return 6565;
+ }
+ BlockState PlayerHead();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace PlayerWallHead
+ {
+ constexpr BlockState PlayerWallHead(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6566;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6567;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 6568;
+ else return 6569;
+ }
+ BlockState PlayerWallHead();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace Podzol
+ {
+ constexpr BlockState Podzol(const bool Snowy)
+ {
+ if (Snowy) return 12;
+ else return 13;
+ }
+ BlockState Podzol();
+ bool Snowy(BlockState Block);
+ }
+ namespace PolishedAndesite
+ {
+ constexpr BlockState PolishedAndesite()
+ {
+ return 7;
+ }
+ }
+ namespace PolishedAndesiteSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState PolishedAndesiteSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 10856;
+ else if (Type == Type::Bottom) return 10858;
+ else return 10860;
+ }
+ BlockState PolishedAndesiteSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace PolishedAndesiteStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState PolishedAndesiteStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10630;
+ else if (Shape == Shape::InnerLeft) return 10632;
+ else if (Shape == Shape::InnerRight) return 10634;
+ else if (Shape == Shape::OuterLeft) return 10636;
+ else return 10638;
+ else
+ if (Shape == Shape::Straight) return 10640;
+ else if (Shape == Shape::InnerLeft) return 10642;
+ else if (Shape == Shape::InnerRight) return 10644;
+ else if (Shape == Shape::OuterLeft) return 10646;
+ else return 10648;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10650;
+ else if (Shape == Shape::InnerLeft) return 10652;
+ else if (Shape == Shape::InnerRight) return 10654;
+ else if (Shape == Shape::OuterLeft) return 10656;
+ else return 10658;
+ else
+ if (Shape == Shape::Straight) return 10660;
+ else if (Shape == Shape::InnerLeft) return 10662;
+ else if (Shape == Shape::InnerRight) return 10664;
+ else if (Shape == Shape::OuterLeft) return 10666;
+ else return 10668;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10670;
+ else if (Shape == Shape::InnerLeft) return 10672;
+ else if (Shape == Shape::InnerRight) return 10674;
+ else if (Shape == Shape::OuterLeft) return 10676;
+ else return 10678;
+ else
+ if (Shape == Shape::Straight) return 10680;
+ else if (Shape == Shape::InnerLeft) return 10682;
+ else if (Shape == Shape::InnerRight) return 10684;
+ else if (Shape == Shape::OuterLeft) return 10686;
+ else return 10688;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10690;
+ else if (Shape == Shape::InnerLeft) return 10692;
+ else if (Shape == Shape::InnerRight) return 10694;
+ else if (Shape == Shape::OuterLeft) return 10696;
+ else return 10698;
+ else
+ if (Shape == Shape::Straight) return 10700;
+ else if (Shape == Shape::InnerLeft) return 10702;
+ else if (Shape == Shape::InnerRight) return 10704;
+ else if (Shape == Shape::OuterLeft) return 10706;
+ else return 10708;
+ }
+ BlockState PolishedAndesiteStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace PolishedBasalt
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState PolishedBasalt(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 4005;
+ else if (Axis == Axis::Y) return 4006;
+ else return 4007;
+ }
+ BlockState PolishedBasalt();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace PolishedBlackstone
+ {
+ constexpr BlockState PolishedBlackstone()
+ {
+ return 16250;
+ }
+ }
+ namespace PolishedBlackstoneBrickSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState PolishedBlackstoneBrickSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 16255;
+ else if (Type == Type::Bottom) return 16257;
+ else return 16259;
+ }
+ BlockState PolishedBlackstoneBrickSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace PolishedBlackstoneBrickStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState PolishedBlackstoneBrickStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 16261;
+ else if (Shape == Shape::InnerLeft) return 16263;
+ else if (Shape == Shape::InnerRight) return 16265;
+ else if (Shape == Shape::OuterLeft) return 16267;
+ else return 16269;
+ else
+ if (Shape == Shape::Straight) return 16271;
+ else if (Shape == Shape::InnerLeft) return 16273;
+ else if (Shape == Shape::InnerRight) return 16275;
+ else if (Shape == Shape::OuterLeft) return 16277;
+ else return 16279;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 16281;
+ else if (Shape == Shape::InnerLeft) return 16283;
+ else if (Shape == Shape::InnerRight) return 16285;
+ else if (Shape == Shape::OuterLeft) return 16287;
+ else return 16289;
+ else
+ if (Shape == Shape::Straight) return 16291;
+ else if (Shape == Shape::InnerLeft) return 16293;
+ else if (Shape == Shape::InnerRight) return 16295;
+ else if (Shape == Shape::OuterLeft) return 16297;
+ else return 16299;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 16301;
+ else if (Shape == Shape::InnerLeft) return 16303;
+ else if (Shape == Shape::InnerRight) return 16305;
+ else if (Shape == Shape::OuterLeft) return 16307;
+ else return 16309;
+ else
+ if (Shape == Shape::Straight) return 16311;
+ else if (Shape == Shape::InnerLeft) return 16313;
+ else if (Shape == Shape::InnerRight) return 16315;
+ else if (Shape == Shape::OuterLeft) return 16317;
+ else return 16319;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 16321;
+ else if (Shape == Shape::InnerLeft) return 16323;
+ else if (Shape == Shape::InnerRight) return 16325;
+ else if (Shape == Shape::OuterLeft) return 16327;
+ else return 16329;
+ else
+ if (Shape == Shape::Straight) return 16331;
+ else if (Shape == Shape::InnerLeft) return 16333;
+ else if (Shape == Shape::InnerRight) return 16335;
+ else if (Shape == Shape::OuterLeft) return 16337;
+ else return 16339;
+ }
+ BlockState PolishedBlackstoneBrickStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace PolishedBlackstoneBrickWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState PolishedBlackstoneBrickWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16343;
+ else if (West == West::Low) return 16344;
+ else return 16345;
+ else
+ if (West == West::None) return 16349;
+ else if (West == West::Low) return 16350;
+ else return 16351;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16355;
+ else if (West == West::Low) return 16356;
+ else return 16357;
+ else
+ if (West == West::None) return 16361;
+ else if (West == West::Low) return 16362;
+ else return 16363;
+ else
+ if (Up)
+ if (West == West::None) return 16367;
+ else if (West == West::Low) return 16368;
+ else return 16369;
+ else
+ if (West == West::None) return 16373;
+ else if (West == West::Low) return 16374;
+ else return 16375;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16379;
+ else if (West == West::Low) return 16380;
+ else return 16381;
+ else
+ if (West == West::None) return 16385;
+ else if (West == West::Low) return 16386;
+ else return 16387;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16391;
+ else if (West == West::Low) return 16392;
+ else return 16393;
+ else
+ if (West == West::None) return 16397;
+ else if (West == West::Low) return 16398;
+ else return 16399;
+ else
+ if (Up)
+ if (West == West::None) return 16403;
+ else if (West == West::Low) return 16404;
+ else return 16405;
+ else
+ if (West == West::None) return 16409;
+ else if (West == West::Low) return 16410;
+ else return 16411;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16415;
+ else if (West == West::Low) return 16416;
+ else return 16417;
+ else
+ if (West == West::None) return 16421;
+ else if (West == West::Low) return 16422;
+ else return 16423;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16427;
+ else if (West == West::Low) return 16428;
+ else return 16429;
+ else
+ if (West == West::None) return 16433;
+ else if (West == West::Low) return 16434;
+ else return 16435;
+ else
+ if (Up)
+ if (West == West::None) return 16439;
+ else if (West == West::Low) return 16440;
+ else return 16441;
+ else
+ if (West == West::None) return 16445;
+ else if (West == West::Low) return 16446;
+ else return 16447;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16451;
+ else if (West == West::Low) return 16452;
+ else return 16453;
+ else
+ if (West == West::None) return 16457;
+ else if (West == West::Low) return 16458;
+ else return 16459;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16463;
+ else if (West == West::Low) return 16464;
+ else return 16465;
+ else
+ if (West == West::None) return 16469;
+ else if (West == West::Low) return 16470;
+ else return 16471;
+ else
+ if (Up)
+ if (West == West::None) return 16475;
+ else if (West == West::Low) return 16476;
+ else return 16477;
+ else
+ if (West == West::None) return 16481;
+ else if (West == West::Low) return 16482;
+ else return 16483;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16487;
+ else if (West == West::Low) return 16488;
+ else return 16489;
+ else
+ if (West == West::None) return 16493;
+ else if (West == West::Low) return 16494;
+ else return 16495;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16499;
+ else if (West == West::Low) return 16500;
+ else return 16501;
+ else
+ if (West == West::None) return 16505;
+ else if (West == West::Low) return 16506;
+ else return 16507;
+ else
+ if (Up)
+ if (West == West::None) return 16511;
+ else if (West == West::Low) return 16512;
+ else return 16513;
+ else
+ if (West == West::None) return 16517;
+ else if (West == West::Low) return 16518;
+ else return 16519;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16523;
+ else if (West == West::Low) return 16524;
+ else return 16525;
+ else
+ if (West == West::None) return 16529;
+ else if (West == West::Low) return 16530;
+ else return 16531;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16535;
+ else if (West == West::Low) return 16536;
+ else return 16537;
+ else
+ if (West == West::None) return 16541;
+ else if (West == West::Low) return 16542;
+ else return 16543;
+ else
+ if (Up)
+ if (West == West::None) return 16547;
+ else if (West == West::Low) return 16548;
+ else return 16549;
+ else
+ if (West == West::None) return 16553;
+ else if (West == West::Low) return 16554;
+ else return 16555;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16559;
+ else if (West == West::Low) return 16560;
+ else return 16561;
+ else
+ if (West == West::None) return 16565;
+ else if (West == West::Low) return 16566;
+ else return 16567;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16571;
+ else if (West == West::Low) return 16572;
+ else return 16573;
+ else
+ if (West == West::None) return 16577;
+ else if (West == West::Low) return 16578;
+ else return 16579;
+ else
+ if (Up)
+ if (West == West::None) return 16583;
+ else if (West == West::Low) return 16584;
+ else return 16585;
+ else
+ if (West == West::None) return 16589;
+ else if (West == West::Low) return 16590;
+ else return 16591;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16595;
+ else if (West == West::Low) return 16596;
+ else return 16597;
+ else
+ if (West == West::None) return 16601;
+ else if (West == West::Low) return 16602;
+ else return 16603;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16607;
+ else if (West == West::Low) return 16608;
+ else return 16609;
+ else
+ if (West == West::None) return 16613;
+ else if (West == West::Low) return 16614;
+ else return 16615;
+ else
+ if (Up)
+ if (West == West::None) return 16619;
+ else if (West == West::Low) return 16620;
+ else return 16621;
+ else
+ if (West == West::None) return 16625;
+ else if (West == West::Low) return 16626;
+ else return 16627;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16631;
+ else if (West == West::Low) return 16632;
+ else return 16633;
+ else
+ if (West == West::None) return 16637;
+ else if (West == West::Low) return 16638;
+ else return 16639;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16643;
+ else if (West == West::Low) return 16644;
+ else return 16645;
+ else
+ if (West == West::None) return 16649;
+ else if (West == West::Low) return 16650;
+ else return 16651;
+ else
+ if (Up)
+ if (West == West::None) return 16655;
+ else if (West == West::Low) return 16656;
+ else return 16657;
+ else
+ if (West == West::None) return 16661;
+ else if (West == West::Low) return 16662;
+ else return 16663;
+ }
+ BlockState PolishedBlackstoneBrickWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace PolishedBlackstoneBricks
+ {
+ constexpr BlockState PolishedBlackstoneBricks()
+ {
+ return 16251;
+ }
+ }
+ namespace PolishedBlackstoneButton
+ {
+ enum class Face
+ {
+ Floor,
+ Wall,
+ Ceiling
+ };
+ constexpr BlockState PolishedBlackstoneButton(const enum Face Face, const eBlockFace Facing, const bool Powered)
+ {
+ if (Face == Face::Floor)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 16753;
+ else return 16754;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 16755;
+ else return 16756;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 16757;
+ else return 16758;
+ else
+ if (Powered) return 16759;
+ else return 16760;
+ else if (Face == Face::Wall)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 16761;
+ else return 16762;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 16763;
+ else return 16764;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 16765;
+ else return 16766;
+ else
+ if (Powered) return 16767;
+ else return 16768;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 16769;
+ else return 16770;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 16771;
+ else return 16772;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 16773;
+ else return 16774;
+ else
+ if (Powered) return 16775;
+ else return 16776;
+ }
+ BlockState PolishedBlackstoneButton();
+ enum Face Face(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace PolishedBlackstonePressurePlate
+ {
+ constexpr BlockState PolishedBlackstonePressurePlate(const bool Powered)
+ {
+ if (Powered) return 16751;
+ else return 16752;
+ }
+ BlockState PolishedBlackstonePressurePlate();
+ bool Powered(BlockState Block);
+ }
+ namespace PolishedBlackstoneSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState PolishedBlackstoneSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 16746;
+ else if (Type == Type::Bottom) return 16748;
+ else return 16750;
+ }
+ BlockState PolishedBlackstoneSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace PolishedBlackstoneStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState PolishedBlackstoneStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 16666;
+ else if (Shape == Shape::InnerLeft) return 16668;
+ else if (Shape == Shape::InnerRight) return 16670;
+ else if (Shape == Shape::OuterLeft) return 16672;
+ else return 16674;
+ else
+ if (Shape == Shape::Straight) return 16676;
+ else if (Shape == Shape::InnerLeft) return 16678;
+ else if (Shape == Shape::InnerRight) return 16680;
+ else if (Shape == Shape::OuterLeft) return 16682;
+ else return 16684;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 16686;
+ else if (Shape == Shape::InnerLeft) return 16688;
+ else if (Shape == Shape::InnerRight) return 16690;
+ else if (Shape == Shape::OuterLeft) return 16692;
+ else return 16694;
+ else
+ if (Shape == Shape::Straight) return 16696;
+ else if (Shape == Shape::InnerLeft) return 16698;
+ else if (Shape == Shape::InnerRight) return 16700;
+ else if (Shape == Shape::OuterLeft) return 16702;
+ else return 16704;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 16706;
+ else if (Shape == Shape::InnerLeft) return 16708;
+ else if (Shape == Shape::InnerRight) return 16710;
+ else if (Shape == Shape::OuterLeft) return 16712;
+ else return 16714;
+ else
+ if (Shape == Shape::Straight) return 16716;
+ else if (Shape == Shape::InnerLeft) return 16718;
+ else if (Shape == Shape::InnerRight) return 16720;
+ else if (Shape == Shape::OuterLeft) return 16722;
+ else return 16724;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 16726;
+ else if (Shape == Shape::InnerLeft) return 16728;
+ else if (Shape == Shape::InnerRight) return 16730;
+ else if (Shape == Shape::OuterLeft) return 16732;
+ else return 16734;
+ else
+ if (Shape == Shape::Straight) return 16736;
+ else if (Shape == Shape::InnerLeft) return 16738;
+ else if (Shape == Shape::InnerRight) return 16740;
+ else if (Shape == Shape::OuterLeft) return 16742;
+ else return 16744;
+ }
+ BlockState PolishedBlackstoneStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace PolishedBlackstoneWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState PolishedBlackstoneWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16780;
+ else if (West == West::Low) return 16781;
+ else return 16782;
+ else
+ if (West == West::None) return 16786;
+ else if (West == West::Low) return 16787;
+ else return 16788;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16792;
+ else if (West == West::Low) return 16793;
+ else return 16794;
+ else
+ if (West == West::None) return 16798;
+ else if (West == West::Low) return 16799;
+ else return 16800;
+ else
+ if (Up)
+ if (West == West::None) return 16804;
+ else if (West == West::Low) return 16805;
+ else return 16806;
+ else
+ if (West == West::None) return 16810;
+ else if (West == West::Low) return 16811;
+ else return 16812;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16816;
+ else if (West == West::Low) return 16817;
+ else return 16818;
+ else
+ if (West == West::None) return 16822;
+ else if (West == West::Low) return 16823;
+ else return 16824;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16828;
+ else if (West == West::Low) return 16829;
+ else return 16830;
+ else
+ if (West == West::None) return 16834;
+ else if (West == West::Low) return 16835;
+ else return 16836;
+ else
+ if (Up)
+ if (West == West::None) return 16840;
+ else if (West == West::Low) return 16841;
+ else return 16842;
+ else
+ if (West == West::None) return 16846;
+ else if (West == West::Low) return 16847;
+ else return 16848;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16852;
+ else if (West == West::Low) return 16853;
+ else return 16854;
+ else
+ if (West == West::None) return 16858;
+ else if (West == West::Low) return 16859;
+ else return 16860;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16864;
+ else if (West == West::Low) return 16865;
+ else return 16866;
+ else
+ if (West == West::None) return 16870;
+ else if (West == West::Low) return 16871;
+ else return 16872;
+ else
+ if (Up)
+ if (West == West::None) return 16876;
+ else if (West == West::Low) return 16877;
+ else return 16878;
+ else
+ if (West == West::None) return 16882;
+ else if (West == West::Low) return 16883;
+ else return 16884;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16888;
+ else if (West == West::Low) return 16889;
+ else return 16890;
+ else
+ if (West == West::None) return 16894;
+ else if (West == West::Low) return 16895;
+ else return 16896;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16900;
+ else if (West == West::Low) return 16901;
+ else return 16902;
+ else
+ if (West == West::None) return 16906;
+ else if (West == West::Low) return 16907;
+ else return 16908;
+ else
+ if (Up)
+ if (West == West::None) return 16912;
+ else if (West == West::Low) return 16913;
+ else return 16914;
+ else
+ if (West == West::None) return 16918;
+ else if (West == West::Low) return 16919;
+ else return 16920;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16924;
+ else if (West == West::Low) return 16925;
+ else return 16926;
+ else
+ if (West == West::None) return 16930;
+ else if (West == West::Low) return 16931;
+ else return 16932;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16936;
+ else if (West == West::Low) return 16937;
+ else return 16938;
+ else
+ if (West == West::None) return 16942;
+ else if (West == West::Low) return 16943;
+ else return 16944;
+ else
+ if (Up)
+ if (West == West::None) return 16948;
+ else if (West == West::Low) return 16949;
+ else return 16950;
+ else
+ if (West == West::None) return 16954;
+ else if (West == West::Low) return 16955;
+ else return 16956;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16960;
+ else if (West == West::Low) return 16961;
+ else return 16962;
+ else
+ if (West == West::None) return 16966;
+ else if (West == West::Low) return 16967;
+ else return 16968;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 16972;
+ else if (West == West::Low) return 16973;
+ else return 16974;
+ else
+ if (West == West::None) return 16978;
+ else if (West == West::Low) return 16979;
+ else return 16980;
+ else
+ if (Up)
+ if (West == West::None) return 16984;
+ else if (West == West::Low) return 16985;
+ else return 16986;
+ else
+ if (West == West::None) return 16990;
+ else if (West == West::Low) return 16991;
+ else return 16992;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 16996;
+ else if (West == West::Low) return 16997;
+ else return 16998;
+ else
+ if (West == West::None) return 17002;
+ else if (West == West::Low) return 17003;
+ else return 17004;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 17008;
+ else if (West == West::Low) return 17009;
+ else return 17010;
+ else
+ if (West == West::None) return 17014;
+ else if (West == West::Low) return 17015;
+ else return 17016;
+ else
+ if (Up)
+ if (West == West::None) return 17020;
+ else if (West == West::Low) return 17021;
+ else return 17022;
+ else
+ if (West == West::None) return 17026;
+ else if (West == West::Low) return 17027;
+ else return 17028;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 17032;
+ else if (West == West::Low) return 17033;
+ else return 17034;
+ else
+ if (West == West::None) return 17038;
+ else if (West == West::Low) return 17039;
+ else return 17040;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 17044;
+ else if (West == West::Low) return 17045;
+ else return 17046;
+ else
+ if (West == West::None) return 17050;
+ else if (West == West::Low) return 17051;
+ else return 17052;
+ else
+ if (Up)
+ if (West == West::None) return 17056;
+ else if (West == West::Low) return 17057;
+ else return 17058;
+ else
+ if (West == West::None) return 17062;
+ else if (West == West::Low) return 17063;
+ else return 17064;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 17068;
+ else if (West == West::Low) return 17069;
+ else return 17070;
+ else
+ if (West == West::None) return 17074;
+ else if (West == West::Low) return 17075;
+ else return 17076;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 17080;
+ else if (West == West::Low) return 17081;
+ else return 17082;
+ else
+ if (West == West::None) return 17086;
+ else if (West == West::Low) return 17087;
+ else return 17088;
+ else
+ if (Up)
+ if (West == West::None) return 17092;
+ else if (West == West::Low) return 17093;
+ else return 17094;
+ else
+ if (West == West::None) return 17098;
+ else if (West == West::Low) return 17099;
+ else return 17100;
+ }
+ BlockState PolishedBlackstoneWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace PolishedDiorite
+ {
+ constexpr BlockState PolishedDiorite()
+ {
+ return 5;
+ }
+ }
+ namespace PolishedDioriteSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState PolishedDioriteSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 10808;
+ else if (Type == Type::Bottom) return 10810;
+ else return 10812;
+ }
+ BlockState PolishedDioriteSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace PolishedDioriteStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState PolishedDioriteStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9910;
+ else if (Shape == Shape::InnerLeft) return 9912;
+ else if (Shape == Shape::InnerRight) return 9914;
+ else if (Shape == Shape::OuterLeft) return 9916;
+ else return 9918;
+ else
+ if (Shape == Shape::Straight) return 9920;
+ else if (Shape == Shape::InnerLeft) return 9922;
+ else if (Shape == Shape::InnerRight) return 9924;
+ else if (Shape == Shape::OuterLeft) return 9926;
+ else return 9928;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9930;
+ else if (Shape == Shape::InnerLeft) return 9932;
+ else if (Shape == Shape::InnerRight) return 9934;
+ else if (Shape == Shape::OuterLeft) return 9936;
+ else return 9938;
+ else
+ if (Shape == Shape::Straight) return 9940;
+ else if (Shape == Shape::InnerLeft) return 9942;
+ else if (Shape == Shape::InnerRight) return 9944;
+ else if (Shape == Shape::OuterLeft) return 9946;
+ else return 9948;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9950;
+ else if (Shape == Shape::InnerLeft) return 9952;
+ else if (Shape == Shape::InnerRight) return 9954;
+ else if (Shape == Shape::OuterLeft) return 9956;
+ else return 9958;
+ else
+ if (Shape == Shape::Straight) return 9960;
+ else if (Shape == Shape::InnerLeft) return 9962;
+ else if (Shape == Shape::InnerRight) return 9964;
+ else if (Shape == Shape::OuterLeft) return 9966;
+ else return 9968;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9970;
+ else if (Shape == Shape::InnerLeft) return 9972;
+ else if (Shape == Shape::InnerRight) return 9974;
+ else if (Shape == Shape::OuterLeft) return 9976;
+ else return 9978;
+ else
+ if (Shape == Shape::Straight) return 9980;
+ else if (Shape == Shape::InnerLeft) return 9982;
+ else if (Shape == Shape::InnerRight) return 9984;
+ else if (Shape == Shape::OuterLeft) return 9986;
+ else return 9988;
+ }
+ BlockState PolishedDioriteStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace PolishedGranite
+ {
+ constexpr BlockState PolishedGranite()
+ {
+ return 3;
+ }
+ }
+ namespace PolishedGraniteSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState PolishedGraniteSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 10790;
+ else if (Type == Type::Bottom) return 10792;
+ else return 10794;
+ }
+ BlockState PolishedGraniteSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace PolishedGraniteStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState PolishedGraniteStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9670;
+ else if (Shape == Shape::InnerLeft) return 9672;
+ else if (Shape == Shape::InnerRight) return 9674;
+ else if (Shape == Shape::OuterLeft) return 9676;
+ else return 9678;
+ else
+ if (Shape == Shape::Straight) return 9680;
+ else if (Shape == Shape::InnerLeft) return 9682;
+ else if (Shape == Shape::InnerRight) return 9684;
+ else if (Shape == Shape::OuterLeft) return 9686;
+ else return 9688;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9690;
+ else if (Shape == Shape::InnerLeft) return 9692;
+ else if (Shape == Shape::InnerRight) return 9694;
+ else if (Shape == Shape::OuterLeft) return 9696;
+ else return 9698;
+ else
+ if (Shape == Shape::Straight) return 9700;
+ else if (Shape == Shape::InnerLeft) return 9702;
+ else if (Shape == Shape::InnerRight) return 9704;
+ else if (Shape == Shape::OuterLeft) return 9706;
+ else return 9708;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9710;
+ else if (Shape == Shape::InnerLeft) return 9712;
+ else if (Shape == Shape::InnerRight) return 9714;
+ else if (Shape == Shape::OuterLeft) return 9716;
+ else return 9718;
+ else
+ if (Shape == Shape::Straight) return 9720;
+ else if (Shape == Shape::InnerLeft) return 9722;
+ else if (Shape == Shape::InnerRight) return 9724;
+ else if (Shape == Shape::OuterLeft) return 9726;
+ else return 9728;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9730;
+ else if (Shape == Shape::InnerLeft) return 9732;
+ else if (Shape == Shape::InnerRight) return 9734;
+ else if (Shape == Shape::OuterLeft) return 9736;
+ else return 9738;
+ else
+ if (Shape == Shape::Straight) return 9740;
+ else if (Shape == Shape::InnerLeft) return 9742;
+ else if (Shape == Shape::InnerRight) return 9744;
+ else if (Shape == Shape::OuterLeft) return 9746;
+ else return 9748;
+ }
+ BlockState PolishedGraniteStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace Poppy
+ {
+ constexpr BlockState Poppy()
+ {
+ return 1413;
+ }
+ }
+ namespace Potatoes
+ {
+ constexpr BlockState Potatoes(const unsigned char Age)
+ {
+ if (Age == 0) return 6338;
+ else if (Age == 1) return 6339;
+ else if (Age == 2) return 6340;
+ else if (Age == 3) return 6341;
+ else if (Age == 4) return 6342;
+ else if (Age == 5) return 6343;
+ else if (Age == 6) return 6344;
+ else return 6345;
+ }
+ BlockState Potatoes();
+ unsigned char Age(BlockState Block);
+ }
+ namespace PottedAcaciaSapling
+ {
+ constexpr BlockState PottedAcaciaSapling()
+ {
+ return 6310;
+ }
+ }
+ namespace PottedAllium
+ {
+ constexpr BlockState PottedAllium()
+ {
+ return 6316;
+ }
+ }
+ namespace PottedAzureBluet
+ {
+ constexpr BlockState PottedAzureBluet()
+ {
+ return 6317;
+ }
+ }
+ namespace PottedBamboo
+ {
+ constexpr BlockState PottedBamboo()
+ {
+ return 9664;
+ }
+ }
+ namespace PottedBirchSapling
+ {
+ constexpr BlockState PottedBirchSapling()
+ {
+ return 6308;
+ }
+ }
+ namespace PottedBlueOrchid
+ {
+ constexpr BlockState PottedBlueOrchid()
+ {
+ return 6315;
+ }
+ }
+ namespace PottedBrownMushroom
+ {
+ constexpr BlockState PottedBrownMushroom()
+ {
+ return 6327;
+ }
+ }
+ namespace PottedCactus
+ {
+ constexpr BlockState PottedCactus()
+ {
+ return 6329;
+ }
+ }
+ namespace PottedCornflower
+ {
+ constexpr BlockState PottedCornflower()
+ {
+ return 6323;
+ }
+ }
+ namespace PottedCrimsonFungus
+ {
+ constexpr BlockState PottedCrimsonFungus()
+ {
+ return 15834;
+ }
+ }
+ namespace PottedCrimsonRoots
+ {
+ constexpr BlockState PottedCrimsonRoots()
+ {
+ return 15836;
+ }
+ }
+ namespace PottedDandelion
+ {
+ constexpr BlockState PottedDandelion()
+ {
+ return 6313;
+ }
+ }
+ namespace PottedDarkOakSapling
+ {
+ constexpr BlockState PottedDarkOakSapling()
+ {
+ return 6311;
+ }
+ }
+ namespace PottedDeadBush
+ {
+ constexpr BlockState PottedDeadBush()
+ {
+ return 6328;
+ }
+ }
+ namespace PottedFern
+ {
+ constexpr BlockState PottedFern()
+ {
+ return 6312;
+ }
+ }
+ namespace PottedJungleSapling
+ {
+ constexpr BlockState PottedJungleSapling()
+ {
+ return 6309;
+ }
+ }
+ namespace PottedLilyOfTheValley
+ {
+ constexpr BlockState PottedLilyOfTheValley()
+ {
+ return 6324;
+ }
+ }
+ namespace PottedOakSapling
+ {
+ constexpr BlockState PottedOakSapling()
+ {
+ return 6306;
+ }
+ }
+ namespace PottedOrangeTulip
+ {
+ constexpr BlockState PottedOrangeTulip()
+ {
+ return 6319;
+ }
+ }
+ namespace PottedOxeyeDaisy
+ {
+ constexpr BlockState PottedOxeyeDaisy()
+ {
+ return 6322;
+ }
+ }
+ namespace PottedPinkTulip
+ {
+ constexpr BlockState PottedPinkTulip()
+ {
+ return 6321;
+ }
+ }
+ namespace PottedPoppy
+ {
+ constexpr BlockState PottedPoppy()
+ {
+ return 6314;
+ }
+ }
+ namespace PottedRedMushroom
+ {
+ constexpr BlockState PottedRedMushroom()
+ {
+ return 6326;
+ }
+ }
+ namespace PottedRedTulip
+ {
+ constexpr BlockState PottedRedTulip()
+ {
+ return 6318;
+ }
+ }
+ namespace PottedSpruceSapling
+ {
+ constexpr BlockState PottedSpruceSapling()
+ {
+ return 6307;
+ }
+ }
+ namespace PottedWarpedFungus
+ {
+ constexpr BlockState PottedWarpedFungus()
+ {
+ return 15835;
+ }
+ }
+ namespace PottedWarpedRoots
+ {
+ constexpr BlockState PottedWarpedRoots()
+ {
+ return 15837;
+ }
+ }
+ namespace PottedWhiteTulip
+ {
+ constexpr BlockState PottedWhiteTulip()
+ {
+ return 6320;
+ }
+ }
+ namespace PottedWitherRose
+ {
+ constexpr BlockState PottedWitherRose()
+ {
+ return 6325;
+ }
+ }
+ namespace PoweredRail
+ {
+ enum class Shape
+ {
+ NorthSouth,
+ EastWest,
+ AscendingEast,
+ AscendingWest,
+ AscendingNorth,
+ AscendingSouth
+ };
+ constexpr BlockState PoweredRail(const bool Powered, const enum Shape Shape)
+ {
+ if (Powered)
+ if (Shape == Shape::NorthSouth) return 1305;
+ else if (Shape == Shape::EastWest) return 1306;
+ else if (Shape == Shape::AscendingEast) return 1307;
+ else if (Shape == Shape::AscendingWest) return 1308;
+ else if (Shape == Shape::AscendingNorth) return 1309;
+ else return 1310;
+ else
+ if (Shape == Shape::NorthSouth) return 1311;
+ else if (Shape == Shape::EastWest) return 1312;
+ else if (Shape == Shape::AscendingEast) return 1313;
+ else if (Shape == Shape::AscendingWest) return 1314;
+ else if (Shape == Shape::AscendingNorth) return 1315;
+ else return 1316;
+ }
+ BlockState PoweredRail();
+ bool Powered(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace Prismarine
+ {
+ constexpr BlockState Prismarine()
+ {
+ return 7601;
+ }
+ }
+ namespace PrismarineBrickSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState PrismarineBrickSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 7851;
+ else if (Type == Type::Bottom) return 7853;
+ else return 7855;
+ }
+ BlockState PrismarineBrickSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace PrismarineBrickStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState PrismarineBrickStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7685;
+ else if (Shape == Shape::InnerLeft) return 7687;
+ else if (Shape == Shape::InnerRight) return 7689;
+ else if (Shape == Shape::OuterLeft) return 7691;
+ else return 7693;
+ else
+ if (Shape == Shape::Straight) return 7695;
+ else if (Shape == Shape::InnerLeft) return 7697;
+ else if (Shape == Shape::InnerRight) return 7699;
+ else if (Shape == Shape::OuterLeft) return 7701;
+ else return 7703;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7705;
+ else if (Shape == Shape::InnerLeft) return 7707;
+ else if (Shape == Shape::InnerRight) return 7709;
+ else if (Shape == Shape::OuterLeft) return 7711;
+ else return 7713;
+ else
+ if (Shape == Shape::Straight) return 7715;
+ else if (Shape == Shape::InnerLeft) return 7717;
+ else if (Shape == Shape::InnerRight) return 7719;
+ else if (Shape == Shape::OuterLeft) return 7721;
+ else return 7723;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7725;
+ else if (Shape == Shape::InnerLeft) return 7727;
+ else if (Shape == Shape::InnerRight) return 7729;
+ else if (Shape == Shape::OuterLeft) return 7731;
+ else return 7733;
+ else
+ if (Shape == Shape::Straight) return 7735;
+ else if (Shape == Shape::InnerLeft) return 7737;
+ else if (Shape == Shape::InnerRight) return 7739;
+ else if (Shape == Shape::OuterLeft) return 7741;
+ else return 7743;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7745;
+ else if (Shape == Shape::InnerLeft) return 7747;
+ else if (Shape == Shape::InnerRight) return 7749;
+ else if (Shape == Shape::OuterLeft) return 7751;
+ else return 7753;
+ else
+ if (Shape == Shape::Straight) return 7755;
+ else if (Shape == Shape::InnerLeft) return 7757;
+ else if (Shape == Shape::InnerRight) return 7759;
+ else if (Shape == Shape::OuterLeft) return 7761;
+ else return 7763;
+ }
+ BlockState PrismarineBrickStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace PrismarineBricks
+ {
+ constexpr BlockState PrismarineBricks()
+ {
+ return 7602;
+ }
+ }
+ namespace PrismarineSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState PrismarineSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 7845;
+ else if (Type == Type::Bottom) return 7847;
+ else return 7849;
+ }
+ BlockState PrismarineSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace PrismarineStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState PrismarineStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7605;
+ else if (Shape == Shape::InnerLeft) return 7607;
+ else if (Shape == Shape::InnerRight) return 7609;
+ else if (Shape == Shape::OuterLeft) return 7611;
+ else return 7613;
+ else
+ if (Shape == Shape::Straight) return 7615;
+ else if (Shape == Shape::InnerLeft) return 7617;
+ else if (Shape == Shape::InnerRight) return 7619;
+ else if (Shape == Shape::OuterLeft) return 7621;
+ else return 7623;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7625;
+ else if (Shape == Shape::InnerLeft) return 7627;
+ else if (Shape == Shape::InnerRight) return 7629;
+ else if (Shape == Shape::OuterLeft) return 7631;
+ else return 7633;
+ else
+ if (Shape == Shape::Straight) return 7635;
+ else if (Shape == Shape::InnerLeft) return 7637;
+ else if (Shape == Shape::InnerRight) return 7639;
+ else if (Shape == Shape::OuterLeft) return 7641;
+ else return 7643;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7645;
+ else if (Shape == Shape::InnerLeft) return 7647;
+ else if (Shape == Shape::InnerRight) return 7649;
+ else if (Shape == Shape::OuterLeft) return 7651;
+ else return 7653;
+ else
+ if (Shape == Shape::Straight) return 7655;
+ else if (Shape == Shape::InnerLeft) return 7657;
+ else if (Shape == Shape::InnerRight) return 7659;
+ else if (Shape == Shape::OuterLeft) return 7661;
+ else return 7663;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 7665;
+ else if (Shape == Shape::InnerLeft) return 7667;
+ else if (Shape == Shape::InnerRight) return 7669;
+ else if (Shape == Shape::OuterLeft) return 7671;
+ else return 7673;
+ else
+ if (Shape == Shape::Straight) return 7675;
+ else if (Shape == Shape::InnerLeft) return 7677;
+ else if (Shape == Shape::InnerRight) return 7679;
+ else if (Shape == Shape::OuterLeft) return 7681;
+ else return 7683;
+ }
+ BlockState PrismarineStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace PrismarineWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState PrismarineWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11194;
+ else if (West == West::Low) return 11195;
+ else return 11196;
+ else
+ if (West == West::None) return 11200;
+ else if (West == West::Low) return 11201;
+ else return 11202;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11206;
+ else if (West == West::Low) return 11207;
+ else return 11208;
+ else
+ if (West == West::None) return 11212;
+ else if (West == West::Low) return 11213;
+ else return 11214;
+ else
+ if (Up)
+ if (West == West::None) return 11218;
+ else if (West == West::Low) return 11219;
+ else return 11220;
+ else
+ if (West == West::None) return 11224;
+ else if (West == West::Low) return 11225;
+ else return 11226;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11230;
+ else if (West == West::Low) return 11231;
+ else return 11232;
+ else
+ if (West == West::None) return 11236;
+ else if (West == West::Low) return 11237;
+ else return 11238;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11242;
+ else if (West == West::Low) return 11243;
+ else return 11244;
+ else
+ if (West == West::None) return 11248;
+ else if (West == West::Low) return 11249;
+ else return 11250;
+ else
+ if (Up)
+ if (West == West::None) return 11254;
+ else if (West == West::Low) return 11255;
+ else return 11256;
+ else
+ if (West == West::None) return 11260;
+ else if (West == West::Low) return 11261;
+ else return 11262;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11266;
+ else if (West == West::Low) return 11267;
+ else return 11268;
+ else
+ if (West == West::None) return 11272;
+ else if (West == West::Low) return 11273;
+ else return 11274;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11278;
+ else if (West == West::Low) return 11279;
+ else return 11280;
+ else
+ if (West == West::None) return 11284;
+ else if (West == West::Low) return 11285;
+ else return 11286;
+ else
+ if (Up)
+ if (West == West::None) return 11290;
+ else if (West == West::Low) return 11291;
+ else return 11292;
+ else
+ if (West == West::None) return 11296;
+ else if (West == West::Low) return 11297;
+ else return 11298;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11302;
+ else if (West == West::Low) return 11303;
+ else return 11304;
+ else
+ if (West == West::None) return 11308;
+ else if (West == West::Low) return 11309;
+ else return 11310;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11314;
+ else if (West == West::Low) return 11315;
+ else return 11316;
+ else
+ if (West == West::None) return 11320;
+ else if (West == West::Low) return 11321;
+ else return 11322;
+ else
+ if (Up)
+ if (West == West::None) return 11326;
+ else if (West == West::Low) return 11327;
+ else return 11328;
+ else
+ if (West == West::None) return 11332;
+ else if (West == West::Low) return 11333;
+ else return 11334;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11338;
+ else if (West == West::Low) return 11339;
+ else return 11340;
+ else
+ if (West == West::None) return 11344;
+ else if (West == West::Low) return 11345;
+ else return 11346;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11350;
+ else if (West == West::Low) return 11351;
+ else return 11352;
+ else
+ if (West == West::None) return 11356;
+ else if (West == West::Low) return 11357;
+ else return 11358;
+ else
+ if (Up)
+ if (West == West::None) return 11362;
+ else if (West == West::Low) return 11363;
+ else return 11364;
+ else
+ if (West == West::None) return 11368;
+ else if (West == West::Low) return 11369;
+ else return 11370;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11374;
+ else if (West == West::Low) return 11375;
+ else return 11376;
+ else
+ if (West == West::None) return 11380;
+ else if (West == West::Low) return 11381;
+ else return 11382;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11386;
+ else if (West == West::Low) return 11387;
+ else return 11388;
+ else
+ if (West == West::None) return 11392;
+ else if (West == West::Low) return 11393;
+ else return 11394;
+ else
+ if (Up)
+ if (West == West::None) return 11398;
+ else if (West == West::Low) return 11399;
+ else return 11400;
+ else
+ if (West == West::None) return 11404;
+ else if (West == West::Low) return 11405;
+ else return 11406;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11410;
+ else if (West == West::Low) return 11411;
+ else return 11412;
+ else
+ if (West == West::None) return 11416;
+ else if (West == West::Low) return 11417;
+ else return 11418;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11422;
+ else if (West == West::Low) return 11423;
+ else return 11424;
+ else
+ if (West == West::None) return 11428;
+ else if (West == West::Low) return 11429;
+ else return 11430;
+ else
+ if (Up)
+ if (West == West::None) return 11434;
+ else if (West == West::Low) return 11435;
+ else return 11436;
+ else
+ if (West == West::None) return 11440;
+ else if (West == West::Low) return 11441;
+ else return 11442;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11446;
+ else if (West == West::Low) return 11447;
+ else return 11448;
+ else
+ if (West == West::None) return 11452;
+ else if (West == West::Low) return 11453;
+ else return 11454;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11458;
+ else if (West == West::Low) return 11459;
+ else return 11460;
+ else
+ if (West == West::None) return 11464;
+ else if (West == West::Low) return 11465;
+ else return 11466;
+ else
+ if (Up)
+ if (West == West::None) return 11470;
+ else if (West == West::Low) return 11471;
+ else return 11472;
+ else
+ if (West == West::None) return 11476;
+ else if (West == West::Low) return 11477;
+ else return 11478;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11482;
+ else if (West == West::Low) return 11483;
+ else return 11484;
+ else
+ if (West == West::None) return 11488;
+ else if (West == West::Low) return 11489;
+ else return 11490;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11494;
+ else if (West == West::Low) return 11495;
+ else return 11496;
+ else
+ if (West == West::None) return 11500;
+ else if (West == West::Low) return 11501;
+ else return 11502;
+ else
+ if (Up)
+ if (West == West::None) return 11506;
+ else if (West == West::Low) return 11507;
+ else return 11508;
+ else
+ if (West == West::None) return 11512;
+ else if (West == West::Low) return 11513;
+ else return 11514;
+ }
+ BlockState PrismarineWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace Pumpkin
+ {
+ constexpr BlockState Pumpkin()
+ {
+ return 3998;
+ }
+ }
+ namespace PumpkinStem
+ {
+ constexpr BlockState PumpkinStem(const unsigned char Age)
+ {
+ if (Age == 0) return 4772;
+ else if (Age == 1) return 4773;
+ else if (Age == 2) return 4774;
+ else if (Age == 3) return 4775;
+ else if (Age == 4) return 4776;
+ else if (Age == 5) return 4777;
+ else if (Age == 6) return 4778;
+ else return 4779;
+ }
+ BlockState PumpkinStem();
+ unsigned char Age(BlockState Block);
+ }
+ namespace PurpleBanner
+ {
+ constexpr BlockState PurpleBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 8057;
+ else if (Rotation == 1) return 8058;
+ else if (Rotation == 2) return 8059;
+ else if (Rotation == 3) return 8060;
+ else if (Rotation == 4) return 8061;
+ else if (Rotation == 5) return 8062;
+ else if (Rotation == 6) return 8063;
+ else if (Rotation == 7) return 8064;
+ else if (Rotation == 8) return 8065;
+ else if (Rotation == 9) return 8066;
+ else if (Rotation == 10) return 8067;
+ else if (Rotation == 11) return 8068;
+ else if (Rotation == 12) return 8069;
+ else if (Rotation == 13) return 8070;
+ else if (Rotation == 14) return 8071;
+ else return 8072;
+ }
+ BlockState PurpleBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace PurpleBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState PurpleBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1209;
+ else return 1210;
+ else
+ if (Part == Part::Head) return 1211;
+ else return 1212;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1213;
+ else return 1214;
+ else
+ if (Part == Part::Head) return 1215;
+ else return 1216;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1217;
+ else return 1218;
+ else
+ if (Part == Part::Head) return 1219;
+ else return 1220;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1221;
+ else return 1222;
+ else
+ if (Part == Part::Head) return 1223;
+ else return 1224;
+ }
+ BlockState PurpleBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace PurpleCarpet
+ {
+ constexpr BlockState PurpleCarpet()
+ {
+ return 7876;
+ }
+ }
+ namespace PurpleConcrete
+ {
+ constexpr BlockState PurpleConcrete()
+ {
+ return 9448;
+ }
+ }
+ namespace PurpleConcretePowder
+ {
+ constexpr BlockState PurpleConcretePowder()
+ {
+ return 9464;
+ }
+ }
+ namespace PurpleGlazedTerracotta
+ {
+ constexpr BlockState PurpleGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9414;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9415;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9416;
+ else return 9417;
+ }
+ BlockState PurpleGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace PurpleShulkerBox
+ {
+ constexpr BlockState PurpleShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9338;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9339;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9340;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9341;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9342;
+ else return 9343;
+ }
+ BlockState PurpleShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace PurpleStainedGlass
+ {
+ constexpr BlockState PurpleStainedGlass()
+ {
+ return 4105;
+ }
+ }
+ namespace PurpleStainedGlassPane
+ {
+ constexpr BlockState PurpleStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 7185;
+ else return 7186;
+ else
+ if (West) return 7189;
+ else return 7190;
+ else
+ if (South)
+ if (West) return 7193;
+ else return 7194;
+ else
+ if (West) return 7197;
+ else return 7198;
+ else
+ if (North)
+ if (South)
+ if (West) return 7201;
+ else return 7202;
+ else
+ if (West) return 7205;
+ else return 7206;
+ else
+ if (South)
+ if (West) return 7209;
+ else return 7210;
+ else
+ if (West) return 7213;
+ else return 7214;
+ }
+ BlockState PurpleStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace PurpleTerracotta
+ {
+ constexpr BlockState PurpleTerracotta()
+ {
+ return 6857;
+ }
+ }
+ namespace PurpleWallBanner
+ {
+ constexpr BlockState PurpleWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8193;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8194;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8195;
+ else return 8196;
+ }
+ BlockState PurpleWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace PurpleWool
+ {
+ constexpr BlockState PurpleWool()
+ {
+ return 1394;
+ }
+ }
+ namespace PurpurBlock
+ {
+ constexpr BlockState PurpurBlock()
+ {
+ return 9134;
+ }
+ }
+ namespace PurpurPillar
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState PurpurPillar(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 9135;
+ else if (Axis == Axis::Y) return 9136;
+ else return 9137;
+ }
+ BlockState PurpurPillar();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace PurpurSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState PurpurSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8409;
+ else if (Type == Type::Bottom) return 8411;
+ else return 8413;
+ }
+ BlockState PurpurSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace PurpurStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState PurpurStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9139;
+ else if (Shape == Shape::InnerLeft) return 9141;
+ else if (Shape == Shape::InnerRight) return 9143;
+ else if (Shape == Shape::OuterLeft) return 9145;
+ else return 9147;
+ else
+ if (Shape == Shape::Straight) return 9149;
+ else if (Shape == Shape::InnerLeft) return 9151;
+ else if (Shape == Shape::InnerRight) return 9153;
+ else if (Shape == Shape::OuterLeft) return 9155;
+ else return 9157;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9159;
+ else if (Shape == Shape::InnerLeft) return 9161;
+ else if (Shape == Shape::InnerRight) return 9163;
+ else if (Shape == Shape::OuterLeft) return 9165;
+ else return 9167;
+ else
+ if (Shape == Shape::Straight) return 9169;
+ else if (Shape == Shape::InnerLeft) return 9171;
+ else if (Shape == Shape::InnerRight) return 9173;
+ else if (Shape == Shape::OuterLeft) return 9175;
+ else return 9177;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9179;
+ else if (Shape == Shape::InnerLeft) return 9181;
+ else if (Shape == Shape::InnerRight) return 9183;
+ else if (Shape == Shape::OuterLeft) return 9185;
+ else return 9187;
+ else
+ if (Shape == Shape::Straight) return 9189;
+ else if (Shape == Shape::InnerLeft) return 9191;
+ else if (Shape == Shape::InnerRight) return 9193;
+ else if (Shape == Shape::OuterLeft) return 9195;
+ else return 9197;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9199;
+ else if (Shape == Shape::InnerLeft) return 9201;
+ else if (Shape == Shape::InnerRight) return 9203;
+ else if (Shape == Shape::OuterLeft) return 9205;
+ else return 9207;
+ else
+ if (Shape == Shape::Straight) return 9209;
+ else if (Shape == Shape::InnerLeft) return 9211;
+ else if (Shape == Shape::InnerRight) return 9213;
+ else if (Shape == Shape::OuterLeft) return 9215;
+ else return 9217;
+ }
+ BlockState PurpurStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace QuartzBlock
+ {
+ constexpr BlockState QuartzBlock()
+ {
+ return 6738;
+ }
+ }
+ namespace QuartzBricks
+ {
+ constexpr BlockState QuartzBricks()
+ {
+ return 17103;
+ }
+ }
+ namespace QuartzPillar
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState QuartzPillar(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 6740;
+ else if (Axis == Axis::Y) return 6741;
+ else return 6742;
+ }
+ BlockState QuartzPillar();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace QuartzSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState QuartzSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8391;
+ else if (Type == Type::Bottom) return 8393;
+ else return 8395;
+ }
+ BlockState QuartzSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace QuartzStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState QuartzStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 6744;
+ else if (Shape == Shape::InnerLeft) return 6746;
+ else if (Shape == Shape::InnerRight) return 6748;
+ else if (Shape == Shape::OuterLeft) return 6750;
+ else return 6752;
+ else
+ if (Shape == Shape::Straight) return 6754;
+ else if (Shape == Shape::InnerLeft) return 6756;
+ else if (Shape == Shape::InnerRight) return 6758;
+ else if (Shape == Shape::OuterLeft) return 6760;
+ else return 6762;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 6764;
+ else if (Shape == Shape::InnerLeft) return 6766;
+ else if (Shape == Shape::InnerRight) return 6768;
+ else if (Shape == Shape::OuterLeft) return 6770;
+ else return 6772;
+ else
+ if (Shape == Shape::Straight) return 6774;
+ else if (Shape == Shape::InnerLeft) return 6776;
+ else if (Shape == Shape::InnerRight) return 6778;
+ else if (Shape == Shape::OuterLeft) return 6780;
+ else return 6782;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 6784;
+ else if (Shape == Shape::InnerLeft) return 6786;
+ else if (Shape == Shape::InnerRight) return 6788;
+ else if (Shape == Shape::OuterLeft) return 6790;
+ else return 6792;
+ else
+ if (Shape == Shape::Straight) return 6794;
+ else if (Shape == Shape::InnerLeft) return 6796;
+ else if (Shape == Shape::InnerRight) return 6798;
+ else if (Shape == Shape::OuterLeft) return 6800;
+ else return 6802;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 6804;
+ else if (Shape == Shape::InnerLeft) return 6806;
+ else if (Shape == Shape::InnerRight) return 6808;
+ else if (Shape == Shape::OuterLeft) return 6810;
+ else return 6812;
+ else
+ if (Shape == Shape::Straight) return 6814;
+ else if (Shape == Shape::InnerLeft) return 6816;
+ else if (Shape == Shape::InnerRight) return 6818;
+ else if (Shape == Shape::OuterLeft) return 6820;
+ else return 6822;
+ }
+ BlockState QuartzStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace Rail
+ {
+ enum class Shape
+ {
+ NorthSouth,
+ EastWest,
+ AscendingEast,
+ AscendingWest,
+ AscendingNorth,
+ AscendingSouth,
+ SouthEast,
+ SouthWest,
+ NorthWest,
+ NorthEast
+ };
+ constexpr BlockState Rail(const enum Shape Shape)
+ {
+ if (Shape == Shape::NorthSouth) return 3645;
+ else if (Shape == Shape::EastWest) return 3646;
+ else if (Shape == Shape::AscendingEast) return 3647;
+ else if (Shape == Shape::AscendingWest) return 3648;
+ else if (Shape == Shape::AscendingNorth) return 3649;
+ else if (Shape == Shape::AscendingSouth) return 3650;
+ else if (Shape == Shape::SouthEast) return 3651;
+ else if (Shape == Shape::SouthWest) return 3652;
+ else if (Shape == Shape::NorthWest) return 3653;
+ else return 3654;
+ }
+ BlockState Rail();
+ enum Shape Shape(BlockState Block);
+ }
+ namespace RedBanner
+ {
+ constexpr BlockState RedBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 8121;
+ else if (Rotation == 1) return 8122;
+ else if (Rotation == 2) return 8123;
+ else if (Rotation == 3) return 8124;
+ else if (Rotation == 4) return 8125;
+ else if (Rotation == 5) return 8126;
+ else if (Rotation == 6) return 8127;
+ else if (Rotation == 7) return 8128;
+ else if (Rotation == 8) return 8129;
+ else if (Rotation == 9) return 8130;
+ else if (Rotation == 10) return 8131;
+ else if (Rotation == 11) return 8132;
+ else if (Rotation == 12) return 8133;
+ else if (Rotation == 13) return 8134;
+ else if (Rotation == 14) return 8135;
+ else return 8136;
+ }
+ BlockState RedBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace RedBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState RedBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1273;
+ else return 1274;
+ else
+ if (Part == Part::Head) return 1275;
+ else return 1276;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1277;
+ else return 1278;
+ else
+ if (Part == Part::Head) return 1279;
+ else return 1280;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1281;
+ else return 1282;
+ else
+ if (Part == Part::Head) return 1283;
+ else return 1284;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1285;
+ else return 1286;
+ else
+ if (Part == Part::Head) return 1287;
+ else return 1288;
+ }
+ BlockState RedBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace RedCarpet
+ {
+ constexpr BlockState RedCarpet()
+ {
+ return 7880;
+ }
+ }
+ namespace RedConcrete
+ {
+ constexpr BlockState RedConcrete()
+ {
+ return 9452;
+ }
+ }
+ namespace RedConcretePowder
+ {
+ constexpr BlockState RedConcretePowder()
+ {
+ return 9468;
+ }
+ }
+ namespace RedGlazedTerracotta
+ {
+ constexpr BlockState RedGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9430;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9431;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9432;
+ else return 9433;
+ }
+ BlockState RedGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace RedMushroom
+ {
+ constexpr BlockState RedMushroom()
+ {
+ return 1426;
+ }
+ }
+ namespace RedMushroomBlock
+ {
+ constexpr BlockState RedMushroomBlock(const bool Down, const bool East, const bool North, const bool South, const bool Up, const bool West)
+ {
+ if (Down)
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4569;
+ else return 4570;
+ else
+ if (West) return 4571;
+ else return 4572;
+ else
+ if (Up)
+ if (West) return 4573;
+ else return 4574;
+ else
+ if (West) return 4575;
+ else return 4576;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4577;
+ else return 4578;
+ else
+ if (West) return 4579;
+ else return 4580;
+ else
+ if (Up)
+ if (West) return 4581;
+ else return 4582;
+ else
+ if (West) return 4583;
+ else return 4584;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4585;
+ else return 4586;
+ else
+ if (West) return 4587;
+ else return 4588;
+ else
+ if (Up)
+ if (West) return 4589;
+ else return 4590;
+ else
+ if (West) return 4591;
+ else return 4592;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4593;
+ else return 4594;
+ else
+ if (West) return 4595;
+ else return 4596;
+ else
+ if (Up)
+ if (West) return 4597;
+ else return 4598;
+ else
+ if (West) return 4599;
+ else return 4600;
+ else
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4601;
+ else return 4602;
+ else
+ if (West) return 4603;
+ else return 4604;
+ else
+ if (Up)
+ if (West) return 4605;
+ else return 4606;
+ else
+ if (West) return 4607;
+ else return 4608;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4609;
+ else return 4610;
+ else
+ if (West) return 4611;
+ else return 4612;
+ else
+ if (Up)
+ if (West) return 4613;
+ else return 4614;
+ else
+ if (West) return 4615;
+ else return 4616;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4617;
+ else return 4618;
+ else
+ if (West) return 4619;
+ else return 4620;
+ else
+ if (Up)
+ if (West) return 4621;
+ else return 4622;
+ else
+ if (West) return 4623;
+ else return 4624;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4625;
+ else return 4626;
+ else
+ if (West) return 4627;
+ else return 4628;
+ else
+ if (Up)
+ if (West) return 4629;
+ else return 4630;
+ else
+ if (West) return 4631;
+ else return 4632;
+ }
+ BlockState RedMushroomBlock();
+ bool Down(BlockState Block);
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool Up(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace RedNetherBrickSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState RedNetherBrickSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 10850;
+ else if (Type == Type::Bottom) return 10852;
+ else return 10854;
+ }
+ BlockState RedNetherBrickSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace RedNetherBrickStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState RedNetherBrickStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10550;
+ else if (Shape == Shape::InnerLeft) return 10552;
+ else if (Shape == Shape::InnerRight) return 10554;
+ else if (Shape == Shape::OuterLeft) return 10556;
+ else return 10558;
+ else
+ if (Shape == Shape::Straight) return 10560;
+ else if (Shape == Shape::InnerLeft) return 10562;
+ else if (Shape == Shape::InnerRight) return 10564;
+ else if (Shape == Shape::OuterLeft) return 10566;
+ else return 10568;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10570;
+ else if (Shape == Shape::InnerLeft) return 10572;
+ else if (Shape == Shape::InnerRight) return 10574;
+ else if (Shape == Shape::OuterLeft) return 10576;
+ else return 10578;
+ else
+ if (Shape == Shape::Straight) return 10580;
+ else if (Shape == Shape::InnerLeft) return 10582;
+ else if (Shape == Shape::InnerRight) return 10584;
+ else if (Shape == Shape::OuterLeft) return 10586;
+ else return 10588;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10590;
+ else if (Shape == Shape::InnerLeft) return 10592;
+ else if (Shape == Shape::InnerRight) return 10594;
+ else if (Shape == Shape::OuterLeft) return 10596;
+ else return 10598;
+ else
+ if (Shape == Shape::Straight) return 10600;
+ else if (Shape == Shape::InnerLeft) return 10602;
+ else if (Shape == Shape::InnerRight) return 10604;
+ else if (Shape == Shape::OuterLeft) return 10606;
+ else return 10608;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10610;
+ else if (Shape == Shape::InnerLeft) return 10612;
+ else if (Shape == Shape::InnerRight) return 10614;
+ else if (Shape == Shape::OuterLeft) return 10616;
+ else return 10618;
+ else
+ if (Shape == Shape::Straight) return 10620;
+ else if (Shape == Shape::InnerLeft) return 10622;
+ else if (Shape == Shape::InnerRight) return 10624;
+ else if (Shape == Shape::OuterLeft) return 10626;
+ else return 10628;
+ }
+ BlockState RedNetherBrickStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace RedNetherBrickWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState RedNetherBrickWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13462;
+ else if (West == West::Low) return 13463;
+ else return 13464;
+ else
+ if (West == West::None) return 13468;
+ else if (West == West::Low) return 13469;
+ else return 13470;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13474;
+ else if (West == West::Low) return 13475;
+ else return 13476;
+ else
+ if (West == West::None) return 13480;
+ else if (West == West::Low) return 13481;
+ else return 13482;
+ else
+ if (Up)
+ if (West == West::None) return 13486;
+ else if (West == West::Low) return 13487;
+ else return 13488;
+ else
+ if (West == West::None) return 13492;
+ else if (West == West::Low) return 13493;
+ else return 13494;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13498;
+ else if (West == West::Low) return 13499;
+ else return 13500;
+ else
+ if (West == West::None) return 13504;
+ else if (West == West::Low) return 13505;
+ else return 13506;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13510;
+ else if (West == West::Low) return 13511;
+ else return 13512;
+ else
+ if (West == West::None) return 13516;
+ else if (West == West::Low) return 13517;
+ else return 13518;
+ else
+ if (Up)
+ if (West == West::None) return 13522;
+ else if (West == West::Low) return 13523;
+ else return 13524;
+ else
+ if (West == West::None) return 13528;
+ else if (West == West::Low) return 13529;
+ else return 13530;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13534;
+ else if (West == West::Low) return 13535;
+ else return 13536;
+ else
+ if (West == West::None) return 13540;
+ else if (West == West::Low) return 13541;
+ else return 13542;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13546;
+ else if (West == West::Low) return 13547;
+ else return 13548;
+ else
+ if (West == West::None) return 13552;
+ else if (West == West::Low) return 13553;
+ else return 13554;
+ else
+ if (Up)
+ if (West == West::None) return 13558;
+ else if (West == West::Low) return 13559;
+ else return 13560;
+ else
+ if (West == West::None) return 13564;
+ else if (West == West::Low) return 13565;
+ else return 13566;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13570;
+ else if (West == West::Low) return 13571;
+ else return 13572;
+ else
+ if (West == West::None) return 13576;
+ else if (West == West::Low) return 13577;
+ else return 13578;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13582;
+ else if (West == West::Low) return 13583;
+ else return 13584;
+ else
+ if (West == West::None) return 13588;
+ else if (West == West::Low) return 13589;
+ else return 13590;
+ else
+ if (Up)
+ if (West == West::None) return 13594;
+ else if (West == West::Low) return 13595;
+ else return 13596;
+ else
+ if (West == West::None) return 13600;
+ else if (West == West::Low) return 13601;
+ else return 13602;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13606;
+ else if (West == West::Low) return 13607;
+ else return 13608;
+ else
+ if (West == West::None) return 13612;
+ else if (West == West::Low) return 13613;
+ else return 13614;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13618;
+ else if (West == West::Low) return 13619;
+ else return 13620;
+ else
+ if (West == West::None) return 13624;
+ else if (West == West::Low) return 13625;
+ else return 13626;
+ else
+ if (Up)
+ if (West == West::None) return 13630;
+ else if (West == West::Low) return 13631;
+ else return 13632;
+ else
+ if (West == West::None) return 13636;
+ else if (West == West::Low) return 13637;
+ else return 13638;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13642;
+ else if (West == West::Low) return 13643;
+ else return 13644;
+ else
+ if (West == West::None) return 13648;
+ else if (West == West::Low) return 13649;
+ else return 13650;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13654;
+ else if (West == West::Low) return 13655;
+ else return 13656;
+ else
+ if (West == West::None) return 13660;
+ else if (West == West::Low) return 13661;
+ else return 13662;
+ else
+ if (Up)
+ if (West == West::None) return 13666;
+ else if (West == West::Low) return 13667;
+ else return 13668;
+ else
+ if (West == West::None) return 13672;
+ else if (West == West::Low) return 13673;
+ else return 13674;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13678;
+ else if (West == West::Low) return 13679;
+ else return 13680;
+ else
+ if (West == West::None) return 13684;
+ else if (West == West::Low) return 13685;
+ else return 13686;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13690;
+ else if (West == West::Low) return 13691;
+ else return 13692;
+ else
+ if (West == West::None) return 13696;
+ else if (West == West::Low) return 13697;
+ else return 13698;
+ else
+ if (Up)
+ if (West == West::None) return 13702;
+ else if (West == West::Low) return 13703;
+ else return 13704;
+ else
+ if (West == West::None) return 13708;
+ else if (West == West::Low) return 13709;
+ else return 13710;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13714;
+ else if (West == West::Low) return 13715;
+ else return 13716;
+ else
+ if (West == West::None) return 13720;
+ else if (West == West::Low) return 13721;
+ else return 13722;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13726;
+ else if (West == West::Low) return 13727;
+ else return 13728;
+ else
+ if (West == West::None) return 13732;
+ else if (West == West::Low) return 13733;
+ else return 13734;
+ else
+ if (Up)
+ if (West == West::None) return 13738;
+ else if (West == West::Low) return 13739;
+ else return 13740;
+ else
+ if (West == West::None) return 13744;
+ else if (West == West::Low) return 13745;
+ else return 13746;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13750;
+ else if (West == West::Low) return 13751;
+ else return 13752;
+ else
+ if (West == West::None) return 13756;
+ else if (West == West::Low) return 13757;
+ else return 13758;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13762;
+ else if (West == West::Low) return 13763;
+ else return 13764;
+ else
+ if (West == West::None) return 13768;
+ else if (West == West::Low) return 13769;
+ else return 13770;
+ else
+ if (Up)
+ if (West == West::None) return 13774;
+ else if (West == West::Low) return 13775;
+ else return 13776;
+ else
+ if (West == West::None) return 13780;
+ else if (West == West::Low) return 13781;
+ else return 13782;
+ }
+ BlockState RedNetherBrickWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace RedNetherBricks
+ {
+ constexpr BlockState RedNetherBricks()
+ {
+ return 9255;
+ }
+ }
+ namespace RedSand
+ {
+ constexpr BlockState RedSand()
+ {
+ return 67;
+ }
+ }
+ namespace RedSandstone
+ {
+ constexpr BlockState RedSandstone()
+ {
+ return 8217;
+ }
+ }
+ namespace RedSandstoneSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState RedSandstoneSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8397;
+ else if (Type == Type::Bottom) return 8399;
+ else return 8401;
+ }
+ BlockState RedSandstoneSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace RedSandstoneStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState RedSandstoneStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 8221;
+ else if (Shape == Shape::InnerLeft) return 8223;
+ else if (Shape == Shape::InnerRight) return 8225;
+ else if (Shape == Shape::OuterLeft) return 8227;
+ else return 8229;
+ else
+ if (Shape == Shape::Straight) return 8231;
+ else if (Shape == Shape::InnerLeft) return 8233;
+ else if (Shape == Shape::InnerRight) return 8235;
+ else if (Shape == Shape::OuterLeft) return 8237;
+ else return 8239;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 8241;
+ else if (Shape == Shape::InnerLeft) return 8243;
+ else if (Shape == Shape::InnerRight) return 8245;
+ else if (Shape == Shape::OuterLeft) return 8247;
+ else return 8249;
+ else
+ if (Shape == Shape::Straight) return 8251;
+ else if (Shape == Shape::InnerLeft) return 8253;
+ else if (Shape == Shape::InnerRight) return 8255;
+ else if (Shape == Shape::OuterLeft) return 8257;
+ else return 8259;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 8261;
+ else if (Shape == Shape::InnerLeft) return 8263;
+ else if (Shape == Shape::InnerRight) return 8265;
+ else if (Shape == Shape::OuterLeft) return 8267;
+ else return 8269;
+ else
+ if (Shape == Shape::Straight) return 8271;
+ else if (Shape == Shape::InnerLeft) return 8273;
+ else if (Shape == Shape::InnerRight) return 8275;
+ else if (Shape == Shape::OuterLeft) return 8277;
+ else return 8279;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 8281;
+ else if (Shape == Shape::InnerLeft) return 8283;
+ else if (Shape == Shape::InnerRight) return 8285;
+ else if (Shape == Shape::OuterLeft) return 8287;
+ else return 8289;
+ else
+ if (Shape == Shape::Straight) return 8291;
+ else if (Shape == Shape::InnerLeft) return 8293;
+ else if (Shape == Shape::InnerRight) return 8295;
+ else if (Shape == Shape::OuterLeft) return 8297;
+ else return 8299;
+ }
+ BlockState RedSandstoneStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace RedSandstoneWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState RedSandstoneWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11518;
+ else if (West == West::Low) return 11519;
+ else return 11520;
+ else
+ if (West == West::None) return 11524;
+ else if (West == West::Low) return 11525;
+ else return 11526;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11530;
+ else if (West == West::Low) return 11531;
+ else return 11532;
+ else
+ if (West == West::None) return 11536;
+ else if (West == West::Low) return 11537;
+ else return 11538;
+ else
+ if (Up)
+ if (West == West::None) return 11542;
+ else if (West == West::Low) return 11543;
+ else return 11544;
+ else
+ if (West == West::None) return 11548;
+ else if (West == West::Low) return 11549;
+ else return 11550;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11554;
+ else if (West == West::Low) return 11555;
+ else return 11556;
+ else
+ if (West == West::None) return 11560;
+ else if (West == West::Low) return 11561;
+ else return 11562;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11566;
+ else if (West == West::Low) return 11567;
+ else return 11568;
+ else
+ if (West == West::None) return 11572;
+ else if (West == West::Low) return 11573;
+ else return 11574;
+ else
+ if (Up)
+ if (West == West::None) return 11578;
+ else if (West == West::Low) return 11579;
+ else return 11580;
+ else
+ if (West == West::None) return 11584;
+ else if (West == West::Low) return 11585;
+ else return 11586;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11590;
+ else if (West == West::Low) return 11591;
+ else return 11592;
+ else
+ if (West == West::None) return 11596;
+ else if (West == West::Low) return 11597;
+ else return 11598;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11602;
+ else if (West == West::Low) return 11603;
+ else return 11604;
+ else
+ if (West == West::None) return 11608;
+ else if (West == West::Low) return 11609;
+ else return 11610;
+ else
+ if (Up)
+ if (West == West::None) return 11614;
+ else if (West == West::Low) return 11615;
+ else return 11616;
+ else
+ if (West == West::None) return 11620;
+ else if (West == West::Low) return 11621;
+ else return 11622;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11626;
+ else if (West == West::Low) return 11627;
+ else return 11628;
+ else
+ if (West == West::None) return 11632;
+ else if (West == West::Low) return 11633;
+ else return 11634;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11638;
+ else if (West == West::Low) return 11639;
+ else return 11640;
+ else
+ if (West == West::None) return 11644;
+ else if (West == West::Low) return 11645;
+ else return 11646;
+ else
+ if (Up)
+ if (West == West::None) return 11650;
+ else if (West == West::Low) return 11651;
+ else return 11652;
+ else
+ if (West == West::None) return 11656;
+ else if (West == West::Low) return 11657;
+ else return 11658;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11662;
+ else if (West == West::Low) return 11663;
+ else return 11664;
+ else
+ if (West == West::None) return 11668;
+ else if (West == West::Low) return 11669;
+ else return 11670;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11674;
+ else if (West == West::Low) return 11675;
+ else return 11676;
+ else
+ if (West == West::None) return 11680;
+ else if (West == West::Low) return 11681;
+ else return 11682;
+ else
+ if (Up)
+ if (West == West::None) return 11686;
+ else if (West == West::Low) return 11687;
+ else return 11688;
+ else
+ if (West == West::None) return 11692;
+ else if (West == West::Low) return 11693;
+ else return 11694;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11698;
+ else if (West == West::Low) return 11699;
+ else return 11700;
+ else
+ if (West == West::None) return 11704;
+ else if (West == West::Low) return 11705;
+ else return 11706;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11710;
+ else if (West == West::Low) return 11711;
+ else return 11712;
+ else
+ if (West == West::None) return 11716;
+ else if (West == West::Low) return 11717;
+ else return 11718;
+ else
+ if (Up)
+ if (West == West::None) return 11722;
+ else if (West == West::Low) return 11723;
+ else return 11724;
+ else
+ if (West == West::None) return 11728;
+ else if (West == West::Low) return 11729;
+ else return 11730;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11734;
+ else if (West == West::Low) return 11735;
+ else return 11736;
+ else
+ if (West == West::None) return 11740;
+ else if (West == West::Low) return 11741;
+ else return 11742;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11746;
+ else if (West == West::Low) return 11747;
+ else return 11748;
+ else
+ if (West == West::None) return 11752;
+ else if (West == West::Low) return 11753;
+ else return 11754;
+ else
+ if (Up)
+ if (West == West::None) return 11758;
+ else if (West == West::Low) return 11759;
+ else return 11760;
+ else
+ if (West == West::None) return 11764;
+ else if (West == West::Low) return 11765;
+ else return 11766;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11770;
+ else if (West == West::Low) return 11771;
+ else return 11772;
+ else
+ if (West == West::None) return 11776;
+ else if (West == West::Low) return 11777;
+ else return 11778;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11782;
+ else if (West == West::Low) return 11783;
+ else return 11784;
+ else
+ if (West == West::None) return 11788;
+ else if (West == West::Low) return 11789;
+ else return 11790;
+ else
+ if (Up)
+ if (West == West::None) return 11794;
+ else if (West == West::Low) return 11795;
+ else return 11796;
+ else
+ if (West == West::None) return 11800;
+ else if (West == West::Low) return 11801;
+ else return 11802;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 11806;
+ else if (West == West::Low) return 11807;
+ else return 11808;
+ else
+ if (West == West::None) return 11812;
+ else if (West == West::Low) return 11813;
+ else return 11814;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 11818;
+ else if (West == West::Low) return 11819;
+ else return 11820;
+ else
+ if (West == West::None) return 11824;
+ else if (West == West::Low) return 11825;
+ else return 11826;
+ else
+ if (Up)
+ if (West == West::None) return 11830;
+ else if (West == West::Low) return 11831;
+ else return 11832;
+ else
+ if (West == West::None) return 11836;
+ else if (West == West::Low) return 11837;
+ else return 11838;
+ }
+ BlockState RedSandstoneWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace RedShulkerBox
+ {
+ constexpr BlockState RedShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9362;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9363;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9364;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9365;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9366;
+ else return 9367;
+ }
+ BlockState RedShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace RedStainedGlass
+ {
+ constexpr BlockState RedStainedGlass()
+ {
+ return 4109;
+ }
+ }
+ namespace RedStainedGlassPane
+ {
+ constexpr BlockState RedStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 7313;
+ else return 7314;
+ else
+ if (West) return 7317;
+ else return 7318;
+ else
+ if (South)
+ if (West) return 7321;
+ else return 7322;
+ else
+ if (West) return 7325;
+ else return 7326;
+ else
+ if (North)
+ if (South)
+ if (West) return 7329;
+ else return 7330;
+ else
+ if (West) return 7333;
+ else return 7334;
+ else
+ if (South)
+ if (West) return 7337;
+ else return 7338;
+ else
+ if (West) return 7341;
+ else return 7342;
+ }
+ BlockState RedStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace RedTerracotta
+ {
+ constexpr BlockState RedTerracotta()
+ {
+ return 6861;
+ }
+ }
+ namespace RedTulip
+ {
+ constexpr BlockState RedTulip()
+ {
+ return 1417;
+ }
+ }
+ namespace RedWallBanner
+ {
+ constexpr BlockState RedWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8209;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8210;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8211;
+ else return 8212;
+ }
+ BlockState RedWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace RedWool
+ {
+ constexpr BlockState RedWool()
+ {
+ return 1398;
+ }
+ }
+ namespace RedstoneBlock
+ {
+ constexpr BlockState RedstoneBlock()
+ {
+ return 6726;
+ }
+ }
+ namespace RedstoneLamp
+ {
+ constexpr BlockState RedstoneLamp(const bool Lit)
+ {
+ if (Lit) return 5156;
+ else return 5157;
+ }
+ BlockState RedstoneLamp();
+ bool Lit(BlockState Block);
+ }
+ namespace RedstoneOre
+ {
+ constexpr BlockState RedstoneOre(const bool Lit)
+ {
+ if (Lit) return 3885;
+ else return 3886;
+ }
+ BlockState RedstoneOre();
+ bool Lit(BlockState Block);
+ }
+ namespace RedstoneTorch
+ {
+ constexpr BlockState RedstoneTorch(const bool Lit)
+ {
+ if (Lit) return 3887;
+ else return 3888;
+ }
+ BlockState RedstoneTorch();
+ bool Lit(BlockState Block);
+ }
+ namespace RedstoneWallTorch
+ {
+ constexpr BlockState RedstoneWallTorch(const eBlockFace Facing, const bool Lit)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Lit) return 3889;
+ else return 3890;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Lit) return 3891;
+ else return 3892;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Lit) return 3893;
+ else return 3894;
+ else
+ if (Lit) return 3895;
+ else return 3896;
+ }
+ BlockState RedstoneWallTorch();
+ eBlockFace Facing(BlockState Block);
+ bool Lit(BlockState Block);
+ }
+ namespace RedstoneWire
+ {
+ enum class East
+ {
+ Up,
+ Side,
+ None
+ };
+ enum class North
+ {
+ Up,
+ Side,
+ None
+ };
+ enum class South
+ {
+ Up,
+ Side,
+ None
+ };
+ enum class West
+ {
+ Up,
+ Side,
+ None
+ };
+ constexpr BlockState RedstoneWire(const enum East East, const enum North North, const unsigned char Power, const enum South South, const enum West West)
+ {
+ if (East == East::Up)
+ if (North == North::Up)
+ if (Power == 0)
+ if (South == South::Up)
+ if (West == West::Up) return 2058;
+ else if (West == West::Side) return 2059;
+ else return 2060;
+ else if (South == South::Side)
+ if (West == West::Up) return 2061;
+ else if (West == West::Side) return 2062;
+ else return 2063;
+ else
+ if (West == West::Up) return 2064;
+ else if (West == West::Side) return 2065;
+ else return 2066;
+ else if (Power == 1)
+ if (South == South::Up)
+ if (West == West::Up) return 2067;
+ else if (West == West::Side) return 2068;
+ else return 2069;
+ else if (South == South::Side)
+ if (West == West::Up) return 2070;
+ else if (West == West::Side) return 2071;
+ else return 2072;
+ else
+ if (West == West::Up) return 2073;
+ else if (West == West::Side) return 2074;
+ else return 2075;
+ else if (Power == 2)
+ if (South == South::Up)
+ if (West == West::Up) return 2076;
+ else if (West == West::Side) return 2077;
+ else return 2078;
+ else if (South == South::Side)
+ if (West == West::Up) return 2079;
+ else if (West == West::Side) return 2080;
+ else return 2081;
+ else
+ if (West == West::Up) return 2082;
+ else if (West == West::Side) return 2083;
+ else return 2084;
+ else if (Power == 3)
+ if (South == South::Up)
+ if (West == West::Up) return 2085;
+ else if (West == West::Side) return 2086;
+ else return 2087;
+ else if (South == South::Side)
+ if (West == West::Up) return 2088;
+ else if (West == West::Side) return 2089;
+ else return 2090;
+ else
+ if (West == West::Up) return 2091;
+ else if (West == West::Side) return 2092;
+ else return 2093;
+ else if (Power == 4)
+ if (South == South::Up)
+ if (West == West::Up) return 2094;
+ else if (West == West::Side) return 2095;
+ else return 2096;
+ else if (South == South::Side)
+ if (West == West::Up) return 2097;
+ else if (West == West::Side) return 2098;
+ else return 2099;
+ else
+ if (West == West::Up) return 2100;
+ else if (West == West::Side) return 2101;
+ else return 2102;
+ else if (Power == 5)
+ if (South == South::Up)
+ if (West == West::Up) return 2103;
+ else if (West == West::Side) return 2104;
+ else return 2105;
+ else if (South == South::Side)
+ if (West == West::Up) return 2106;
+ else if (West == West::Side) return 2107;
+ else return 2108;
+ else
+ if (West == West::Up) return 2109;
+ else if (West == West::Side) return 2110;
+ else return 2111;
+ else if (Power == 6)
+ if (South == South::Up)
+ if (West == West::Up) return 2112;
+ else if (West == West::Side) return 2113;
+ else return 2114;
+ else if (South == South::Side)
+ if (West == West::Up) return 2115;
+ else if (West == West::Side) return 2116;
+ else return 2117;
+ else
+ if (West == West::Up) return 2118;
+ else if (West == West::Side) return 2119;
+ else return 2120;
+ else if (Power == 7)
+ if (South == South::Up)
+ if (West == West::Up) return 2121;
+ else if (West == West::Side) return 2122;
+ else return 2123;
+ else if (South == South::Side)
+ if (West == West::Up) return 2124;
+ else if (West == West::Side) return 2125;
+ else return 2126;
+ else
+ if (West == West::Up) return 2127;
+ else if (West == West::Side) return 2128;
+ else return 2129;
+ else if (Power == 8)
+ if (South == South::Up)
+ if (West == West::Up) return 2130;
+ else if (West == West::Side) return 2131;
+ else return 2132;
+ else if (South == South::Side)
+ if (West == West::Up) return 2133;
+ else if (West == West::Side) return 2134;
+ else return 2135;
+ else
+ if (West == West::Up) return 2136;
+ else if (West == West::Side) return 2137;
+ else return 2138;
+ else if (Power == 9)
+ if (South == South::Up)
+ if (West == West::Up) return 2139;
+ else if (West == West::Side) return 2140;
+ else return 2141;
+ else if (South == South::Side)
+ if (West == West::Up) return 2142;
+ else if (West == West::Side) return 2143;
+ else return 2144;
+ else
+ if (West == West::Up) return 2145;
+ else if (West == West::Side) return 2146;
+ else return 2147;
+ else if (Power == 10)
+ if (South == South::Up)
+ if (West == West::Up) return 2148;
+ else if (West == West::Side) return 2149;
+ else return 2150;
+ else if (South == South::Side)
+ if (West == West::Up) return 2151;
+ else if (West == West::Side) return 2152;
+ else return 2153;
+ else
+ if (West == West::Up) return 2154;
+ else if (West == West::Side) return 2155;
+ else return 2156;
+ else if (Power == 11)
+ if (South == South::Up)
+ if (West == West::Up) return 2157;
+ else if (West == West::Side) return 2158;
+ else return 2159;
+ else if (South == South::Side)
+ if (West == West::Up) return 2160;
+ else if (West == West::Side) return 2161;
+ else return 2162;
+ else
+ if (West == West::Up) return 2163;
+ else if (West == West::Side) return 2164;
+ else return 2165;
+ else if (Power == 12)
+ if (South == South::Up)
+ if (West == West::Up) return 2166;
+ else if (West == West::Side) return 2167;
+ else return 2168;
+ else if (South == South::Side)
+ if (West == West::Up) return 2169;
+ else if (West == West::Side) return 2170;
+ else return 2171;
+ else
+ if (West == West::Up) return 2172;
+ else if (West == West::Side) return 2173;
+ else return 2174;
+ else if (Power == 13)
+ if (South == South::Up)
+ if (West == West::Up) return 2175;
+ else if (West == West::Side) return 2176;
+ else return 2177;
+ else if (South == South::Side)
+ if (West == West::Up) return 2178;
+ else if (West == West::Side) return 2179;
+ else return 2180;
+ else
+ if (West == West::Up) return 2181;
+ else if (West == West::Side) return 2182;
+ else return 2183;
+ else if (Power == 14)
+ if (South == South::Up)
+ if (West == West::Up) return 2184;
+ else if (West == West::Side) return 2185;
+ else return 2186;
+ else if (South == South::Side)
+ if (West == West::Up) return 2187;
+ else if (West == West::Side) return 2188;
+ else return 2189;
+ else
+ if (West == West::Up) return 2190;
+ else if (West == West::Side) return 2191;
+ else return 2192;
+ else
+ if (South == South::Up)
+ if (West == West::Up) return 2193;
+ else if (West == West::Side) return 2194;
+ else return 2195;
+ else if (South == South::Side)
+ if (West == West::Up) return 2196;
+ else if (West == West::Side) return 2197;
+ else return 2198;
+ else
+ if (West == West::Up) return 2199;
+ else if (West == West::Side) return 2200;
+ else return 2201;
+ else if (North == North::Side)
+ if (Power == 0)
+ if (South == South::Up)
+ if (West == West::Up) return 2202;
+ else if (West == West::Side) return 2203;
+ else return 2204;
+ else if (South == South::Side)
+ if (West == West::Up) return 2205;
+ else if (West == West::Side) return 2206;
+ else return 2207;
+ else
+ if (West == West::Up) return 2208;
+ else if (West == West::Side) return 2209;
+ else return 2210;
+ else if (Power == 1)
+ if (South == South::Up)
+ if (West == West::Up) return 2211;
+ else if (West == West::Side) return 2212;
+ else return 2213;
+ else if (South == South::Side)
+ if (West == West::Up) return 2214;
+ else if (West == West::Side) return 2215;
+ else return 2216;
+ else
+ if (West == West::Up) return 2217;
+ else if (West == West::Side) return 2218;
+ else return 2219;
+ else if (Power == 2)
+ if (South == South::Up)
+ if (West == West::Up) return 2220;
+ else if (West == West::Side) return 2221;
+ else return 2222;
+ else if (South == South::Side)
+ if (West == West::Up) return 2223;
+ else if (West == West::Side) return 2224;
+ else return 2225;
+ else
+ if (West == West::Up) return 2226;
+ else if (West == West::Side) return 2227;
+ else return 2228;
+ else if (Power == 3)
+ if (South == South::Up)
+ if (West == West::Up) return 2229;
+ else if (West == West::Side) return 2230;
+ else return 2231;
+ else if (South == South::Side)
+ if (West == West::Up) return 2232;
+ else if (West == West::Side) return 2233;
+ else return 2234;
+ else
+ if (West == West::Up) return 2235;
+ else if (West == West::Side) return 2236;
+ else return 2237;
+ else if (Power == 4)
+ if (South == South::Up)
+ if (West == West::Up) return 2238;
+ else if (West == West::Side) return 2239;
+ else return 2240;
+ else if (South == South::Side)
+ if (West == West::Up) return 2241;
+ else if (West == West::Side) return 2242;
+ else return 2243;
+ else
+ if (West == West::Up) return 2244;
+ else if (West == West::Side) return 2245;
+ else return 2246;
+ else if (Power == 5)
+ if (South == South::Up)
+ if (West == West::Up) return 2247;
+ else if (West == West::Side) return 2248;
+ else return 2249;
+ else if (South == South::Side)
+ if (West == West::Up) return 2250;
+ else if (West == West::Side) return 2251;
+ else return 2252;
+ else
+ if (West == West::Up) return 2253;
+ else if (West == West::Side) return 2254;
+ else return 2255;
+ else if (Power == 6)
+ if (South == South::Up)
+ if (West == West::Up) return 2256;
+ else if (West == West::Side) return 2257;
+ else return 2258;
+ else if (South == South::Side)
+ if (West == West::Up) return 2259;
+ else if (West == West::Side) return 2260;
+ else return 2261;
+ else
+ if (West == West::Up) return 2262;
+ else if (West == West::Side) return 2263;
+ else return 2264;
+ else if (Power == 7)
+ if (South == South::Up)
+ if (West == West::Up) return 2265;
+ else if (West == West::Side) return 2266;
+ else return 2267;
+ else if (South == South::Side)
+ if (West == West::Up) return 2268;
+ else if (West == West::Side) return 2269;
+ else return 2270;
+ else
+ if (West == West::Up) return 2271;
+ else if (West == West::Side) return 2272;
+ else return 2273;
+ else if (Power == 8)
+ if (South == South::Up)
+ if (West == West::Up) return 2274;
+ else if (West == West::Side) return 2275;
+ else return 2276;
+ else if (South == South::Side)
+ if (West == West::Up) return 2277;
+ else if (West == West::Side) return 2278;
+ else return 2279;
+ else
+ if (West == West::Up) return 2280;
+ else if (West == West::Side) return 2281;
+ else return 2282;
+ else if (Power == 9)
+ if (South == South::Up)
+ if (West == West::Up) return 2283;
+ else if (West == West::Side) return 2284;
+ else return 2285;
+ else if (South == South::Side)
+ if (West == West::Up) return 2286;
+ else if (West == West::Side) return 2287;
+ else return 2288;
+ else
+ if (West == West::Up) return 2289;
+ else if (West == West::Side) return 2290;
+ else return 2291;
+ else if (Power == 10)
+ if (South == South::Up)
+ if (West == West::Up) return 2292;
+ else if (West == West::Side) return 2293;
+ else return 2294;
+ else if (South == South::Side)
+ if (West == West::Up) return 2295;
+ else if (West == West::Side) return 2296;
+ else return 2297;
+ else
+ if (West == West::Up) return 2298;
+ else if (West == West::Side) return 2299;
+ else return 2300;
+ else if (Power == 11)
+ if (South == South::Up)
+ if (West == West::Up) return 2301;
+ else if (West == West::Side) return 2302;
+ else return 2303;
+ else if (South == South::Side)
+ if (West == West::Up) return 2304;
+ else if (West == West::Side) return 2305;
+ else return 2306;
+ else
+ if (West == West::Up) return 2307;
+ else if (West == West::Side) return 2308;
+ else return 2309;
+ else if (Power == 12)
+ if (South == South::Up)
+ if (West == West::Up) return 2310;
+ else if (West == West::Side) return 2311;
+ else return 2312;
+ else if (South == South::Side)
+ if (West == West::Up) return 2313;
+ else if (West == West::Side) return 2314;
+ else return 2315;
+ else
+ if (West == West::Up) return 2316;
+ else if (West == West::Side) return 2317;
+ else return 2318;
+ else if (Power == 13)
+ if (South == South::Up)
+ if (West == West::Up) return 2319;
+ else if (West == West::Side) return 2320;
+ else return 2321;
+ else if (South == South::Side)
+ if (West == West::Up) return 2322;
+ else if (West == West::Side) return 2323;
+ else return 2324;
+ else
+ if (West == West::Up) return 2325;
+ else if (West == West::Side) return 2326;
+ else return 2327;
+ else if (Power == 14)
+ if (South == South::Up)
+ if (West == West::Up) return 2328;
+ else if (West == West::Side) return 2329;
+ else return 2330;
+ else if (South == South::Side)
+ if (West == West::Up) return 2331;
+ else if (West == West::Side) return 2332;
+ else return 2333;
+ else
+ if (West == West::Up) return 2334;
+ else if (West == West::Side) return 2335;
+ else return 2336;
+ else
+ if (South == South::Up)
+ if (West == West::Up) return 2337;
+ else if (West == West::Side) return 2338;
+ else return 2339;
+ else if (South == South::Side)
+ if (West == West::Up) return 2340;
+ else if (West == West::Side) return 2341;
+ else return 2342;
+ else
+ if (West == West::Up) return 2343;
+ else if (West == West::Side) return 2344;
+ else return 2345;
+ else
+ if (Power == 0)
+ if (South == South::Up)
+ if (West == West::Up) return 2346;
+ else if (West == West::Side) return 2347;
+ else return 2348;
+ else if (South == South::Side)
+ if (West == West::Up) return 2349;
+ else if (West == West::Side) return 2350;
+ else return 2351;
+ else
+ if (West == West::Up) return 2352;
+ else if (West == West::Side) return 2353;
+ else return 2354;
+ else if (Power == 1)
+ if (South == South::Up)
+ if (West == West::Up) return 2355;
+ else if (West == West::Side) return 2356;
+ else return 2357;
+ else if (South == South::Side)
+ if (West == West::Up) return 2358;
+ else if (West == West::Side) return 2359;
+ else return 2360;
+ else
+ if (West == West::Up) return 2361;
+ else if (West == West::Side) return 2362;
+ else return 2363;
+ else if (Power == 2)
+ if (South == South::Up)
+ if (West == West::Up) return 2364;
+ else if (West == West::Side) return 2365;
+ else return 2366;
+ else if (South == South::Side)
+ if (West == West::Up) return 2367;
+ else if (West == West::Side) return 2368;
+ else return 2369;
+ else
+ if (West == West::Up) return 2370;
+ else if (West == West::Side) return 2371;
+ else return 2372;
+ else if (Power == 3)
+ if (South == South::Up)
+ if (West == West::Up) return 2373;
+ else if (West == West::Side) return 2374;
+ else return 2375;
+ else if (South == South::Side)
+ if (West == West::Up) return 2376;
+ else if (West == West::Side) return 2377;
+ else return 2378;
+ else
+ if (West == West::Up) return 2379;
+ else if (West == West::Side) return 2380;
+ else return 2381;
+ else if (Power == 4)
+ if (South == South::Up)
+ if (West == West::Up) return 2382;
+ else if (West == West::Side) return 2383;
+ else return 2384;
+ else if (South == South::Side)
+ if (West == West::Up) return 2385;
+ else if (West == West::Side) return 2386;
+ else return 2387;
+ else
+ if (West == West::Up) return 2388;
+ else if (West == West::Side) return 2389;
+ else return 2390;
+ else if (Power == 5)
+ if (South == South::Up)
+ if (West == West::Up) return 2391;
+ else if (West == West::Side) return 2392;
+ else return 2393;
+ else if (South == South::Side)
+ if (West == West::Up) return 2394;
+ else if (West == West::Side) return 2395;
+ else return 2396;
+ else
+ if (West == West::Up) return 2397;
+ else if (West == West::Side) return 2398;
+ else return 2399;
+ else if (Power == 6)
+ if (South == South::Up)
+ if (West == West::Up) return 2400;
+ else if (West == West::Side) return 2401;
+ else return 2402;
+ else if (South == South::Side)
+ if (West == West::Up) return 2403;
+ else if (West == West::Side) return 2404;
+ else return 2405;
+ else
+ if (West == West::Up) return 2406;
+ else if (West == West::Side) return 2407;
+ else return 2408;
+ else if (Power == 7)
+ if (South == South::Up)
+ if (West == West::Up) return 2409;
+ else if (West == West::Side) return 2410;
+ else return 2411;
+ else if (South == South::Side)
+ if (West == West::Up) return 2412;
+ else if (West == West::Side) return 2413;
+ else return 2414;
+ else
+ if (West == West::Up) return 2415;
+ else if (West == West::Side) return 2416;
+ else return 2417;
+ else if (Power == 8)
+ if (South == South::Up)
+ if (West == West::Up) return 2418;
+ else if (West == West::Side) return 2419;
+ else return 2420;
+ else if (South == South::Side)
+ if (West == West::Up) return 2421;
+ else if (West == West::Side) return 2422;
+ else return 2423;
+ else
+ if (West == West::Up) return 2424;
+ else if (West == West::Side) return 2425;
+ else return 2426;
+ else if (Power == 9)
+ if (South == South::Up)
+ if (West == West::Up) return 2427;
+ else if (West == West::Side) return 2428;
+ else return 2429;
+ else if (South == South::Side)
+ if (West == West::Up) return 2430;
+ else if (West == West::Side) return 2431;
+ else return 2432;
+ else
+ if (West == West::Up) return 2433;
+ else if (West == West::Side) return 2434;
+ else return 2435;
+ else if (Power == 10)
+ if (South == South::Up)
+ if (West == West::Up) return 2436;
+ else if (West == West::Side) return 2437;
+ else return 2438;
+ else if (South == South::Side)
+ if (West == West::Up) return 2439;
+ else if (West == West::Side) return 2440;
+ else return 2441;
+ else
+ if (West == West::Up) return 2442;
+ else if (West == West::Side) return 2443;
+ else return 2444;
+ else if (Power == 11)
+ if (South == South::Up)
+ if (West == West::Up) return 2445;
+ else if (West == West::Side) return 2446;
+ else return 2447;
+ else if (South == South::Side)
+ if (West == West::Up) return 2448;
+ else if (West == West::Side) return 2449;
+ else return 2450;
+ else
+ if (West == West::Up) return 2451;
+ else if (West == West::Side) return 2452;
+ else return 2453;
+ else if (Power == 12)
+ if (South == South::Up)
+ if (West == West::Up) return 2454;
+ else if (West == West::Side) return 2455;
+ else return 2456;
+ else if (South == South::Side)
+ if (West == West::Up) return 2457;
+ else if (West == West::Side) return 2458;
+ else return 2459;
+ else
+ if (West == West::Up) return 2460;
+ else if (West == West::Side) return 2461;
+ else return 2462;
+ else if (Power == 13)
+ if (South == South::Up)
+ if (West == West::Up) return 2463;
+ else if (West == West::Side) return 2464;
+ else return 2465;
+ else if (South == South::Side)
+ if (West == West::Up) return 2466;
+ else if (West == West::Side) return 2467;
+ else return 2468;
+ else
+ if (West == West::Up) return 2469;
+ else if (West == West::Side) return 2470;
+ else return 2471;
+ else if (Power == 14)
+ if (South == South::Up)
+ if (West == West::Up) return 2472;
+ else if (West == West::Side) return 2473;
+ else return 2474;
+ else if (South == South::Side)
+ if (West == West::Up) return 2475;
+ else if (West == West::Side) return 2476;
+ else return 2477;
+ else
+ if (West == West::Up) return 2478;
+ else if (West == West::Side) return 2479;
+ else return 2480;
+ else
+ if (South == South::Up)
+ if (West == West::Up) return 2481;
+ else if (West == West::Side) return 2482;
+ else return 2483;
+ else if (South == South::Side)
+ if (West == West::Up) return 2484;
+ else if (West == West::Side) return 2485;
+ else return 2486;
+ else
+ if (West == West::Up) return 2487;
+ else if (West == West::Side) return 2488;
+ else return 2489;
+ else if (East == East::Side)
+ if (North == North::Up)
+ if (Power == 0)
+ if (South == South::Up)
+ if (West == West::Up) return 2490;
+ else if (West == West::Side) return 2491;
+ else return 2492;
+ else if (South == South::Side)
+ if (West == West::Up) return 2493;
+ else if (West == West::Side) return 2494;
+ else return 2495;
+ else
+ if (West == West::Up) return 2496;
+ else if (West == West::Side) return 2497;
+ else return 2498;
+ else if (Power == 1)
+ if (South == South::Up)
+ if (West == West::Up) return 2499;
+ else if (West == West::Side) return 2500;
+ else return 2501;
+ else if (South == South::Side)
+ if (West == West::Up) return 2502;
+ else if (West == West::Side) return 2503;
+ else return 2504;
+ else
+ if (West == West::Up) return 2505;
+ else if (West == West::Side) return 2506;
+ else return 2507;
+ else if (Power == 2)
+ if (South == South::Up)
+ if (West == West::Up) return 2508;
+ else if (West == West::Side) return 2509;
+ else return 2510;
+ else if (South == South::Side)
+ if (West == West::Up) return 2511;
+ else if (West == West::Side) return 2512;
+ else return 2513;
+ else
+ if (West == West::Up) return 2514;
+ else if (West == West::Side) return 2515;
+ else return 2516;
+ else if (Power == 3)
+ if (South == South::Up)
+ if (West == West::Up) return 2517;
+ else if (West == West::Side) return 2518;
+ else return 2519;
+ else if (South == South::Side)
+ if (West == West::Up) return 2520;
+ else if (West == West::Side) return 2521;
+ else return 2522;
+ else
+ if (West == West::Up) return 2523;
+ else if (West == West::Side) return 2524;
+ else return 2525;
+ else if (Power == 4)
+ if (South == South::Up)
+ if (West == West::Up) return 2526;
+ else if (West == West::Side) return 2527;
+ else return 2528;
+ else if (South == South::Side)
+ if (West == West::Up) return 2529;
+ else if (West == West::Side) return 2530;
+ else return 2531;
+ else
+ if (West == West::Up) return 2532;
+ else if (West == West::Side) return 2533;
+ else return 2534;
+ else if (Power == 5)
+ if (South == South::Up)
+ if (West == West::Up) return 2535;
+ else if (West == West::Side) return 2536;
+ else return 2537;
+ else if (South == South::Side)
+ if (West == West::Up) return 2538;
+ else if (West == West::Side) return 2539;
+ else return 2540;
+ else
+ if (West == West::Up) return 2541;
+ else if (West == West::Side) return 2542;
+ else return 2543;
+ else if (Power == 6)
+ if (South == South::Up)
+ if (West == West::Up) return 2544;
+ else if (West == West::Side) return 2545;
+ else return 2546;
+ else if (South == South::Side)
+ if (West == West::Up) return 2547;
+ else if (West == West::Side) return 2548;
+ else return 2549;
+ else
+ if (West == West::Up) return 2550;
+ else if (West == West::Side) return 2551;
+ else return 2552;
+ else if (Power == 7)
+ if (South == South::Up)
+ if (West == West::Up) return 2553;
+ else if (West == West::Side) return 2554;
+ else return 2555;
+ else if (South == South::Side)
+ if (West == West::Up) return 2556;
+ else if (West == West::Side) return 2557;
+ else return 2558;
+ else
+ if (West == West::Up) return 2559;
+ else if (West == West::Side) return 2560;
+ else return 2561;
+ else if (Power == 8)
+ if (South == South::Up)
+ if (West == West::Up) return 2562;
+ else if (West == West::Side) return 2563;
+ else return 2564;
+ else if (South == South::Side)
+ if (West == West::Up) return 2565;
+ else if (West == West::Side) return 2566;
+ else return 2567;
+ else
+ if (West == West::Up) return 2568;
+ else if (West == West::Side) return 2569;
+ else return 2570;
+ else if (Power == 9)
+ if (South == South::Up)
+ if (West == West::Up) return 2571;
+ else if (West == West::Side) return 2572;
+ else return 2573;
+ else if (South == South::Side)
+ if (West == West::Up) return 2574;
+ else if (West == West::Side) return 2575;
+ else return 2576;
+ else
+ if (West == West::Up) return 2577;
+ else if (West == West::Side) return 2578;
+ else return 2579;
+ else if (Power == 10)
+ if (South == South::Up)
+ if (West == West::Up) return 2580;
+ else if (West == West::Side) return 2581;
+ else return 2582;
+ else if (South == South::Side)
+ if (West == West::Up) return 2583;
+ else if (West == West::Side) return 2584;
+ else return 2585;
+ else
+ if (West == West::Up) return 2586;
+ else if (West == West::Side) return 2587;
+ else return 2588;
+ else if (Power == 11)
+ if (South == South::Up)
+ if (West == West::Up) return 2589;
+ else if (West == West::Side) return 2590;
+ else return 2591;
+ else if (South == South::Side)
+ if (West == West::Up) return 2592;
+ else if (West == West::Side) return 2593;
+ else return 2594;
+ else
+ if (West == West::Up) return 2595;
+ else if (West == West::Side) return 2596;
+ else return 2597;
+ else if (Power == 12)
+ if (South == South::Up)
+ if (West == West::Up) return 2598;
+ else if (West == West::Side) return 2599;
+ else return 2600;
+ else if (South == South::Side)
+ if (West == West::Up) return 2601;
+ else if (West == West::Side) return 2602;
+ else return 2603;
+ else
+ if (West == West::Up) return 2604;
+ else if (West == West::Side) return 2605;
+ else return 2606;
+ else if (Power == 13)
+ if (South == South::Up)
+ if (West == West::Up) return 2607;
+ else if (West == West::Side) return 2608;
+ else return 2609;
+ else if (South == South::Side)
+ if (West == West::Up) return 2610;
+ else if (West == West::Side) return 2611;
+ else return 2612;
+ else
+ if (West == West::Up) return 2613;
+ else if (West == West::Side) return 2614;
+ else return 2615;
+ else if (Power == 14)
+ if (South == South::Up)
+ if (West == West::Up) return 2616;
+ else if (West == West::Side) return 2617;
+ else return 2618;
+ else if (South == South::Side)
+ if (West == West::Up) return 2619;
+ else if (West == West::Side) return 2620;
+ else return 2621;
+ else
+ if (West == West::Up) return 2622;
+ else if (West == West::Side) return 2623;
+ else return 2624;
+ else
+ if (South == South::Up)
+ if (West == West::Up) return 2625;
+ else if (West == West::Side) return 2626;
+ else return 2627;
+ else if (South == South::Side)
+ if (West == West::Up) return 2628;
+ else if (West == West::Side) return 2629;
+ else return 2630;
+ else
+ if (West == West::Up) return 2631;
+ else if (West == West::Side) return 2632;
+ else return 2633;
+ else if (North == North::Side)
+ if (Power == 0)
+ if (South == South::Up)
+ if (West == West::Up) return 2634;
+ else if (West == West::Side) return 2635;
+ else return 2636;
+ else if (South == South::Side)
+ if (West == West::Up) return 2637;
+ else if (West == West::Side) return 2638;
+ else return 2639;
+ else
+ if (West == West::Up) return 2640;
+ else if (West == West::Side) return 2641;
+ else return 2642;
+ else if (Power == 1)
+ if (South == South::Up)
+ if (West == West::Up) return 2643;
+ else if (West == West::Side) return 2644;
+ else return 2645;
+ else if (South == South::Side)
+ if (West == West::Up) return 2646;
+ else if (West == West::Side) return 2647;
+ else return 2648;
+ else
+ if (West == West::Up) return 2649;
+ else if (West == West::Side) return 2650;
+ else return 2651;
+ else if (Power == 2)
+ if (South == South::Up)
+ if (West == West::Up) return 2652;
+ else if (West == West::Side) return 2653;
+ else return 2654;
+ else if (South == South::Side)
+ if (West == West::Up) return 2655;
+ else if (West == West::Side) return 2656;
+ else return 2657;
+ else
+ if (West == West::Up) return 2658;
+ else if (West == West::Side) return 2659;
+ else return 2660;
+ else if (Power == 3)
+ if (South == South::Up)
+ if (West == West::Up) return 2661;
+ else if (West == West::Side) return 2662;
+ else return 2663;
+ else if (South == South::Side)
+ if (West == West::Up) return 2664;
+ else if (West == West::Side) return 2665;
+ else return 2666;
+ else
+ if (West == West::Up) return 2667;
+ else if (West == West::Side) return 2668;
+ else return 2669;
+ else if (Power == 4)
+ if (South == South::Up)
+ if (West == West::Up) return 2670;
+ else if (West == West::Side) return 2671;
+ else return 2672;
+ else if (South == South::Side)
+ if (West == West::Up) return 2673;
+ else if (West == West::Side) return 2674;
+ else return 2675;
+ else
+ if (West == West::Up) return 2676;
+ else if (West == West::Side) return 2677;
+ else return 2678;
+ else if (Power == 5)
+ if (South == South::Up)
+ if (West == West::Up) return 2679;
+ else if (West == West::Side) return 2680;
+ else return 2681;
+ else if (South == South::Side)
+ if (West == West::Up) return 2682;
+ else if (West == West::Side) return 2683;
+ else return 2684;
+ else
+ if (West == West::Up) return 2685;
+ else if (West == West::Side) return 2686;
+ else return 2687;
+ else if (Power == 6)
+ if (South == South::Up)
+ if (West == West::Up) return 2688;
+ else if (West == West::Side) return 2689;
+ else return 2690;
+ else if (South == South::Side)
+ if (West == West::Up) return 2691;
+ else if (West == West::Side) return 2692;
+ else return 2693;
+ else
+ if (West == West::Up) return 2694;
+ else if (West == West::Side) return 2695;
+ else return 2696;
+ else if (Power == 7)
+ if (South == South::Up)
+ if (West == West::Up) return 2697;
+ else if (West == West::Side) return 2698;
+ else return 2699;
+ else if (South == South::Side)
+ if (West == West::Up) return 2700;
+ else if (West == West::Side) return 2701;
+ else return 2702;
+ else
+ if (West == West::Up) return 2703;
+ else if (West == West::Side) return 2704;
+ else return 2705;
+ else if (Power == 8)
+ if (South == South::Up)
+ if (West == West::Up) return 2706;
+ else if (West == West::Side) return 2707;
+ else return 2708;
+ else if (South == South::Side)
+ if (West == West::Up) return 2709;
+ else if (West == West::Side) return 2710;
+ else return 2711;
+ else
+ if (West == West::Up) return 2712;
+ else if (West == West::Side) return 2713;
+ else return 2714;
+ else if (Power == 9)
+ if (South == South::Up)
+ if (West == West::Up) return 2715;
+ else if (West == West::Side) return 2716;
+ else return 2717;
+ else if (South == South::Side)
+ if (West == West::Up) return 2718;
+ else if (West == West::Side) return 2719;
+ else return 2720;
+ else
+ if (West == West::Up) return 2721;
+ else if (West == West::Side) return 2722;
+ else return 2723;
+ else if (Power == 10)
+ if (South == South::Up)
+ if (West == West::Up) return 2724;
+ else if (West == West::Side) return 2725;
+ else return 2726;
+ else if (South == South::Side)
+ if (West == West::Up) return 2727;
+ else if (West == West::Side) return 2728;
+ else return 2729;
+ else
+ if (West == West::Up) return 2730;
+ else if (West == West::Side) return 2731;
+ else return 2732;
+ else if (Power == 11)
+ if (South == South::Up)
+ if (West == West::Up) return 2733;
+ else if (West == West::Side) return 2734;
+ else return 2735;
+ else if (South == South::Side)
+ if (West == West::Up) return 2736;
+ else if (West == West::Side) return 2737;
+ else return 2738;
+ else
+ if (West == West::Up) return 2739;
+ else if (West == West::Side) return 2740;
+ else return 2741;
+ else if (Power == 12)
+ if (South == South::Up)
+ if (West == West::Up) return 2742;
+ else if (West == West::Side) return 2743;
+ else return 2744;
+ else if (South == South::Side)
+ if (West == West::Up) return 2745;
+ else if (West == West::Side) return 2746;
+ else return 2747;
+ else
+ if (West == West::Up) return 2748;
+ else if (West == West::Side) return 2749;
+ else return 2750;
+ else if (Power == 13)
+ if (South == South::Up)
+ if (West == West::Up) return 2751;
+ else if (West == West::Side) return 2752;
+ else return 2753;
+ else if (South == South::Side)
+ if (West == West::Up) return 2754;
+ else if (West == West::Side) return 2755;
+ else return 2756;
+ else
+ if (West == West::Up) return 2757;
+ else if (West == West::Side) return 2758;
+ else return 2759;
+ else if (Power == 14)
+ if (South == South::Up)
+ if (West == West::Up) return 2760;
+ else if (West == West::Side) return 2761;
+ else return 2762;
+ else if (South == South::Side)
+ if (West == West::Up) return 2763;
+ else if (West == West::Side) return 2764;
+ else return 2765;
+ else
+ if (West == West::Up) return 2766;
+ else if (West == West::Side) return 2767;
+ else return 2768;
+ else
+ if (South == South::Up)
+ if (West == West::Up) return 2769;
+ else if (West == West::Side) return 2770;
+ else return 2771;
+ else if (South == South::Side)
+ if (West == West::Up) return 2772;
+ else if (West == West::Side) return 2773;
+ else return 2774;
+ else
+ if (West == West::Up) return 2775;
+ else if (West == West::Side) return 2776;
+ else return 2777;
+ else
+ if (Power == 0)
+ if (South == South::Up)
+ if (West == West::Up) return 2778;
+ else if (West == West::Side) return 2779;
+ else return 2780;
+ else if (South == South::Side)
+ if (West == West::Up) return 2781;
+ else if (West == West::Side) return 2782;
+ else return 2783;
+ else
+ if (West == West::Up) return 2784;
+ else if (West == West::Side) return 2785;
+ else return 2786;
+ else if (Power == 1)
+ if (South == South::Up)
+ if (West == West::Up) return 2787;
+ else if (West == West::Side) return 2788;
+ else return 2789;
+ else if (South == South::Side)
+ if (West == West::Up) return 2790;
+ else if (West == West::Side) return 2791;
+ else return 2792;
+ else
+ if (West == West::Up) return 2793;
+ else if (West == West::Side) return 2794;
+ else return 2795;
+ else if (Power == 2)
+ if (South == South::Up)
+ if (West == West::Up) return 2796;
+ else if (West == West::Side) return 2797;
+ else return 2798;
+ else if (South == South::Side)
+ if (West == West::Up) return 2799;
+ else if (West == West::Side) return 2800;
+ else return 2801;
+ else
+ if (West == West::Up) return 2802;
+ else if (West == West::Side) return 2803;
+ else return 2804;
+ else if (Power == 3)
+ if (South == South::Up)
+ if (West == West::Up) return 2805;
+ else if (West == West::Side) return 2806;
+ else return 2807;
+ else if (South == South::Side)
+ if (West == West::Up) return 2808;
+ else if (West == West::Side) return 2809;
+ else return 2810;
+ else
+ if (West == West::Up) return 2811;
+ else if (West == West::Side) return 2812;
+ else return 2813;
+ else if (Power == 4)
+ if (South == South::Up)
+ if (West == West::Up) return 2814;
+ else if (West == West::Side) return 2815;
+ else return 2816;
+ else if (South == South::Side)
+ if (West == West::Up) return 2817;
+ else if (West == West::Side) return 2818;
+ else return 2819;
+ else
+ if (West == West::Up) return 2820;
+ else if (West == West::Side) return 2821;
+ else return 2822;
+ else if (Power == 5)
+ if (South == South::Up)
+ if (West == West::Up) return 2823;
+ else if (West == West::Side) return 2824;
+ else return 2825;
+ else if (South == South::Side)
+ if (West == West::Up) return 2826;
+ else if (West == West::Side) return 2827;
+ else return 2828;
+ else
+ if (West == West::Up) return 2829;
+ else if (West == West::Side) return 2830;
+ else return 2831;
+ else if (Power == 6)
+ if (South == South::Up)
+ if (West == West::Up) return 2832;
+ else if (West == West::Side) return 2833;
+ else return 2834;
+ else if (South == South::Side)
+ if (West == West::Up) return 2835;
+ else if (West == West::Side) return 2836;
+ else return 2837;
+ else
+ if (West == West::Up) return 2838;
+ else if (West == West::Side) return 2839;
+ else return 2840;
+ else if (Power == 7)
+ if (South == South::Up)
+ if (West == West::Up) return 2841;
+ else if (West == West::Side) return 2842;
+ else return 2843;
+ else if (South == South::Side)
+ if (West == West::Up) return 2844;
+ else if (West == West::Side) return 2845;
+ else return 2846;
+ else
+ if (West == West::Up) return 2847;
+ else if (West == West::Side) return 2848;
+ else return 2849;
+ else if (Power == 8)
+ if (South == South::Up)
+ if (West == West::Up) return 2850;
+ else if (West == West::Side) return 2851;
+ else return 2852;
+ else if (South == South::Side)
+ if (West == West::Up) return 2853;
+ else if (West == West::Side) return 2854;
+ else return 2855;
+ else
+ if (West == West::Up) return 2856;
+ else if (West == West::Side) return 2857;
+ else return 2858;
+ else if (Power == 9)
+ if (South == South::Up)
+ if (West == West::Up) return 2859;
+ else if (West == West::Side) return 2860;
+ else return 2861;
+ else if (South == South::Side)
+ if (West == West::Up) return 2862;
+ else if (West == West::Side) return 2863;
+ else return 2864;
+ else
+ if (West == West::Up) return 2865;
+ else if (West == West::Side) return 2866;
+ else return 2867;
+ else if (Power == 10)
+ if (South == South::Up)
+ if (West == West::Up) return 2868;
+ else if (West == West::Side) return 2869;
+ else return 2870;
+ else if (South == South::Side)
+ if (West == West::Up) return 2871;
+ else if (West == West::Side) return 2872;
+ else return 2873;
+ else
+ if (West == West::Up) return 2874;
+ else if (West == West::Side) return 2875;
+ else return 2876;
+ else if (Power == 11)
+ if (South == South::Up)
+ if (West == West::Up) return 2877;
+ else if (West == West::Side) return 2878;
+ else return 2879;
+ else if (South == South::Side)
+ if (West == West::Up) return 2880;
+ else if (West == West::Side) return 2881;
+ else return 2882;
+ else
+ if (West == West::Up) return 2883;
+ else if (West == West::Side) return 2884;
+ else return 2885;
+ else if (Power == 12)
+ if (South == South::Up)
+ if (West == West::Up) return 2886;
+ else if (West == West::Side) return 2887;
+ else return 2888;
+ else if (South == South::Side)
+ if (West == West::Up) return 2889;
+ else if (West == West::Side) return 2890;
+ else return 2891;
+ else
+ if (West == West::Up) return 2892;
+ else if (West == West::Side) return 2893;
+ else return 2894;
+ else if (Power == 13)
+ if (South == South::Up)
+ if (West == West::Up) return 2895;
+ else if (West == West::Side) return 2896;
+ else return 2897;
+ else if (South == South::Side)
+ if (West == West::Up) return 2898;
+ else if (West == West::Side) return 2899;
+ else return 2900;
+ else
+ if (West == West::Up) return 2901;
+ else if (West == West::Side) return 2902;
+ else return 2903;
+ else if (Power == 14)
+ if (South == South::Up)
+ if (West == West::Up) return 2904;
+ else if (West == West::Side) return 2905;
+ else return 2906;
+ else if (South == South::Side)
+ if (West == West::Up) return 2907;
+ else if (West == West::Side) return 2908;
+ else return 2909;
+ else
+ if (West == West::Up) return 2910;
+ else if (West == West::Side) return 2911;
+ else return 2912;
+ else
+ if (South == South::Up)
+ if (West == West::Up) return 2913;
+ else if (West == West::Side) return 2914;
+ else return 2915;
+ else if (South == South::Side)
+ if (West == West::Up) return 2916;
+ else if (West == West::Side) return 2917;
+ else return 2918;
+ else
+ if (West == West::Up) return 2919;
+ else if (West == West::Side) return 2920;
+ else return 2921;
+ else
+ if (North == North::Up)
+ if (Power == 0)
+ if (South == South::Up)
+ if (West == West::Up) return 2922;
+ else if (West == West::Side) return 2923;
+ else return 2924;
+ else if (South == South::Side)
+ if (West == West::Up) return 2925;
+ else if (West == West::Side) return 2926;
+ else return 2927;
+ else
+ if (West == West::Up) return 2928;
+ else if (West == West::Side) return 2929;
+ else return 2930;
+ else if (Power == 1)
+ if (South == South::Up)
+ if (West == West::Up) return 2931;
+ else if (West == West::Side) return 2932;
+ else return 2933;
+ else if (South == South::Side)
+ if (West == West::Up) return 2934;
+ else if (West == West::Side) return 2935;
+ else return 2936;
+ else
+ if (West == West::Up) return 2937;
+ else if (West == West::Side) return 2938;
+ else return 2939;
+ else if (Power == 2)
+ if (South == South::Up)
+ if (West == West::Up) return 2940;
+ else if (West == West::Side) return 2941;
+ else return 2942;
+ else if (South == South::Side)
+ if (West == West::Up) return 2943;
+ else if (West == West::Side) return 2944;
+ else return 2945;
+ else
+ if (West == West::Up) return 2946;
+ else if (West == West::Side) return 2947;
+ else return 2948;
+ else if (Power == 3)
+ if (South == South::Up)
+ if (West == West::Up) return 2949;
+ else if (West == West::Side) return 2950;
+ else return 2951;
+ else if (South == South::Side)
+ if (West == West::Up) return 2952;
+ else if (West == West::Side) return 2953;
+ else return 2954;
+ else
+ if (West == West::Up) return 2955;
+ else if (West == West::Side) return 2956;
+ else return 2957;
+ else if (Power == 4)
+ if (South == South::Up)
+ if (West == West::Up) return 2958;
+ else if (West == West::Side) return 2959;
+ else return 2960;
+ else if (South == South::Side)
+ if (West == West::Up) return 2961;
+ else if (West == West::Side) return 2962;
+ else return 2963;
+ else
+ if (West == West::Up) return 2964;
+ else if (West == West::Side) return 2965;
+ else return 2966;
+ else if (Power == 5)
+ if (South == South::Up)
+ if (West == West::Up) return 2967;
+ else if (West == West::Side) return 2968;
+ else return 2969;
+ else if (South == South::Side)
+ if (West == West::Up) return 2970;
+ else if (West == West::Side) return 2971;
+ else return 2972;
+ else
+ if (West == West::Up) return 2973;
+ else if (West == West::Side) return 2974;
+ else return 2975;
+ else if (Power == 6)
+ if (South == South::Up)
+ if (West == West::Up) return 2976;
+ else if (West == West::Side) return 2977;
+ else return 2978;
+ else if (South == South::Side)
+ if (West == West::Up) return 2979;
+ else if (West == West::Side) return 2980;
+ else return 2981;
+ else
+ if (West == West::Up) return 2982;
+ else if (West == West::Side) return 2983;
+ else return 2984;
+ else if (Power == 7)
+ if (South == South::Up)
+ if (West == West::Up) return 2985;
+ else if (West == West::Side) return 2986;
+ else return 2987;
+ else if (South == South::Side)
+ if (West == West::Up) return 2988;
+ else if (West == West::Side) return 2989;
+ else return 2990;
+ else
+ if (West == West::Up) return 2991;
+ else if (West == West::Side) return 2992;
+ else return 2993;
+ else if (Power == 8)
+ if (South == South::Up)
+ if (West == West::Up) return 2994;
+ else if (West == West::Side) return 2995;
+ else return 2996;
+ else if (South == South::Side)
+ if (West == West::Up) return 2997;
+ else if (West == West::Side) return 2998;
+ else return 2999;
+ else
+ if (West == West::Up) return 3000;
+ else if (West == West::Side) return 3001;
+ else return 3002;
+ else if (Power == 9)
+ if (South == South::Up)
+ if (West == West::Up) return 3003;
+ else if (West == West::Side) return 3004;
+ else return 3005;
+ else if (South == South::Side)
+ if (West == West::Up) return 3006;
+ else if (West == West::Side) return 3007;
+ else return 3008;
+ else
+ if (West == West::Up) return 3009;
+ else if (West == West::Side) return 3010;
+ else return 3011;
+ else if (Power == 10)
+ if (South == South::Up)
+ if (West == West::Up) return 3012;
+ else if (West == West::Side) return 3013;
+ else return 3014;
+ else if (South == South::Side)
+ if (West == West::Up) return 3015;
+ else if (West == West::Side) return 3016;
+ else return 3017;
+ else
+ if (West == West::Up) return 3018;
+ else if (West == West::Side) return 3019;
+ else return 3020;
+ else if (Power == 11)
+ if (South == South::Up)
+ if (West == West::Up) return 3021;
+ else if (West == West::Side) return 3022;
+ else return 3023;
+ else if (South == South::Side)
+ if (West == West::Up) return 3024;
+ else if (West == West::Side) return 3025;
+ else return 3026;
+ else
+ if (West == West::Up) return 3027;
+ else if (West == West::Side) return 3028;
+ else return 3029;
+ else if (Power == 12)
+ if (South == South::Up)
+ if (West == West::Up) return 3030;
+ else if (West == West::Side) return 3031;
+ else return 3032;
+ else if (South == South::Side)
+ if (West == West::Up) return 3033;
+ else if (West == West::Side) return 3034;
+ else return 3035;
+ else
+ if (West == West::Up) return 3036;
+ else if (West == West::Side) return 3037;
+ else return 3038;
+ else if (Power == 13)
+ if (South == South::Up)
+ if (West == West::Up) return 3039;
+ else if (West == West::Side) return 3040;
+ else return 3041;
+ else if (South == South::Side)
+ if (West == West::Up) return 3042;
+ else if (West == West::Side) return 3043;
+ else return 3044;
+ else
+ if (West == West::Up) return 3045;
+ else if (West == West::Side) return 3046;
+ else return 3047;
+ else if (Power == 14)
+ if (South == South::Up)
+ if (West == West::Up) return 3048;
+ else if (West == West::Side) return 3049;
+ else return 3050;
+ else if (South == South::Side)
+ if (West == West::Up) return 3051;
+ else if (West == West::Side) return 3052;
+ else return 3053;
+ else
+ if (West == West::Up) return 3054;
+ else if (West == West::Side) return 3055;
+ else return 3056;
+ else
+ if (South == South::Up)
+ if (West == West::Up) return 3057;
+ else if (West == West::Side) return 3058;
+ else return 3059;
+ else if (South == South::Side)
+ if (West == West::Up) return 3060;
+ else if (West == West::Side) return 3061;
+ else return 3062;
+ else
+ if (West == West::Up) return 3063;
+ else if (West == West::Side) return 3064;
+ else return 3065;
+ else if (North == North::Side)
+ if (Power == 0)
+ if (South == South::Up)
+ if (West == West::Up) return 3066;
+ else if (West == West::Side) return 3067;
+ else return 3068;
+ else if (South == South::Side)
+ if (West == West::Up) return 3069;
+ else if (West == West::Side) return 3070;
+ else return 3071;
+ else
+ if (West == West::Up) return 3072;
+ else if (West == West::Side) return 3073;
+ else return 3074;
+ else if (Power == 1)
+ if (South == South::Up)
+ if (West == West::Up) return 3075;
+ else if (West == West::Side) return 3076;
+ else return 3077;
+ else if (South == South::Side)
+ if (West == West::Up) return 3078;
+ else if (West == West::Side) return 3079;
+ else return 3080;
+ else
+ if (West == West::Up) return 3081;
+ else if (West == West::Side) return 3082;
+ else return 3083;
+ else if (Power == 2)
+ if (South == South::Up)
+ if (West == West::Up) return 3084;
+ else if (West == West::Side) return 3085;
+ else return 3086;
+ else if (South == South::Side)
+ if (West == West::Up) return 3087;
+ else if (West == West::Side) return 3088;
+ else return 3089;
+ else
+ if (West == West::Up) return 3090;
+ else if (West == West::Side) return 3091;
+ else return 3092;
+ else if (Power == 3)
+ if (South == South::Up)
+ if (West == West::Up) return 3093;
+ else if (West == West::Side) return 3094;
+ else return 3095;
+ else if (South == South::Side)
+ if (West == West::Up) return 3096;
+ else if (West == West::Side) return 3097;
+ else return 3098;
+ else
+ if (West == West::Up) return 3099;
+ else if (West == West::Side) return 3100;
+ else return 3101;
+ else if (Power == 4)
+ if (South == South::Up)
+ if (West == West::Up) return 3102;
+ else if (West == West::Side) return 3103;
+ else return 3104;
+ else if (South == South::Side)
+ if (West == West::Up) return 3105;
+ else if (West == West::Side) return 3106;
+ else return 3107;
+ else
+ if (West == West::Up) return 3108;
+ else if (West == West::Side) return 3109;
+ else return 3110;
+ else if (Power == 5)
+ if (South == South::Up)
+ if (West == West::Up) return 3111;
+ else if (West == West::Side) return 3112;
+ else return 3113;
+ else if (South == South::Side)
+ if (West == West::Up) return 3114;
+ else if (West == West::Side) return 3115;
+ else return 3116;
+ else
+ if (West == West::Up) return 3117;
+ else if (West == West::Side) return 3118;
+ else return 3119;
+ else if (Power == 6)
+ if (South == South::Up)
+ if (West == West::Up) return 3120;
+ else if (West == West::Side) return 3121;
+ else return 3122;
+ else if (South == South::Side)
+ if (West == West::Up) return 3123;
+ else if (West == West::Side) return 3124;
+ else return 3125;
+ else
+ if (West == West::Up) return 3126;
+ else if (West == West::Side) return 3127;
+ else return 3128;
+ else if (Power == 7)
+ if (South == South::Up)
+ if (West == West::Up) return 3129;
+ else if (West == West::Side) return 3130;
+ else return 3131;
+ else if (South == South::Side)
+ if (West == West::Up) return 3132;
+ else if (West == West::Side) return 3133;
+ else return 3134;
+ else
+ if (West == West::Up) return 3135;
+ else if (West == West::Side) return 3136;
+ else return 3137;
+ else if (Power == 8)
+ if (South == South::Up)
+ if (West == West::Up) return 3138;
+ else if (West == West::Side) return 3139;
+ else return 3140;
+ else if (South == South::Side)
+ if (West == West::Up) return 3141;
+ else if (West == West::Side) return 3142;
+ else return 3143;
+ else
+ if (West == West::Up) return 3144;
+ else if (West == West::Side) return 3145;
+ else return 3146;
+ else if (Power == 9)
+ if (South == South::Up)
+ if (West == West::Up) return 3147;
+ else if (West == West::Side) return 3148;
+ else return 3149;
+ else if (South == South::Side)
+ if (West == West::Up) return 3150;
+ else if (West == West::Side) return 3151;
+ else return 3152;
+ else
+ if (West == West::Up) return 3153;
+ else if (West == West::Side) return 3154;
+ else return 3155;
+ else if (Power == 10)
+ if (South == South::Up)
+ if (West == West::Up) return 3156;
+ else if (West == West::Side) return 3157;
+ else return 3158;
+ else if (South == South::Side)
+ if (West == West::Up) return 3159;
+ else if (West == West::Side) return 3160;
+ else return 3161;
+ else
+ if (West == West::Up) return 3162;
+ else if (West == West::Side) return 3163;
+ else return 3164;
+ else if (Power == 11)
+ if (South == South::Up)
+ if (West == West::Up) return 3165;
+ else if (West == West::Side) return 3166;
+ else return 3167;
+ else if (South == South::Side)
+ if (West == West::Up) return 3168;
+ else if (West == West::Side) return 3169;
+ else return 3170;
+ else
+ if (West == West::Up) return 3171;
+ else if (West == West::Side) return 3172;
+ else return 3173;
+ else if (Power == 12)
+ if (South == South::Up)
+ if (West == West::Up) return 3174;
+ else if (West == West::Side) return 3175;
+ else return 3176;
+ else if (South == South::Side)
+ if (West == West::Up) return 3177;
+ else if (West == West::Side) return 3178;
+ else return 3179;
+ else
+ if (West == West::Up) return 3180;
+ else if (West == West::Side) return 3181;
+ else return 3182;
+ else if (Power == 13)
+ if (South == South::Up)
+ if (West == West::Up) return 3183;
+ else if (West == West::Side) return 3184;
+ else return 3185;
+ else if (South == South::Side)
+ if (West == West::Up) return 3186;
+ else if (West == West::Side) return 3187;
+ else return 3188;
+ else
+ if (West == West::Up) return 3189;
+ else if (West == West::Side) return 3190;
+ else return 3191;
+ else if (Power == 14)
+ if (South == South::Up)
+ if (West == West::Up) return 3192;
+ else if (West == West::Side) return 3193;
+ else return 3194;
+ else if (South == South::Side)
+ if (West == West::Up) return 3195;
+ else if (West == West::Side) return 3196;
+ else return 3197;
+ else
+ if (West == West::Up) return 3198;
+ else if (West == West::Side) return 3199;
+ else return 3200;
+ else
+ if (South == South::Up)
+ if (West == West::Up) return 3201;
+ else if (West == West::Side) return 3202;
+ else return 3203;
+ else if (South == South::Side)
+ if (West == West::Up) return 3204;
+ else if (West == West::Side) return 3205;
+ else return 3206;
+ else
+ if (West == West::Up) return 3207;
+ else if (West == West::Side) return 3208;
+ else return 3209;
+ else
+ if (Power == 0)
+ if (South == South::Up)
+ if (West == West::Up) return 3210;
+ else if (West == West::Side) return 3211;
+ else return 3212;
+ else if (South == South::Side)
+ if (West == West::Up) return 3213;
+ else if (West == West::Side) return 3214;
+ else return 3215;
+ else
+ if (West == West::Up) return 3216;
+ else if (West == West::Side) return 3217;
+ else return 3218;
+ else if (Power == 1)
+ if (South == South::Up)
+ if (West == West::Up) return 3219;
+ else if (West == West::Side) return 3220;
+ else return 3221;
+ else if (South == South::Side)
+ if (West == West::Up) return 3222;
+ else if (West == West::Side) return 3223;
+ else return 3224;
+ else
+ if (West == West::Up) return 3225;
+ else if (West == West::Side) return 3226;
+ else return 3227;
+ else if (Power == 2)
+ if (South == South::Up)
+ if (West == West::Up) return 3228;
+ else if (West == West::Side) return 3229;
+ else return 3230;
+ else if (South == South::Side)
+ if (West == West::Up) return 3231;
+ else if (West == West::Side) return 3232;
+ else return 3233;
+ else
+ if (West == West::Up) return 3234;
+ else if (West == West::Side) return 3235;
+ else return 3236;
+ else if (Power == 3)
+ if (South == South::Up)
+ if (West == West::Up) return 3237;
+ else if (West == West::Side) return 3238;
+ else return 3239;
+ else if (South == South::Side)
+ if (West == West::Up) return 3240;
+ else if (West == West::Side) return 3241;
+ else return 3242;
+ else
+ if (West == West::Up) return 3243;
+ else if (West == West::Side) return 3244;
+ else return 3245;
+ else if (Power == 4)
+ if (South == South::Up)
+ if (West == West::Up) return 3246;
+ else if (West == West::Side) return 3247;
+ else return 3248;
+ else if (South == South::Side)
+ if (West == West::Up) return 3249;
+ else if (West == West::Side) return 3250;
+ else return 3251;
+ else
+ if (West == West::Up) return 3252;
+ else if (West == West::Side) return 3253;
+ else return 3254;
+ else if (Power == 5)
+ if (South == South::Up)
+ if (West == West::Up) return 3255;
+ else if (West == West::Side) return 3256;
+ else return 3257;
+ else if (South == South::Side)
+ if (West == West::Up) return 3258;
+ else if (West == West::Side) return 3259;
+ else return 3260;
+ else
+ if (West == West::Up) return 3261;
+ else if (West == West::Side) return 3262;
+ else return 3263;
+ else if (Power == 6)
+ if (South == South::Up)
+ if (West == West::Up) return 3264;
+ else if (West == West::Side) return 3265;
+ else return 3266;
+ else if (South == South::Side)
+ if (West == West::Up) return 3267;
+ else if (West == West::Side) return 3268;
+ else return 3269;
+ else
+ if (West == West::Up) return 3270;
+ else if (West == West::Side) return 3271;
+ else return 3272;
+ else if (Power == 7)
+ if (South == South::Up)
+ if (West == West::Up) return 3273;
+ else if (West == West::Side) return 3274;
+ else return 3275;
+ else if (South == South::Side)
+ if (West == West::Up) return 3276;
+ else if (West == West::Side) return 3277;
+ else return 3278;
+ else
+ if (West == West::Up) return 3279;
+ else if (West == West::Side) return 3280;
+ else return 3281;
+ else if (Power == 8)
+ if (South == South::Up)
+ if (West == West::Up) return 3282;
+ else if (West == West::Side) return 3283;
+ else return 3284;
+ else if (South == South::Side)
+ if (West == West::Up) return 3285;
+ else if (West == West::Side) return 3286;
+ else return 3287;
+ else
+ if (West == West::Up) return 3288;
+ else if (West == West::Side) return 3289;
+ else return 3290;
+ else if (Power == 9)
+ if (South == South::Up)
+ if (West == West::Up) return 3291;
+ else if (West == West::Side) return 3292;
+ else return 3293;
+ else if (South == South::Side)
+ if (West == West::Up) return 3294;
+ else if (West == West::Side) return 3295;
+ else return 3296;
+ else
+ if (West == West::Up) return 3297;
+ else if (West == West::Side) return 3298;
+ else return 3299;
+ else if (Power == 10)
+ if (South == South::Up)
+ if (West == West::Up) return 3300;
+ else if (West == West::Side) return 3301;
+ else return 3302;
+ else if (South == South::Side)
+ if (West == West::Up) return 3303;
+ else if (West == West::Side) return 3304;
+ else return 3305;
+ else
+ if (West == West::Up) return 3306;
+ else if (West == West::Side) return 3307;
+ else return 3308;
+ else if (Power == 11)
+ if (South == South::Up)
+ if (West == West::Up) return 3309;
+ else if (West == West::Side) return 3310;
+ else return 3311;
+ else if (South == South::Side)
+ if (West == West::Up) return 3312;
+ else if (West == West::Side) return 3313;
+ else return 3314;
+ else
+ if (West == West::Up) return 3315;
+ else if (West == West::Side) return 3316;
+ else return 3317;
+ else if (Power == 12)
+ if (South == South::Up)
+ if (West == West::Up) return 3318;
+ else if (West == West::Side) return 3319;
+ else return 3320;
+ else if (South == South::Side)
+ if (West == West::Up) return 3321;
+ else if (West == West::Side) return 3322;
+ else return 3323;
+ else
+ if (West == West::Up) return 3324;
+ else if (West == West::Side) return 3325;
+ else return 3326;
+ else if (Power == 13)
+ if (South == South::Up)
+ if (West == West::Up) return 3327;
+ else if (West == West::Side) return 3328;
+ else return 3329;
+ else if (South == South::Side)
+ if (West == West::Up) return 3330;
+ else if (West == West::Side) return 3331;
+ else return 3332;
+ else
+ if (West == West::Up) return 3333;
+ else if (West == West::Side) return 3334;
+ else return 3335;
+ else if (Power == 14)
+ if (South == South::Up)
+ if (West == West::Up) return 3336;
+ else if (West == West::Side) return 3337;
+ else return 3338;
+ else if (South == South::Side)
+ if (West == West::Up) return 3339;
+ else if (West == West::Side) return 3340;
+ else return 3341;
+ else
+ if (West == West::Up) return 3342;
+ else if (West == West::Side) return 3343;
+ else return 3344;
+ else
+ if (South == South::Up)
+ if (West == West::Up) return 3345;
+ else if (West == West::Side) return 3346;
+ else return 3347;
+ else if (South == South::Side)
+ if (West == West::Up) return 3348;
+ else if (West == West::Side) return 3349;
+ else return 3350;
+ else
+ if (West == West::Up) return 3351;
+ else if (West == West::Side) return 3352;
+ else return 3353;
+ }
+ BlockState RedstoneWire();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ unsigned char Power(BlockState Block);
+ enum South South(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace Repeater
+ {
+ constexpr BlockState Repeater(const unsigned char Delay, const eBlockFace Facing, const bool Locked, const bool Powered)
+ {
+ if (Delay == 1)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Locked)
+ if (Powered) return 4031;
+ else return 4032;
+ else
+ if (Powered) return 4033;
+ else return 4034;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Locked)
+ if (Powered) return 4035;
+ else return 4036;
+ else
+ if (Powered) return 4037;
+ else return 4038;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Locked)
+ if (Powered) return 4039;
+ else return 4040;
+ else
+ if (Powered) return 4041;
+ else return 4042;
+ else
+ if (Locked)
+ if (Powered) return 4043;
+ else return 4044;
+ else
+ if (Powered) return 4045;
+ else return 4046;
+ else if (Delay == 2)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Locked)
+ if (Powered) return 4047;
+ else return 4048;
+ else
+ if (Powered) return 4049;
+ else return 4050;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Locked)
+ if (Powered) return 4051;
+ else return 4052;
+ else
+ if (Powered) return 4053;
+ else return 4054;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Locked)
+ if (Powered) return 4055;
+ else return 4056;
+ else
+ if (Powered) return 4057;
+ else return 4058;
+ else
+ if (Locked)
+ if (Powered) return 4059;
+ else return 4060;
+ else
+ if (Powered) return 4061;
+ else return 4062;
+ else if (Delay == 3)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Locked)
+ if (Powered) return 4063;
+ else return 4064;
+ else
+ if (Powered) return 4065;
+ else return 4066;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Locked)
+ if (Powered) return 4067;
+ else return 4068;
+ else
+ if (Powered) return 4069;
+ else return 4070;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Locked)
+ if (Powered) return 4071;
+ else return 4072;
+ else
+ if (Powered) return 4073;
+ else return 4074;
+ else
+ if (Locked)
+ if (Powered) return 4075;
+ else return 4076;
+ else
+ if (Powered) return 4077;
+ else return 4078;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Locked)
+ if (Powered) return 4079;
+ else return 4080;
+ else
+ if (Powered) return 4081;
+ else return 4082;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Locked)
+ if (Powered) return 4083;
+ else return 4084;
+ else
+ if (Powered) return 4085;
+ else return 4086;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Locked)
+ if (Powered) return 4087;
+ else return 4088;
+ else
+ if (Powered) return 4089;
+ else return 4090;
+ else
+ if (Locked)
+ if (Powered) return 4091;
+ else return 4092;
+ else
+ if (Powered) return 4093;
+ else return 4094;
+ }
+ BlockState Repeater();
+ unsigned char Delay(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Locked(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace RepeatingCommandBlock
+ {
+ constexpr BlockState RepeatingCommandBlock(const bool Conditional, const eBlockFace Facing)
+ {
+ if (Conditional)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9225;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9226;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9227;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9228;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9229;
+ else return 9230;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9231;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9232;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9233;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9234;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9235;
+ else return 9236;
+ }
+ BlockState RepeatingCommandBlock();
+ bool Conditional(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace RespawnAnchor
+ {
+ constexpr BlockState RespawnAnchor(const unsigned char Charges)
+ {
+ if (Charges == 0) return 15829;
+ else if (Charges == 1) return 15830;
+ else if (Charges == 2) return 15831;
+ else if (Charges == 3) return 15832;
+ else return 15833;
+ }
+ BlockState RespawnAnchor();
+ unsigned char Charges(BlockState Block);
+ }
+ namespace RoseBush
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ constexpr BlockState RoseBush(const enum Half Half)
+ {
+ if (Half == Half::Upper) return 7889;
+ else return 7890;
+ }
+ BlockState RoseBush();
+ enum Half Half(BlockState Block);
+ }
+ namespace Sand
+ {
+ constexpr BlockState Sand()
+ {
+ return 66;
+ }
+ }
+ namespace Sandstone
+ {
+ constexpr BlockState Sandstone()
+ {
+ return 246;
+ }
+ }
+ namespace SandstoneSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState SandstoneSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8349;
+ else if (Type == Type::Bottom) return 8351;
+ else return 8353;
+ }
+ BlockState SandstoneSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace SandstoneStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState SandstoneStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5171;
+ else if (Shape == Shape::InnerLeft) return 5173;
+ else if (Shape == Shape::InnerRight) return 5175;
+ else if (Shape == Shape::OuterLeft) return 5177;
+ else return 5179;
+ else
+ if (Shape == Shape::Straight) return 5181;
+ else if (Shape == Shape::InnerLeft) return 5183;
+ else if (Shape == Shape::InnerRight) return 5185;
+ else if (Shape == Shape::OuterLeft) return 5187;
+ else return 5189;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5191;
+ else if (Shape == Shape::InnerLeft) return 5193;
+ else if (Shape == Shape::InnerRight) return 5195;
+ else if (Shape == Shape::OuterLeft) return 5197;
+ else return 5199;
+ else
+ if (Shape == Shape::Straight) return 5201;
+ else if (Shape == Shape::InnerLeft) return 5203;
+ else if (Shape == Shape::InnerRight) return 5205;
+ else if (Shape == Shape::OuterLeft) return 5207;
+ else return 5209;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5211;
+ else if (Shape == Shape::InnerLeft) return 5213;
+ else if (Shape == Shape::InnerRight) return 5215;
+ else if (Shape == Shape::OuterLeft) return 5217;
+ else return 5219;
+ else
+ if (Shape == Shape::Straight) return 5221;
+ else if (Shape == Shape::InnerLeft) return 5223;
+ else if (Shape == Shape::InnerRight) return 5225;
+ else if (Shape == Shape::OuterLeft) return 5227;
+ else return 5229;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5231;
+ else if (Shape == Shape::InnerLeft) return 5233;
+ else if (Shape == Shape::InnerRight) return 5235;
+ else if (Shape == Shape::OuterLeft) return 5237;
+ else return 5239;
+ else
+ if (Shape == Shape::Straight) return 5241;
+ else if (Shape == Shape::InnerLeft) return 5243;
+ else if (Shape == Shape::InnerRight) return 5245;
+ else if (Shape == Shape::OuterLeft) return 5247;
+ else return 5249;
+ }
+ BlockState SandstoneStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace SandstoneWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState SandstoneWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13786;
+ else if (West == West::Low) return 13787;
+ else return 13788;
+ else
+ if (West == West::None) return 13792;
+ else if (West == West::Low) return 13793;
+ else return 13794;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13798;
+ else if (West == West::Low) return 13799;
+ else return 13800;
+ else
+ if (West == West::None) return 13804;
+ else if (West == West::Low) return 13805;
+ else return 13806;
+ else
+ if (Up)
+ if (West == West::None) return 13810;
+ else if (West == West::Low) return 13811;
+ else return 13812;
+ else
+ if (West == West::None) return 13816;
+ else if (West == West::Low) return 13817;
+ else return 13818;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13822;
+ else if (West == West::Low) return 13823;
+ else return 13824;
+ else
+ if (West == West::None) return 13828;
+ else if (West == West::Low) return 13829;
+ else return 13830;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13834;
+ else if (West == West::Low) return 13835;
+ else return 13836;
+ else
+ if (West == West::None) return 13840;
+ else if (West == West::Low) return 13841;
+ else return 13842;
+ else
+ if (Up)
+ if (West == West::None) return 13846;
+ else if (West == West::Low) return 13847;
+ else return 13848;
+ else
+ if (West == West::None) return 13852;
+ else if (West == West::Low) return 13853;
+ else return 13854;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13858;
+ else if (West == West::Low) return 13859;
+ else return 13860;
+ else
+ if (West == West::None) return 13864;
+ else if (West == West::Low) return 13865;
+ else return 13866;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13870;
+ else if (West == West::Low) return 13871;
+ else return 13872;
+ else
+ if (West == West::None) return 13876;
+ else if (West == West::Low) return 13877;
+ else return 13878;
+ else
+ if (Up)
+ if (West == West::None) return 13882;
+ else if (West == West::Low) return 13883;
+ else return 13884;
+ else
+ if (West == West::None) return 13888;
+ else if (West == West::Low) return 13889;
+ else return 13890;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13894;
+ else if (West == West::Low) return 13895;
+ else return 13896;
+ else
+ if (West == West::None) return 13900;
+ else if (West == West::Low) return 13901;
+ else return 13902;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13906;
+ else if (West == West::Low) return 13907;
+ else return 13908;
+ else
+ if (West == West::None) return 13912;
+ else if (West == West::Low) return 13913;
+ else return 13914;
+ else
+ if (Up)
+ if (West == West::None) return 13918;
+ else if (West == West::Low) return 13919;
+ else return 13920;
+ else
+ if (West == West::None) return 13924;
+ else if (West == West::Low) return 13925;
+ else return 13926;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13930;
+ else if (West == West::Low) return 13931;
+ else return 13932;
+ else
+ if (West == West::None) return 13936;
+ else if (West == West::Low) return 13937;
+ else return 13938;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13942;
+ else if (West == West::Low) return 13943;
+ else return 13944;
+ else
+ if (West == West::None) return 13948;
+ else if (West == West::Low) return 13949;
+ else return 13950;
+ else
+ if (Up)
+ if (West == West::None) return 13954;
+ else if (West == West::Low) return 13955;
+ else return 13956;
+ else
+ if (West == West::None) return 13960;
+ else if (West == West::Low) return 13961;
+ else return 13962;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 13966;
+ else if (West == West::Low) return 13967;
+ else return 13968;
+ else
+ if (West == West::None) return 13972;
+ else if (West == West::Low) return 13973;
+ else return 13974;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 13978;
+ else if (West == West::Low) return 13979;
+ else return 13980;
+ else
+ if (West == West::None) return 13984;
+ else if (West == West::Low) return 13985;
+ else return 13986;
+ else
+ if (Up)
+ if (West == West::None) return 13990;
+ else if (West == West::Low) return 13991;
+ else return 13992;
+ else
+ if (West == West::None) return 13996;
+ else if (West == West::Low) return 13997;
+ else return 13998;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14002;
+ else if (West == West::Low) return 14003;
+ else return 14004;
+ else
+ if (West == West::None) return 14008;
+ else if (West == West::Low) return 14009;
+ else return 14010;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14014;
+ else if (West == West::Low) return 14015;
+ else return 14016;
+ else
+ if (West == West::None) return 14020;
+ else if (West == West::Low) return 14021;
+ else return 14022;
+ else
+ if (Up)
+ if (West == West::None) return 14026;
+ else if (West == West::Low) return 14027;
+ else return 14028;
+ else
+ if (West == West::None) return 14032;
+ else if (West == West::Low) return 14033;
+ else return 14034;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14038;
+ else if (West == West::Low) return 14039;
+ else return 14040;
+ else
+ if (West == West::None) return 14044;
+ else if (West == West::Low) return 14045;
+ else return 14046;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14050;
+ else if (West == West::Low) return 14051;
+ else return 14052;
+ else
+ if (West == West::None) return 14056;
+ else if (West == West::Low) return 14057;
+ else return 14058;
+ else
+ if (Up)
+ if (West == West::None) return 14062;
+ else if (West == West::Low) return 14063;
+ else return 14064;
+ else
+ if (West == West::None) return 14068;
+ else if (West == West::Low) return 14069;
+ else return 14070;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 14074;
+ else if (West == West::Low) return 14075;
+ else return 14076;
+ else
+ if (West == West::None) return 14080;
+ else if (West == West::Low) return 14081;
+ else return 14082;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 14086;
+ else if (West == West::Low) return 14087;
+ else return 14088;
+ else
+ if (West == West::None) return 14092;
+ else if (West == West::Low) return 14093;
+ else return 14094;
+ else
+ if (Up)
+ if (West == West::None) return 14098;
+ else if (West == West::Low) return 14099;
+ else return 14100;
+ else
+ if (West == West::None) return 14104;
+ else if (West == West::Low) return 14105;
+ else return 14106;
+ }
+ BlockState SandstoneWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace Scaffolding
+ {
+ constexpr BlockState Scaffolding(const bool Bottom, const unsigned char Distance)
+ {
+ if (Bottom)
+ if (Distance == 0) return 14756;
+ else if (Distance == 1) return 14758;
+ else if (Distance == 2) return 14760;
+ else if (Distance == 3) return 14762;
+ else if (Distance == 4) return 14764;
+ else if (Distance == 5) return 14766;
+ else if (Distance == 6) return 14768;
+ else return 14770;
+ else
+ if (Distance == 0) return 14772;
+ else if (Distance == 1) return 14774;
+ else if (Distance == 2) return 14776;
+ else if (Distance == 3) return 14778;
+ else if (Distance == 4) return 14780;
+ else if (Distance == 5) return 14782;
+ else if (Distance == 6) return 14784;
+ else return 14786;
+ }
+ BlockState Scaffolding();
+ bool Bottom(BlockState Block);
+ unsigned char Distance(BlockState Block);
+ }
+ namespace SeaLantern
+ {
+ constexpr BlockState SeaLantern()
+ {
+ return 7862;
+ }
+ }
+ namespace SeaPickle
+ {
+ constexpr BlockState SeaPickle(const unsigned char Pickles)
+ {
+ if (Pickles == 1) return 9641;
+ else if (Pickles == 2) return 9643;
+ else if (Pickles == 3) return 9645;
+ else return 9647;
+ }
+ BlockState SeaPickle();
+ unsigned char Pickles(BlockState Block);
+ }
+ namespace Seagrass
+ {
+ constexpr BlockState Seagrass()
+ {
+ return 1345;
+ }
+ }
+ namespace Shroomlight
+ {
+ constexpr BlockState Shroomlight()
+ {
+ return 14989;
+ }
+ }
+ namespace ShulkerBox
+ {
+ constexpr BlockState ShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9272;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9273;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9274;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9275;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9276;
+ else return 9277;
+ }
+ BlockState ShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace SkeletonSkull
+ {
+ constexpr BlockState SkeletonSkull(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 6490;
+ else if (Rotation == 1) return 6491;
+ else if (Rotation == 2) return 6492;
+ else if (Rotation == 3) return 6493;
+ else if (Rotation == 4) return 6494;
+ else if (Rotation == 5) return 6495;
+ else if (Rotation == 6) return 6496;
+ else if (Rotation == 7) return 6497;
+ else if (Rotation == 8) return 6498;
+ else if (Rotation == 9) return 6499;
+ else if (Rotation == 10) return 6500;
+ else if (Rotation == 11) return 6501;
+ else if (Rotation == 12) return 6502;
+ else if (Rotation == 13) return 6503;
+ else if (Rotation == 14) return 6504;
+ else return 6505;
+ }
+ BlockState SkeletonSkull();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace SkeletonWallSkull
+ {
+ constexpr BlockState SkeletonWallSkull(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6506;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6507;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 6508;
+ else return 6509;
+ }
+ BlockState SkeletonWallSkull();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace SlimeBlock
+ {
+ constexpr BlockState SlimeBlock()
+ {
+ return 7535;
+ }
+ }
+ namespace SmithingTable
+ {
+ constexpr BlockState SmithingTable()
+ {
+ return 14849;
+ }
+ }
+ namespace Smoker
+ {
+ constexpr BlockState Smoker(const eBlockFace Facing, const bool Lit)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Lit) return 14803;
+ else return 14804;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Lit) return 14805;
+ else return 14806;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Lit) return 14807;
+ else return 14808;
+ else
+ if (Lit) return 14809;
+ else return 14810;
+ }
+ BlockState Smoker();
+ eBlockFace Facing(BlockState Block);
+ bool Lit(BlockState Block);
+ }
+ namespace SmoothQuartz
+ {
+ constexpr BlockState SmoothQuartz()
+ {
+ return 8416;
+ }
+ }
+ namespace SmoothQuartzSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState SmoothQuartzSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 10832;
+ else if (Type == Type::Bottom) return 10834;
+ else return 10836;
+ }
+ BlockState SmoothQuartzSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace SmoothQuartzStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState SmoothQuartzStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10310;
+ else if (Shape == Shape::InnerLeft) return 10312;
+ else if (Shape == Shape::InnerRight) return 10314;
+ else if (Shape == Shape::OuterLeft) return 10316;
+ else return 10318;
+ else
+ if (Shape == Shape::Straight) return 10320;
+ else if (Shape == Shape::InnerLeft) return 10322;
+ else if (Shape == Shape::InnerRight) return 10324;
+ else if (Shape == Shape::OuterLeft) return 10326;
+ else return 10328;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10330;
+ else if (Shape == Shape::InnerLeft) return 10332;
+ else if (Shape == Shape::InnerRight) return 10334;
+ else if (Shape == Shape::OuterLeft) return 10336;
+ else return 10338;
+ else
+ if (Shape == Shape::Straight) return 10340;
+ else if (Shape == Shape::InnerLeft) return 10342;
+ else if (Shape == Shape::InnerRight) return 10344;
+ else if (Shape == Shape::OuterLeft) return 10346;
+ else return 10348;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10350;
+ else if (Shape == Shape::InnerLeft) return 10352;
+ else if (Shape == Shape::InnerRight) return 10354;
+ else if (Shape == Shape::OuterLeft) return 10356;
+ else return 10358;
+ else
+ if (Shape == Shape::Straight) return 10360;
+ else if (Shape == Shape::InnerLeft) return 10362;
+ else if (Shape == Shape::InnerRight) return 10364;
+ else if (Shape == Shape::OuterLeft) return 10366;
+ else return 10368;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10370;
+ else if (Shape == Shape::InnerLeft) return 10372;
+ else if (Shape == Shape::InnerRight) return 10374;
+ else if (Shape == Shape::OuterLeft) return 10376;
+ else return 10378;
+ else
+ if (Shape == Shape::Straight) return 10380;
+ else if (Shape == Shape::InnerLeft) return 10382;
+ else if (Shape == Shape::InnerRight) return 10384;
+ else if (Shape == Shape::OuterLeft) return 10386;
+ else return 10388;
+ }
+ BlockState SmoothQuartzStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace SmoothRedSandstone
+ {
+ constexpr BlockState SmoothRedSandstone()
+ {
+ return 8417;
+ }
+ }
+ namespace SmoothRedSandstoneSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState SmoothRedSandstoneSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 10796;
+ else if (Type == Type::Bottom) return 10798;
+ else return 10800;
+ }
+ BlockState SmoothRedSandstoneSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace SmoothRedSandstoneStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState SmoothRedSandstoneStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9750;
+ else if (Shape == Shape::InnerLeft) return 9752;
+ else if (Shape == Shape::InnerRight) return 9754;
+ else if (Shape == Shape::OuterLeft) return 9756;
+ else return 9758;
+ else
+ if (Shape == Shape::Straight) return 9760;
+ else if (Shape == Shape::InnerLeft) return 9762;
+ else if (Shape == Shape::InnerRight) return 9764;
+ else if (Shape == Shape::OuterLeft) return 9766;
+ else return 9768;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9770;
+ else if (Shape == Shape::InnerLeft) return 9772;
+ else if (Shape == Shape::InnerRight) return 9774;
+ else if (Shape == Shape::OuterLeft) return 9776;
+ else return 9778;
+ else
+ if (Shape == Shape::Straight) return 9780;
+ else if (Shape == Shape::InnerLeft) return 9782;
+ else if (Shape == Shape::InnerRight) return 9784;
+ else if (Shape == Shape::OuterLeft) return 9786;
+ else return 9788;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9790;
+ else if (Shape == Shape::InnerLeft) return 9792;
+ else if (Shape == Shape::InnerRight) return 9794;
+ else if (Shape == Shape::OuterLeft) return 9796;
+ else return 9798;
+ else
+ if (Shape == Shape::Straight) return 9800;
+ else if (Shape == Shape::InnerLeft) return 9802;
+ else if (Shape == Shape::InnerRight) return 9804;
+ else if (Shape == Shape::OuterLeft) return 9806;
+ else return 9808;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 9810;
+ else if (Shape == Shape::InnerLeft) return 9812;
+ else if (Shape == Shape::InnerRight) return 9814;
+ else if (Shape == Shape::OuterLeft) return 9816;
+ else return 9818;
+ else
+ if (Shape == Shape::Straight) return 9820;
+ else if (Shape == Shape::InnerLeft) return 9822;
+ else if (Shape == Shape::InnerRight) return 9824;
+ else if (Shape == Shape::OuterLeft) return 9826;
+ else return 9828;
+ }
+ BlockState SmoothRedSandstoneStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace SmoothSandstone
+ {
+ constexpr BlockState SmoothSandstone()
+ {
+ return 8415;
+ }
+ }
+ namespace SmoothSandstoneSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState SmoothSandstoneSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 10826;
+ else if (Type == Type::Bottom) return 10828;
+ else return 10830;
+ }
+ BlockState SmoothSandstoneSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace SmoothSandstoneStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState SmoothSandstoneStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10230;
+ else if (Shape == Shape::InnerLeft) return 10232;
+ else if (Shape == Shape::InnerRight) return 10234;
+ else if (Shape == Shape::OuterLeft) return 10236;
+ else return 10238;
+ else
+ if (Shape == Shape::Straight) return 10240;
+ else if (Shape == Shape::InnerLeft) return 10242;
+ else if (Shape == Shape::InnerRight) return 10244;
+ else if (Shape == Shape::OuterLeft) return 10246;
+ else return 10248;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10250;
+ else if (Shape == Shape::InnerLeft) return 10252;
+ else if (Shape == Shape::InnerRight) return 10254;
+ else if (Shape == Shape::OuterLeft) return 10256;
+ else return 10258;
+ else
+ if (Shape == Shape::Straight) return 10260;
+ else if (Shape == Shape::InnerLeft) return 10262;
+ else if (Shape == Shape::InnerRight) return 10264;
+ else if (Shape == Shape::OuterLeft) return 10266;
+ else return 10268;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10270;
+ else if (Shape == Shape::InnerLeft) return 10272;
+ else if (Shape == Shape::InnerRight) return 10274;
+ else if (Shape == Shape::OuterLeft) return 10276;
+ else return 10278;
+ else
+ if (Shape == Shape::Straight) return 10280;
+ else if (Shape == Shape::InnerLeft) return 10282;
+ else if (Shape == Shape::InnerRight) return 10284;
+ else if (Shape == Shape::OuterLeft) return 10286;
+ else return 10288;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10290;
+ else if (Shape == Shape::InnerLeft) return 10292;
+ else if (Shape == Shape::InnerRight) return 10294;
+ else if (Shape == Shape::OuterLeft) return 10296;
+ else return 10298;
+ else
+ if (Shape == Shape::Straight) return 10300;
+ else if (Shape == Shape::InnerLeft) return 10302;
+ else if (Shape == Shape::InnerRight) return 10304;
+ else if (Shape == Shape::OuterLeft) return 10306;
+ else return 10308;
+ }
+ BlockState SmoothSandstoneStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace SmoothStone
+ {
+ constexpr BlockState SmoothStone()
+ {
+ return 8414;
+ }
+ }
+ namespace SmoothStoneSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState SmoothStoneSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8343;
+ else if (Type == Type::Bottom) return 8345;
+ else return 8347;
+ }
+ BlockState SmoothStoneSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace Snow
+ {
+ constexpr BlockState Snow(const unsigned char Layers)
+ {
+ if (Layers == 1) return 3921;
+ else if (Layers == 2) return 3922;
+ else if (Layers == 3) return 3923;
+ else if (Layers == 4) return 3924;
+ else if (Layers == 5) return 3925;
+ else if (Layers == 6) return 3926;
+ else if (Layers == 7) return 3927;
+ else return 3928;
+ }
+ BlockState Snow();
+ unsigned char Layers(BlockState Block);
+ }
+ namespace SnowBlock
+ {
+ constexpr BlockState SnowBlock()
+ {
+ return 3930;
+ }
+ }
+ namespace SoulCampfire
+ {
+ constexpr BlockState SoulCampfire(const eBlockFace Facing, const bool Lit, const bool SignalFire)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Lit)
+ if (SignalFire) return 14923;
+ else return 14925;
+ else
+ if (SignalFire) return 14927;
+ else return 14929;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Lit)
+ if (SignalFire) return 14931;
+ else return 14933;
+ else
+ if (SignalFire) return 14935;
+ else return 14937;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Lit)
+ if (SignalFire) return 14939;
+ else return 14941;
+ else
+ if (SignalFire) return 14943;
+ else return 14945;
+ else
+ if (Lit)
+ if (SignalFire) return 14947;
+ else return 14949;
+ else
+ if (SignalFire) return 14951;
+ else return 14953;
+ }
+ BlockState SoulCampfire();
+ eBlockFace Facing(BlockState Block);
+ bool Lit(BlockState Block);
+ bool SignalFire(BlockState Block);
+ }
+ namespace SoulFire
+ {
+ constexpr BlockState SoulFire()
+ {
+ return 1952;
+ }
+ }
+ namespace SoulLantern
+ {
+ constexpr BlockState SoulLantern(const bool Hanging)
+ {
+ if (Hanging) return 14888;
+ else return 14889;
+ }
+ BlockState SoulLantern();
+ bool Hanging(BlockState Block);
+ }
+ namespace SoulSand
+ {
+ constexpr BlockState SoulSand()
+ {
+ return 4000;
+ }
+ }
+ namespace SoulSoil
+ {
+ constexpr BlockState SoulSoil()
+ {
+ return 4001;
+ }
+ }
+ namespace SoulTorch
+ {
+ constexpr BlockState SoulTorch()
+ {
+ return 4008;
+ }
+ }
+ namespace SoulWallTorch
+ {
+ constexpr BlockState SoulWallTorch(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4009;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4010;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 4011;
+ else return 4012;
+ }
+ BlockState SoulWallTorch();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace Spawner
+ {
+ constexpr BlockState Spawner()
+ {
+ return 1953;
+ }
+ }
+ namespace Sponge
+ {
+ constexpr BlockState Sponge()
+ {
+ return 229;
+ }
+ }
+ namespace SpruceButton
+ {
+ enum class Face
+ {
+ Floor,
+ Wall,
+ Ceiling
+ };
+ constexpr BlockState SpruceButton(const enum Face Face, const eBlockFace Facing, const bool Powered)
+ {
+ if (Face == Face::Floor)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6370;
+ else return 6371;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6372;
+ else return 6373;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6374;
+ else return 6375;
+ else
+ if (Powered) return 6376;
+ else return 6377;
+ else if (Face == Face::Wall)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6378;
+ else return 6379;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6380;
+ else return 6381;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6382;
+ else return 6383;
+ else
+ if (Powered) return 6384;
+ else return 6385;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 6386;
+ else return 6387;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 6388;
+ else return 6389;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 6390;
+ else return 6391;
+ else
+ if (Powered) return 6392;
+ else return 6393;
+ }
+ BlockState SpruceButton();
+ enum Face Face(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace SpruceDoor
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ enum class Hinge
+ {
+ Left,
+ Right
+ };
+ constexpr BlockState SpruceDoor(const eBlockFace Facing, const enum Half Half, const enum Hinge Hinge, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8738;
+ else return 8739;
+ else
+ if (Powered) return 8740;
+ else return 8741;
+ else
+ if (Open)
+ if (Powered) return 8742;
+ else return 8743;
+ else
+ if (Powered) return 8744;
+ else return 8745;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8746;
+ else return 8747;
+ else
+ if (Powered) return 8748;
+ else return 8749;
+ else
+ if (Open)
+ if (Powered) return 8750;
+ else return 8751;
+ else
+ if (Powered) return 8752;
+ else return 8753;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8754;
+ else return 8755;
+ else
+ if (Powered) return 8756;
+ else return 8757;
+ else
+ if (Open)
+ if (Powered) return 8758;
+ else return 8759;
+ else
+ if (Powered) return 8760;
+ else return 8761;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8762;
+ else return 8763;
+ else
+ if (Powered) return 8764;
+ else return 8765;
+ else
+ if (Open)
+ if (Powered) return 8766;
+ else return 8767;
+ else
+ if (Powered) return 8768;
+ else return 8769;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8770;
+ else return 8771;
+ else
+ if (Powered) return 8772;
+ else return 8773;
+ else
+ if (Open)
+ if (Powered) return 8774;
+ else return 8775;
+ else
+ if (Powered) return 8776;
+ else return 8777;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8778;
+ else return 8779;
+ else
+ if (Powered) return 8780;
+ else return 8781;
+ else
+ if (Open)
+ if (Powered) return 8782;
+ else return 8783;
+ else
+ if (Powered) return 8784;
+ else return 8785;
+ else
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8786;
+ else return 8787;
+ else
+ if (Powered) return 8788;
+ else return 8789;
+ else
+ if (Open)
+ if (Powered) return 8790;
+ else return 8791;
+ else
+ if (Powered) return 8792;
+ else return 8793;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 8794;
+ else return 8795;
+ else
+ if (Powered) return 8796;
+ else return 8797;
+ else
+ if (Open)
+ if (Powered) return 8798;
+ else return 8799;
+ else
+ if (Powered) return 8800;
+ else return 8801;
+ }
+ BlockState SpruceDoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Hinge Hinge(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace SpruceFence
+ {
+ constexpr BlockState SpruceFence(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 8580;
+ else return 8581;
+ else
+ if (West) return 8584;
+ else return 8585;
+ else
+ if (South)
+ if (West) return 8588;
+ else return 8589;
+ else
+ if (West) return 8592;
+ else return 8593;
+ else
+ if (North)
+ if (South)
+ if (West) return 8596;
+ else return 8597;
+ else
+ if (West) return 8600;
+ else return 8601;
+ else
+ if (South)
+ if (West) return 8604;
+ else return 8605;
+ else
+ if (West) return 8608;
+ else return 8609;
+ }
+ BlockState SpruceFence();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace SpruceFenceGate
+ {
+ constexpr BlockState SpruceFenceGate(const eBlockFace Facing, const bool InWall, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8418;
+ else return 8419;
+ else
+ if (Powered) return 8420;
+ else return 8421;
+ else
+ if (Open)
+ if (Powered) return 8422;
+ else return 8423;
+ else
+ if (Powered) return 8424;
+ else return 8425;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8426;
+ else return 8427;
+ else
+ if (Powered) return 8428;
+ else return 8429;
+ else
+ if (Open)
+ if (Powered) return 8430;
+ else return 8431;
+ else
+ if (Powered) return 8432;
+ else return 8433;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 8434;
+ else return 8435;
+ else
+ if (Powered) return 8436;
+ else return 8437;
+ else
+ if (Open)
+ if (Powered) return 8438;
+ else return 8439;
+ else
+ if (Powered) return 8440;
+ else return 8441;
+ else
+ if (InWall)
+ if (Open)
+ if (Powered) return 8442;
+ else return 8443;
+ else
+ if (Powered) return 8444;
+ else return 8445;
+ else
+ if (Open)
+ if (Powered) return 8446;
+ else return 8447;
+ else
+ if (Powered) return 8448;
+ else return 8449;
+ }
+ BlockState SpruceFenceGate();
+ eBlockFace Facing(BlockState Block);
+ bool InWall(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace SpruceLeaves
+ {
+ constexpr BlockState SpruceLeaves(const unsigned char Distance, const bool Persistent)
+ {
+ if (Distance == 1)
+ if (Persistent) return 159;
+ else return 160;
+ else if (Distance == 2)
+ if (Persistent) return 161;
+ else return 162;
+ else if (Distance == 3)
+ if (Persistent) return 163;
+ else return 164;
+ else if (Distance == 4)
+ if (Persistent) return 165;
+ else return 166;
+ else if (Distance == 5)
+ if (Persistent) return 167;
+ else return 168;
+ else if (Distance == 6)
+ if (Persistent) return 169;
+ else return 170;
+ else
+ if (Persistent) return 171;
+ else return 172;
+ }
+ BlockState SpruceLeaves();
+ unsigned char Distance(BlockState Block);
+ bool Persistent(BlockState Block);
+ }
+ namespace SpruceLog
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState SpruceLog(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 76;
+ else if (Axis == Axis::Y) return 77;
+ else return 78;
+ }
+ BlockState SpruceLog();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace SprucePlanks
+ {
+ constexpr BlockState SprucePlanks()
+ {
+ return 16;
+ }
+ }
+ namespace SprucePressurePlate
+ {
+ constexpr BlockState SprucePressurePlate(const bool Powered)
+ {
+ if (Powered) return 3875;
+ else return 3876;
+ }
+ BlockState SprucePressurePlate();
+ bool Powered(BlockState Block);
+ }
+ namespace SpruceSapling
+ {
+ constexpr BlockState SpruceSapling(const unsigned char Stage)
+ {
+ if (Stage == 0) return 23;
+ else return 24;
+ }
+ BlockState SpruceSapling();
+ unsigned char Stage(BlockState Block);
+ }
+ namespace SpruceSign
+ {
+ constexpr BlockState SpruceSign(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 3414;
+ else if (Rotation == 1) return 3416;
+ else if (Rotation == 2) return 3418;
+ else if (Rotation == 3) return 3420;
+ else if (Rotation == 4) return 3422;
+ else if (Rotation == 5) return 3424;
+ else if (Rotation == 6) return 3426;
+ else if (Rotation == 7) return 3428;
+ else if (Rotation == 8) return 3430;
+ else if (Rotation == 9) return 3432;
+ else if (Rotation == 10) return 3434;
+ else if (Rotation == 11) return 3436;
+ else if (Rotation == 12) return 3438;
+ else if (Rotation == 13) return 3440;
+ else if (Rotation == 14) return 3442;
+ else return 3444;
+ }
+ BlockState SpruceSign();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace SpruceSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState SpruceSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8307;
+ else if (Type == Type::Bottom) return 8309;
+ else return 8311;
+ }
+ BlockState SpruceSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace SpruceStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState SpruceStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5405;
+ else if (Shape == Shape::InnerLeft) return 5407;
+ else if (Shape == Shape::InnerRight) return 5409;
+ else if (Shape == Shape::OuterLeft) return 5411;
+ else return 5413;
+ else
+ if (Shape == Shape::Straight) return 5415;
+ else if (Shape == Shape::InnerLeft) return 5417;
+ else if (Shape == Shape::InnerRight) return 5419;
+ else if (Shape == Shape::OuterLeft) return 5421;
+ else return 5423;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5425;
+ else if (Shape == Shape::InnerLeft) return 5427;
+ else if (Shape == Shape::InnerRight) return 5429;
+ else if (Shape == Shape::OuterLeft) return 5431;
+ else return 5433;
+ else
+ if (Shape == Shape::Straight) return 5435;
+ else if (Shape == Shape::InnerLeft) return 5437;
+ else if (Shape == Shape::InnerRight) return 5439;
+ else if (Shape == Shape::OuterLeft) return 5441;
+ else return 5443;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5445;
+ else if (Shape == Shape::InnerLeft) return 5447;
+ else if (Shape == Shape::InnerRight) return 5449;
+ else if (Shape == Shape::OuterLeft) return 5451;
+ else return 5453;
+ else
+ if (Shape == Shape::Straight) return 5455;
+ else if (Shape == Shape::InnerLeft) return 5457;
+ else if (Shape == Shape::InnerRight) return 5459;
+ else if (Shape == Shape::OuterLeft) return 5461;
+ else return 5463;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 5465;
+ else if (Shape == Shape::InnerLeft) return 5467;
+ else if (Shape == Shape::InnerRight) return 5469;
+ else if (Shape == Shape::OuterLeft) return 5471;
+ else return 5473;
+ else
+ if (Shape == Shape::Straight) return 5475;
+ else if (Shape == Shape::InnerLeft) return 5477;
+ else if (Shape == Shape::InnerRight) return 5479;
+ else if (Shape == Shape::OuterLeft) return 5481;
+ else return 5483;
+ }
+ BlockState SpruceStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace SpruceTrapdoor
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ constexpr BlockState SpruceTrapdoor(const eBlockFace Facing, const enum Half Half, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4176;
+ else return 4178;
+ else
+ if (Powered) return 4180;
+ else return 4182;
+ else
+ if (Open)
+ if (Powered) return 4184;
+ else return 4186;
+ else
+ if (Powered) return 4188;
+ else return 4190;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4192;
+ else return 4194;
+ else
+ if (Powered) return 4196;
+ else return 4198;
+ else
+ if (Open)
+ if (Powered) return 4200;
+ else return 4202;
+ else
+ if (Powered) return 4204;
+ else return 4206;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4208;
+ else return 4210;
+ else
+ if (Powered) return 4212;
+ else return 4214;
+ else
+ if (Open)
+ if (Powered) return 4216;
+ else return 4218;
+ else
+ if (Powered) return 4220;
+ else return 4222;
+ else
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 4224;
+ else return 4226;
+ else
+ if (Powered) return 4228;
+ else return 4230;
+ else
+ if (Open)
+ if (Powered) return 4232;
+ else return 4234;
+ else
+ if (Powered) return 4236;
+ else return 4238;
+ }
+ BlockState SpruceTrapdoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace SpruceWallSign
+ {
+ constexpr BlockState SpruceWallSign(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3744;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3746;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 3748;
+ else return 3750;
+ }
+ BlockState SpruceWallSign();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace SpruceWood
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState SpruceWood(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 112;
+ else if (Axis == Axis::Y) return 113;
+ else return 114;
+ }
+ BlockState SpruceWood();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StickyPiston
+ {
+ constexpr BlockState StickyPiston(const bool Extended, const eBlockFace Facing)
+ {
+ if (Extended)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 1329;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 1330;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 1331;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 1332;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 1333;
+ else return 1334;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 1335;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 1336;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 1337;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 1338;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 1339;
+ else return 1340;
+ }
+ BlockState StickyPiston();
+ bool Extended(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace Stone
+ {
+ constexpr BlockState Stone()
+ {
+ return 1;
+ }
+ }
+ namespace StoneBrickSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState StoneBrickSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8379;
+ else if (Type == Type::Bottom) return 8381;
+ else return 8383;
+ }
+ BlockState StoneBrickSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace StoneBrickStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState StoneBrickStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 4933;
+ else if (Shape == Shape::InnerLeft) return 4935;
+ else if (Shape == Shape::InnerRight) return 4937;
+ else if (Shape == Shape::OuterLeft) return 4939;
+ else return 4941;
+ else
+ if (Shape == Shape::Straight) return 4943;
+ else if (Shape == Shape::InnerLeft) return 4945;
+ else if (Shape == Shape::InnerRight) return 4947;
+ else if (Shape == Shape::OuterLeft) return 4949;
+ else return 4951;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 4953;
+ else if (Shape == Shape::InnerLeft) return 4955;
+ else if (Shape == Shape::InnerRight) return 4957;
+ else if (Shape == Shape::OuterLeft) return 4959;
+ else return 4961;
+ else
+ if (Shape == Shape::Straight) return 4963;
+ else if (Shape == Shape::InnerLeft) return 4965;
+ else if (Shape == Shape::InnerRight) return 4967;
+ else if (Shape == Shape::OuterLeft) return 4969;
+ else return 4971;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 4973;
+ else if (Shape == Shape::InnerLeft) return 4975;
+ else if (Shape == Shape::InnerRight) return 4977;
+ else if (Shape == Shape::OuterLeft) return 4979;
+ else return 4981;
+ else
+ if (Shape == Shape::Straight) return 4983;
+ else if (Shape == Shape::InnerLeft) return 4985;
+ else if (Shape == Shape::InnerRight) return 4987;
+ else if (Shape == Shape::OuterLeft) return 4989;
+ else return 4991;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 4993;
+ else if (Shape == Shape::InnerLeft) return 4995;
+ else if (Shape == Shape::InnerRight) return 4997;
+ else if (Shape == Shape::OuterLeft) return 4999;
+ else return 5001;
+ else
+ if (Shape == Shape::Straight) return 5003;
+ else if (Shape == Shape::InnerLeft) return 5005;
+ else if (Shape == Shape::InnerRight) return 5007;
+ else if (Shape == Shape::OuterLeft) return 5009;
+ else return 5011;
+ }
+ BlockState StoneBrickStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace StoneBrickWall
+ {
+ enum class East
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class North
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class South
+ {
+ None,
+ Low,
+ Tall
+ };
+ enum class West
+ {
+ None,
+ Low,
+ Tall
+ };
+ constexpr BlockState StoneBrickWall(const enum East East, const enum North North, const enum South South, const bool Up, const enum West West)
+ {
+ if (East == East::None)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12490;
+ else if (West == West::Low) return 12491;
+ else return 12492;
+ else
+ if (West == West::None) return 12496;
+ else if (West == West::Low) return 12497;
+ else return 12498;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12502;
+ else if (West == West::Low) return 12503;
+ else return 12504;
+ else
+ if (West == West::None) return 12508;
+ else if (West == West::Low) return 12509;
+ else return 12510;
+ else
+ if (Up)
+ if (West == West::None) return 12514;
+ else if (West == West::Low) return 12515;
+ else return 12516;
+ else
+ if (West == West::None) return 12520;
+ else if (West == West::Low) return 12521;
+ else return 12522;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12526;
+ else if (West == West::Low) return 12527;
+ else return 12528;
+ else
+ if (West == West::None) return 12532;
+ else if (West == West::Low) return 12533;
+ else return 12534;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12538;
+ else if (West == West::Low) return 12539;
+ else return 12540;
+ else
+ if (West == West::None) return 12544;
+ else if (West == West::Low) return 12545;
+ else return 12546;
+ else
+ if (Up)
+ if (West == West::None) return 12550;
+ else if (West == West::Low) return 12551;
+ else return 12552;
+ else
+ if (West == West::None) return 12556;
+ else if (West == West::Low) return 12557;
+ else return 12558;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12562;
+ else if (West == West::Low) return 12563;
+ else return 12564;
+ else
+ if (West == West::None) return 12568;
+ else if (West == West::Low) return 12569;
+ else return 12570;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12574;
+ else if (West == West::Low) return 12575;
+ else return 12576;
+ else
+ if (West == West::None) return 12580;
+ else if (West == West::Low) return 12581;
+ else return 12582;
+ else
+ if (Up)
+ if (West == West::None) return 12586;
+ else if (West == West::Low) return 12587;
+ else return 12588;
+ else
+ if (West == West::None) return 12592;
+ else if (West == West::Low) return 12593;
+ else return 12594;
+ else if (East == East::Low)
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12598;
+ else if (West == West::Low) return 12599;
+ else return 12600;
+ else
+ if (West == West::None) return 12604;
+ else if (West == West::Low) return 12605;
+ else return 12606;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12610;
+ else if (West == West::Low) return 12611;
+ else return 12612;
+ else
+ if (West == West::None) return 12616;
+ else if (West == West::Low) return 12617;
+ else return 12618;
+ else
+ if (Up)
+ if (West == West::None) return 12622;
+ else if (West == West::Low) return 12623;
+ else return 12624;
+ else
+ if (West == West::None) return 12628;
+ else if (West == West::Low) return 12629;
+ else return 12630;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12634;
+ else if (West == West::Low) return 12635;
+ else return 12636;
+ else
+ if (West == West::None) return 12640;
+ else if (West == West::Low) return 12641;
+ else return 12642;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12646;
+ else if (West == West::Low) return 12647;
+ else return 12648;
+ else
+ if (West == West::None) return 12652;
+ else if (West == West::Low) return 12653;
+ else return 12654;
+ else
+ if (Up)
+ if (West == West::None) return 12658;
+ else if (West == West::Low) return 12659;
+ else return 12660;
+ else
+ if (West == West::None) return 12664;
+ else if (West == West::Low) return 12665;
+ else return 12666;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12670;
+ else if (West == West::Low) return 12671;
+ else return 12672;
+ else
+ if (West == West::None) return 12676;
+ else if (West == West::Low) return 12677;
+ else return 12678;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12682;
+ else if (West == West::Low) return 12683;
+ else return 12684;
+ else
+ if (West == West::None) return 12688;
+ else if (West == West::Low) return 12689;
+ else return 12690;
+ else
+ if (Up)
+ if (West == West::None) return 12694;
+ else if (West == West::Low) return 12695;
+ else return 12696;
+ else
+ if (West == West::None) return 12700;
+ else if (West == West::Low) return 12701;
+ else return 12702;
+ else
+ if (North == North::None)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12706;
+ else if (West == West::Low) return 12707;
+ else return 12708;
+ else
+ if (West == West::None) return 12712;
+ else if (West == West::Low) return 12713;
+ else return 12714;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12718;
+ else if (West == West::Low) return 12719;
+ else return 12720;
+ else
+ if (West == West::None) return 12724;
+ else if (West == West::Low) return 12725;
+ else return 12726;
+ else
+ if (Up)
+ if (West == West::None) return 12730;
+ else if (West == West::Low) return 12731;
+ else return 12732;
+ else
+ if (West == West::None) return 12736;
+ else if (West == West::Low) return 12737;
+ else return 12738;
+ else if (North == North::Low)
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12742;
+ else if (West == West::Low) return 12743;
+ else return 12744;
+ else
+ if (West == West::None) return 12748;
+ else if (West == West::Low) return 12749;
+ else return 12750;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12754;
+ else if (West == West::Low) return 12755;
+ else return 12756;
+ else
+ if (West == West::None) return 12760;
+ else if (West == West::Low) return 12761;
+ else return 12762;
+ else
+ if (Up)
+ if (West == West::None) return 12766;
+ else if (West == West::Low) return 12767;
+ else return 12768;
+ else
+ if (West == West::None) return 12772;
+ else if (West == West::Low) return 12773;
+ else return 12774;
+ else
+ if (South == South::None)
+ if (Up)
+ if (West == West::None) return 12778;
+ else if (West == West::Low) return 12779;
+ else return 12780;
+ else
+ if (West == West::None) return 12784;
+ else if (West == West::Low) return 12785;
+ else return 12786;
+ else if (South == South::Low)
+ if (Up)
+ if (West == West::None) return 12790;
+ else if (West == West::Low) return 12791;
+ else return 12792;
+ else
+ if (West == West::None) return 12796;
+ else if (West == West::Low) return 12797;
+ else return 12798;
+ else
+ if (Up)
+ if (West == West::None) return 12802;
+ else if (West == West::Low) return 12803;
+ else return 12804;
+ else
+ if (West == West::None) return 12808;
+ else if (West == West::Low) return 12809;
+ else return 12810;
+ }
+ BlockState StoneBrickWall();
+ enum East East(BlockState Block);
+ enum North North(BlockState Block);
+ enum South South(BlockState Block);
+ bool Up(BlockState Block);
+ enum West West(BlockState Block);
+ }
+ namespace StoneBricks
+ {
+ constexpr BlockState StoneBricks()
+ {
+ return 4495;
+ }
+ }
+ namespace StoneButton
+ {
+ enum class Face
+ {
+ Floor,
+ Wall,
+ Ceiling
+ };
+ constexpr BlockState StoneButton(const enum Face Face, const eBlockFace Facing, const bool Powered)
+ {
+ if (Face == Face::Floor)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 3897;
+ else return 3898;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 3899;
+ else return 3900;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 3901;
+ else return 3902;
+ else
+ if (Powered) return 3903;
+ else return 3904;
+ else if (Face == Face::Wall)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 3905;
+ else return 3906;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 3907;
+ else return 3908;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 3909;
+ else return 3910;
+ else
+ if (Powered) return 3911;
+ else return 3912;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 3913;
+ else return 3914;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 3915;
+ else return 3916;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 3917;
+ else return 3918;
+ else
+ if (Powered) return 3919;
+ else return 3920;
+ }
+ BlockState StoneButton();
+ enum Face Face(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace StonePressurePlate
+ {
+ constexpr BlockState StonePressurePlate(const bool Powered)
+ {
+ if (Powered) return 3807;
+ else return 3808;
+ }
+ BlockState StonePressurePlate();
+ bool Powered(BlockState Block);
+ }
+ namespace StoneSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState StoneSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 8337;
+ else if (Type == Type::Bottom) return 8339;
+ else return 8341;
+ }
+ BlockState StoneSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace StoneStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState StoneStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10150;
+ else if (Shape == Shape::InnerLeft) return 10152;
+ else if (Shape == Shape::InnerRight) return 10154;
+ else if (Shape == Shape::OuterLeft) return 10156;
+ else return 10158;
+ else
+ if (Shape == Shape::Straight) return 10160;
+ else if (Shape == Shape::InnerLeft) return 10162;
+ else if (Shape == Shape::InnerRight) return 10164;
+ else if (Shape == Shape::OuterLeft) return 10166;
+ else return 10168;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10170;
+ else if (Shape == Shape::InnerLeft) return 10172;
+ else if (Shape == Shape::InnerRight) return 10174;
+ else if (Shape == Shape::OuterLeft) return 10176;
+ else return 10178;
+ else
+ if (Shape == Shape::Straight) return 10180;
+ else if (Shape == Shape::InnerLeft) return 10182;
+ else if (Shape == Shape::InnerRight) return 10184;
+ else if (Shape == Shape::OuterLeft) return 10186;
+ else return 10188;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10190;
+ else if (Shape == Shape::InnerLeft) return 10192;
+ else if (Shape == Shape::InnerRight) return 10194;
+ else if (Shape == Shape::OuterLeft) return 10196;
+ else return 10198;
+ else
+ if (Shape == Shape::Straight) return 10200;
+ else if (Shape == Shape::InnerLeft) return 10202;
+ else if (Shape == Shape::InnerRight) return 10204;
+ else if (Shape == Shape::OuterLeft) return 10206;
+ else return 10208;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 10210;
+ else if (Shape == Shape::InnerLeft) return 10212;
+ else if (Shape == Shape::InnerRight) return 10214;
+ else if (Shape == Shape::OuterLeft) return 10216;
+ else return 10218;
+ else
+ if (Shape == Shape::Straight) return 10220;
+ else if (Shape == Shape::InnerLeft) return 10222;
+ else if (Shape == Shape::InnerRight) return 10224;
+ else if (Shape == Shape::OuterLeft) return 10226;
+ else return 10228;
+ }
+ BlockState StoneStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace Stonecutter
+ {
+ constexpr BlockState Stonecutter(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 14850;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 14851;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 14852;
+ else return 14853;
+ }
+ BlockState Stonecutter();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace StrippedAcaciaLog
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedAcaciaLog(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 100;
+ else if (Axis == Axis::Y) return 101;
+ else return 102;
+ }
+ BlockState StrippedAcaciaLog();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedAcaciaWood
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedAcaciaWood(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 139;
+ else if (Axis == Axis::Y) return 140;
+ else return 141;
+ }
+ BlockState StrippedAcaciaWood();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedBirchLog
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedBirchLog(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 94;
+ else if (Axis == Axis::Y) return 95;
+ else return 96;
+ }
+ BlockState StrippedBirchLog();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedBirchWood
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedBirchWood(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 133;
+ else if (Axis == Axis::Y) return 134;
+ else return 135;
+ }
+ BlockState StrippedBirchWood();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedCrimsonHyphae
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedCrimsonHyphae(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 14984;
+ else if (Axis == Axis::Y) return 14985;
+ else return 14986;
+ }
+ BlockState StrippedCrimsonHyphae();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedCrimsonStem
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedCrimsonStem(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 14978;
+ else if (Axis == Axis::Y) return 14979;
+ else return 14980;
+ }
+ BlockState StrippedCrimsonStem();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedDarkOakLog
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedDarkOakLog(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 103;
+ else if (Axis == Axis::Y) return 104;
+ else return 105;
+ }
+ BlockState StrippedDarkOakLog();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedDarkOakWood
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedDarkOakWood(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 142;
+ else if (Axis == Axis::Y) return 143;
+ else return 144;
+ }
+ BlockState StrippedDarkOakWood();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedJungleLog
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedJungleLog(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 97;
+ else if (Axis == Axis::Y) return 98;
+ else return 99;
+ }
+ BlockState StrippedJungleLog();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedJungleWood
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedJungleWood(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 136;
+ else if (Axis == Axis::Y) return 137;
+ else return 138;
+ }
+ BlockState StrippedJungleWood();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedOakLog
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedOakLog(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 106;
+ else if (Axis == Axis::Y) return 107;
+ else return 108;
+ }
+ BlockState StrippedOakLog();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedOakWood
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedOakWood(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 127;
+ else if (Axis == Axis::Y) return 128;
+ else return 129;
+ }
+ BlockState StrippedOakWood();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedSpruceLog
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedSpruceLog(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 91;
+ else if (Axis == Axis::Y) return 92;
+ else return 93;
+ }
+ BlockState StrippedSpruceLog();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedSpruceWood
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedSpruceWood(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 130;
+ else if (Axis == Axis::Y) return 131;
+ else return 132;
+ }
+ BlockState StrippedSpruceWood();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedWarpedHyphae
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedWarpedHyphae(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 14967;
+ else if (Axis == Axis::Y) return 14968;
+ else return 14969;
+ }
+ BlockState StrippedWarpedHyphae();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StrippedWarpedStem
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState StrippedWarpedStem(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 14961;
+ else if (Axis == Axis::Y) return 14962;
+ else return 14963;
+ }
+ BlockState StrippedWarpedStem();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace StructureBlock
+ {
+ enum class Mode
+ {
+ Save,
+ Load,
+ Corner,
+ Data
+ };
+ constexpr BlockState StructureBlock(const enum Mode Mode)
+ {
+ if (Mode == Mode::Save) return 15735;
+ else if (Mode == Mode::Load) return 15736;
+ else if (Mode == Mode::Corner) return 15737;
+ else return 15738;
+ }
+ BlockState StructureBlock();
+ enum Mode Mode(BlockState Block);
+ }
+ namespace StructureVoid
+ {
+ constexpr BlockState StructureVoid()
+ {
+ return 9259;
+ }
+ }
+ namespace SugarCane
+ {
+ constexpr BlockState SugarCane(const unsigned char Age)
+ {
+ if (Age == 0) return 3948;
+ else if (Age == 1) return 3949;
+ else if (Age == 2) return 3950;
+ else if (Age == 3) return 3951;
+ else if (Age == 4) return 3952;
+ else if (Age == 5) return 3953;
+ else if (Age == 6) return 3954;
+ else if (Age == 7) return 3955;
+ else if (Age == 8) return 3956;
+ else if (Age == 9) return 3957;
+ else if (Age == 10) return 3958;
+ else if (Age == 11) return 3959;
+ else if (Age == 12) return 3960;
+ else if (Age == 13) return 3961;
+ else if (Age == 14) return 3962;
+ else return 3963;
+ }
+ BlockState SugarCane();
+ unsigned char Age(BlockState Block);
+ }
+ namespace Sunflower
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ constexpr BlockState Sunflower(const enum Half Half)
+ {
+ if (Half == Half::Upper) return 7885;
+ else return 7886;
+ }
+ BlockState Sunflower();
+ enum Half Half(BlockState Block);
+ }
+ namespace SweetBerryBush
+ {
+ constexpr BlockState SweetBerryBush(const unsigned char Age)
+ {
+ if (Age == 0) return 14954;
+ else if (Age == 1) return 14955;
+ else if (Age == 2) return 14956;
+ else return 14957;
+ }
+ BlockState SweetBerryBush();
+ unsigned char Age(BlockState Block);
+ }
+ namespace TNT
+ {
+ constexpr BlockState TNT(const bool Unstable)
+ {
+ if (Unstable) return 1430;
+ else return 1431;
+ }
+ BlockState TNT();
+ bool Unstable(BlockState Block);
+ }
+ namespace TallGrass
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ constexpr BlockState TallGrass(const enum Half Half)
+ {
+ if (Half == Half::Upper) return 7893;
+ else return 7894;
+ }
+ BlockState TallGrass();
+ enum Half Half(BlockState Block);
+ }
+ namespace TallSeagrass
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ constexpr BlockState TallSeagrass(const enum Half Half)
+ {
+ if (Half == Half::Upper) return 1346;
+ else return 1347;
+ }
+ BlockState TallSeagrass();
+ enum Half Half(BlockState Block);
+ }
+ namespace Target
+ {
+ constexpr BlockState Target(const unsigned char Power)
+ {
+ if (Power == 0) return 15760;
+ else if (Power == 1) return 15761;
+ else if (Power == 2) return 15762;
+ else if (Power == 3) return 15763;
+ else if (Power == 4) return 15764;
+ else if (Power == 5) return 15765;
+ else if (Power == 6) return 15766;
+ else if (Power == 7) return 15767;
+ else if (Power == 8) return 15768;
+ else if (Power == 9) return 15769;
+ else if (Power == 10) return 15770;
+ else if (Power == 11) return 15771;
+ else if (Power == 12) return 15772;
+ else if (Power == 13) return 15773;
+ else if (Power == 14) return 15774;
+ else return 15775;
+ }
+ BlockState Target();
+ unsigned char Power(BlockState Block);
+ }
+ namespace Terracotta
+ {
+ constexpr BlockState Terracotta()
+ {
+ return 7882;
+ }
+ }
+ namespace Torch
+ {
+ constexpr BlockState Torch()
+ {
+ return 1435;
+ }
+ }
+ namespace TrappedChest
+ {
+ enum class Type
+ {
+ Single,
+ Left,
+ Right
+ };
+ constexpr BlockState TrappedChest(const eBlockFace Facing, const enum Type Type)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Type == Type::Single) return 6623;
+ else if (Type == Type::Left) return 6625;
+ else return 6627;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Type == Type::Single) return 6629;
+ else if (Type == Type::Left) return 6631;
+ else return 6633;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Type == Type::Single) return 6635;
+ else if (Type == Type::Left) return 6637;
+ else return 6639;
+ else
+ if (Type == Type::Single) return 6641;
+ else if (Type == Type::Left) return 6643;
+ else return 6645;
+ }
+ BlockState TrappedChest();
+ eBlockFace Facing(BlockState Block);
+ enum Type Type(BlockState Block);
+ }
+ namespace Tripwire
+ {
+ constexpr BlockState Tripwire(const bool Attached, const bool Disarmed, const bool East, const bool North, const bool Powered, const bool South, const bool West)
+ {
+ if (Attached)
+ if (Disarmed)
+ if (East)
+ if (North)
+ if (Powered)
+ if (South)
+ if (West) return 5275;
+ else return 5276;
+ else
+ if (West) return 5277;
+ else return 5278;
+ else
+ if (South)
+ if (West) return 5279;
+ else return 5280;
+ else
+ if (West) return 5281;
+ else return 5282;
+ else
+ if (Powered)
+ if (South)
+ if (West) return 5283;
+ else return 5284;
+ else
+ if (West) return 5285;
+ else return 5286;
+ else
+ if (South)
+ if (West) return 5287;
+ else return 5288;
+ else
+ if (West) return 5289;
+ else return 5290;
+ else
+ if (North)
+ if (Powered)
+ if (South)
+ if (West) return 5291;
+ else return 5292;
+ else
+ if (West) return 5293;
+ else return 5294;
+ else
+ if (South)
+ if (West) return 5295;
+ else return 5296;
+ else
+ if (West) return 5297;
+ else return 5298;
+ else
+ if (Powered)
+ if (South)
+ if (West) return 5299;
+ else return 5300;
+ else
+ if (West) return 5301;
+ else return 5302;
+ else
+ if (South)
+ if (West) return 5303;
+ else return 5304;
+ else
+ if (West) return 5305;
+ else return 5306;
+ else
+ if (East)
+ if (North)
+ if (Powered)
+ if (South)
+ if (West) return 5307;
+ else return 5308;
+ else
+ if (West) return 5309;
+ else return 5310;
+ else
+ if (South)
+ if (West) return 5311;
+ else return 5312;
+ else
+ if (West) return 5313;
+ else return 5314;
+ else
+ if (Powered)
+ if (South)
+ if (West) return 5315;
+ else return 5316;
+ else
+ if (West) return 5317;
+ else return 5318;
+ else
+ if (South)
+ if (West) return 5319;
+ else return 5320;
+ else
+ if (West) return 5321;
+ else return 5322;
+ else
+ if (North)
+ if (Powered)
+ if (South)
+ if (West) return 5323;
+ else return 5324;
+ else
+ if (West) return 5325;
+ else return 5326;
+ else
+ if (South)
+ if (West) return 5327;
+ else return 5328;
+ else
+ if (West) return 5329;
+ else return 5330;
+ else
+ if (Powered)
+ if (South)
+ if (West) return 5331;
+ else return 5332;
+ else
+ if (West) return 5333;
+ else return 5334;
+ else
+ if (South)
+ if (West) return 5335;
+ else return 5336;
+ else
+ if (West) return 5337;
+ else return 5338;
+ else
+ if (Disarmed)
+ if (East)
+ if (North)
+ if (Powered)
+ if (South)
+ if (West) return 5339;
+ else return 5340;
+ else
+ if (West) return 5341;
+ else return 5342;
+ else
+ if (South)
+ if (West) return 5343;
+ else return 5344;
+ else
+ if (West) return 5345;
+ else return 5346;
+ else
+ if (Powered)
+ if (South)
+ if (West) return 5347;
+ else return 5348;
+ else
+ if (West) return 5349;
+ else return 5350;
+ else
+ if (South)
+ if (West) return 5351;
+ else return 5352;
+ else
+ if (West) return 5353;
+ else return 5354;
+ else
+ if (North)
+ if (Powered)
+ if (South)
+ if (West) return 5355;
+ else return 5356;
+ else
+ if (West) return 5357;
+ else return 5358;
+ else
+ if (South)
+ if (West) return 5359;
+ else return 5360;
+ else
+ if (West) return 5361;
+ else return 5362;
+ else
+ if (Powered)
+ if (South)
+ if (West) return 5363;
+ else return 5364;
+ else
+ if (West) return 5365;
+ else return 5366;
+ else
+ if (South)
+ if (West) return 5367;
+ else return 5368;
+ else
+ if (West) return 5369;
+ else return 5370;
+ else
+ if (East)
+ if (North)
+ if (Powered)
+ if (South)
+ if (West) return 5371;
+ else return 5372;
+ else
+ if (West) return 5373;
+ else return 5374;
+ else
+ if (South)
+ if (West) return 5375;
+ else return 5376;
+ else
+ if (West) return 5377;
+ else return 5378;
+ else
+ if (Powered)
+ if (South)
+ if (West) return 5379;
+ else return 5380;
+ else
+ if (West) return 5381;
+ else return 5382;
+ else
+ if (South)
+ if (West) return 5383;
+ else return 5384;
+ else
+ if (West) return 5385;
+ else return 5386;
+ else
+ if (North)
+ if (Powered)
+ if (South)
+ if (West) return 5387;
+ else return 5388;
+ else
+ if (West) return 5389;
+ else return 5390;
+ else
+ if (South)
+ if (West) return 5391;
+ else return 5392;
+ else
+ if (West) return 5393;
+ else return 5394;
+ else
+ if (Powered)
+ if (South)
+ if (West) return 5395;
+ else return 5396;
+ else
+ if (West) return 5397;
+ else return 5398;
+ else
+ if (South)
+ if (West) return 5399;
+ else return 5400;
+ else
+ if (West) return 5401;
+ else return 5402;
+ }
+ BlockState Tripwire();
+ bool Attached(BlockState Block);
+ bool Disarmed(BlockState Block);
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool Powered(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace TripwireHook
+ {
+ constexpr BlockState TripwireHook(const bool Attached, const eBlockFace Facing, const bool Powered)
+ {
+ if (Attached)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 5259;
+ else return 5260;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 5261;
+ else return 5262;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 5263;
+ else return 5264;
+ else
+ if (Powered) return 5265;
+ else return 5266;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 5267;
+ else return 5268;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 5269;
+ else return 5270;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 5271;
+ else return 5272;
+ else
+ if (Powered) return 5273;
+ else return 5274;
+ }
+ BlockState TripwireHook();
+ bool Attached(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace TubeCoral
+ {
+ constexpr BlockState TubeCoral()
+ {
+ return 9531;
+ }
+ }
+ namespace TubeCoralBlock
+ {
+ constexpr BlockState TubeCoralBlock()
+ {
+ return 9515;
+ }
+ }
+ namespace TubeCoralFan
+ {
+ constexpr BlockState TubeCoralFan()
+ {
+ return 9551;
+ }
+ }
+ namespace TubeCoralWallFan
+ {
+ constexpr BlockState TubeCoralWallFan(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9601;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9603;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9605;
+ else return 9607;
+ }
+ BlockState TubeCoralWallFan();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace TurtleEgg
+ {
+ constexpr BlockState TurtleEgg(const unsigned char Eggs, const unsigned char Hatch)
+ {
+ if (Eggs == 1)
+ if (Hatch == 0) return 9498;
+ else if (Hatch == 1) return 9499;
+ else return 9500;
+ else if (Eggs == 2)
+ if (Hatch == 0) return 9501;
+ else if (Hatch == 1) return 9502;
+ else return 9503;
+ else if (Eggs == 3)
+ if (Hatch == 0) return 9504;
+ else if (Hatch == 1) return 9505;
+ else return 9506;
+ else
+ if (Hatch == 0) return 9507;
+ else if (Hatch == 1) return 9508;
+ else return 9509;
+ }
+ BlockState TurtleEgg();
+ unsigned char Eggs(BlockState Block);
+ unsigned char Hatch(BlockState Block);
+ }
+ namespace TwistingVines
+ {
+ constexpr BlockState TwistingVines(const unsigned char Age)
+ {
+ if (Age == 0) return 15017;
+ else if (Age == 1) return 15018;
+ else if (Age == 2) return 15019;
+ else if (Age == 3) return 15020;
+ else if (Age == 4) return 15021;
+ else if (Age == 5) return 15022;
+ else if (Age == 6) return 15023;
+ else if (Age == 7) return 15024;
+ else if (Age == 8) return 15025;
+ else if (Age == 9) return 15026;
+ else if (Age == 10) return 15027;
+ else if (Age == 11) return 15028;
+ else if (Age == 12) return 15029;
+ else if (Age == 13) return 15030;
+ else if (Age == 14) return 15031;
+ else if (Age == 15) return 15032;
+ else if (Age == 16) return 15033;
+ else if (Age == 17) return 15034;
+ else if (Age == 18) return 15035;
+ else if (Age == 19) return 15036;
+ else if (Age == 20) return 15037;
+ else if (Age == 21) return 15038;
+ else if (Age == 22) return 15039;
+ else if (Age == 23) return 15040;
+ else if (Age == 24) return 15041;
+ else return 15042;
+ }
+ BlockState TwistingVines();
+ unsigned char Age(BlockState Block);
+ }
+ namespace TwistingVinesPlant
+ {
+ constexpr BlockState TwistingVinesPlant()
+ {
+ return 15043;
+ }
+ }
+ namespace Vine
+ {
+ constexpr BlockState Vine(const bool East, const bool North, const bool South, const bool Up, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4788;
+ else return 4789;
+ else
+ if (West) return 4790;
+ else return 4791;
+ else
+ if (Up)
+ if (West) return 4792;
+ else return 4793;
+ else
+ if (West) return 4794;
+ else return 4795;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4796;
+ else return 4797;
+ else
+ if (West) return 4798;
+ else return 4799;
+ else
+ if (Up)
+ if (West) return 4800;
+ else return 4801;
+ else
+ if (West) return 4802;
+ else return 4803;
+ else
+ if (North)
+ if (South)
+ if (Up)
+ if (West) return 4804;
+ else return 4805;
+ else
+ if (West) return 4806;
+ else return 4807;
+ else
+ if (Up)
+ if (West) return 4808;
+ else return 4809;
+ else
+ if (West) return 4810;
+ else return 4811;
+ else
+ if (South)
+ if (Up)
+ if (West) return 4812;
+ else return 4813;
+ else
+ if (West) return 4814;
+ else return 4815;
+ else
+ if (Up)
+ if (West) return 4816;
+ else return 4817;
+ else
+ if (West) return 4818;
+ else return 4819;
+ }
+ BlockState Vine();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool Up(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace VoidAir
+ {
+ constexpr BlockState VoidAir()
+ {
+ return 9665;
+ }
+ }
+ namespace WallTorch
+ {
+ constexpr BlockState WallTorch(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 1436;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 1437;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 1438;
+ else return 1439;
+ }
+ BlockState WallTorch();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace WarpedButton
+ {
+ enum class Face
+ {
+ Floor,
+ Wall,
+ Ceiling
+ };
+ constexpr BlockState WarpedButton(const enum Face Face, const eBlockFace Facing, const bool Powered)
+ {
+ if (Face == Face::Floor)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 15503;
+ else return 15504;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 15505;
+ else return 15506;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 15507;
+ else return 15508;
+ else
+ if (Powered) return 15509;
+ else return 15510;
+ else if (Face == Face::Wall)
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 15511;
+ else return 15512;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 15513;
+ else return 15514;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 15515;
+ else return 15516;
+ else
+ if (Powered) return 15517;
+ else return 15518;
+ else
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Powered) return 15519;
+ else return 15520;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Powered) return 15521;
+ else return 15522;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Powered) return 15523;
+ else return 15524;
+ else
+ if (Powered) return 15525;
+ else return 15526;
+ }
+ BlockState WarpedButton();
+ enum Face Face(BlockState Block);
+ eBlockFace Facing(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace WarpedDoor
+ {
+ enum class Half
+ {
+ Upper,
+ Lower
+ };
+ enum class Hinge
+ {
+ Left,
+ Right
+ };
+ constexpr BlockState WarpedDoor(const eBlockFace Facing, const enum Half Half, const enum Hinge Hinge, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15591;
+ else return 15592;
+ else
+ if (Powered) return 15593;
+ else return 15594;
+ else
+ if (Open)
+ if (Powered) return 15595;
+ else return 15596;
+ else
+ if (Powered) return 15597;
+ else return 15598;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15599;
+ else return 15600;
+ else
+ if (Powered) return 15601;
+ else return 15602;
+ else
+ if (Open)
+ if (Powered) return 15603;
+ else return 15604;
+ else
+ if (Powered) return 15605;
+ else return 15606;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15607;
+ else return 15608;
+ else
+ if (Powered) return 15609;
+ else return 15610;
+ else
+ if (Open)
+ if (Powered) return 15611;
+ else return 15612;
+ else
+ if (Powered) return 15613;
+ else return 15614;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15615;
+ else return 15616;
+ else
+ if (Powered) return 15617;
+ else return 15618;
+ else
+ if (Open)
+ if (Powered) return 15619;
+ else return 15620;
+ else
+ if (Powered) return 15621;
+ else return 15622;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15623;
+ else return 15624;
+ else
+ if (Powered) return 15625;
+ else return 15626;
+ else
+ if (Open)
+ if (Powered) return 15627;
+ else return 15628;
+ else
+ if (Powered) return 15629;
+ else return 15630;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15631;
+ else return 15632;
+ else
+ if (Powered) return 15633;
+ else return 15634;
+ else
+ if (Open)
+ if (Powered) return 15635;
+ else return 15636;
+ else
+ if (Powered) return 15637;
+ else return 15638;
+ else
+ if (Half == Half::Upper)
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15639;
+ else return 15640;
+ else
+ if (Powered) return 15641;
+ else return 15642;
+ else
+ if (Open)
+ if (Powered) return 15643;
+ else return 15644;
+ else
+ if (Powered) return 15645;
+ else return 15646;
+ else
+ if (Hinge == Hinge::Left)
+ if (Open)
+ if (Powered) return 15647;
+ else return 15648;
+ else
+ if (Powered) return 15649;
+ else return 15650;
+ else
+ if (Open)
+ if (Powered) return 15651;
+ else return 15652;
+ else
+ if (Powered) return 15653;
+ else return 15654;
+ }
+ BlockState WarpedDoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Hinge Hinge(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace WarpedFence
+ {
+ constexpr BlockState WarpedFence(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 15097;
+ else return 15098;
+ else
+ if (West) return 15101;
+ else return 15102;
+ else
+ if (South)
+ if (West) return 15105;
+ else return 15106;
+ else
+ if (West) return 15109;
+ else return 15110;
+ else
+ if (North)
+ if (South)
+ if (West) return 15113;
+ else return 15114;
+ else
+ if (West) return 15117;
+ else return 15118;
+ else
+ if (South)
+ if (West) return 15121;
+ else return 15122;
+ else
+ if (West) return 15125;
+ else return 15126;
+ }
+ BlockState WarpedFence();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace WarpedFenceGate
+ {
+ constexpr BlockState WarpedFenceGate(const eBlockFace Facing, const bool InWall, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 15287;
+ else return 15288;
+ else
+ if (Powered) return 15289;
+ else return 15290;
+ else
+ if (Open)
+ if (Powered) return 15291;
+ else return 15292;
+ else
+ if (Powered) return 15293;
+ else return 15294;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (InWall)
+ if (Open)
+ if (Powered) return 15295;
+ else return 15296;
+ else
+ if (Powered) return 15297;
+ else return 15298;
+ else
+ if (Open)
+ if (Powered) return 15299;
+ else return 15300;
+ else
+ if (Powered) return 15301;
+ else return 15302;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (InWall)
+ if (Open)
+ if (Powered) return 15303;
+ else return 15304;
+ else
+ if (Powered) return 15305;
+ else return 15306;
+ else
+ if (Open)
+ if (Powered) return 15307;
+ else return 15308;
+ else
+ if (Powered) return 15309;
+ else return 15310;
+ else
+ if (InWall)
+ if (Open)
+ if (Powered) return 15311;
+ else return 15312;
+ else
+ if (Powered) return 15313;
+ else return 15314;
+ else
+ if (Open)
+ if (Powered) return 15315;
+ else return 15316;
+ else
+ if (Powered) return 15317;
+ else return 15318;
+ }
+ BlockState WarpedFenceGate();
+ eBlockFace Facing(BlockState Block);
+ bool InWall(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace WarpedFungus
+ {
+ constexpr BlockState WarpedFungus()
+ {
+ return 14971;
+ }
+ }
+ namespace WarpedHyphae
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState WarpedHyphae(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 14964;
+ else if (Axis == Axis::Y) return 14965;
+ else return 14966;
+ }
+ BlockState WarpedHyphae();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace WarpedNylium
+ {
+ constexpr BlockState WarpedNylium()
+ {
+ return 14970;
+ }
+ }
+ namespace WarpedPlanks
+ {
+ constexpr BlockState WarpedPlanks()
+ {
+ return 15046;
+ }
+ }
+ namespace WarpedPressurePlate
+ {
+ constexpr BlockState WarpedPressurePlate(const bool Powered)
+ {
+ if (Powered) return 15061;
+ else return 15062;
+ }
+ BlockState WarpedPressurePlate();
+ bool Powered(BlockState Block);
+ }
+ namespace WarpedRoots
+ {
+ constexpr BlockState WarpedRoots()
+ {
+ return 14973;
+ }
+ }
+ namespace WarpedSign
+ {
+ constexpr BlockState WarpedSign(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 15688;
+ else if (Rotation == 1) return 15690;
+ else if (Rotation == 2) return 15692;
+ else if (Rotation == 3) return 15694;
+ else if (Rotation == 4) return 15696;
+ else if (Rotation == 5) return 15698;
+ else if (Rotation == 6) return 15700;
+ else if (Rotation == 7) return 15702;
+ else if (Rotation == 8) return 15704;
+ else if (Rotation == 9) return 15706;
+ else if (Rotation == 10) return 15708;
+ else if (Rotation == 11) return 15710;
+ else if (Rotation == 12) return 15712;
+ else if (Rotation == 13) return 15714;
+ else if (Rotation == 14) return 15716;
+ else return 15718;
+ }
+ BlockState WarpedSign();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace WarpedSlab
+ {
+ enum class Type
+ {
+ Top,
+ Bottom,
+ Double
+ };
+ constexpr BlockState WarpedSlab(const enum Type Type)
+ {
+ if (Type == Type::Top) return 15054;
+ else if (Type == Type::Bottom) return 15056;
+ else return 15058;
+ }
+ BlockState WarpedSlab();
+ enum Type Type(BlockState Block);
+ }
+ namespace WarpedStairs
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ enum class Shape
+ {
+ Straight,
+ InnerLeft,
+ InnerRight,
+ OuterLeft,
+ OuterRight
+ };
+ constexpr BlockState WarpedStairs(const eBlockFace Facing, const enum Half Half, const enum Shape Shape)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 15400;
+ else if (Shape == Shape::InnerLeft) return 15402;
+ else if (Shape == Shape::InnerRight) return 15404;
+ else if (Shape == Shape::OuterLeft) return 15406;
+ else return 15408;
+ else
+ if (Shape == Shape::Straight) return 15410;
+ else if (Shape == Shape::InnerLeft) return 15412;
+ else if (Shape == Shape::InnerRight) return 15414;
+ else if (Shape == Shape::OuterLeft) return 15416;
+ else return 15418;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 15420;
+ else if (Shape == Shape::InnerLeft) return 15422;
+ else if (Shape == Shape::InnerRight) return 15424;
+ else if (Shape == Shape::OuterLeft) return 15426;
+ else return 15428;
+ else
+ if (Shape == Shape::Straight) return 15430;
+ else if (Shape == Shape::InnerLeft) return 15432;
+ else if (Shape == Shape::InnerRight) return 15434;
+ else if (Shape == Shape::OuterLeft) return 15436;
+ else return 15438;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 15440;
+ else if (Shape == Shape::InnerLeft) return 15442;
+ else if (Shape == Shape::InnerRight) return 15444;
+ else if (Shape == Shape::OuterLeft) return 15446;
+ else return 15448;
+ else
+ if (Shape == Shape::Straight) return 15450;
+ else if (Shape == Shape::InnerLeft) return 15452;
+ else if (Shape == Shape::InnerRight) return 15454;
+ else if (Shape == Shape::OuterLeft) return 15456;
+ else return 15458;
+ else
+ if (Half == Half::Top)
+ if (Shape == Shape::Straight) return 15460;
+ else if (Shape == Shape::InnerLeft) return 15462;
+ else if (Shape == Shape::InnerRight) return 15464;
+ else if (Shape == Shape::OuterLeft) return 15466;
+ else return 15468;
+ else
+ if (Shape == Shape::Straight) return 15470;
+ else if (Shape == Shape::InnerLeft) return 15472;
+ else if (Shape == Shape::InnerRight) return 15474;
+ else if (Shape == Shape::OuterLeft) return 15476;
+ else return 15478;
+ }
+ BlockState WarpedStairs();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ enum Shape Shape(BlockState Block);
+ }
+ namespace WarpedStem
+ {
+ enum class Axis
+ {
+ X,
+ Y,
+ Z
+ };
+ constexpr BlockState WarpedStem(const enum Axis Axis)
+ {
+ if (Axis == Axis::X) return 14958;
+ else if (Axis == Axis::Y) return 14959;
+ else return 14960;
+ }
+ BlockState WarpedStem();
+ enum Axis Axis(BlockState Block);
+ }
+ namespace WarpedTrapdoor
+ {
+ enum class Half
+ {
+ Top,
+ Bottom
+ };
+ constexpr BlockState WarpedTrapdoor(const eBlockFace Facing, const enum Half Half, const bool Open, const bool Powered)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 15192;
+ else return 15194;
+ else
+ if (Powered) return 15196;
+ else return 15198;
+ else
+ if (Open)
+ if (Powered) return 15200;
+ else return 15202;
+ else
+ if (Powered) return 15204;
+ else return 15206;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 15208;
+ else return 15210;
+ else
+ if (Powered) return 15212;
+ else return 15214;
+ else
+ if (Open)
+ if (Powered) return 15216;
+ else return 15218;
+ else
+ if (Powered) return 15220;
+ else return 15222;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 15224;
+ else return 15226;
+ else
+ if (Powered) return 15228;
+ else return 15230;
+ else
+ if (Open)
+ if (Powered) return 15232;
+ else return 15234;
+ else
+ if (Powered) return 15236;
+ else return 15238;
+ else
+ if (Half == Half::Top)
+ if (Open)
+ if (Powered) return 15240;
+ else return 15242;
+ else
+ if (Powered) return 15244;
+ else return 15246;
+ else
+ if (Open)
+ if (Powered) return 15248;
+ else return 15250;
+ else
+ if (Powered) return 15252;
+ else return 15254;
+ }
+ BlockState WarpedTrapdoor();
+ eBlockFace Facing(BlockState Block);
+ enum Half Half(BlockState Block);
+ bool Open(BlockState Block);
+ bool Powered(BlockState Block);
+ }
+ namespace WarpedWallSign
+ {
+ constexpr BlockState WarpedWallSign(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 15728;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 15730;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 15732;
+ else return 15734;
+ }
+ BlockState WarpedWallSign();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace WarpedWartBlock
+ {
+ constexpr BlockState WarpedWartBlock()
+ {
+ return 14972;
+ }
+ }
+ namespace Water
+ {
+ constexpr BlockState Water(const unsigned char Level)
+ {
+ if (Level == 0) return 34;
+ else if (Level == 1) return 35;
+ else if (Level == 2) return 36;
+ else if (Level == 3) return 37;
+ else if (Level == 4) return 38;
+ else if (Level == 5) return 39;
+ else if (Level == 6) return 40;
+ else if (Level == 7) return 41;
+ else if (Level == 8) return 42;
+ else if (Level == 9) return 43;
+ else if (Level == 10) return 44;
+ else if (Level == 11) return 45;
+ else if (Level == 12) return 46;
+ else if (Level == 13) return 47;
+ else if (Level == 14) return 48;
+ else return 49;
+ }
+ BlockState Water();
+ unsigned char Level(BlockState Block);
+ }
+ namespace WeepingVines
+ {
+ constexpr BlockState WeepingVines(const unsigned char Age)
+ {
+ if (Age == 0) return 14990;
+ else if (Age == 1) return 14991;
+ else if (Age == 2) return 14992;
+ else if (Age == 3) return 14993;
+ else if (Age == 4) return 14994;
+ else if (Age == 5) return 14995;
+ else if (Age == 6) return 14996;
+ else if (Age == 7) return 14997;
+ else if (Age == 8) return 14998;
+ else if (Age == 9) return 14999;
+ else if (Age == 10) return 15000;
+ else if (Age == 11) return 15001;
+ else if (Age == 12) return 15002;
+ else if (Age == 13) return 15003;
+ else if (Age == 14) return 15004;
+ else if (Age == 15) return 15005;
+ else if (Age == 16) return 15006;
+ else if (Age == 17) return 15007;
+ else if (Age == 18) return 15008;
+ else if (Age == 19) return 15009;
+ else if (Age == 20) return 15010;
+ else if (Age == 21) return 15011;
+ else if (Age == 22) return 15012;
+ else if (Age == 23) return 15013;
+ else if (Age == 24) return 15014;
+ else return 15015;
+ }
+ BlockState WeepingVines();
+ unsigned char Age(BlockState Block);
+ }
+ namespace WeepingVinesPlant
+ {
+ constexpr BlockState WeepingVinesPlant()
+ {
+ return 15016;
+ }
+ }
+ namespace WetSponge
+ {
+ constexpr BlockState WetSponge()
+ {
+ return 230;
+ }
+ }
+ namespace Wheat
+ {
+ constexpr BlockState Wheat(const unsigned char Age)
+ {
+ if (Age == 0) return 3357;
+ else if (Age == 1) return 3358;
+ else if (Age == 2) return 3359;
+ else if (Age == 3) return 3360;
+ else if (Age == 4) return 3361;
+ else if (Age == 5) return 3362;
+ else if (Age == 6) return 3363;
+ else return 3364;
+ }
+ BlockState Wheat();
+ unsigned char Age(BlockState Block);
+ }
+ namespace WhiteBanner
+ {
+ constexpr BlockState WhiteBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 7897;
+ else if (Rotation == 1) return 7898;
+ else if (Rotation == 2) return 7899;
+ else if (Rotation == 3) return 7900;
+ else if (Rotation == 4) return 7901;
+ else if (Rotation == 5) return 7902;
+ else if (Rotation == 6) return 7903;
+ else if (Rotation == 7) return 7904;
+ else if (Rotation == 8) return 7905;
+ else if (Rotation == 9) return 7906;
+ else if (Rotation == 10) return 7907;
+ else if (Rotation == 11) return 7908;
+ else if (Rotation == 12) return 7909;
+ else if (Rotation == 13) return 7910;
+ else if (Rotation == 14) return 7911;
+ else return 7912;
+ }
+ BlockState WhiteBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace WhiteBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState WhiteBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1049;
+ else return 1050;
+ else
+ if (Part == Part::Head) return 1051;
+ else return 1052;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1053;
+ else return 1054;
+ else
+ if (Part == Part::Head) return 1055;
+ else return 1056;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1057;
+ else return 1058;
+ else
+ if (Part == Part::Head) return 1059;
+ else return 1060;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1061;
+ else return 1062;
+ else
+ if (Part == Part::Head) return 1063;
+ else return 1064;
+ }
+ BlockState WhiteBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace WhiteCarpet
+ {
+ constexpr BlockState WhiteCarpet()
+ {
+ return 7866;
+ }
+ }
+ namespace WhiteConcrete
+ {
+ constexpr BlockState WhiteConcrete()
+ {
+ return 9438;
+ }
+ }
+ namespace WhiteConcretePowder
+ {
+ constexpr BlockState WhiteConcretePowder()
+ {
+ return 9454;
+ }
+ }
+ namespace WhiteGlazedTerracotta
+ {
+ constexpr BlockState WhiteGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9374;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9375;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9376;
+ else return 9377;
+ }
+ BlockState WhiteGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace WhiteShulkerBox
+ {
+ constexpr BlockState WhiteShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9278;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9279;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9280;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9281;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9282;
+ else return 9283;
+ }
+ BlockState WhiteShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace WhiteStainedGlass
+ {
+ constexpr BlockState WhiteStainedGlass()
+ {
+ return 4095;
+ }
+ }
+ namespace WhiteStainedGlassPane
+ {
+ constexpr BlockState WhiteStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 6865;
+ else return 6866;
+ else
+ if (West) return 6869;
+ else return 6870;
+ else
+ if (South)
+ if (West) return 6873;
+ else return 6874;
+ else
+ if (West) return 6877;
+ else return 6878;
+ else
+ if (North)
+ if (South)
+ if (West) return 6881;
+ else return 6882;
+ else
+ if (West) return 6885;
+ else return 6886;
+ else
+ if (South)
+ if (West) return 6889;
+ else return 6890;
+ else
+ if (West) return 6893;
+ else return 6894;
+ }
+ BlockState WhiteStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace WhiteTerracotta
+ {
+ constexpr BlockState WhiteTerracotta()
+ {
+ return 6847;
+ }
+ }
+ namespace WhiteTulip
+ {
+ constexpr BlockState WhiteTulip()
+ {
+ return 1419;
+ }
+ }
+ namespace WhiteWallBanner
+ {
+ constexpr BlockState WhiteWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8153;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8154;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8155;
+ else return 8156;
+ }
+ BlockState WhiteWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace WhiteWool
+ {
+ constexpr BlockState WhiteWool()
+ {
+ return 1384;
+ }
+ }
+ namespace WitherRose
+ {
+ constexpr BlockState WitherRose()
+ {
+ return 1423;
+ }
+ }
+ namespace WitherSkeletonSkull
+ {
+ constexpr BlockState WitherSkeletonSkull(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 6510;
+ else if (Rotation == 1) return 6511;
+ else if (Rotation == 2) return 6512;
+ else if (Rotation == 3) return 6513;
+ else if (Rotation == 4) return 6514;
+ else if (Rotation == 5) return 6515;
+ else if (Rotation == 6) return 6516;
+ else if (Rotation == 7) return 6517;
+ else if (Rotation == 8) return 6518;
+ else if (Rotation == 9) return 6519;
+ else if (Rotation == 10) return 6520;
+ else if (Rotation == 11) return 6521;
+ else if (Rotation == 12) return 6522;
+ else if (Rotation == 13) return 6523;
+ else if (Rotation == 14) return 6524;
+ else return 6525;
+ }
+ BlockState WitherSkeletonSkull();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace WitherSkeletonWallSkull
+ {
+ constexpr BlockState WitherSkeletonWallSkull(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6526;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6527;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 6528;
+ else return 6529;
+ }
+ BlockState WitherSkeletonWallSkull();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace YellowBanner
+ {
+ constexpr BlockState YellowBanner(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 7961;
+ else if (Rotation == 1) return 7962;
+ else if (Rotation == 2) return 7963;
+ else if (Rotation == 3) return 7964;
+ else if (Rotation == 4) return 7965;
+ else if (Rotation == 5) return 7966;
+ else if (Rotation == 6) return 7967;
+ else if (Rotation == 7) return 7968;
+ else if (Rotation == 8) return 7969;
+ else if (Rotation == 9) return 7970;
+ else if (Rotation == 10) return 7971;
+ else if (Rotation == 11) return 7972;
+ else if (Rotation == 12) return 7973;
+ else if (Rotation == 13) return 7974;
+ else if (Rotation == 14) return 7975;
+ else return 7976;
+ }
+ BlockState YellowBanner();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace YellowBed
+ {
+ enum class Part
+ {
+ Head,
+ Foot
+ };
+ constexpr BlockState YellowBed(const eBlockFace Facing, const bool Occupied, const enum Part Part)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM)
+ if (Occupied)
+ if (Part == Part::Head) return 1113;
+ else return 1114;
+ else
+ if (Part == Part::Head) return 1115;
+ else return 1116;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP)
+ if (Occupied)
+ if (Part == Part::Head) return 1117;
+ else return 1118;
+ else
+ if (Part == Part::Head) return 1119;
+ else return 1120;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM)
+ if (Occupied)
+ if (Part == Part::Head) return 1121;
+ else return 1122;
+ else
+ if (Part == Part::Head) return 1123;
+ else return 1124;
+ else
+ if (Occupied)
+ if (Part == Part::Head) return 1125;
+ else return 1126;
+ else
+ if (Part == Part::Head) return 1127;
+ else return 1128;
+ }
+ BlockState YellowBed();
+ eBlockFace Facing(BlockState Block);
+ bool Occupied(BlockState Block);
+ enum Part Part(BlockState Block);
+ }
+ namespace YellowCarpet
+ {
+ constexpr BlockState YellowCarpet()
+ {
+ return 7870;
+ }
+ }
+ namespace YellowConcrete
+ {
+ constexpr BlockState YellowConcrete()
+ {
+ return 9442;
+ }
+ }
+ namespace YellowConcretePowder
+ {
+ constexpr BlockState YellowConcretePowder()
+ {
+ return 9458;
+ }
+ }
+ namespace YellowGlazedTerracotta
+ {
+ constexpr BlockState YellowGlazedTerracotta(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9390;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9391;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9392;
+ else return 9393;
+ }
+ BlockState YellowGlazedTerracotta();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace YellowShulkerBox
+ {
+ constexpr BlockState YellowShulkerBox(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9302;
+ else if (Facing == eBlockFace::BLOCK_FACE_XP) return 9303;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9304;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 9305;
+ else if (Facing == eBlockFace::BLOCK_FACE_YP) return 9306;
+ else return 9307;
+ }
+ BlockState YellowShulkerBox();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace YellowStainedGlass
+ {
+ constexpr BlockState YellowStainedGlass()
+ {
+ return 4099;
+ }
+ }
+ namespace YellowStainedGlassPane
+ {
+ constexpr BlockState YellowStainedGlassPane(const bool East, const bool North, const bool South, const bool West)
+ {
+ if (East)
+ if (North)
+ if (South)
+ if (West) return 6993;
+ else return 6994;
+ else
+ if (West) return 6997;
+ else return 6998;
+ else
+ if (South)
+ if (West) return 7001;
+ else return 7002;
+ else
+ if (West) return 7005;
+ else return 7006;
+ else
+ if (North)
+ if (South)
+ if (West) return 7009;
+ else return 7010;
+ else
+ if (West) return 7013;
+ else return 7014;
+ else
+ if (South)
+ if (West) return 7017;
+ else return 7018;
+ else
+ if (West) return 7021;
+ else return 7022;
+ }
+ BlockState YellowStainedGlassPane();
+ bool East(BlockState Block);
+ bool North(BlockState Block);
+ bool South(BlockState Block);
+ bool West(BlockState Block);
+ }
+ namespace YellowTerracotta
+ {
+ constexpr BlockState YellowTerracotta()
+ {
+ return 6851;
+ }
+ }
+ namespace YellowWallBanner
+ {
+ constexpr BlockState YellowWallBanner(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8169;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8170;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 8171;
+ else return 8172;
+ }
+ BlockState YellowWallBanner();
+ eBlockFace Facing(BlockState Block);
+ }
+ namespace YellowWool
+ {
+ constexpr BlockState YellowWool()
+ {
+ return 1388;
+ }
+ }
+ namespace ZombieHead
+ {
+ constexpr BlockState ZombieHead(const unsigned char Rotation)
+ {
+ if (Rotation == 0) return 6530;
+ else if (Rotation == 1) return 6531;
+ else if (Rotation == 2) return 6532;
+ else if (Rotation == 3) return 6533;
+ else if (Rotation == 4) return 6534;
+ else if (Rotation == 5) return 6535;
+ else if (Rotation == 6) return 6536;
+ else if (Rotation == 7) return 6537;
+ else if (Rotation == 8) return 6538;
+ else if (Rotation == 9) return 6539;
+ else if (Rotation == 10) return 6540;
+ else if (Rotation == 11) return 6541;
+ else if (Rotation == 12) return 6542;
+ else if (Rotation == 13) return 6543;
+ else if (Rotation == 14) return 6544;
+ else return 6545;
+ }
+ BlockState ZombieHead();
+ unsigned char Rotation(BlockState Block);
+ }
+ namespace ZombieWallHead
+ {
+ constexpr BlockState ZombieWallHead(const eBlockFace Facing)
+ {
+ if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6546;
+ else if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6547;
+ else if (Facing == eBlockFace::BLOCK_FACE_XM) return 6548;
+ else return 6549;
+ }
+ BlockState ZombieWallHead();
+ eBlockFace Facing(BlockState Block);
+ }
+}
diff --git a/src/Registries/BlockTypes.h b/src/Registries/BlockTypes.h
new file mode 100644
index 000000000..d3b34de03
--- /dev/null
+++ b/src/Registries/BlockTypes.h
@@ -0,0 +1,768 @@
+#pragma once
+
+enum class BlockType
+{
+ AcaciaButton,
+ AcaciaDoor,
+ AcaciaFence,
+ AcaciaFenceGate,
+ AcaciaLeaves,
+ AcaciaLog,
+ AcaciaPlanks,
+ AcaciaPressurePlate,
+ AcaciaSapling,
+ AcaciaSign,
+ AcaciaSlab,
+ AcaciaStairs,
+ AcaciaTrapdoor,
+ AcaciaWallSign,
+ AcaciaWood,
+ ActivatorRail,
+ Air,
+ Allium,
+ AncientDebris,
+ Andesite,
+ AndesiteSlab,
+ AndesiteStairs,
+ AndesiteWall,
+ Anvil,
+ AttachedMelonStem,
+ AttachedPumpkinStem,
+ AzureBluet,
+ Bamboo,
+ BambooSapling,
+ Barrel,
+ Barrier,
+ Basalt,
+ Beacon,
+ Bedrock,
+ BeeNest,
+ Beehive,
+ Beetroots,
+ Bell,
+ BirchButton,
+ BirchDoor,
+ BirchFence,
+ BirchFenceGate,
+ BirchLeaves,
+ BirchLog,
+ BirchPlanks,
+ BirchPressurePlate,
+ BirchSapling,
+ BirchSign,
+ BirchSlab,
+ BirchStairs,
+ BirchTrapdoor,
+ BirchWallSign,
+ BirchWood,
+ BlackBanner,
+ BlackBed,
+ BlackCarpet,
+ BlackConcrete,
+ BlackConcretePowder,
+ BlackGlazedTerracotta,
+ BlackShulkerBox,
+ BlackStainedGlass,
+ BlackStainedGlassPane,
+ BlackTerracotta,
+ BlackWallBanner,
+ BlackWool,
+ Blackstone,
+ BlackstoneSlab,
+ BlackstoneStairs,
+ BlackstoneWall,
+ BlastFurnace,
+ BlueBanner,
+ BlueBed,
+ BlueCarpet,
+ BlueConcrete,
+ BlueConcretePowder,
+ BlueGlazedTerracotta,
+ BlueIce,
+ BlueOrchid,
+ BlueShulkerBox,
+ BlueStainedGlass,
+ BlueStainedGlassPane,
+ BlueTerracotta,
+ BlueWallBanner,
+ BlueWool,
+ BoneBlock,
+ Bookshelf,
+ BrainCoral,
+ BrainCoralBlock,
+ BrainCoralFan,
+ BrainCoralWallFan,
+ BrewingStand,
+ BrickSlab,
+ BrickStairs,
+ BrickWall,
+ Bricks,
+ BrownBanner,
+ BrownBed,
+ BrownCarpet,
+ BrownConcrete,
+ BrownConcretePowder,
+ BrownGlazedTerracotta,
+ BrownMushroom,
+ BrownMushroomBlock,
+ BrownShulkerBox,
+ BrownStainedGlass,
+ BrownStainedGlassPane,
+ BrownTerracotta,
+ BrownWallBanner,
+ BrownWool,
+ BubbleColumn,
+ BubbleCoral,
+ BubbleCoralBlock,
+ BubbleCoralFan,
+ BubbleCoralWallFan,
+ Cactus,
+ Cake,
+ Campfire,
+ Carrots,
+ CartographyTable,
+ CarvedPumpkin,
+ Cauldron,
+ CaveAir,
+ Chain,
+ ChainCommandBlock,
+ Chest,
+ ChippedAnvil,
+ ChiseledNetherBricks,
+ ChiseledPolishedBlackstone,
+ ChiseledQuartzBlock,
+ ChiseledRedSandstone,
+ ChiseledSandstone,
+ ChiseledStoneBricks,
+ ChorusFlower,
+ ChorusPlant,
+ Clay,
+ CoalBlock,
+ CoalOre,
+ CoarseDirt,
+ Cobblestone,
+ CobblestoneSlab,
+ CobblestoneStairs,
+ CobblestoneWall,
+ Cobweb,
+ Cocoa,
+ CommandBlock,
+ Comparator,
+ Composter,
+ Conduit,
+ Cornflower,
+ CrackedNetherBricks,
+ CrackedPolishedBlackstoneBricks,
+ CrackedStoneBricks,
+ CraftingTable,
+ CreeperHead,
+ CreeperWallHead,
+ CrimsonButton,
+ CrimsonDoor,
+ CrimsonFence,
+ CrimsonFenceGate,
+ CrimsonFungus,
+ CrimsonHyphae,
+ CrimsonNylium,
+ CrimsonPlanks,
+ CrimsonPressurePlate,
+ CrimsonRoots,
+ CrimsonSign,
+ CrimsonSlab,
+ CrimsonStairs,
+ CrimsonStem,
+ CrimsonTrapdoor,
+ CrimsonWallSign,
+ CryingObsidian,
+ CutRedSandstone,
+ CutRedSandstoneSlab,
+ CutSandstone,
+ CutSandstoneSlab,
+ CyanBanner,
+ CyanBed,
+ CyanCarpet,
+ CyanConcrete,
+ CyanConcretePowder,
+ CyanGlazedTerracotta,
+ CyanShulkerBox,
+ CyanStainedGlass,
+ CyanStainedGlassPane,
+ CyanTerracotta,
+ CyanWallBanner,
+ CyanWool,
+ DamagedAnvil,
+ Dandelion,
+ DarkOakButton,
+ DarkOakDoor,
+ DarkOakFence,
+ DarkOakFenceGate,
+ DarkOakLeaves,
+ DarkOakLog,
+ DarkOakPlanks,
+ DarkOakPressurePlate,
+ DarkOakSapling,
+ DarkOakSign,
+ DarkOakSlab,
+ DarkOakStairs,
+ DarkOakTrapdoor,
+ DarkOakWallSign,
+ DarkOakWood,
+ DarkPrismarine,
+ DarkPrismarineSlab,
+ DarkPrismarineStairs,
+ DaylightDetector,
+ DeadBrainCoral,
+ DeadBrainCoralBlock,
+ DeadBrainCoralFan,
+ DeadBrainCoralWallFan,
+ DeadBubbleCoral,
+ DeadBubbleCoralBlock,
+ DeadBubbleCoralFan,
+ DeadBubbleCoralWallFan,
+ DeadBush,
+ DeadFireCoral,
+ DeadFireCoralBlock,
+ DeadFireCoralFan,
+ DeadFireCoralWallFan,
+ DeadHornCoral,
+ DeadHornCoralBlock,
+ DeadHornCoralFan,
+ DeadHornCoralWallFan,
+ DeadTubeCoral,
+ DeadTubeCoralBlock,
+ DeadTubeCoralFan,
+ DeadTubeCoralWallFan,
+ DetectorRail,
+ DiamondBlock,
+ DiamondOre,
+ Diorite,
+ DioriteSlab,
+ DioriteStairs,
+ DioriteWall,
+ Dirt,
+ Dispenser,
+ DragonEgg,
+ DragonHead,
+ DragonWallHead,
+ DriedKelpBlock,
+ Dropper,
+ EmeraldBlock,
+ EmeraldOre,
+ EnchantingTable,
+ EndGateway,
+ EndPortal,
+ EndPortalFrame,
+ EndRod,
+ EndStone,
+ EndStoneBrickSlab,
+ EndStoneBrickStairs,
+ EndStoneBrickWall,
+ EndStoneBricks,
+ EnderChest,
+ Farmland,
+ Fern,
+ Fire,
+ FireCoral,
+ FireCoralBlock,
+ FireCoralFan,
+ FireCoralWallFan,
+ FletchingTable,
+ FlowerPot,
+ FrostedIce,
+ Furnace,
+ GildedBlackstone,
+ Glass,
+ GlassPane,
+ Glowstone,
+ GoldBlock,
+ GoldOre,
+ Granite,
+ GraniteSlab,
+ GraniteStairs,
+ GraniteWall,
+ Grass,
+ GrassBlock,
+ GrassPath,
+ Gravel,
+ GrayBanner,
+ GrayBed,
+ GrayCarpet,
+ GrayConcrete,
+ GrayConcretePowder,
+ GrayGlazedTerracotta,
+ GrayShulkerBox,
+ GrayStainedGlass,
+ GrayStainedGlassPane,
+ GrayTerracotta,
+ GrayWallBanner,
+ GrayWool,
+ GreenBanner,
+ GreenBed,
+ GreenCarpet,
+ GreenConcrete,
+ GreenConcretePowder,
+ GreenGlazedTerracotta,
+ GreenShulkerBox,
+ GreenStainedGlass,
+ GreenStainedGlassPane,
+ GreenTerracotta,
+ GreenWallBanner,
+ GreenWool,
+ Grindstone,
+ HayBale,
+ HeavyWeightedPressurePlate,
+ HoneyBlock,
+ HoneycombBlock,
+ Hopper,
+ HornCoral,
+ HornCoralBlock,
+ HornCoralFan,
+ HornCoralWallFan,
+ Ice,
+ InfestedChiseledStoneBricks,
+ InfestedCobblestone,
+ InfestedCrackedStoneBricks,
+ InfestedMossyStoneBricks,
+ InfestedStone,
+ InfestedStoneBricks,
+ IronBars,
+ IronBlock,
+ IronDoor,
+ IronOre,
+ IronTrapdoor,
+ JackOLantern,
+ Jigsaw,
+ Jukebox,
+ JungleButton,
+ JungleDoor,
+ JungleFence,
+ JungleFenceGate,
+ JungleLeaves,
+ JungleLog,
+ JunglePlanks,
+ JunglePressurePlate,
+ JungleSapling,
+ JungleSign,
+ JungleSlab,
+ JungleStairs,
+ JungleTrapdoor,
+ JungleWallSign,
+ JungleWood,
+ Kelp,
+ KelpPlant,
+ Ladder,
+ Lantern,
+ LapisBlock,
+ LapisOre,
+ LargeFern,
+ Lava,
+ Lectern,
+ Lever,
+ LightBlueBanner,
+ LightBlueBed,
+ LightBlueCarpet,
+ LightBlueConcrete,
+ LightBlueConcretePowder,
+ LightBlueGlazedTerracotta,
+ LightBlueShulkerBox,
+ LightBlueStainedGlass,
+ LightBlueStainedGlassPane,
+ LightBlueTerracotta,
+ LightBlueWallBanner,
+ LightBlueWool,
+ LightGrayBanner,
+ LightGrayBed,
+ LightGrayCarpet,
+ LightGrayConcrete,
+ LightGrayConcretePowder,
+ LightGrayGlazedTerracotta,
+ LightGrayShulkerBox,
+ LightGrayStainedGlass,
+ LightGrayStainedGlassPane,
+ LightGrayTerracotta,
+ LightGrayWallBanner,
+ LightGrayWool,
+ LightWeightedPressurePlate,
+ Lilac,
+ LilyOfTheValley,
+ LilyPad,
+ LimeBanner,
+ LimeBed,
+ LimeCarpet,
+ LimeConcrete,
+ LimeConcretePowder,
+ LimeGlazedTerracotta,
+ LimeShulkerBox,
+ LimeStainedGlass,
+ LimeStainedGlassPane,
+ LimeTerracotta,
+ LimeWallBanner,
+ LimeWool,
+ Lodestone,
+ Loom,
+ MagentaBanner,
+ MagentaBed,
+ MagentaCarpet,
+ MagentaConcrete,
+ MagentaConcretePowder,
+ MagentaGlazedTerracotta,
+ MagentaShulkerBox,
+ MagentaStainedGlass,
+ MagentaStainedGlassPane,
+ MagentaTerracotta,
+ MagentaWallBanner,
+ MagentaWool,
+ MagmaBlock,
+ Melon,
+ MelonStem,
+ MossyCobblestone,
+ MossyCobblestoneSlab,
+ MossyCobblestoneStairs,
+ MossyCobblestoneWall,
+ MossyStoneBrickSlab,
+ MossyStoneBrickStairs,
+ MossyStoneBrickWall,
+ MossyStoneBricks,
+ MovingPiston,
+ MushroomStem,
+ Mycelium,
+ NetherBrickFence,
+ NetherBrickSlab,
+ NetherBrickStairs,
+ NetherBrickWall,
+ NetherBricks,
+ NetherGoldOre,
+ NetherPortal,
+ NetherQuartzOre,
+ NetherSprouts,
+ NetherWart,
+ NetherWartBlock,
+ NetheriteBlock,
+ Netherrack,
+ NoteBlock,
+ OakButton,
+ OakDoor,
+ OakFence,
+ OakFenceGate,
+ OakLeaves,
+ OakLog,
+ OakPlanks,
+ OakPressurePlate,
+ OakSapling,
+ OakSign,
+ OakSlab,
+ OakStairs,
+ OakTrapdoor,
+ OakWallSign,
+ OakWood,
+ Observer,
+ Obsidian,
+ OrangeBanner,
+ OrangeBed,
+ OrangeCarpet,
+ OrangeConcrete,
+ OrangeConcretePowder,
+ OrangeGlazedTerracotta,
+ OrangeShulkerBox,
+ OrangeStainedGlass,
+ OrangeStainedGlassPane,
+ OrangeTerracotta,
+ OrangeTulip,
+ OrangeWallBanner,
+ OrangeWool,
+ OxeyeDaisy,
+ PackedIce,
+ Peony,
+ PetrifiedOakSlab,
+ PinkBanner,
+ PinkBed,
+ PinkCarpet,
+ PinkConcrete,
+ PinkConcretePowder,
+ PinkGlazedTerracotta,
+ PinkShulkerBox,
+ PinkStainedGlass,
+ PinkStainedGlassPane,
+ PinkTerracotta,
+ PinkTulip,
+ PinkWallBanner,
+ PinkWool,
+ Piston,
+ PistonHead,
+ PlayerHead,
+ PlayerWallHead,
+ Podzol,
+ PolishedAndesite,
+ PolishedAndesiteSlab,
+ PolishedAndesiteStairs,
+ PolishedBasalt,
+ PolishedBlackstone,
+ PolishedBlackstoneBrickSlab,
+ PolishedBlackstoneBrickStairs,
+ PolishedBlackstoneBrickWall,
+ PolishedBlackstoneBricks,
+ PolishedBlackstoneButton,
+ PolishedBlackstonePressurePlate,
+ PolishedBlackstoneSlab,
+ PolishedBlackstoneStairs,
+ PolishedBlackstoneWall,
+ PolishedDiorite,
+ PolishedDioriteSlab,
+ PolishedDioriteStairs,
+ PolishedGranite,
+ PolishedGraniteSlab,
+ PolishedGraniteStairs,
+ Poppy,
+ Potatoes,
+ PottedAcaciaSapling,
+ PottedAllium,
+ PottedAzureBluet,
+ PottedBamboo,
+ PottedBirchSapling,
+ PottedBlueOrchid,
+ PottedBrownMushroom,
+ PottedCactus,
+ PottedCornflower,
+ PottedCrimsonFungus,
+ PottedCrimsonRoots,
+ PottedDandelion,
+ PottedDarkOakSapling,
+ PottedDeadBush,
+ PottedFern,
+ PottedJungleSapling,
+ PottedLilyOfTheValley,
+ PottedOakSapling,
+ PottedOrangeTulip,
+ PottedOxeyeDaisy,
+ PottedPinkTulip,
+ PottedPoppy,
+ PottedRedMushroom,
+ PottedRedTulip,
+ PottedSpruceSapling,
+ PottedWarpedFungus,
+ PottedWarpedRoots,
+ PottedWhiteTulip,
+ PottedWitherRose,
+ PoweredRail,
+ Prismarine,
+ PrismarineBrickSlab,
+ PrismarineBrickStairs,
+ PrismarineBricks,
+ PrismarineSlab,
+ PrismarineStairs,
+ PrismarineWall,
+ Pumpkin,
+ PumpkinStem,
+ PurpleBanner,
+ PurpleBed,
+ PurpleCarpet,
+ PurpleConcrete,
+ PurpleConcretePowder,
+ PurpleGlazedTerracotta,
+ PurpleShulkerBox,
+ PurpleStainedGlass,
+ PurpleStainedGlassPane,
+ PurpleTerracotta,
+ PurpleWallBanner,
+ PurpleWool,
+ PurpurBlock,
+ PurpurPillar,
+ PurpurSlab,
+ PurpurStairs,
+ QuartzBlock,
+ QuartzBricks,
+ QuartzPillar,
+ QuartzSlab,
+ QuartzStairs,
+ Rail,
+ RedBanner,
+ RedBed,
+ RedCarpet,
+ RedConcrete,
+ RedConcretePowder,
+ RedGlazedTerracotta,
+ RedMushroom,
+ RedMushroomBlock,
+ RedNetherBrickSlab,
+ RedNetherBrickStairs,
+ RedNetherBrickWall,
+ RedNetherBricks,
+ RedSand,
+ RedSandstone,
+ RedSandstoneSlab,
+ RedSandstoneStairs,
+ RedSandstoneWall,
+ RedShulkerBox,
+ RedStainedGlass,
+ RedStainedGlassPane,
+ RedTerracotta,
+ RedTulip,
+ RedWallBanner,
+ RedWool,
+ RedstoneBlock,
+ RedstoneLamp,
+ RedstoneOre,
+ RedstoneTorch,
+ RedstoneWallTorch,
+ RedstoneWire,
+ Repeater,
+ RepeatingCommandBlock,
+ RespawnAnchor,
+ RoseBush,
+ Sand,
+ Sandstone,
+ SandstoneSlab,
+ SandstoneStairs,
+ SandstoneWall,
+ Scaffolding,
+ SeaLantern,
+ SeaPickle,
+ Seagrass,
+ Shroomlight,
+ ShulkerBox,
+ SkeletonSkull,
+ SkeletonWallSkull,
+ SlimeBlock,
+ SmithingTable,
+ Smoker,
+ SmoothQuartz,
+ SmoothQuartzSlab,
+ SmoothQuartzStairs,
+ SmoothRedSandstone,
+ SmoothRedSandstoneSlab,
+ SmoothRedSandstoneStairs,
+ SmoothSandstone,
+ SmoothSandstoneSlab,
+ SmoothSandstoneStairs,
+ SmoothStone,
+ SmoothStoneSlab,
+ Snow,
+ SnowBlock,
+ SoulCampfire,
+ SoulFire,
+ SoulLantern,
+ SoulSand,
+ SoulSoil,
+ SoulTorch,
+ SoulWallTorch,
+ Spawner,
+ Sponge,
+ SpruceButton,
+ SpruceDoor,
+ SpruceFence,
+ SpruceFenceGate,
+ SpruceLeaves,
+ SpruceLog,
+ SprucePlanks,
+ SprucePressurePlate,
+ SpruceSapling,
+ SpruceSign,
+ SpruceSlab,
+ SpruceStairs,
+ SpruceTrapdoor,
+ SpruceWallSign,
+ SpruceWood,
+ StickyPiston,
+ Stone,
+ StoneBrickSlab,
+ StoneBrickStairs,
+ StoneBrickWall,
+ StoneBricks,
+ StoneButton,
+ StonePressurePlate,
+ StoneSlab,
+ StoneStairs,
+ Stonecutter,
+ StrippedAcaciaLog,
+ StrippedAcaciaWood,
+ StrippedBirchLog,
+ StrippedBirchWood,
+ StrippedCrimsonHyphae,
+ StrippedCrimsonStem,
+ StrippedDarkOakLog,
+ StrippedDarkOakWood,
+ StrippedJungleLog,
+ StrippedJungleWood,
+ StrippedOakLog,
+ StrippedOakWood,
+ StrippedSpruceLog,
+ StrippedSpruceWood,
+ StrippedWarpedHyphae,
+ StrippedWarpedStem,
+ StructureBlock,
+ StructureVoid,
+ SugarCane,
+ Sunflower,
+ SweetBerryBush,
+ TNT,
+ TallGrass,
+ TallSeagrass,
+ Target,
+ Terracotta,
+ Torch,
+ TrappedChest,
+ Tripwire,
+ TripwireHook,
+ TubeCoral,
+ TubeCoralBlock,
+ TubeCoralFan,
+ TubeCoralWallFan,
+ TurtleEgg,
+ TwistingVines,
+ TwistingVinesPlant,
+ Vine,
+ VoidAir,
+ WallTorch,
+ WarpedButton,
+ WarpedDoor,
+ WarpedFence,
+ WarpedFenceGate,
+ WarpedFungus,
+ WarpedHyphae,
+ WarpedNylium,
+ WarpedPlanks,
+ WarpedPressurePlate,
+ WarpedRoots,
+ WarpedSign,
+ WarpedSlab,
+ WarpedStairs,
+ WarpedStem,
+ WarpedTrapdoor,
+ WarpedWallSign,
+ WarpedWartBlock,
+ Water,
+ WeepingVines,
+ WeepingVinesPlant,
+ WetSponge,
+ Wheat,
+ WhiteBanner,
+ WhiteBed,
+ WhiteCarpet,
+ WhiteConcrete,
+ WhiteConcretePowder,
+ WhiteGlazedTerracotta,
+ WhiteShulkerBox,
+ WhiteStainedGlass,
+ WhiteStainedGlassPane,
+ WhiteTerracotta,
+ WhiteTulip,
+ WhiteWallBanner,
+ WhiteWool,
+ WitherRose,
+ WitherSkeletonSkull,
+ WitherSkeletonWallSkull,
+ YellowBanner,
+ YellowBed,
+ YellowCarpet,
+ YellowConcrete,
+ YellowConcretePowder,
+ YellowGlazedTerracotta,
+ YellowShulkerBox,
+ YellowStainedGlass,
+ YellowStainedGlassPane,
+ YellowTerracotta,
+ YellowWallBanner,
+ YellowWool,
+ ZombieHead,
+ ZombieWallHead
+};
diff --git a/src/Registries/Blocks.h b/src/Registries/Blocks.h
deleted file mode 100644
index 297a81863..000000000
--- a/src/Registries/Blocks.h
+++ /dev/null
@@ -1,20284 +0,0 @@
-#pragma once
-
-#include "Globals.h"
-#include "../Defines.h"
-
-namespace Block
-{
- enum class Type
- {
- AcaciaButton,
- AcaciaDoor,
- AcaciaFence,
- AcaciaFenceGate,
- AcaciaLeaves,
- AcaciaLog,
- AcaciaPlanks,
- AcaciaPressurePlate,
- AcaciaSapling,
- AcaciaSign,
- AcaciaSlab,
- AcaciaStairs,
- AcaciaTrapdoor,
- AcaciaWallSign,
- AcaciaWood,
- ActivatorRail,
- Air,
- Allium,
- AncientDebris,
- Andesite,
- AndesiteSlab,
- AndesiteStairs,
- AndesiteWall,
- Anvil,
- AttachedMelonStem,
- AttachedPumpkinStem,
- AzureBluet,
- Bamboo,
- BambooSapling,
- Barrel,
- Barrier,
- Basalt,
- Beacon,
- Bedrock,
- BeeNest,
- Beehive,
- Beetroots,
- Bell,
- BirchButton,
- BirchDoor,
- BirchFence,
- BirchFenceGate,
- BirchLeaves,
- BirchLog,
- BirchPlanks,
- BirchPressurePlate,
- BirchSapling,
- BirchSign,
- BirchSlab,
- BirchStairs,
- BirchTrapdoor,
- BirchWallSign,
- BirchWood,
- BlackBanner,
- BlackBed,
- BlackCarpet,
- BlackConcrete,
- BlackConcretePowder,
- BlackGlazedTerracotta,
- BlackShulkerBox,
- BlackStainedGlass,
- BlackStainedGlassPane,
- BlackTerracotta,
- BlackWallBanner,
- BlackWool,
- Blackstone,
- BlackstoneSlab,
- BlackstoneStairs,
- BlackstoneWall,
- BlastFurnace,
- BlueBanner,
- BlueBed,
- BlueCarpet,
- BlueConcrete,
- BlueConcretePowder,
- BlueGlazedTerracotta,
- BlueIce,
- BlueOrchid,
- BlueShulkerBox,
- BlueStainedGlass,
- BlueStainedGlassPane,
- BlueTerracotta,
- BlueWallBanner,
- BlueWool,
- BoneBlock,
- Bookshelf,
- BrainCoral,
- BrainCoralBlock,
- BrainCoralFan,
- BrainCoralWallFan,
- BrewingStand,
- BrickSlab,
- BrickStairs,
- BrickWall,
- Bricks,
- BrownBanner,
- BrownBed,
- BrownCarpet,
- BrownConcrete,
- BrownConcretePowder,
- BrownGlazedTerracotta,
- BrownMushroom,
- BrownMushroomBlock,
- BrownShulkerBox,
- BrownStainedGlass,
- BrownStainedGlassPane,
- BrownTerracotta,
- BrownWallBanner,
- BrownWool,
- BubbleColumn,
- BubbleCoral,
- BubbleCoralBlock,
- BubbleCoralFan,
- BubbleCoralWallFan,
- Cactus,
- Cake,
- Campfire,
- Carrots,
- CartographyTable,
- CarvedPumpkin,
- Cauldron,
- CaveAir,
- Chain,
- ChainCommandBlock,
- Chest,
- ChippedAnvil,
- ChiseledNetherBricks,
- ChiseledPolishedBlackstone,
- ChiseledQuartzBlock,
- ChiseledRedSandstone,
- ChiseledSandstone,
- ChiseledStoneBricks,
- ChorusFlower,
- ChorusPlant,
- Clay,
- CoalBlock,
- CoalOre,
- CoarseDirt,
- Cobblestone,
- CobblestoneSlab,
- CobblestoneStairs,
- CobblestoneWall,
- Cobweb,
- Cocoa,
- CommandBlock,
- Comparator,
- Composter,
- Conduit,
- Cornflower,
- CrackedNetherBricks,
- CrackedPolishedBlackstoneBricks,
- CrackedStoneBricks,
- CraftingTable,
- CreeperHead,
- CreeperWallHead,
- CrimsonButton,
- CrimsonDoor,
- CrimsonFence,
- CrimsonFenceGate,
- CrimsonFungus,
- CrimsonHyphae,
- CrimsonNylium,
- CrimsonPlanks,
- CrimsonPressurePlate,
- CrimsonRoots,
- CrimsonSign,
- CrimsonSlab,
- CrimsonStairs,
- CrimsonStem,
- CrimsonTrapdoor,
- CrimsonWallSign,
- CryingObsidian,
- CutRedSandstone,
- CutRedSandstoneSlab,
- CutSandstone,
- CutSandstoneSlab,
- CyanBanner,
- CyanBed,
- CyanCarpet,
- CyanConcrete,
- CyanConcretePowder,
- CyanGlazedTerracotta,
- CyanShulkerBox,
- CyanStainedGlass,
- CyanStainedGlassPane,
- CyanTerracotta,
- CyanWallBanner,
- CyanWool,
- DamagedAnvil,
- Dandelion,
- DarkOakButton,
- DarkOakDoor,
- DarkOakFence,
- DarkOakFenceGate,
- DarkOakLeaves,
- DarkOakLog,
- DarkOakPlanks,
- DarkOakPressurePlate,
- DarkOakSapling,
- DarkOakSign,
- DarkOakSlab,
- DarkOakStairs,
- DarkOakTrapdoor,
- DarkOakWallSign,
- DarkOakWood,
- DarkPrismarine,
- DarkPrismarineSlab,
- DarkPrismarineStairs,
- DaylightDetector,
- DeadBrainCoral,
- DeadBrainCoralBlock,
- DeadBrainCoralFan,
- DeadBrainCoralWallFan,
- DeadBubbleCoral,
- DeadBubbleCoralBlock,
- DeadBubbleCoralFan,
- DeadBubbleCoralWallFan,
- DeadBush,
- DeadFireCoral,
- DeadFireCoralBlock,
- DeadFireCoralFan,
- DeadFireCoralWallFan,
- DeadHornCoral,
- DeadHornCoralBlock,
- DeadHornCoralFan,
- DeadHornCoralWallFan,
- DeadTubeCoral,
- DeadTubeCoralBlock,
- DeadTubeCoralFan,
- DeadTubeCoralWallFan,
- DetectorRail,
- DiamondBlock,
- DiamondOre,
- Diorite,
- DioriteSlab,
- DioriteStairs,
- DioriteWall,
- Dirt,
- Dispenser,
- DragonEgg,
- DragonHead,
- DragonWallHead,
- DriedKelpBlock,
- Dropper,
- EmeraldBlock,
- EmeraldOre,
- EnchantingTable,
- EndGateway,
- EndPortal,
- EndPortalFrame,
- EndRod,
- EndStone,
- EndStoneBrickSlab,
- EndStoneBrickStairs,
- EndStoneBrickWall,
- EndStoneBricks,
- EnderChest,
- Farmland,
- Fern,
- Fire,
- FireCoral,
- FireCoralBlock,
- FireCoralFan,
- FireCoralWallFan,
- FletchingTable,
- FlowerPot,
- FrostedIce,
- Furnace,
- GildedBlackstone,
- Glass,
- GlassPane,
- Glowstone,
- GoldBlock,
- GoldOre,
- Granite,
- GraniteSlab,
- GraniteStairs,
- GraniteWall,
- Grass,
- GrassBlock,
- GrassPath,
- Gravel,
- GrayBanner,
- GrayBed,
- GrayCarpet,
- GrayConcrete,
- GrayConcretePowder,
- GrayGlazedTerracotta,
- GrayShulkerBox,
- GrayStainedGlass,
- GrayStainedGlassPane,
- GrayTerracotta,
- GrayWallBanner,
- GrayWool,
- GreenBanner,
- GreenBed,
- GreenCarpet,
- GreenConcrete,
- GreenConcretePowder,
- GreenGlazedTerracotta,
- GreenShulkerBox,
- GreenStainedGlass,
- GreenStainedGlassPane,
- GreenTerracotta,
- GreenWallBanner,
- GreenWool,
- Grindstone,
- HayBale,
- HeavyWeightedPressurePlate,
- HoneyBlock,
- HoneycombBlock,
- Hopper,
- HornCoral,
- HornCoralBlock,
- HornCoralFan,
- HornCoralWallFan,
- Ice,
- InfestedChiseledStoneBricks,
- InfestedCobblestone,
- InfestedCrackedStoneBricks,
- InfestedMossyStoneBricks,
- InfestedStone,
- InfestedStoneBricks,
- IronBars,
- IronBlock,
- IronDoor,
- IronOre,
- IronTrapdoor,
- JackOLantern,
- Jigsaw,
- Jukebox,
- JungleButton,
- JungleDoor,
- JungleFence,
- JungleFenceGate,
- JungleLeaves,
- JungleLog,
- JunglePlanks,
- JunglePressurePlate,
- JungleSapling,
- JungleSign,
- JungleSlab,
- JungleStairs,
- JungleTrapdoor,
- JungleWallSign,
- JungleWood,
- Kelp,
- KelpPlant,
- Ladder,
- Lantern,
- LapisBlock,
- LapisOre,
- LargeFern,
- Lava,
- Lectern,
- Lever,
- LightBlueBanner,
- LightBlueBed,
- LightBlueCarpet,
- LightBlueConcrete,
- LightBlueConcretePowder,
- LightBlueGlazedTerracotta,
- LightBlueShulkerBox,
- LightBlueStainedGlass,
- LightBlueStainedGlassPane,
- LightBlueTerracotta,
- LightBlueWallBanner,
- LightBlueWool,
- LightGrayBanner,
- LightGrayBed,
- LightGrayCarpet,
- LightGrayConcrete,
- LightGrayConcretePowder,
- LightGrayGlazedTerracotta,
- LightGrayShulkerBox,
- LightGrayStainedGlass,
- LightGrayStainedGlassPane,
- LightGrayTerracotta,
- LightGrayWallBanner,
- LightGrayWool,
- LightWeightedPressurePlate,
- Lilac,
- LilyOfTheValley,
- LilyPad,
- LimeBanner,
- LimeBed,
- LimeCarpet,
- LimeConcrete,
- LimeConcretePowder,
- LimeGlazedTerracotta,
- LimeShulkerBox,
- LimeStainedGlass,
- LimeStainedGlassPane,
- LimeTerracotta,
- LimeWallBanner,
- LimeWool,
- Lodestone,
- Loom,
- MagentaBanner,
- MagentaBed,
- MagentaCarpet,
- MagentaConcrete,
- MagentaConcretePowder,
- MagentaGlazedTerracotta,
- MagentaShulkerBox,
- MagentaStainedGlass,
- MagentaStainedGlassPane,
- MagentaTerracotta,
- MagentaWallBanner,
- MagentaWool,
- MagmaBlock,
- Melon,
- MelonStem,
- MossyCobblestone,
- MossyCobblestoneSlab,
- MossyCobblestoneStairs,
- MossyCobblestoneWall,
- MossyStoneBrickSlab,
- MossyStoneBrickStairs,
- MossyStoneBrickWall,
- MossyStoneBricks,
- MovingPiston,
- MushroomStem,
- Mycelium,
- NetherBrickFence,
- NetherBrickSlab,
- NetherBrickStairs,
- NetherBrickWall,
- NetherBricks,
- NetherGoldOre,
- NetherPortal,
- NetherQuartzOre,
- NetherSprouts,
- NetherWart,
- NetherWartBlock,
- NetheriteBlock,
- Netherrack,
- NoteBlock,
- OakButton,
- OakDoor,
- OakFence,
- OakFenceGate,
- OakLeaves,
- OakLog,
- OakPlanks,
- OakPressurePlate,
- OakSapling,
- OakSign,
- OakSlab,
- OakStairs,
- OakTrapdoor,
- OakWallSign,
- OakWood,
- Observer,
- Obsidian,
- OrangeBanner,
- OrangeBed,
- OrangeCarpet,
- OrangeConcrete,
- OrangeConcretePowder,
- OrangeGlazedTerracotta,
- OrangeShulkerBox,
- OrangeStainedGlass,
- OrangeStainedGlassPane,
- OrangeTerracotta,
- OrangeTulip,
- OrangeWallBanner,
- OrangeWool,
- OxeyeDaisy,
- PackedIce,
- Peony,
- PetrifiedOakSlab,
- PinkBanner,
- PinkBed,
- PinkCarpet,
- PinkConcrete,
- PinkConcretePowder,
- PinkGlazedTerracotta,
- PinkShulkerBox,
- PinkStainedGlass,
- PinkStainedGlassPane,
- PinkTerracotta,
- PinkTulip,
- PinkWallBanner,
- PinkWool,
- Piston,
- PistonHead,
- PlayerHead,
- PlayerWallHead,
- Podzol,
- PolishedAndesite,
- PolishedAndesiteSlab,
- PolishedAndesiteStairs,
- PolishedBasalt,
- PolishedBlackstone,
- PolishedBlackstoneBrickSlab,
- PolishedBlackstoneBrickStairs,
- PolishedBlackstoneBrickWall,
- PolishedBlackstoneBricks,
- PolishedBlackstoneButton,
- PolishedBlackstonePressurePlate,
- PolishedBlackstoneSlab,
- PolishedBlackstoneStairs,
- PolishedBlackstoneWall,
- PolishedDiorite,
- PolishedDioriteSlab,
- PolishedDioriteStairs,
- PolishedGranite,
- PolishedGraniteSlab,
- PolishedGraniteStairs,
- Poppy,
- Potatoes,
- PottedAcaciaSapling,
- PottedAllium,
- PottedAzureBluet,
- PottedBamboo,
- PottedBirchSapling,
- PottedBlueOrchid,
- PottedBrownMushroom,
- PottedCactus,
- PottedCornflower,
- PottedCrimsonFungus,
- PottedCrimsonRoots,
- PottedDandelion,
- PottedDarkOakSapling,
- PottedDeadBush,
- PottedFern,
- PottedJungleSapling,
- PottedLilyOfTheValley,
- PottedOakSapling,
- PottedOrangeTulip,
- PottedOxeyeDaisy,
- PottedPinkTulip,
- PottedPoppy,
- PottedRedMushroom,
- PottedRedTulip,
- PottedSpruceSapling,
- PottedWarpedFungus,
- PottedWarpedRoots,
- PottedWhiteTulip,
- PottedWitherRose,
- PoweredRail,
- Prismarine,
- PrismarineBrickSlab,
- PrismarineBrickStairs,
- PrismarineBricks,
- PrismarineSlab,
- PrismarineStairs,
- PrismarineWall,
- Pumpkin,
- PumpkinStem,
- PurpleBanner,
- PurpleBed,
- PurpleCarpet,
- PurpleConcrete,
- PurpleConcretePowder,
- PurpleGlazedTerracotta,
- PurpleShulkerBox,
- PurpleStainedGlass,
- PurpleStainedGlassPane,
- PurpleTerracotta,
- PurpleWallBanner,
- PurpleWool,
- PurpurBlock,
- PurpurPillar,
- PurpurSlab,
- PurpurStairs,
- QuartzBlock,
- QuartzBricks,
- QuartzPillar,
- QuartzSlab,
- QuartzStairs,
- Rail,
- RedBanner,
- RedBed,
- RedCarpet,
- RedConcrete,
- RedConcretePowder,
- RedGlazedTerracotta,
- RedMushroom,
- RedMushroomBlock,
- RedNetherBrickSlab,
- RedNetherBrickStairs,
- RedNetherBrickWall,
- RedNetherBricks,
- RedSand,
- RedSandstone,
- RedSandstoneSlab,
- RedSandstoneStairs,
- RedSandstoneWall,
- RedShulkerBox,
- RedStainedGlass,
- RedStainedGlassPane,
- RedTerracotta,
- RedTulip,
- RedWallBanner,
- RedWool,
- RedstoneBlock,
- RedstoneLamp,
- RedstoneOre,
- RedstoneTorch,
- RedstoneWallTorch,
- RedstoneWire,
- Repeater,
- RepeatingCommandBlock,
- RespawnAnchor,
- RoseBush,
- Sand,
- Sandstone,
- SandstoneSlab,
- SandstoneStairs,
- SandstoneWall,
- Scaffolding,
- SeaLantern,
- SeaPickle,
- Seagrass,
- Shroomlight,
- ShulkerBox,
- SkeletonSkull,
- SkeletonWallSkull,
- SlimeBlock,
- SmithingTable,
- Smoker,
- SmoothQuartz,
- SmoothQuartzSlab,
- SmoothQuartzStairs,
- SmoothRedSandstone,
- SmoothRedSandstoneSlab,
- SmoothRedSandstoneStairs,
- SmoothSandstone,
- SmoothSandstoneSlab,
- SmoothSandstoneStairs,
- SmoothStone,
- SmoothStoneSlab,
- Snow,
- SnowBlock,
- SoulCampfire,
- SoulFire,
- SoulLantern,
- SoulSand,
- SoulSoil,
- SoulTorch,
- SoulWallTorch,
- Spawner,
- Sponge,
- SpruceButton,
- SpruceDoor,
- SpruceFence,
- SpruceFenceGate,
- SpruceLeaves,
- SpruceLog,
- SprucePlanks,
- SprucePressurePlate,
- SpruceSapling,
- SpruceSign,
- SpruceSlab,
- SpruceStairs,
- SpruceTrapdoor,
- SpruceWallSign,
- SpruceWood,
- StickyPiston,
- Stone,
- StoneBrickSlab,
- StoneBrickStairs,
- StoneBrickWall,
- StoneBricks,
- StoneButton,
- StonePressurePlate,
- StoneSlab,
- StoneStairs,
- Stonecutter,
- StrippedAcaciaLog,
- StrippedAcaciaWood,
- StrippedBirchLog,
- StrippedBirchWood,
- StrippedCrimsonHyphae,
- StrippedCrimsonStem,
- StrippedDarkOakLog,
- StrippedDarkOakWood,
- StrippedJungleLog,
- StrippedJungleWood,
- StrippedOakLog,
- StrippedOakWood,
- StrippedSpruceLog,
- StrippedSpruceWood,
- StrippedWarpedHyphae,
- StrippedWarpedStem,
- StructureBlock,
- StructureVoid,
- SugarCane,
- Sunflower,
- SweetBerryBush,
- TNT,
- TallGrass,
- TallSeagrass,
- Target,
- Terracotta,
- Torch,
- TrappedChest,
- Tripwire,
- TripwireHook,
- TubeCoral,
- TubeCoralBlock,
- TubeCoralFan,
- TubeCoralWallFan,
- TurtleEgg,
- TwistingVines,
- TwistingVinesPlant,
- Vine,
- VoidAir,
- WallTorch,
- WarpedButton,
- WarpedDoor,
- WarpedFence,
- WarpedFenceGate,
- WarpedFungus,
- WarpedHyphae,
- WarpedNylium,
- WarpedPlanks,
- WarpedPressurePlate,
- WarpedRoots,
- WarpedSign,
- WarpedSlab,
- WarpedStairs,
- WarpedStem,
- WarpedTrapdoor,
- WarpedWallSign,
- WarpedWartBlock,
- Water,
- WeepingVines,
- WeepingVinesPlant,
- WetSponge,
- Wheat,
- WhiteBanner,
- WhiteBed,
- WhiteCarpet,
- WhiteConcrete,
- WhiteConcretePowder,
- WhiteGlazedTerracotta,
- WhiteShulkerBox,
- WhiteStainedGlass,
- WhiteStainedGlassPane,
- WhiteTerracotta,
- WhiteTulip,
- WhiteWallBanner,
- WhiteWool,
- WitherRose,
- WitherSkeletonSkull,
- WitherSkeletonWallSkull,
- YellowBanner,
- YellowBed,
- YellowCarpet,
- YellowConcrete,
- YellowConcretePowder,
- YellowGlazedTerracotta,
- YellowShulkerBox,
- YellowStainedGlass,
- YellowStainedGlassPane,
- YellowTerracotta,
- YellowWallBanner,
- YellowWool,
- ZombieHead,
- ZombieWallHead
- };
- enum Type Type(short ID);
- bool Is(short ID, enum Type Type);
- namespace AcaciaButton
- {
- enum class Face
- {
- Floor,
- Wall,
- Ceiling
- };
- constexpr short AcaciaButton(enum Face Face, eBlockFace Facing, bool Powered)
- {
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6442;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6443;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6444;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6445;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6446;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6447;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6448;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 6449;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6450;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6451;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6452;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6453;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6454;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6455;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6456;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 6457;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6458;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6459;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6460;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6461;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6462;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6463;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6464;
- return 6465;
- }
- short AcaciaButton();
- enum Face Face(short ID);
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace AcaciaDoor
- {
- enum class Half
- {
- Upper,
- Lower
- };
- enum class Hinge
- {
- Left,
- Right
- };
- constexpr short AcaciaDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8930;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8931;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8932;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8933;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8934;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8935;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8936;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8937;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8938;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8939;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8940;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8941;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8942;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8943;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8944;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 8945;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8946;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8947;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8948;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8949;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8950;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8951;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8952;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8953;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8954;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8955;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8956;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8957;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8958;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8959;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8960;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 8961;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8962;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8963;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8964;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8965;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8966;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8967;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8968;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8969;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8970;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8971;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8972;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8973;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8974;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8975;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8976;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 8977;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8978;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8979;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8980;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8981;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8982;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8983;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8984;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8985;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8986;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8987;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8988;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8989;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8990;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8991;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8992;
- return 8993;
- }
- short AcaciaDoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Hinge Hinge(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace AcaciaFence
- {
- constexpr short AcaciaFence(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 8676;
- if (East && North && South && !West) return 8677;
- if (East && North && !South && West) return 8680;
- if (East && North && !South && !West) return 8681;
- if (East && !North && South && West) return 8684;
- if (East && !North && South && !West) return 8685;
- if (East && !North && !South && West) return 8688;
- if (East && !North && !South && !West) return 8689;
- if (!East && North && South && West) return 8692;
- if (!East && North && South && !West) return 8693;
- if (!East && North && !South && West) return 8696;
- if (!East && North && !South && !West) return 8697;
- if (!East && !North && South && West) return 8700;
- if (!East && !North && South && !West) return 8701;
- if (!East && !North && !South && West) return 8704;
- return 8705;
- }
- short AcaciaFence();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace AcaciaFenceGate
- {
- constexpr short AcaciaFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && Powered) return 8514;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && !Powered) return 8515;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && Powered) return 8516;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && !Powered) return 8517;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && Powered) return 8518;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && !Powered) return 8519;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && Powered) return 8520;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && !Powered) return 8521;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && Powered) return 8522;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && !Powered) return 8523;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && Powered) return 8524;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && !Powered) return 8525;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && Powered) return 8526;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && !Powered) return 8527;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && Powered) return 8528;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && !Powered) return 8529;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && Powered) return 8530;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && !Powered) return 8531;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && Powered) return 8532;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && !Powered) return 8533;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && Powered) return 8534;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && !Powered) return 8535;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && Powered) return 8536;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && !Powered) return 8537;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && Powered) return 8538;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && !Powered) return 8539;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && Powered) return 8540;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && !Powered) return 8541;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && Powered) return 8542;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && !Powered) return 8543;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && !Open && Powered) return 8544;
- return 8545;
- }
- short AcaciaFenceGate();
- eBlockFace Facing(short ID);
- bool InWall(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace AcaciaLeaves
- {
- constexpr short AcaciaLeaves(unsigned char Distance, bool Persistent)
- {
- if (Distance == 1 && Persistent) return 201;
- if (Distance == 1 && !Persistent) return 202;
- if (Distance == 2 && Persistent) return 203;
- if (Distance == 2 && !Persistent) return 204;
- if (Distance == 3 && Persistent) return 205;
- if (Distance == 3 && !Persistent) return 206;
- if (Distance == 4 && Persistent) return 207;
- if (Distance == 4 && !Persistent) return 208;
- if (Distance == 5 && Persistent) return 209;
- if (Distance == 5 && !Persistent) return 210;
- if (Distance == 6 && Persistent) return 211;
- if (Distance == 6 && !Persistent) return 212;
- if (Distance == 7 && Persistent) return 213;
- return 214;
- }
- short AcaciaLeaves();
- unsigned char Distance(short ID);
- bool Persistent(short ID);
- }
- namespace AcaciaLog
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short AcaciaLog(enum Axis Axis)
- {
- if (Axis == Axis::X) return 85;
- if (Axis == Axis::Y) return 86;
- return 87;
- }
- short AcaciaLog();
- enum Axis Axis(short ID);
- }
- namespace AcaciaPlanks
- {
- constexpr short AcaciaPlanks()
- {
- return 19;
- }
- }
- namespace AcaciaPressurePlate
- {
- constexpr short AcaciaPressurePlate(bool Powered)
- {
- if (Powered) return 3881;
- return 3882;
- }
- short AcaciaPressurePlate();
- bool Powered(short ID);
- }
- namespace AcaciaSapling
- {
- constexpr short AcaciaSapling(unsigned char Stage)
- {
- if (Stage == 0) return 29;
- return 30;
- }
- short AcaciaSapling();
- unsigned char Stage(short ID);
- }
- namespace AcaciaSign
- {
- constexpr short AcaciaSign(unsigned char Rotation)
- {
- if (Rotation == 0) return 3478;
- if (Rotation == 1) return 3480;
- if (Rotation == 2) return 3482;
- if (Rotation == 3) return 3484;
- if (Rotation == 4) return 3486;
- if (Rotation == 5) return 3488;
- if (Rotation == 6) return 3490;
- if (Rotation == 7) return 3492;
- if (Rotation == 8) return 3494;
- if (Rotation == 9) return 3496;
- if (Rotation == 10) return 3498;
- if (Rotation == 11) return 3500;
- if (Rotation == 12) return 3502;
- if (Rotation == 13) return 3504;
- if (Rotation == 14) return 3506;
- return 3508;
- }
- short AcaciaSign();
- unsigned char Rotation(short ID);
- }
- namespace AcaciaSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short AcaciaSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8325;
- if (Type == Type::Bottom) return 8327;
- return 8329;
- }
- short AcaciaSlab();
- enum Type Type(short ID);
- }
- namespace AcaciaStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short AcaciaStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 7376;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 7378;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 7380;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 7382;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 7384;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 7386;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7388;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 7390;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7392;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 7394;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 7396;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 7398;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 7400;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 7402;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 7404;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 7406;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7408;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 7410;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7412;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 7414;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 7416;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 7418;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 7420;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 7422;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 7424;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 7426;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7428;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 7430;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7432;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 7434;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 7436;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 7438;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 7440;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 7442;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 7444;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 7446;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7448;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 7450;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7452;
- return 7454;
- }
- short AcaciaStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace AcaciaTrapdoor
- {
- enum class Half
- {
- Top,
- Bottom
- };
- constexpr short AcaciaTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && Powered) return 4368;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && !Powered) return 4370;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && Powered) return 4372;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && !Powered) return 4374;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && Powered) return 4376;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && !Powered) return 4378;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && Powered) return 4380;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && !Powered) return 4382;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && Powered) return 4384;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && !Powered) return 4386;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && Powered) return 4388;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && !Powered) return 4390;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && Powered) return 4392;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && !Powered) return 4394;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && Powered) return 4396;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && !Powered) return 4398;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && Powered) return 4400;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && !Powered) return 4402;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && Powered) return 4404;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && !Powered) return 4406;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && Powered) return 4408;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && !Powered) return 4410;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && Powered) return 4412;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && !Powered) return 4414;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && Powered) return 4416;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && !Powered) return 4418;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && Powered) return 4420;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && !Powered) return 4422;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && Powered) return 4424;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && !Powered) return 4426;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && !Open && Powered) return 4428;
- return 4430;
- }
- short AcaciaTrapdoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace AcaciaWallSign
- {
- constexpr short AcaciaWallSign(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3760;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3762;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 3764;
- return 3766;
- }
- short AcaciaWallSign();
- eBlockFace Facing(short ID);
- }
- namespace AcaciaWood
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short AcaciaWood(enum Axis Axis)
- {
- if (Axis == Axis::X) return 121;
- if (Axis == Axis::Y) return 122;
- return 123;
- }
- short AcaciaWood();
- enum Axis Axis(short ID);
- }
- namespace ActivatorRail
- {
- enum class Shape
- {
- NorthSouth,
- EastWest,
- AscendingEast,
- AscendingWest,
- AscendingNorth,
- AscendingSouth
- };
- constexpr short ActivatorRail(bool Powered, enum Shape Shape)
- {
- if (Powered && Shape == Shape::NorthSouth) return 6823;
- if (Powered && Shape == Shape::EastWest) return 6824;
- if (Powered && Shape == Shape::AscendingEast) return 6825;
- if (Powered && Shape == Shape::AscendingWest) return 6826;
- if (Powered && Shape == Shape::AscendingNorth) return 6827;
- if (Powered && Shape == Shape::AscendingSouth) return 6828;
- if (!Powered && Shape == Shape::NorthSouth) return 6829;
- if (!Powered && Shape == Shape::EastWest) return 6830;
- if (!Powered && Shape == Shape::AscendingEast) return 6831;
- if (!Powered && Shape == Shape::AscendingWest) return 6832;
- if (!Powered && Shape == Shape::AscendingNorth) return 6833;
- return 6834;
- }
- short ActivatorRail();
- bool Powered(short ID);
- enum Shape Shape(short ID);
- }
- namespace Air
- {
- constexpr short Air()
- {
- return -0;
- }
- }
- namespace Allium
- {
- constexpr short Allium()
- {
- return 1415;
- }
- }
- namespace AncientDebris
- {
- constexpr short AncientDebris()
- {
- return 15827;
- }
- }
- namespace Andesite
- {
- constexpr short Andesite()
- {
- return 6;
- }
- }
- namespace AndesiteSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short AndesiteSlab(enum Type Type)
- {
- if (Type == Type::Top) return 10844;
- if (Type == Type::Bottom) return 10846;
- return 10848;
- }
- short AndesiteSlab();
- enum Type Type(short ID);
- }
- namespace AndesiteStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short AndesiteStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 10470;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 10472;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 10474;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 10476;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 10478;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 10480;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10482;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10484;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10486;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10488;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 10490;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 10492;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 10494;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 10496;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 10498;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 10500;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10502;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10504;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10506;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 10508;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 10510;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 10512;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 10514;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 10516;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 10518;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 10520;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10522;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10524;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10526;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10528;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 10530;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 10532;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 10534;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 10536;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 10538;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 10540;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10542;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10544;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10546;
- return 10548;
- }
- short AndesiteStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace AndesiteWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short AndesiteWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 13138;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 13139;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 13140;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 13144;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 13145;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 13146;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 13150;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 13151;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 13152;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 13156;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 13157;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 13158;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 13162;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 13163;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 13164;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 13168;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 13169;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 13170;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 13174;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 13175;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 13176;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 13180;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 13181;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 13182;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 13186;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 13187;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 13188;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 13192;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 13193;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 13194;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 13198;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 13199;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 13200;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 13204;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 13205;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 13206;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 13210;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 13211;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 13212;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 13216;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 13217;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 13218;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 13222;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 13223;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 13224;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 13228;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 13229;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 13230;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 13234;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 13235;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 13236;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 13240;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 13241;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 13242;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 13246;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 13247;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 13248;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 13252;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 13253;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 13254;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 13258;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 13259;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 13260;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 13264;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 13265;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 13266;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 13270;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 13271;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 13272;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 13276;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 13277;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 13278;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 13282;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 13283;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 13284;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 13288;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 13289;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 13290;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 13294;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 13295;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 13296;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 13300;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 13301;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 13302;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 13306;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 13307;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 13308;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 13312;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 13313;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 13314;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 13318;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 13319;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 13320;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 13324;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 13325;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 13326;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 13330;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 13331;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 13332;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 13336;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 13337;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 13338;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 13342;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 13343;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 13344;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 13348;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 13349;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 13350;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 13354;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 13355;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 13356;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 13360;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 13361;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 13362;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 13366;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 13367;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 13368;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 13372;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 13373;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 13374;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 13378;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 13379;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 13380;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 13384;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 13385;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 13386;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 13390;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 13391;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 13392;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 13396;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 13397;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 13398;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 13402;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 13403;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 13404;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 13408;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 13409;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 13410;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 13414;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 13415;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 13416;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 13420;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 13421;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 13422;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 13426;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 13427;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 13428;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 13432;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 13433;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 13434;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 13438;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 13439;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 13440;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 13444;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 13445;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 13446;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 13450;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 13451;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 13452;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 13456;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 13457;
- return 13458;
- }
- short AndesiteWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace Anvil
- {
- constexpr short Anvil(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6610;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6611;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 6612;
- return 6613;
- }
- short Anvil();
- eBlockFace Facing(short ID);
- }
- namespace AttachedMelonStem
- {
- constexpr short AttachedMelonStem(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4768;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4769;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 4770;
- return 4771;
- }
- short AttachedMelonStem();
- eBlockFace Facing(short ID);
- }
- namespace AttachedPumpkinStem
- {
- constexpr short AttachedPumpkinStem(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4764;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4765;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 4766;
- return 4767;
- }
- short AttachedPumpkinStem();
- eBlockFace Facing(short ID);
- }
- namespace AzureBluet
- {
- constexpr short AzureBluet()
- {
- return 1416;
- }
- }
- namespace Bamboo
- {
- enum class Leaves
- {
- None,
- Small,
- Large
- };
- constexpr short Bamboo(unsigned char Age, enum Leaves Leaves, unsigned char Stage)
- {
- if (Age == 0 && Leaves == Leaves::None && Stage == 0) return 9652;
- if (Age == 0 && Leaves == Leaves::None && Stage == 1) return 9653;
- if (Age == 0 && Leaves == Leaves::Small && Stage == 0) return 9654;
- if (Age == 0 && Leaves == Leaves::Small && Stage == 1) return 9655;
- if (Age == 0 && Leaves == Leaves::Large && Stage == 0) return 9656;
- if (Age == 0 && Leaves == Leaves::Large && Stage == 1) return 9657;
- if (Age == 1 && Leaves == Leaves::None && Stage == 0) return 9658;
- if (Age == 1 && Leaves == Leaves::None && Stage == 1) return 9659;
- if (Age == 1 && Leaves == Leaves::Small && Stage == 0) return 9660;
- if (Age == 1 && Leaves == Leaves::Small && Stage == 1) return 9661;
- if (Age == 1 && Leaves == Leaves::Large && Stage == 0) return 9662;
- return 9663;
- }
- short Bamboo();
- unsigned char Age(short ID);
- enum Leaves Leaves(short ID);
- unsigned char Stage(short ID);
- }
- namespace BambooSapling
- {
- constexpr short BambooSapling()
- {
- return 9651;
- }
- }
- namespace Barrel
- {
- constexpr short Barrel(eBlockFace Facing, bool Open)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Open) return 14791;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Open) return 14792;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Open) return 14793;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Open) return 14794;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Open) return 14795;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Open) return 14796;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Open) return 14797;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Open) return 14798;
- if (Facing == eBlockFace::BLOCK_FACE_YP && Open) return 14799;
- if (Facing == eBlockFace::BLOCK_FACE_YP && !Open) return 14800;
- if (Facing == eBlockFace::BLOCK_FACE_YM && Open) return 14801;
- return 14802;
- }
- short Barrel();
- eBlockFace Facing(short ID);
- bool Open(short ID);
- }
- namespace Barrier
- {
- constexpr short Barrier()
- {
- return 7536;
- }
- }
- namespace Basalt
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short Basalt(enum Axis Axis)
- {
- if (Axis == Axis::X) return 4002;
- if (Axis == Axis::Y) return 4003;
- return 4004;
- }
- short Basalt();
- enum Axis Axis(short ID);
- }
- namespace Beacon
- {
- constexpr short Beacon()
- {
- return 5656;
- }
- }
- namespace Bedrock
- {
- constexpr short Bedrock()
- {
- return 33;
- }
- }
- namespace BeeNest
- {
- constexpr short BeeNest(eBlockFace Facing, unsigned char HoneyLevel)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 0) return 15776;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 1) return 15777;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 2) return 15778;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 3) return 15779;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 4) return 15780;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 5) return 15781;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 0) return 15782;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 1) return 15783;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 2) return 15784;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 3) return 15785;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 4) return 15786;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 5) return 15787;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 0) return 15788;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 1) return 15789;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 2) return 15790;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 3) return 15791;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 4) return 15792;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 5) return 15793;
- if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 0) return 15794;
- if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 1) return 15795;
- if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 2) return 15796;
- if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 3) return 15797;
- if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 4) return 15798;
- return 15799;
- }
- short BeeNest();
- eBlockFace Facing(short ID);
- unsigned char HoneyLevel(short ID);
- }
- namespace Beehive
- {
- constexpr short Beehive(eBlockFace Facing, unsigned char HoneyLevel)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 0) return 15800;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 1) return 15801;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 2) return 15802;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 3) return 15803;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 4) return 15804;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HoneyLevel == 5) return 15805;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 0) return 15806;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 1) return 15807;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 2) return 15808;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 3) return 15809;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 4) return 15810;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HoneyLevel == 5) return 15811;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 0) return 15812;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 1) return 15813;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 2) return 15814;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 3) return 15815;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 4) return 15816;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HoneyLevel == 5) return 15817;
- if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 0) return 15818;
- if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 1) return 15819;
- if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 2) return 15820;
- if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 3) return 15821;
- if (Facing == eBlockFace::BLOCK_FACE_XP && HoneyLevel == 4) return 15822;
- return 15823;
- }
- short Beehive();
- eBlockFace Facing(short ID);
- unsigned char HoneyLevel(short ID);
- }
- namespace Beetroots
- {
- constexpr short Beetroots(unsigned char Age)
- {
- if (Age == 0) return 9219;
- if (Age == 1) return 9220;
- if (Age == 2) return 9221;
- return 9222;
- }
- short Beetroots();
- unsigned char Age(short ID);
- }
- namespace Bell
- {
- enum class Attachment
- {
- Floor,
- Ceiling,
- SingleWall,
- DoubleWall
- };
- constexpr short Bell(enum Attachment Attachment, eBlockFace Facing, bool Powered)
- {
- if (Attachment == Attachment::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 14854;
- if (Attachment == Attachment::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 14855;
- if (Attachment == Attachment::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 14856;
- if (Attachment == Attachment::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 14857;
- if (Attachment == Attachment::Floor && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 14858;
- if (Attachment == Attachment::Floor && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 14859;
- if (Attachment == Attachment::Floor && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 14860;
- if (Attachment == Attachment::Floor && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 14861;
- if (Attachment == Attachment::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 14862;
- if (Attachment == Attachment::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 14863;
- if (Attachment == Attachment::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 14864;
- if (Attachment == Attachment::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 14865;
- if (Attachment == Attachment::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 14866;
- if (Attachment == Attachment::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 14867;
- if (Attachment == Attachment::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 14868;
- if (Attachment == Attachment::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 14869;
- if (Attachment == Attachment::SingleWall && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 14870;
- if (Attachment == Attachment::SingleWall && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 14871;
- if (Attachment == Attachment::SingleWall && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 14872;
- if (Attachment == Attachment::SingleWall && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 14873;
- if (Attachment == Attachment::SingleWall && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 14874;
- if (Attachment == Attachment::SingleWall && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 14875;
- if (Attachment == Attachment::SingleWall && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 14876;
- if (Attachment == Attachment::SingleWall && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 14877;
- if (Attachment == Attachment::DoubleWall && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 14878;
- if (Attachment == Attachment::DoubleWall && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 14879;
- if (Attachment == Attachment::DoubleWall && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 14880;
- if (Attachment == Attachment::DoubleWall && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 14881;
- if (Attachment == Attachment::DoubleWall && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 14882;
- if (Attachment == Attachment::DoubleWall && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 14883;
- if (Attachment == Attachment::DoubleWall && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 14884;
- return 14885;
- }
- short Bell();
- enum Attachment Attachment(short ID);
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace BirchButton
- {
- enum class Face
- {
- Floor,
- Wall,
- Ceiling
- };
- constexpr short BirchButton(enum Face Face, eBlockFace Facing, bool Powered)
- {
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6394;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6395;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6396;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6397;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6398;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6399;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6400;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 6401;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6402;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6403;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6404;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6405;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6406;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6407;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6408;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 6409;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6410;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6411;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6412;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6413;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6414;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6415;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6416;
- return 6417;
- }
- short BirchButton();
- enum Face Face(short ID);
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace BirchDoor
- {
- enum class Half
- {
- Upper,
- Lower
- };
- enum class Hinge
- {
- Left,
- Right
- };
- constexpr short BirchDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8802;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8803;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8804;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8805;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8806;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8807;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8808;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8809;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8810;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8811;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8812;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8813;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8814;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8815;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8816;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 8817;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8818;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8819;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8820;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8821;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8822;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8823;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8824;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8825;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8826;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8827;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8828;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8829;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8830;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8831;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8832;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 8833;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8834;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8835;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8836;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8837;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8838;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8839;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8840;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8841;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8842;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8843;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8844;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8845;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8846;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8847;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8848;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 8849;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8850;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8851;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8852;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8853;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8854;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8855;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8856;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8857;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8858;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8859;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8860;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8861;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8862;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8863;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8864;
- return 8865;
- }
- short BirchDoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Hinge Hinge(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace BirchFence
- {
- constexpr short BirchFence(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 8612;
- if (East && North && South && !West) return 8613;
- if (East && North && !South && West) return 8616;
- if (East && North && !South && !West) return 8617;
- if (East && !North && South && West) return 8620;
- if (East && !North && South && !West) return 8621;
- if (East && !North && !South && West) return 8624;
- if (East && !North && !South && !West) return 8625;
- if (!East && North && South && West) return 8628;
- if (!East && North && South && !West) return 8629;
- if (!East && North && !South && West) return 8632;
- if (!East && North && !South && !West) return 8633;
- if (!East && !North && South && West) return 8636;
- if (!East && !North && South && !West) return 8637;
- if (!East && !North && !South && West) return 8640;
- return 8641;
- }
- short BirchFence();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace BirchFenceGate
- {
- constexpr short BirchFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && Powered) return 8450;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && !Powered) return 8451;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && Powered) return 8452;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && !Powered) return 8453;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && Powered) return 8454;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && !Powered) return 8455;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && Powered) return 8456;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && !Powered) return 8457;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && Powered) return 8458;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && !Powered) return 8459;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && Powered) return 8460;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && !Powered) return 8461;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && Powered) return 8462;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && !Powered) return 8463;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && Powered) return 8464;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && !Powered) return 8465;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && Powered) return 8466;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && !Powered) return 8467;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && Powered) return 8468;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && !Powered) return 8469;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && Powered) return 8470;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && !Powered) return 8471;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && Powered) return 8472;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && !Powered) return 8473;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && Powered) return 8474;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && !Powered) return 8475;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && Powered) return 8476;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && !Powered) return 8477;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && Powered) return 8478;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && !Powered) return 8479;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && !Open && Powered) return 8480;
- return 8481;
- }
- short BirchFenceGate();
- eBlockFace Facing(short ID);
- bool InWall(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace BirchLeaves
- {
- constexpr short BirchLeaves(unsigned char Distance, bool Persistent)
- {
- if (Distance == 1 && Persistent) return 173;
- if (Distance == 1 && !Persistent) return 174;
- if (Distance == 2 && Persistent) return 175;
- if (Distance == 2 && !Persistent) return 176;
- if (Distance == 3 && Persistent) return 177;
- if (Distance == 3 && !Persistent) return 178;
- if (Distance == 4 && Persistent) return 179;
- if (Distance == 4 && !Persistent) return 180;
- if (Distance == 5 && Persistent) return 181;
- if (Distance == 5 && !Persistent) return 182;
- if (Distance == 6 && Persistent) return 183;
- if (Distance == 6 && !Persistent) return 184;
- if (Distance == 7 && Persistent) return 185;
- return 186;
- }
- short BirchLeaves();
- unsigned char Distance(short ID);
- bool Persistent(short ID);
- }
- namespace BirchLog
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short BirchLog(enum Axis Axis)
- {
- if (Axis == Axis::X) return 79;
- if (Axis == Axis::Y) return 80;
- return 81;
- }
- short BirchLog();
- enum Axis Axis(short ID);
- }
- namespace BirchPlanks
- {
- constexpr short BirchPlanks()
- {
- return 17;
- }
- }
- namespace BirchPressurePlate
- {
- constexpr short BirchPressurePlate(bool Powered)
- {
- if (Powered) return 3877;
- return 3878;
- }
- short BirchPressurePlate();
- bool Powered(short ID);
- }
- namespace BirchSapling
- {
- constexpr short BirchSapling(unsigned char Stage)
- {
- if (Stage == 0) return 25;
- return 26;
- }
- short BirchSapling();
- unsigned char Stage(short ID);
- }
- namespace BirchSign
- {
- constexpr short BirchSign(unsigned char Rotation)
- {
- if (Rotation == 0) return 3446;
- if (Rotation == 1) return 3448;
- if (Rotation == 2) return 3450;
- if (Rotation == 3) return 3452;
- if (Rotation == 4) return 3454;
- if (Rotation == 5) return 3456;
- if (Rotation == 6) return 3458;
- if (Rotation == 7) return 3460;
- if (Rotation == 8) return 3462;
- if (Rotation == 9) return 3464;
- if (Rotation == 10) return 3466;
- if (Rotation == 11) return 3468;
- if (Rotation == 12) return 3470;
- if (Rotation == 13) return 3472;
- if (Rotation == 14) return 3474;
- return 3476;
- }
- short BirchSign();
- unsigned char Rotation(short ID);
- }
- namespace BirchSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short BirchSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8313;
- if (Type == Type::Bottom) return 8315;
- return 8317;
- }
- short BirchSlab();
- enum Type Type(short ID);
- }
- namespace BirchStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short BirchStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 5485;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 5487;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 5489;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 5491;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 5493;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 5495;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5497;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 5499;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5501;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 5503;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 5505;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 5507;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 5509;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 5511;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 5513;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 5515;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5517;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 5519;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5521;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 5523;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 5525;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 5527;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 5529;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 5531;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 5533;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 5535;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5537;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 5539;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5541;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 5543;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 5545;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 5547;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 5549;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 5551;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 5553;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 5555;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5557;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 5559;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5561;
- return 5563;
- }
- short BirchStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace BirchTrapdoor
- {
- enum class Half
- {
- Top,
- Bottom
- };
- constexpr short BirchTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && Powered) return 4240;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && !Powered) return 4242;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && Powered) return 4244;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && !Powered) return 4246;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && Powered) return 4248;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && !Powered) return 4250;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && Powered) return 4252;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && !Powered) return 4254;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && Powered) return 4256;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && !Powered) return 4258;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && Powered) return 4260;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && !Powered) return 4262;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && Powered) return 4264;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && !Powered) return 4266;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && Powered) return 4268;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && !Powered) return 4270;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && Powered) return 4272;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && !Powered) return 4274;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && Powered) return 4276;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && !Powered) return 4278;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && Powered) return 4280;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && !Powered) return 4282;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && Powered) return 4284;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && !Powered) return 4286;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && Powered) return 4288;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && !Powered) return 4290;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && Powered) return 4292;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && !Powered) return 4294;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && Powered) return 4296;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && !Powered) return 4298;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && !Open && Powered) return 4300;
- return 4302;
- }
- short BirchTrapdoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace BirchWallSign
- {
- constexpr short BirchWallSign(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3752;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3754;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 3756;
- return 3758;
- }
- short BirchWallSign();
- eBlockFace Facing(short ID);
- }
- namespace BirchWood
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short BirchWood(enum Axis Axis)
- {
- if (Axis == Axis::X) return 115;
- if (Axis == Axis::Y) return 116;
- return 117;
- }
- short BirchWood();
- enum Axis Axis(short ID);
- }
- namespace BlackBanner
- {
- constexpr short BlackBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 8137;
- if (Rotation == 1) return 8138;
- if (Rotation == 2) return 8139;
- if (Rotation == 3) return 8140;
- if (Rotation == 4) return 8141;
- if (Rotation == 5) return 8142;
- if (Rotation == 6) return 8143;
- if (Rotation == 7) return 8144;
- if (Rotation == 8) return 8145;
- if (Rotation == 9) return 8146;
- if (Rotation == 10) return 8147;
- if (Rotation == 11) return 8148;
- if (Rotation == 12) return 8149;
- if (Rotation == 13) return 8150;
- if (Rotation == 14) return 8151;
- return 8152;
- }
- short BlackBanner();
- unsigned char Rotation(short ID);
- }
- namespace BlackBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short BlackBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1289;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1290;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1291;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1292;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1293;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1294;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1295;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1296;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1297;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1298;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1299;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1300;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1301;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1302;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1303;
- return 1304;
- }
- short BlackBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace BlackCarpet
- {
- constexpr short BlackCarpet()
- {
- return 7881;
- }
- }
- namespace BlackConcrete
- {
- constexpr short BlackConcrete()
- {
- return 9453;
- }
- }
- namespace BlackConcretePowder
- {
- constexpr short BlackConcretePowder()
- {
- return 9469;
- }
- }
- namespace BlackGlazedTerracotta
- {
- constexpr short BlackGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9434;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9435;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9436;
- return 9437;
- }
- short BlackGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace BlackShulkerBox
- {
- constexpr short BlackShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9368;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9369;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9370;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9371;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9372;
- return 9373;
- }
- short BlackShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace BlackStainedGlass
- {
- constexpr short BlackStainedGlass()
- {
- return 4110;
- }
- }
- namespace BlackStainedGlassPane
- {
- constexpr short BlackStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 7345;
- if (East && North && South && !West) return 7346;
- if (East && North && !South && West) return 7349;
- if (East && North && !South && !West) return 7350;
- if (East && !North && South && West) return 7353;
- if (East && !North && South && !West) return 7354;
- if (East && !North && !South && West) return 7357;
- if (East && !North && !South && !West) return 7358;
- if (!East && North && South && West) return 7361;
- if (!East && North && South && !West) return 7362;
- if (!East && North && !South && West) return 7365;
- if (!East && North && !South && !West) return 7366;
- if (!East && !North && South && West) return 7369;
- if (!East && !North && South && !West) return 7370;
- if (!East && !North && !South && West) return 7373;
- return 7374;
- }
- short BlackStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace BlackTerracotta
- {
- constexpr short BlackTerracotta()
- {
- return 6862;
- }
- }
- namespace BlackWallBanner
- {
- constexpr short BlackWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8213;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8214;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8215;
- return 8216;
- }
- short BlackWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace BlackWool
- {
- constexpr short BlackWool()
- {
- return 1399;
- }
- }
- namespace Blackstone
- {
- constexpr short Blackstone()
- {
- return 15839;
- }
- }
- namespace BlackstoneSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short BlackstoneSlab(enum Type Type)
- {
- if (Type == Type::Top) return 16245;
- if (Type == Type::Bottom) return 16247;
- return 16249;
- }
- short BlackstoneSlab();
- enum Type Type(short ID);
- }
- namespace BlackstoneStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short BlackstoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 15841;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 15843;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 15845;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 15847;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 15849;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 15851;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 15853;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 15855;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 15857;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 15859;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 15861;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 15863;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 15865;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 15867;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 15869;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 15871;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 15873;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 15875;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 15877;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 15879;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 15881;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 15883;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 15885;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 15887;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 15889;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 15891;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 15893;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 15895;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 15897;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 15899;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 15901;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 15903;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 15905;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 15907;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 15909;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 15911;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 15913;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 15915;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 15917;
- return 15919;
- }
- short BlackstoneStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace BlackstoneWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short BlackstoneWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 15923;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 15924;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 15925;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 15929;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 15930;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 15931;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 15935;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 15936;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 15937;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 15941;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 15942;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 15943;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 15947;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 15948;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 15949;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 15953;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 15954;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 15955;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 15959;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 15960;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 15961;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 15965;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 15966;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 15967;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 15971;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 15972;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 15973;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 15977;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 15978;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 15979;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 15983;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 15984;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 15985;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 15989;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 15990;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 15991;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 15995;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 15996;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 15997;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 16001;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 16002;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 16003;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 16007;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 16008;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 16009;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 16013;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 16014;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 16015;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 16019;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 16020;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 16021;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 16025;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 16026;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 16027;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 16031;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 16032;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 16033;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 16037;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 16038;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 16039;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 16043;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 16044;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 16045;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 16049;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 16050;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 16051;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 16055;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 16056;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 16057;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 16061;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 16062;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 16063;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 16067;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 16068;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 16069;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 16073;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 16074;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 16075;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 16079;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 16080;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 16081;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 16085;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 16086;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 16087;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 16091;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 16092;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 16093;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 16097;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 16098;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 16099;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 16103;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 16104;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 16105;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 16109;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 16110;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 16111;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 16115;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 16116;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 16117;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 16121;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 16122;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 16123;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 16127;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 16128;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 16129;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 16133;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 16134;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 16135;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 16139;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 16140;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 16141;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 16145;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 16146;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 16147;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 16151;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 16152;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 16153;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 16157;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 16158;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 16159;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 16163;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 16164;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 16165;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 16169;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 16170;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 16171;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 16175;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 16176;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 16177;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 16181;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 16182;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 16183;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 16187;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 16188;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 16189;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 16193;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 16194;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 16195;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 16199;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 16200;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 16201;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 16205;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 16206;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 16207;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 16211;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 16212;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 16213;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 16217;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 16218;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 16219;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 16223;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 16224;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 16225;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 16229;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 16230;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 16231;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 16235;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 16236;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 16237;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 16241;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 16242;
- return 16243;
- }
- short BlackstoneWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace BlastFurnace
- {
- constexpr short BlastFurnace(eBlockFace Facing, bool Lit)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Lit) return 14811;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Lit) return 14812;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Lit) return 14813;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Lit) return 14814;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Lit) return 14815;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Lit) return 14816;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Lit) return 14817;
- return 14818;
- }
- short BlastFurnace();
- eBlockFace Facing(short ID);
- bool Lit(short ID);
- }
- namespace BlueBanner
- {
- constexpr short BlueBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 8073;
- if (Rotation == 1) return 8074;
- if (Rotation == 2) return 8075;
- if (Rotation == 3) return 8076;
- if (Rotation == 4) return 8077;
- if (Rotation == 5) return 8078;
- if (Rotation == 6) return 8079;
- if (Rotation == 7) return 8080;
- if (Rotation == 8) return 8081;
- if (Rotation == 9) return 8082;
- if (Rotation == 10) return 8083;
- if (Rotation == 11) return 8084;
- if (Rotation == 12) return 8085;
- if (Rotation == 13) return 8086;
- if (Rotation == 14) return 8087;
- return 8088;
- }
- short BlueBanner();
- unsigned char Rotation(short ID);
- }
- namespace BlueBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short BlueBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1225;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1226;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1227;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1228;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1229;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1230;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1231;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1232;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1233;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1234;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1235;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1236;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1237;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1238;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1239;
- return 1240;
- }
- short BlueBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace BlueCarpet
- {
- constexpr short BlueCarpet()
- {
- return 7877;
- }
- }
- namespace BlueConcrete
- {
- constexpr short BlueConcrete()
- {
- return 9449;
- }
- }
- namespace BlueConcretePowder
- {
- constexpr short BlueConcretePowder()
- {
- return 9465;
- }
- }
- namespace BlueGlazedTerracotta
- {
- constexpr short BlueGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9418;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9419;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9420;
- return 9421;
- }
- short BlueGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace BlueIce
- {
- constexpr short BlueIce()
- {
- return 9648;
- }
- }
- namespace BlueOrchid
- {
- constexpr short BlueOrchid()
- {
- return 1414;
- }
- }
- namespace BlueShulkerBox
- {
- constexpr short BlueShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9344;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9345;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9346;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9347;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9348;
- return 9349;
- }
- short BlueShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace BlueStainedGlass
- {
- constexpr short BlueStainedGlass()
- {
- return 4106;
- }
- }
- namespace BlueStainedGlassPane
- {
- constexpr short BlueStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 7217;
- if (East && North && South && !West) return 7218;
- if (East && North && !South && West) return 7221;
- if (East && North && !South && !West) return 7222;
- if (East && !North && South && West) return 7225;
- if (East && !North && South && !West) return 7226;
- if (East && !North && !South && West) return 7229;
- if (East && !North && !South && !West) return 7230;
- if (!East && North && South && West) return 7233;
- if (!East && North && South && !West) return 7234;
- if (!East && North && !South && West) return 7237;
- if (!East && North && !South && !West) return 7238;
- if (!East && !North && South && West) return 7241;
- if (!East && !North && South && !West) return 7242;
- if (!East && !North && !South && West) return 7245;
- return 7246;
- }
- short BlueStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace BlueTerracotta
- {
- constexpr short BlueTerracotta()
- {
- return 6858;
- }
- }
- namespace BlueWallBanner
- {
- constexpr short BlueWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8197;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8198;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8199;
- return 8200;
- }
- short BlueWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace BlueWool
- {
- constexpr short BlueWool()
- {
- return 1395;
- }
- }
- namespace BoneBlock
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short BoneBlock(enum Axis Axis)
- {
- if (Axis == Axis::X) return 9256;
- if (Axis == Axis::Y) return 9257;
- return 9258;
- }
- short BoneBlock();
- enum Axis Axis(short ID);
- }
- namespace Bookshelf
- {
- constexpr short Bookshelf()
- {
- return 1432;
- }
- }
- namespace BrainCoral
- {
- constexpr short BrainCoral()
- {
- return 9533;
- }
- }
- namespace BrainCoralBlock
- {
- constexpr short BrainCoralBlock()
- {
- return 9516;
- }
- }
- namespace BrainCoralFan
- {
- constexpr short BrainCoralFan()
- {
- return 9553;
- }
- }
- namespace BrainCoralWallFan
- {
- constexpr short BrainCoralWallFan(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9609;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9611;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9613;
- return 9615;
- }
- short BrainCoralWallFan();
- eBlockFace Facing(short ID);
- }
- namespace BrewingStand
- {
- constexpr short BrewingStand(bool HasBottle_0, bool HasBottle_1, bool HasBottle_2)
- {
- if (HasBottle_0 && HasBottle_1 && HasBottle_2) return 5133;
- if (HasBottle_0 && HasBottle_1 && !HasBottle_2) return 5134;
- if (HasBottle_0 && !HasBottle_1 && HasBottle_2) return 5135;
- if (HasBottle_0 && !HasBottle_1 && !HasBottle_2) return 5136;
- if (!HasBottle_0 && HasBottle_1 && HasBottle_2) return 5137;
- if (!HasBottle_0 && HasBottle_1 && !HasBottle_2) return 5138;
- if (!HasBottle_0 && !HasBottle_1 && HasBottle_2) return 5139;
- return 5140;
- }
- short BrewingStand();
- bool HasBottle_0(short ID);
- bool HasBottle_1(short ID);
- bool HasBottle_2(short ID);
- }
- namespace BrickSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short BrickSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8373;
- if (Type == Type::Bottom) return 8375;
- return 8377;
- }
- short BrickSlab();
- enum Type Type(short ID);
- }
- namespace BrickStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short BrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 4853;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 4855;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 4857;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 4859;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 4861;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 4863;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 4865;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 4867;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 4869;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 4871;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 4873;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 4875;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 4877;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 4879;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 4881;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 4883;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 4885;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 4887;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 4889;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 4891;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 4893;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 4895;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 4897;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 4899;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 4901;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 4903;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 4905;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 4907;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 4909;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 4911;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 4913;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 4915;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 4917;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 4919;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 4921;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 4923;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 4925;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 4927;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 4929;
- return 4931;
- }
- short BrickStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace BrickWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short BrickWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 10870;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 10871;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 10872;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 10876;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 10877;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 10878;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 10882;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 10883;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 10884;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 10888;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 10889;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 10890;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 10894;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 10895;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 10896;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 10900;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 10901;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 10902;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 10906;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 10907;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 10908;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 10912;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 10913;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 10914;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 10918;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 10919;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 10920;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 10924;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 10925;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 10926;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 10930;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 10931;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 10932;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 10936;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 10937;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 10938;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 10942;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 10943;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 10944;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 10948;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 10949;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 10950;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 10954;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 10955;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 10956;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 10960;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 10961;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 10962;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 10966;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 10967;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 10968;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 10972;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 10973;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 10974;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 10978;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 10979;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 10980;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 10984;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 10985;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 10986;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 10990;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 10991;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 10992;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 10996;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 10997;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 10998;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 11002;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 11003;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 11004;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 11008;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 11009;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 11010;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 11014;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 11015;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 11016;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 11020;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 11021;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 11022;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 11026;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 11027;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 11028;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 11032;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 11033;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 11034;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 11038;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 11039;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 11040;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 11044;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 11045;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 11046;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 11050;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 11051;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 11052;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 11056;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 11057;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 11058;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 11062;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 11063;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 11064;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 11068;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 11069;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 11070;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 11074;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 11075;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 11076;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 11080;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 11081;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 11082;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 11086;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 11087;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 11088;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 11092;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 11093;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 11094;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 11098;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 11099;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 11100;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 11104;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 11105;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 11106;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 11110;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 11111;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 11112;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 11116;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 11117;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 11118;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 11122;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 11123;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 11124;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 11128;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 11129;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 11130;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 11134;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 11135;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 11136;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 11140;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 11141;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 11142;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 11146;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 11147;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 11148;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 11152;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 11153;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 11154;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 11158;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 11159;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 11160;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 11164;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 11165;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 11166;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 11170;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 11171;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 11172;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 11176;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 11177;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 11178;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 11182;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 11183;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 11184;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 11188;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 11189;
- return 11190;
- }
- short BrickWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace Bricks
- {
- constexpr short Bricks()
- {
- return 1429;
- }
- }
- namespace BrownBanner
- {
- constexpr short BrownBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 8089;
- if (Rotation == 1) return 8090;
- if (Rotation == 2) return 8091;
- if (Rotation == 3) return 8092;
- if (Rotation == 4) return 8093;
- if (Rotation == 5) return 8094;
- if (Rotation == 6) return 8095;
- if (Rotation == 7) return 8096;
- if (Rotation == 8) return 8097;
- if (Rotation == 9) return 8098;
- if (Rotation == 10) return 8099;
- if (Rotation == 11) return 8100;
- if (Rotation == 12) return 8101;
- if (Rotation == 13) return 8102;
- if (Rotation == 14) return 8103;
- return 8104;
- }
- short BrownBanner();
- unsigned char Rotation(short ID);
- }
- namespace BrownBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short BrownBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1241;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1242;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1243;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1244;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1245;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1246;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1247;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1248;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1249;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1250;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1251;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1252;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1253;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1254;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1255;
- return 1256;
- }
- short BrownBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace BrownCarpet
- {
- constexpr short BrownCarpet()
- {
- return 7878;
- }
- }
- namespace BrownConcrete
- {
- constexpr short BrownConcrete()
- {
- return 9450;
- }
- }
- namespace BrownConcretePowder
- {
- constexpr short BrownConcretePowder()
- {
- return 9466;
- }
- }
- namespace BrownGlazedTerracotta
- {
- constexpr short BrownGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9422;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9423;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9424;
- return 9425;
- }
- short BrownGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace BrownMushroom
- {
- constexpr short BrownMushroom()
- {
- return 1425;
- }
- }
- namespace BrownMushroomBlock
- {
- constexpr short BrownMushroomBlock(bool Down, bool East, bool North, bool South, bool Up, bool West)
- {
- if (Down && East && North && South && Up && West) return 4505;
- if (Down && East && North && South && Up && !West) return 4506;
- if (Down && East && North && South && !Up && West) return 4507;
- if (Down && East && North && South && !Up && !West) return 4508;
- if (Down && East && North && !South && Up && West) return 4509;
- if (Down && East && North && !South && Up && !West) return 4510;
- if (Down && East && North && !South && !Up && West) return 4511;
- if (Down && East && North && !South && !Up && !West) return 4512;
- if (Down && East && !North && South && Up && West) return 4513;
- if (Down && East && !North && South && Up && !West) return 4514;
- if (Down && East && !North && South && !Up && West) return 4515;
- if (Down && East && !North && South && !Up && !West) return 4516;
- if (Down && East && !North && !South && Up && West) return 4517;
- if (Down && East && !North && !South && Up && !West) return 4518;
- if (Down && East && !North && !South && !Up && West) return 4519;
- if (Down && East && !North && !South && !Up && !West) return 4520;
- if (Down && !East && North && South && Up && West) return 4521;
- if (Down && !East && North && South && Up && !West) return 4522;
- if (Down && !East && North && South && !Up && West) return 4523;
- if (Down && !East && North && South && !Up && !West) return 4524;
- if (Down && !East && North && !South && Up && West) return 4525;
- if (Down && !East && North && !South && Up && !West) return 4526;
- if (Down && !East && North && !South && !Up && West) return 4527;
- if (Down && !East && North && !South && !Up && !West) return 4528;
- if (Down && !East && !North && South && Up && West) return 4529;
- if (Down && !East && !North && South && Up && !West) return 4530;
- if (Down && !East && !North && South && !Up && West) return 4531;
- if (Down && !East && !North && South && !Up && !West) return 4532;
- if (Down && !East && !North && !South && Up && West) return 4533;
- if (Down && !East && !North && !South && Up && !West) return 4534;
- if (Down && !East && !North && !South && !Up && West) return 4535;
- if (Down && !East && !North && !South && !Up && !West) return 4536;
- if (!Down && East && North && South && Up && West) return 4537;
- if (!Down && East && North && South && Up && !West) return 4538;
- if (!Down && East && North && South && !Up && West) return 4539;
- if (!Down && East && North && South && !Up && !West) return 4540;
- if (!Down && East && North && !South && Up && West) return 4541;
- if (!Down && East && North && !South && Up && !West) return 4542;
- if (!Down && East && North && !South && !Up && West) return 4543;
- if (!Down && East && North && !South && !Up && !West) return 4544;
- if (!Down && East && !North && South && Up && West) return 4545;
- if (!Down && East && !North && South && Up && !West) return 4546;
- if (!Down && East && !North && South && !Up && West) return 4547;
- if (!Down && East && !North && South && !Up && !West) return 4548;
- if (!Down && East && !North && !South && Up && West) return 4549;
- if (!Down && East && !North && !South && Up && !West) return 4550;
- if (!Down && East && !North && !South && !Up && West) return 4551;
- if (!Down && East && !North && !South && !Up && !West) return 4552;
- if (!Down && !East && North && South && Up && West) return 4553;
- if (!Down && !East && North && South && Up && !West) return 4554;
- if (!Down && !East && North && South && !Up && West) return 4555;
- if (!Down && !East && North && South && !Up && !West) return 4556;
- if (!Down && !East && North && !South && Up && West) return 4557;
- if (!Down && !East && North && !South && Up && !West) return 4558;
- if (!Down && !East && North && !South && !Up && West) return 4559;
- if (!Down && !East && North && !South && !Up && !West) return 4560;
- if (!Down && !East && !North && South && Up && West) return 4561;
- if (!Down && !East && !North && South && Up && !West) return 4562;
- if (!Down && !East && !North && South && !Up && West) return 4563;
- if (!Down && !East && !North && South && !Up && !West) return 4564;
- if (!Down && !East && !North && !South && Up && West) return 4565;
- if (!Down && !East && !North && !South && Up && !West) return 4566;
- if (!Down && !East && !North && !South && !Up && West) return 4567;
- return 4568;
- }
- short BrownMushroomBlock();
- bool Down(short ID);
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool Up(short ID);
- bool West(short ID);
- }
- namespace BrownShulkerBox
- {
- constexpr short BrownShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9350;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9351;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9352;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9353;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9354;
- return 9355;
- }
- short BrownShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace BrownStainedGlass
- {
- constexpr short BrownStainedGlass()
- {
- return 4107;
- }
- }
- namespace BrownStainedGlassPane
- {
- constexpr short BrownStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 7249;
- if (East && North && South && !West) return 7250;
- if (East && North && !South && West) return 7253;
- if (East && North && !South && !West) return 7254;
- if (East && !North && South && West) return 7257;
- if (East && !North && South && !West) return 7258;
- if (East && !North && !South && West) return 7261;
- if (East && !North && !South && !West) return 7262;
- if (!East && North && South && West) return 7265;
- if (!East && North && South && !West) return 7266;
- if (!East && North && !South && West) return 7269;
- if (!East && North && !South && !West) return 7270;
- if (!East && !North && South && West) return 7273;
- if (!East && !North && South && !West) return 7274;
- if (!East && !North && !South && West) return 7277;
- return 7278;
- }
- short BrownStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace BrownTerracotta
- {
- constexpr short BrownTerracotta()
- {
- return 6859;
- }
- }
- namespace BrownWallBanner
- {
- constexpr short BrownWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8201;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8202;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8203;
- return 8204;
- }
- short BrownWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace BrownWool
- {
- constexpr short BrownWool()
- {
- return 1396;
- }
- }
- namespace BubbleColumn
- {
- constexpr short BubbleColumn(bool Drag)
- {
- if (Drag) return 9667;
- return 9668;
- }
- short BubbleColumn();
- bool Drag(short ID);
- }
- namespace BubbleCoral
- {
- constexpr short BubbleCoral()
- {
- return 9535;
- }
- }
- namespace BubbleCoralBlock
- {
- constexpr short BubbleCoralBlock()
- {
- return 9517;
- }
- }
- namespace BubbleCoralFan
- {
- constexpr short BubbleCoralFan()
- {
- return 9555;
- }
- }
- namespace BubbleCoralWallFan
- {
- constexpr short BubbleCoralWallFan(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9617;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9619;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9621;
- return 9623;
- }
- short BubbleCoralWallFan();
- eBlockFace Facing(short ID);
- }
- namespace Cactus
- {
- constexpr short Cactus(unsigned char Age)
- {
- if (Age == 0) return 3931;
- if (Age == 1) return 3932;
- if (Age == 2) return 3933;
- if (Age == 3) return 3934;
- if (Age == 4) return 3935;
- if (Age == 5) return 3936;
- if (Age == 6) return 3937;
- if (Age == 7) return 3938;
- if (Age == 8) return 3939;
- if (Age == 9) return 3940;
- if (Age == 10) return 3941;
- if (Age == 11) return 3942;
- if (Age == 12) return 3943;
- if (Age == 13) return 3944;
- if (Age == 14) return 3945;
- return 3946;
- }
- short Cactus();
- unsigned char Age(short ID);
- }
- namespace Cake
- {
- constexpr short Cake(unsigned char Bites)
- {
- if (Bites == 0) return 4024;
- if (Bites == 1) return 4025;
- if (Bites == 2) return 4026;
- if (Bites == 3) return 4027;
- if (Bites == 4) return 4028;
- if (Bites == 5) return 4029;
- return 4030;
- }
- short Cake();
- unsigned char Bites(short ID);
- }
- namespace Campfire
- {
- constexpr short Campfire(eBlockFace Facing, bool Lit, bool SignalFire)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Lit && SignalFire) return 14891;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Lit && !SignalFire) return 14893;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Lit && SignalFire) return 14895;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Lit && !SignalFire) return 14897;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Lit && SignalFire) return 14899;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Lit && !SignalFire) return 14901;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Lit && SignalFire) return 14903;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Lit && !SignalFire) return 14905;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Lit && SignalFire) return 14907;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Lit && !SignalFire) return 14909;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Lit && SignalFire) return 14911;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Lit && !SignalFire) return 14913;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Lit && SignalFire) return 14915;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Lit && !SignalFire) return 14917;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Lit && SignalFire) return 14919;
- return 14921;
- }
- short Campfire();
- eBlockFace Facing(short ID);
- bool Lit(short ID);
- bool SignalFire(short ID);
- }
- namespace Carrots
- {
- constexpr short Carrots(unsigned char Age)
- {
- if (Age == 0) return 6330;
- if (Age == 1) return 6331;
- if (Age == 2) return 6332;
- if (Age == 3) return 6333;
- if (Age == 4) return 6334;
- if (Age == 5) return 6335;
- if (Age == 6) return 6336;
- return 6337;
- }
- short Carrots();
- unsigned char Age(short ID);
- }
- namespace CartographyTable
- {
- constexpr short CartographyTable()
- {
- return 14819;
- }
- }
- namespace CarvedPumpkin
- {
- constexpr short CarvedPumpkin(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4016;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4017;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 4018;
- return 4019;
- }
- short CarvedPumpkin();
- eBlockFace Facing(short ID);
- }
- namespace Cauldron
- {
- constexpr short Cauldron(unsigned char Level)
- {
- if (Level == 0) return 5141;
- if (Level == 1) return 5142;
- if (Level == 2) return 5143;
- return 5144;
- }
- short Cauldron();
- unsigned char Level(short ID);
- }
- namespace CaveAir
- {
- constexpr short CaveAir()
- {
- return 9666;
- }
- }
- namespace Chain
- {
- constexpr short Chain()
- {
- return 4730;
- }
- }
- namespace ChainCommandBlock
- {
- constexpr short ChainCommandBlock(bool Conditional, eBlockFace Facing)
- {
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_ZM) return 9237;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_XP) return 9238;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_ZP) return 9239;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_XM) return 9240;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_YP) return 9241;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_YM) return 9242;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_ZM) return 9243;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_XP) return 9244;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_ZP) return 9245;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_XM) return 9246;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_YP) return 9247;
- return 9248;
- }
- short ChainCommandBlock();
- bool Conditional(short ID);
- eBlockFace Facing(short ID);
- }
- namespace Chest
- {
- enum class Type
- {
- Single,
- Left,
- Right
- };
- constexpr short Chest(eBlockFace Facing, enum Type Type)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Type == Type::Single) return 2035;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Type == Type::Left) return 2037;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Type == Type::Right) return 2039;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Type == Type::Single) return 2041;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Type == Type::Left) return 2043;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Type == Type::Right) return 2045;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Type == Type::Single) return 2047;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Type == Type::Left) return 2049;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Type == Type::Right) return 2051;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Type == Type::Single) return 2053;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Type == Type::Left) return 2055;
- return 2057;
- }
- short Chest();
- eBlockFace Facing(short ID);
- enum Type Type(short ID);
- }
- namespace ChippedAnvil
- {
- constexpr short ChippedAnvil(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6614;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6615;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 6616;
- return 6617;
- }
- short ChippedAnvil();
- eBlockFace Facing(short ID);
- }
- namespace ChiseledNetherBricks
- {
- constexpr short ChiseledNetherBricks()
- {
- return 17101;
- }
- }
- namespace ChiseledPolishedBlackstone
- {
- constexpr short ChiseledPolishedBlackstone()
- {
- return 16253;
- }
- }
- namespace ChiseledQuartzBlock
- {
- constexpr short ChiseledQuartzBlock()
- {
- return 6739;
- }
- }
- namespace ChiseledRedSandstone
- {
- constexpr short ChiseledRedSandstone()
- {
- return 8218;
- }
- }
- namespace ChiseledSandstone
- {
- constexpr short ChiseledSandstone()
- {
- return 247;
- }
- }
- namespace ChiseledStoneBricks
- {
- constexpr short ChiseledStoneBricks()
- {
- return 4498;
- }
- }
- namespace ChorusFlower
- {
- constexpr short ChorusFlower(unsigned char Age)
- {
- if (Age == 0) return 9128;
- if (Age == 1) return 9129;
- if (Age == 2) return 9130;
- if (Age == 3) return 9131;
- if (Age == 4) return 9132;
- return 9133;
- }
- short ChorusFlower();
- unsigned char Age(short ID);
- }
- namespace ChorusPlant
- {
- constexpr short ChorusPlant(bool Down, bool East, bool North, bool South, bool Up, bool West)
- {
- if (Down && East && North && South && Up && West) return 9064;
- if (Down && East && North && South && Up && !West) return 9065;
- if (Down && East && North && South && !Up && West) return 9066;
- if (Down && East && North && South && !Up && !West) return 9067;
- if (Down && East && North && !South && Up && West) return 9068;
- if (Down && East && North && !South && Up && !West) return 9069;
- if (Down && East && North && !South && !Up && West) return 9070;
- if (Down && East && North && !South && !Up && !West) return 9071;
- if (Down && East && !North && South && Up && West) return 9072;
- if (Down && East && !North && South && Up && !West) return 9073;
- if (Down && East && !North && South && !Up && West) return 9074;
- if (Down && East && !North && South && !Up && !West) return 9075;
- if (Down && East && !North && !South && Up && West) return 9076;
- if (Down && East && !North && !South && Up && !West) return 9077;
- if (Down && East && !North && !South && !Up && West) return 9078;
- if (Down && East && !North && !South && !Up && !West) return 9079;
- if (Down && !East && North && South && Up && West) return 9080;
- if (Down && !East && North && South && Up && !West) return 9081;
- if (Down && !East && North && South && !Up && West) return 9082;
- if (Down && !East && North && South && !Up && !West) return 9083;
- if (Down && !East && North && !South && Up && West) return 9084;
- if (Down && !East && North && !South && Up && !West) return 9085;
- if (Down && !East && North && !South && !Up && West) return 9086;
- if (Down && !East && North && !South && !Up && !West) return 9087;
- if (Down && !East && !North && South && Up && West) return 9088;
- if (Down && !East && !North && South && Up && !West) return 9089;
- if (Down && !East && !North && South && !Up && West) return 9090;
- if (Down && !East && !North && South && !Up && !West) return 9091;
- if (Down && !East && !North && !South && Up && West) return 9092;
- if (Down && !East && !North && !South && Up && !West) return 9093;
- if (Down && !East && !North && !South && !Up && West) return 9094;
- if (Down && !East && !North && !South && !Up && !West) return 9095;
- if (!Down && East && North && South && Up && West) return 9096;
- if (!Down && East && North && South && Up && !West) return 9097;
- if (!Down && East && North && South && !Up && West) return 9098;
- if (!Down && East && North && South && !Up && !West) return 9099;
- if (!Down && East && North && !South && Up && West) return 9100;
- if (!Down && East && North && !South && Up && !West) return 9101;
- if (!Down && East && North && !South && !Up && West) return 9102;
- if (!Down && East && North && !South && !Up && !West) return 9103;
- if (!Down && East && !North && South && Up && West) return 9104;
- if (!Down && East && !North && South && Up && !West) return 9105;
- if (!Down && East && !North && South && !Up && West) return 9106;
- if (!Down && East && !North && South && !Up && !West) return 9107;
- if (!Down && East && !North && !South && Up && West) return 9108;
- if (!Down && East && !North && !South && Up && !West) return 9109;
- if (!Down && East && !North && !South && !Up && West) return 9110;
- if (!Down && East && !North && !South && !Up && !West) return 9111;
- if (!Down && !East && North && South && Up && West) return 9112;
- if (!Down && !East && North && South && Up && !West) return 9113;
- if (!Down && !East && North && South && !Up && West) return 9114;
- if (!Down && !East && North && South && !Up && !West) return 9115;
- if (!Down && !East && North && !South && Up && West) return 9116;
- if (!Down && !East && North && !South && Up && !West) return 9117;
- if (!Down && !East && North && !South && !Up && West) return 9118;
- if (!Down && !East && North && !South && !Up && !West) return 9119;
- if (!Down && !East && !North && South && Up && West) return 9120;
- if (!Down && !East && !North && South && Up && !West) return 9121;
- if (!Down && !East && !North && South && !Up && West) return 9122;
- if (!Down && !East && !North && South && !Up && !West) return 9123;
- if (!Down && !East && !North && !South && Up && West) return 9124;
- if (!Down && !East && !North && !South && Up && !West) return 9125;
- if (!Down && !East && !North && !South && !Up && West) return 9126;
- return 9127;
- }
- short ChorusPlant();
- bool Down(short ID);
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool Up(short ID);
- bool West(short ID);
- }
- namespace Clay
- {
- constexpr short Clay()
- {
- return 3947;
- }
- }
- namespace CoalBlock
- {
- constexpr short CoalBlock()
- {
- return 7883;
- }
- }
- namespace CoalOre
- {
- constexpr short CoalOre()
- {
- return 71;
- }
- }
- namespace CoarseDirt
- {
- constexpr short CoarseDirt()
- {
- return 11;
- }
- }
- namespace Cobblestone
- {
- constexpr short Cobblestone()
- {
- return 14;
- }
- }
- namespace CobblestoneSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short CobblestoneSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8367;
- if (Type == Type::Bottom) return 8369;
- return 8371;
- }
- short CobblestoneSlab();
- enum Type Type(short ID);
- }
- namespace CobblestoneStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short CobblestoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 3656;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 3658;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 3660;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 3662;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 3664;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 3666;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 3668;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 3670;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 3672;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 3674;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 3676;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 3678;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 3680;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 3682;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 3684;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 3686;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 3688;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 3690;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 3692;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 3694;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 3696;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 3698;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 3700;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 3702;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 3704;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 3706;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 3708;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 3710;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 3712;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 3714;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 3716;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 3718;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 3720;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 3722;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 3724;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 3726;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 3728;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 3730;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 3732;
- return 3734;
- }
- short CobblestoneStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace CobblestoneWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short CobblestoneWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 5660;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 5661;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 5662;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 5666;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 5667;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 5668;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 5672;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 5673;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 5674;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 5678;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 5679;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 5680;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 5684;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 5685;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 5686;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 5690;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 5691;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 5692;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 5696;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 5697;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 5698;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 5702;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 5703;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 5704;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 5708;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 5709;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 5710;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 5714;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 5715;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 5716;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 5720;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 5721;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 5722;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 5726;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 5727;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 5728;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 5732;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 5733;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 5734;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 5738;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 5739;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 5740;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 5744;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 5745;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 5746;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 5750;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 5751;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 5752;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 5756;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 5757;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 5758;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 5762;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 5763;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 5764;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 5768;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 5769;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 5770;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 5774;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 5775;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 5776;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 5780;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 5781;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 5782;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 5786;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 5787;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 5788;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 5792;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 5793;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 5794;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 5798;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 5799;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 5800;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 5804;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 5805;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 5806;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 5810;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 5811;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 5812;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 5816;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 5817;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 5818;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 5822;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 5823;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 5824;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 5828;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 5829;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 5830;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 5834;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 5835;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 5836;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 5840;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 5841;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 5842;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 5846;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 5847;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 5848;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 5852;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 5853;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 5854;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 5858;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 5859;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 5860;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 5864;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 5865;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 5866;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 5870;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 5871;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 5872;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 5876;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 5877;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 5878;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 5882;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 5883;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 5884;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 5888;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 5889;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 5890;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 5894;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 5895;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 5896;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 5900;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 5901;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 5902;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 5906;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 5907;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 5908;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 5912;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 5913;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 5914;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 5918;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 5919;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 5920;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 5924;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 5925;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 5926;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 5930;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 5931;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 5932;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 5936;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 5937;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 5938;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 5942;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 5943;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 5944;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 5948;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 5949;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 5950;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 5954;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 5955;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 5956;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 5960;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 5961;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 5962;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 5966;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 5967;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 5968;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 5972;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 5973;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 5974;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 5978;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 5979;
- return 5980;
- }
- short CobblestoneWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace Cobweb
- {
- constexpr short Cobweb()
- {
- return 1341;
- }
- }
- namespace Cocoa
- {
- constexpr short Cocoa(unsigned char Age, eBlockFace Facing)
- {
- if (Age == 0 && Facing == eBlockFace::BLOCK_FACE_ZM) return 5158;
- if (Age == 0 && Facing == eBlockFace::BLOCK_FACE_ZP) return 5159;
- if (Age == 0 && Facing == eBlockFace::BLOCK_FACE_XM) return 5160;
- if (Age == 0 && Facing == eBlockFace::BLOCK_FACE_XP) return 5161;
- if (Age == 1 && Facing == eBlockFace::BLOCK_FACE_ZM) return 5162;
- if (Age == 1 && Facing == eBlockFace::BLOCK_FACE_ZP) return 5163;
- if (Age == 1 && Facing == eBlockFace::BLOCK_FACE_XM) return 5164;
- if (Age == 1 && Facing == eBlockFace::BLOCK_FACE_XP) return 5165;
- if (Age == 2 && Facing == eBlockFace::BLOCK_FACE_ZM) return 5166;
- if (Age == 2 && Facing == eBlockFace::BLOCK_FACE_ZP) return 5167;
- if (Age == 2 && Facing == eBlockFace::BLOCK_FACE_XM) return 5168;
- return 5169;
- }
- short Cocoa();
- unsigned char Age(short ID);
- eBlockFace Facing(short ID);
- }
- namespace CommandBlock
- {
- constexpr short CommandBlock(bool Conditional, eBlockFace Facing)
- {
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_ZM) return 5644;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_XP) return 5645;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_ZP) return 5646;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_XM) return 5647;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_YP) return 5648;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_YM) return 5649;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_ZM) return 5650;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_XP) return 5651;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_ZP) return 5652;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_XM) return 5653;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_YP) return 5654;
- return 5655;
- }
- short CommandBlock();
- bool Conditional(short ID);
- eBlockFace Facing(short ID);
- }
- namespace Comparator
- {
- enum class Mode
- {
- Compare,
- Subtract
- };
- constexpr short Comparator(eBlockFace Facing, enum Mode Mode, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Mode == Mode::Compare && Powered) return 6678;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Mode == Mode::Compare && !Powered) return 6679;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Mode == Mode::Subtract && Powered) return 6680;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Mode == Mode::Subtract && !Powered) return 6681;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Mode == Mode::Compare && Powered) return 6682;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Mode == Mode::Compare && !Powered) return 6683;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Mode == Mode::Subtract && Powered) return 6684;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Mode == Mode::Subtract && !Powered) return 6685;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Mode == Mode::Compare && Powered) return 6686;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Mode == Mode::Compare && !Powered) return 6687;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Mode == Mode::Subtract && Powered) return 6688;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Mode == Mode::Subtract && !Powered) return 6689;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Mode == Mode::Compare && Powered) return 6690;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Mode == Mode::Compare && !Powered) return 6691;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Mode == Mode::Subtract && Powered) return 6692;
- return 6693;
- }
- short Comparator();
- eBlockFace Facing(short ID);
- enum Mode Mode(short ID);
- bool Powered(short ID);
- }
- namespace Composter
- {
- constexpr short Composter(unsigned char Level)
- {
- if (Level == 0) return 15751;
- if (Level == 1) return 15752;
- if (Level == 2) return 15753;
- if (Level == 3) return 15754;
- if (Level == 4) return 15755;
- if (Level == 5) return 15756;
- if (Level == 6) return 15757;
- if (Level == 7) return 15758;
- return 15759;
- }
- short Composter();
- unsigned char Level(short ID);
- }
- namespace Conduit
- {
- constexpr short Conduit()
- {
- return 9650;
- }
- }
- namespace Cornflower
- {
- constexpr short Cornflower()
- {
- return 1422;
- }
- }
- namespace CrackedNetherBricks
- {
- constexpr short CrackedNetherBricks()
- {
- return 17102;
- }
- }
- namespace CrackedPolishedBlackstoneBricks
- {
- constexpr short CrackedPolishedBlackstoneBricks()
- {
- return 16252;
- }
- }
- namespace CrackedStoneBricks
- {
- constexpr short CrackedStoneBricks()
- {
- return 4497;
- }
- }
- namespace CraftingTable
- {
- constexpr short CraftingTable()
- {
- return 3356;
- }
- }
- namespace CreeperHead
- {
- constexpr short CreeperHead(unsigned char Rotation)
- {
- if (Rotation == 0) return 6570;
- if (Rotation == 1) return 6571;
- if (Rotation == 2) return 6572;
- if (Rotation == 3) return 6573;
- if (Rotation == 4) return 6574;
- if (Rotation == 5) return 6575;
- if (Rotation == 6) return 6576;
- if (Rotation == 7) return 6577;
- if (Rotation == 8) return 6578;
- if (Rotation == 9) return 6579;
- if (Rotation == 10) return 6580;
- if (Rotation == 11) return 6581;
- if (Rotation == 12) return 6582;
- if (Rotation == 13) return 6583;
- if (Rotation == 14) return 6584;
- return 6585;
- }
- short CreeperHead();
- unsigned char Rotation(short ID);
- }
- namespace CreeperWallHead
- {
- constexpr short CreeperWallHead(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6586;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6587;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 6588;
- return 6589;
- }
- short CreeperWallHead();
- eBlockFace Facing(short ID);
- }
- namespace CrimsonButton
- {
- enum class Face
- {
- Floor,
- Wall,
- Ceiling
- };
- constexpr short CrimsonButton(enum Face Face, eBlockFace Facing, bool Powered)
- {
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 15479;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 15480;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 15481;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 15482;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 15483;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 15484;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 15485;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 15486;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 15487;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 15488;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 15489;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 15490;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 15491;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 15492;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 15493;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 15494;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 15495;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 15496;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 15497;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 15498;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 15499;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 15500;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 15501;
- return 15502;
- }
- short CrimsonButton();
- enum Face Face(short ID);
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace CrimsonDoor
- {
- enum class Half
- {
- Upper,
- Lower
- };
- enum class Hinge
- {
- Left,
- Right
- };
- constexpr short CrimsonDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 15527;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 15528;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 15529;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 15530;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 15531;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 15532;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 15533;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 15534;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 15535;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 15536;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 15537;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 15538;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 15539;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 15540;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 15541;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 15542;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 15543;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 15544;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 15545;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 15546;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 15547;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 15548;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 15549;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 15550;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 15551;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 15552;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 15553;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 15554;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 15555;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 15556;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 15557;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 15558;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 15559;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 15560;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 15561;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 15562;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 15563;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 15564;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 15565;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 15566;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 15567;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 15568;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 15569;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 15570;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 15571;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 15572;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 15573;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 15574;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 15575;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 15576;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 15577;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 15578;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 15579;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 15580;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 15581;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 15582;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 15583;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 15584;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 15585;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 15586;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 15587;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 15588;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 15589;
- return 15590;
- }
- short CrimsonDoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Hinge Hinge(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace CrimsonFence
- {
- constexpr short CrimsonFence(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 15065;
- if (East && North && South && !West) return 15066;
- if (East && North && !South && West) return 15069;
- if (East && North && !South && !West) return 15070;
- if (East && !North && South && West) return 15073;
- if (East && !North && South && !West) return 15074;
- if (East && !North && !South && West) return 15077;
- if (East && !North && !South && !West) return 15078;
- if (!East && North && South && West) return 15081;
- if (!East && North && South && !West) return 15082;
- if (!East && North && !South && West) return 15085;
- if (!East && North && !South && !West) return 15086;
- if (!East && !North && South && West) return 15089;
- if (!East && !North && South && !West) return 15090;
- if (!East && !North && !South && West) return 15093;
- return 15094;
- }
- short CrimsonFence();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace CrimsonFenceGate
- {
- constexpr short CrimsonFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && Powered) return 15255;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && !Powered) return 15256;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && Powered) return 15257;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && !Powered) return 15258;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && Powered) return 15259;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && !Powered) return 15260;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && Powered) return 15261;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && !Powered) return 15262;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && Powered) return 15263;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && !Powered) return 15264;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && Powered) return 15265;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && !Powered) return 15266;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && Powered) return 15267;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && !Powered) return 15268;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && Powered) return 15269;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && !Powered) return 15270;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && Powered) return 15271;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && !Powered) return 15272;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && Powered) return 15273;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && !Powered) return 15274;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && Powered) return 15275;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && !Powered) return 15276;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && Powered) return 15277;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && !Powered) return 15278;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && Powered) return 15279;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && !Powered) return 15280;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && Powered) return 15281;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && !Powered) return 15282;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && Powered) return 15283;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && !Powered) return 15284;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && !Open && Powered) return 15285;
- return 15286;
- }
- short CrimsonFenceGate();
- eBlockFace Facing(short ID);
- bool InWall(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace CrimsonFungus
- {
- constexpr short CrimsonFungus()
- {
- return 14988;
- }
- }
- namespace CrimsonHyphae
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short CrimsonHyphae(enum Axis Axis)
- {
- if (Axis == Axis::X) return 14981;
- if (Axis == Axis::Y) return 14982;
- return 14983;
- }
- short CrimsonHyphae();
- enum Axis Axis(short ID);
- }
- namespace CrimsonNylium
- {
- constexpr short CrimsonNylium()
- {
- return 14987;
- }
- }
- namespace CrimsonPlanks
- {
- constexpr short CrimsonPlanks()
- {
- return 15045;
- }
- }
- namespace CrimsonPressurePlate
- {
- constexpr short CrimsonPressurePlate(bool Powered)
- {
- if (Powered) return 15059;
- return 15060;
- }
- short CrimsonPressurePlate();
- bool Powered(short ID);
- }
- namespace CrimsonRoots
- {
- constexpr short CrimsonRoots()
- {
- return 15044;
- }
- }
- namespace CrimsonSign
- {
- constexpr short CrimsonSign(unsigned char Rotation)
- {
- if (Rotation == 0) return 15656;
- if (Rotation == 1) return 15658;
- if (Rotation == 2) return 15660;
- if (Rotation == 3) return 15662;
- if (Rotation == 4) return 15664;
- if (Rotation == 5) return 15666;
- if (Rotation == 6) return 15668;
- if (Rotation == 7) return 15670;
- if (Rotation == 8) return 15672;
- if (Rotation == 9) return 15674;
- if (Rotation == 10) return 15676;
- if (Rotation == 11) return 15678;
- if (Rotation == 12) return 15680;
- if (Rotation == 13) return 15682;
- if (Rotation == 14) return 15684;
- return 15686;
- }
- short CrimsonSign();
- unsigned char Rotation(short ID);
- }
- namespace CrimsonSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short CrimsonSlab(enum Type Type)
- {
- if (Type == Type::Top) return 15048;
- if (Type == Type::Bottom) return 15050;
- return 15052;
- }
- short CrimsonSlab();
- enum Type Type(short ID);
- }
- namespace CrimsonStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short CrimsonStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 15320;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 15322;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 15324;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 15326;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 15328;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 15330;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 15332;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 15334;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 15336;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 15338;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 15340;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 15342;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 15344;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 15346;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 15348;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 15350;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 15352;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 15354;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 15356;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 15358;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 15360;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 15362;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 15364;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 15366;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 15368;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 15370;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 15372;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 15374;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 15376;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 15378;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 15380;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 15382;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 15384;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 15386;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 15388;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 15390;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 15392;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 15394;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 15396;
- return 15398;
- }
- short CrimsonStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace CrimsonStem
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short CrimsonStem(enum Axis Axis)
- {
- if (Axis == Axis::X) return 14975;
- if (Axis == Axis::Y) return 14976;
- return 14977;
- }
- short CrimsonStem();
- enum Axis Axis(short ID);
- }
- namespace CrimsonTrapdoor
- {
- enum class Half
- {
- Top,
- Bottom
- };
- constexpr short CrimsonTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && Powered) return 15128;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && !Powered) return 15130;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && Powered) return 15132;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && !Powered) return 15134;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && Powered) return 15136;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && !Powered) return 15138;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && Powered) return 15140;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && !Powered) return 15142;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && Powered) return 15144;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && !Powered) return 15146;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && Powered) return 15148;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && !Powered) return 15150;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && Powered) return 15152;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && !Powered) return 15154;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && Powered) return 15156;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && !Powered) return 15158;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && Powered) return 15160;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && !Powered) return 15162;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && Powered) return 15164;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && !Powered) return 15166;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && Powered) return 15168;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && !Powered) return 15170;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && Powered) return 15172;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && !Powered) return 15174;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && Powered) return 15176;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && !Powered) return 15178;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && Powered) return 15180;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && !Powered) return 15182;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && Powered) return 15184;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && !Powered) return 15186;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && !Open && Powered) return 15188;
- return 15190;
- }
- short CrimsonTrapdoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace CrimsonWallSign
- {
- constexpr short CrimsonWallSign(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 15720;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 15722;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 15724;
- return 15726;
- }
- short CrimsonWallSign();
- eBlockFace Facing(short ID);
- }
- namespace CryingObsidian
- {
- constexpr short CryingObsidian()
- {
- return 15828;
- }
- }
- namespace CutRedSandstone
- {
- constexpr short CutRedSandstone()
- {
- return 8219;
- }
- }
- namespace CutRedSandstoneSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short CutRedSandstoneSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8403;
- if (Type == Type::Bottom) return 8405;
- return 8407;
- }
- short CutRedSandstoneSlab();
- enum Type Type(short ID);
- }
- namespace CutSandstone
- {
- constexpr short CutSandstone()
- {
- return 248;
- }
- }
- namespace CutSandstoneSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short CutSandstoneSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8355;
- if (Type == Type::Bottom) return 8357;
- return 8359;
- }
- short CutSandstoneSlab();
- enum Type Type(short ID);
- }
- namespace CyanBanner
- {
- constexpr short CyanBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 8041;
- if (Rotation == 1) return 8042;
- if (Rotation == 2) return 8043;
- if (Rotation == 3) return 8044;
- if (Rotation == 4) return 8045;
- if (Rotation == 5) return 8046;
- if (Rotation == 6) return 8047;
- if (Rotation == 7) return 8048;
- if (Rotation == 8) return 8049;
- if (Rotation == 9) return 8050;
- if (Rotation == 10) return 8051;
- if (Rotation == 11) return 8052;
- if (Rotation == 12) return 8053;
- if (Rotation == 13) return 8054;
- if (Rotation == 14) return 8055;
- return 8056;
- }
- short CyanBanner();
- unsigned char Rotation(short ID);
- }
- namespace CyanBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short CyanBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1193;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1194;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1195;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1196;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1197;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1198;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1199;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1200;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1201;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1202;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1203;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1204;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1205;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1206;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1207;
- return 1208;
- }
- short CyanBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace CyanCarpet
- {
- constexpr short CyanCarpet()
- {
- return 7875;
- }
- }
- namespace CyanConcrete
- {
- constexpr short CyanConcrete()
- {
- return 9447;
- }
- }
- namespace CyanConcretePowder
- {
- constexpr short CyanConcretePowder()
- {
- return 9463;
- }
- }
- namespace CyanGlazedTerracotta
- {
- constexpr short CyanGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9410;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9411;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9412;
- return 9413;
- }
- short CyanGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace CyanShulkerBox
- {
- constexpr short CyanShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9332;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9333;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9334;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9335;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9336;
- return 9337;
- }
- short CyanShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace CyanStainedGlass
- {
- constexpr short CyanStainedGlass()
- {
- return 4104;
- }
- }
- namespace CyanStainedGlassPane
- {
- constexpr short CyanStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 7153;
- if (East && North && South && !West) return 7154;
- if (East && North && !South && West) return 7157;
- if (East && North && !South && !West) return 7158;
- if (East && !North && South && West) return 7161;
- if (East && !North && South && !West) return 7162;
- if (East && !North && !South && West) return 7165;
- if (East && !North && !South && !West) return 7166;
- if (!East && North && South && West) return 7169;
- if (!East && North && South && !West) return 7170;
- if (!East && North && !South && West) return 7173;
- if (!East && North && !South && !West) return 7174;
- if (!East && !North && South && West) return 7177;
- if (!East && !North && South && !West) return 7178;
- if (!East && !North && !South && West) return 7181;
- return 7182;
- }
- short CyanStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace CyanTerracotta
- {
- constexpr short CyanTerracotta()
- {
- return 6856;
- }
- }
- namespace CyanWallBanner
- {
- constexpr short CyanWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8189;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8190;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8191;
- return 8192;
- }
- short CyanWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace CyanWool
- {
- constexpr short CyanWool()
- {
- return 1393;
- }
- }
- namespace DamagedAnvil
- {
- constexpr short DamagedAnvil(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6618;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6619;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 6620;
- return 6621;
- }
- short DamagedAnvil();
- eBlockFace Facing(short ID);
- }
- namespace Dandelion
- {
- constexpr short Dandelion()
- {
- return 1412;
- }
- }
- namespace DarkOakButton
- {
- enum class Face
- {
- Floor,
- Wall,
- Ceiling
- };
- constexpr short DarkOakButton(enum Face Face, eBlockFace Facing, bool Powered)
- {
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6466;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6467;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6468;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6469;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6470;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6471;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6472;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 6473;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6474;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6475;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6476;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6477;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6478;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6479;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6480;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 6481;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6482;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6483;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6484;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6485;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6486;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6487;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6488;
- return 6489;
- }
- short DarkOakButton();
- enum Face Face(short ID);
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace DarkOakDoor
- {
- enum class Half
- {
- Upper,
- Lower
- };
- enum class Hinge
- {
- Left,
- Right
- };
- constexpr short DarkOakDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8994;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8995;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8996;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8997;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8998;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8999;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 9000;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 9001;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 9002;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 9003;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 9004;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 9005;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 9006;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 9007;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 9008;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 9009;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 9010;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 9011;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 9012;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 9013;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 9014;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 9015;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 9016;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 9017;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 9018;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 9019;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 9020;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 9021;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 9022;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 9023;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 9024;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 9025;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 9026;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 9027;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 9028;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 9029;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 9030;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 9031;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 9032;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 9033;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 9034;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 9035;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 9036;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 9037;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 9038;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 9039;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 9040;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 9041;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 9042;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 9043;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 9044;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 9045;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 9046;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 9047;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 9048;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 9049;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 9050;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 9051;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 9052;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 9053;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 9054;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 9055;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 9056;
- return 9057;
- }
- short DarkOakDoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Hinge Hinge(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace DarkOakFence
- {
- constexpr short DarkOakFence(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 8708;
- if (East && North && South && !West) return 8709;
- if (East && North && !South && West) return 8712;
- if (East && North && !South && !West) return 8713;
- if (East && !North && South && West) return 8716;
- if (East && !North && South && !West) return 8717;
- if (East && !North && !South && West) return 8720;
- if (East && !North && !South && !West) return 8721;
- if (!East && North && South && West) return 8724;
- if (!East && North && South && !West) return 8725;
- if (!East && North && !South && West) return 8728;
- if (!East && North && !South && !West) return 8729;
- if (!East && !North && South && West) return 8732;
- if (!East && !North && South && !West) return 8733;
- if (!East && !North && !South && West) return 8736;
- return 8737;
- }
- short DarkOakFence();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace DarkOakFenceGate
- {
- constexpr short DarkOakFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && Powered) return 8546;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && !Powered) return 8547;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && Powered) return 8548;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && !Powered) return 8549;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && Powered) return 8550;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && !Powered) return 8551;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && Powered) return 8552;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && !Powered) return 8553;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && Powered) return 8554;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && !Powered) return 8555;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && Powered) return 8556;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && !Powered) return 8557;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && Powered) return 8558;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && !Powered) return 8559;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && Powered) return 8560;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && !Powered) return 8561;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && Powered) return 8562;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && !Powered) return 8563;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && Powered) return 8564;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && !Powered) return 8565;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && Powered) return 8566;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && !Powered) return 8567;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && Powered) return 8568;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && !Powered) return 8569;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && Powered) return 8570;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && !Powered) return 8571;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && Powered) return 8572;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && !Powered) return 8573;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && Powered) return 8574;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && !Powered) return 8575;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && !Open && Powered) return 8576;
- return 8577;
- }
- short DarkOakFenceGate();
- eBlockFace Facing(short ID);
- bool InWall(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace DarkOakLeaves
- {
- constexpr short DarkOakLeaves(unsigned char Distance, bool Persistent)
- {
- if (Distance == 1 && Persistent) return 215;
- if (Distance == 1 && !Persistent) return 216;
- if (Distance == 2 && Persistent) return 217;
- if (Distance == 2 && !Persistent) return 218;
- if (Distance == 3 && Persistent) return 219;
- if (Distance == 3 && !Persistent) return 220;
- if (Distance == 4 && Persistent) return 221;
- if (Distance == 4 && !Persistent) return 222;
- if (Distance == 5 && Persistent) return 223;
- if (Distance == 5 && !Persistent) return 224;
- if (Distance == 6 && Persistent) return 225;
- if (Distance == 6 && !Persistent) return 226;
- if (Distance == 7 && Persistent) return 227;
- return 228;
- }
- short DarkOakLeaves();
- unsigned char Distance(short ID);
- bool Persistent(short ID);
- }
- namespace DarkOakLog
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short DarkOakLog(enum Axis Axis)
- {
- if (Axis == Axis::X) return 88;
- if (Axis == Axis::Y) return 89;
- return 90;
- }
- short DarkOakLog();
- enum Axis Axis(short ID);
- }
- namespace DarkOakPlanks
- {
- constexpr short DarkOakPlanks()
- {
- return 20;
- }
- }
- namespace DarkOakPressurePlate
- {
- constexpr short DarkOakPressurePlate(bool Powered)
- {
- if (Powered) return 3883;
- return 3884;
- }
- short DarkOakPressurePlate();
- bool Powered(short ID);
- }
- namespace DarkOakSapling
- {
- constexpr short DarkOakSapling(unsigned char Stage)
- {
- if (Stage == 0) return 31;
- return 32;
- }
- short DarkOakSapling();
- unsigned char Stage(short ID);
- }
- namespace DarkOakSign
- {
- constexpr short DarkOakSign(unsigned char Rotation)
- {
- if (Rotation == 0) return 3542;
- if (Rotation == 1) return 3544;
- if (Rotation == 2) return 3546;
- if (Rotation == 3) return 3548;
- if (Rotation == 4) return 3550;
- if (Rotation == 5) return 3552;
- if (Rotation == 6) return 3554;
- if (Rotation == 7) return 3556;
- if (Rotation == 8) return 3558;
- if (Rotation == 9) return 3560;
- if (Rotation == 10) return 3562;
- if (Rotation == 11) return 3564;
- if (Rotation == 12) return 3566;
- if (Rotation == 13) return 3568;
- if (Rotation == 14) return 3570;
- return 3572;
- }
- short DarkOakSign();
- unsigned char Rotation(short ID);
- }
- namespace DarkOakSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short DarkOakSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8331;
- if (Type == Type::Bottom) return 8333;
- return 8335;
- }
- short DarkOakSlab();
- enum Type Type(short ID);
- }
- namespace DarkOakStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short DarkOakStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 7456;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 7458;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 7460;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 7462;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 7464;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 7466;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7468;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 7470;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7472;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 7474;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 7476;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 7478;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 7480;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 7482;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 7484;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 7486;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7488;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 7490;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7492;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 7494;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 7496;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 7498;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 7500;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 7502;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 7504;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 7506;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7508;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 7510;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7512;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 7514;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 7516;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 7518;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 7520;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 7522;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 7524;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 7526;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7528;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 7530;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7532;
- return 7534;
- }
- short DarkOakStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace DarkOakTrapdoor
- {
- enum class Half
- {
- Top,
- Bottom
- };
- constexpr short DarkOakTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && Powered) return 4432;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && !Powered) return 4434;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && Powered) return 4436;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && !Powered) return 4438;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && Powered) return 4440;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && !Powered) return 4442;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && Powered) return 4444;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && !Powered) return 4446;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && Powered) return 4448;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && !Powered) return 4450;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && Powered) return 4452;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && !Powered) return 4454;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && Powered) return 4456;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && !Powered) return 4458;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && Powered) return 4460;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && !Powered) return 4462;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && Powered) return 4464;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && !Powered) return 4466;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && Powered) return 4468;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && !Powered) return 4470;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && Powered) return 4472;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && !Powered) return 4474;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && Powered) return 4476;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && !Powered) return 4478;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && Powered) return 4480;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && !Powered) return 4482;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && Powered) return 4484;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && !Powered) return 4486;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && Powered) return 4488;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && !Powered) return 4490;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && !Open && Powered) return 4492;
- return 4494;
- }
- short DarkOakTrapdoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace DarkOakWallSign
- {
- constexpr short DarkOakWallSign(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3776;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3778;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 3780;
- return 3782;
- }
- short DarkOakWallSign();
- eBlockFace Facing(short ID);
- }
- namespace DarkOakWood
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short DarkOakWood(enum Axis Axis)
- {
- if (Axis == Axis::X) return 124;
- if (Axis == Axis::Y) return 125;
- return 126;
- }
- short DarkOakWood();
- enum Axis Axis(short ID);
- }
- namespace DarkPrismarine
- {
- constexpr short DarkPrismarine()
- {
- return 7603;
- }
- }
- namespace DarkPrismarineSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short DarkPrismarineSlab(enum Type Type)
- {
- if (Type == Type::Top) return 7857;
- if (Type == Type::Bottom) return 7859;
- return 7861;
- }
- short DarkPrismarineSlab();
- enum Type Type(short ID);
- }
- namespace DarkPrismarineStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short DarkPrismarineStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 7765;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 7767;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 7769;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 7771;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 7773;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 7775;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7777;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 7779;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7781;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 7783;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 7785;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 7787;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 7789;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 7791;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 7793;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 7795;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7797;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 7799;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7801;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 7803;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 7805;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 7807;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 7809;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 7811;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 7813;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 7815;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7817;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 7819;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7821;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 7823;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 7825;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 7827;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 7829;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 7831;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 7833;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 7835;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7837;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 7839;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7841;
- return 7843;
- }
- short DarkPrismarineStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace DaylightDetector
- {
- constexpr short DaylightDetector(bool Inverted, unsigned char Power)
- {
- if (Inverted && Power == 0) return 6694;
- if (Inverted && Power == 1) return 6695;
- if (Inverted && Power == 2) return 6696;
- if (Inverted && Power == 3) return 6697;
- if (Inverted && Power == 4) return 6698;
- if (Inverted && Power == 5) return 6699;
- if (Inverted && Power == 6) return 6700;
- if (Inverted && Power == 7) return 6701;
- if (Inverted && Power == 8) return 6702;
- if (Inverted && Power == 9) return 6703;
- if (Inverted && Power == 10) return 6704;
- if (Inverted && Power == 11) return 6705;
- if (Inverted && Power == 12) return 6706;
- if (Inverted && Power == 13) return 6707;
- if (Inverted && Power == 14) return 6708;
- if (Inverted && Power == 15) return 6709;
- if (!Inverted && Power == 0) return 6710;
- if (!Inverted && Power == 1) return 6711;
- if (!Inverted && Power == 2) return 6712;
- if (!Inverted && Power == 3) return 6713;
- if (!Inverted && Power == 4) return 6714;
- if (!Inverted && Power == 5) return 6715;
- if (!Inverted && Power == 6) return 6716;
- if (!Inverted && Power == 7) return 6717;
- if (!Inverted && Power == 8) return 6718;
- if (!Inverted && Power == 9) return 6719;
- if (!Inverted && Power == 10) return 6720;
- if (!Inverted && Power == 11) return 6721;
- if (!Inverted && Power == 12) return 6722;
- if (!Inverted && Power == 13) return 6723;
- if (!Inverted && Power == 14) return 6724;
- return 6725;
- }
- short DaylightDetector();
- bool Inverted(short ID);
- unsigned char Power(short ID);
- }
- namespace DeadBrainCoral
- {
- constexpr short DeadBrainCoral()
- {
- return 9523;
- }
- }
- namespace DeadBrainCoralBlock
- {
- constexpr short DeadBrainCoralBlock()
- {
- return 9511;
- }
- }
- namespace DeadBrainCoralFan
- {
- constexpr short DeadBrainCoralFan()
- {
- return 9543;
- }
- }
- namespace DeadBrainCoralWallFan
- {
- constexpr short DeadBrainCoralWallFan(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9569;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9571;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9573;
- return 9575;
- }
- short DeadBrainCoralWallFan();
- eBlockFace Facing(short ID);
- }
- namespace DeadBubbleCoral
- {
- constexpr short DeadBubbleCoral()
- {
- return 9525;
- }
- }
- namespace DeadBubbleCoralBlock
- {
- constexpr short DeadBubbleCoralBlock()
- {
- return 9512;
- }
- }
- namespace DeadBubbleCoralFan
- {
- constexpr short DeadBubbleCoralFan()
- {
- return 9545;
- }
- }
- namespace DeadBubbleCoralWallFan
- {
- constexpr short DeadBubbleCoralWallFan(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9577;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9579;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9581;
- return 9583;
- }
- short DeadBubbleCoralWallFan();
- eBlockFace Facing(short ID);
- }
- namespace DeadBush
- {
- constexpr short DeadBush()
- {
- return 1344;
- }
- }
- namespace DeadFireCoral
- {
- constexpr short DeadFireCoral()
- {
- return 9527;
- }
- }
- namespace DeadFireCoralBlock
- {
- constexpr short DeadFireCoralBlock()
- {
- return 9513;
- }
- }
- namespace DeadFireCoralFan
- {
- constexpr short DeadFireCoralFan()
- {
- return 9547;
- }
- }
- namespace DeadFireCoralWallFan
- {
- constexpr short DeadFireCoralWallFan(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9585;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9587;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9589;
- return 9591;
- }
- short DeadFireCoralWallFan();
- eBlockFace Facing(short ID);
- }
- namespace DeadHornCoral
- {
- constexpr short DeadHornCoral()
- {
- return 9529;
- }
- }
- namespace DeadHornCoralBlock
- {
- constexpr short DeadHornCoralBlock()
- {
- return 9514;
- }
- }
- namespace DeadHornCoralFan
- {
- constexpr short DeadHornCoralFan()
- {
- return 9549;
- }
- }
- namespace DeadHornCoralWallFan
- {
- constexpr short DeadHornCoralWallFan(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9593;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9595;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9597;
- return 9599;
- }
- short DeadHornCoralWallFan();
- eBlockFace Facing(short ID);
- }
- namespace DeadTubeCoral
- {
- constexpr short DeadTubeCoral()
- {
- return 9521;
- }
- }
- namespace DeadTubeCoralBlock
- {
- constexpr short DeadTubeCoralBlock()
- {
- return 9510;
- }
- }
- namespace DeadTubeCoralFan
- {
- constexpr short DeadTubeCoralFan()
- {
- return 9541;
- }
- }
- namespace DeadTubeCoralWallFan
- {
- constexpr short DeadTubeCoralWallFan(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9561;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9563;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9565;
- return 9567;
- }
- short DeadTubeCoralWallFan();
- eBlockFace Facing(short ID);
- }
- namespace DetectorRail
- {
- enum class Shape
- {
- NorthSouth,
- EastWest,
- AscendingEast,
- AscendingWest,
- AscendingNorth,
- AscendingSouth
- };
- constexpr short DetectorRail(bool Powered, enum Shape Shape)
- {
- if (Powered && Shape == Shape::NorthSouth) return 1317;
- if (Powered && Shape == Shape::EastWest) return 1318;
- if (Powered && Shape == Shape::AscendingEast) return 1319;
- if (Powered && Shape == Shape::AscendingWest) return 1320;
- if (Powered && Shape == Shape::AscendingNorth) return 1321;
- if (Powered && Shape == Shape::AscendingSouth) return 1322;
- if (!Powered && Shape == Shape::NorthSouth) return 1323;
- if (!Powered && Shape == Shape::EastWest) return 1324;
- if (!Powered && Shape == Shape::AscendingEast) return 1325;
- if (!Powered && Shape == Shape::AscendingWest) return 1326;
- if (!Powered && Shape == Shape::AscendingNorth) return 1327;
- return 1328;
- }
- short DetectorRail();
- bool Powered(short ID);
- enum Shape Shape(short ID);
- }
- namespace DiamondBlock
- {
- constexpr short DiamondBlock()
- {
- return 3355;
- }
- }
- namespace DiamondOre
- {
- constexpr short DiamondOre()
- {
- return 3354;
- }
- }
- namespace Diorite
- {
- constexpr short Diorite()
- {
- return 4;
- }
- }
- namespace DioriteSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short DioriteSlab(enum Type Type)
- {
- if (Type == Type::Top) return 10862;
- if (Type == Type::Bottom) return 10864;
- return 10866;
- }
- short DioriteSlab();
- enum Type Type(short ID);
- }
- namespace DioriteStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short DioriteStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 10710;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 10712;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 10714;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 10716;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 10718;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 10720;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10722;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10724;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10726;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10728;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 10730;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 10732;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 10734;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 10736;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 10738;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 10740;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10742;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10744;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10746;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 10748;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 10750;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 10752;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 10754;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 10756;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 10758;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 10760;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10762;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10764;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10766;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10768;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 10770;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 10772;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 10774;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 10776;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 10778;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 10780;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10782;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10784;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10786;
- return 10788;
- }
- short DioriteStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace DioriteWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short DioriteWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 14434;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 14435;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 14436;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 14440;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 14441;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 14442;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 14446;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 14447;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 14448;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 14452;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 14453;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 14454;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 14458;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 14459;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 14460;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 14464;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 14465;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 14466;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 14470;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 14471;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 14472;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 14476;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 14477;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 14478;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 14482;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 14483;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 14484;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 14488;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 14489;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 14490;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 14494;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 14495;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 14496;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 14500;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 14501;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 14502;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 14506;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 14507;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 14508;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 14512;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 14513;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 14514;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 14518;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 14519;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 14520;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 14524;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 14525;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 14526;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 14530;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 14531;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 14532;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 14536;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 14537;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 14538;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 14542;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 14543;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 14544;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 14548;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 14549;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 14550;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 14554;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 14555;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 14556;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 14560;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 14561;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 14562;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 14566;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 14567;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 14568;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 14572;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 14573;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 14574;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 14578;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 14579;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 14580;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 14584;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 14585;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 14586;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 14590;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 14591;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 14592;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 14596;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 14597;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 14598;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 14602;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 14603;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 14604;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 14608;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 14609;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 14610;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 14614;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 14615;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 14616;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 14620;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 14621;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 14622;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 14626;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 14627;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 14628;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 14632;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 14633;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 14634;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 14638;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 14639;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 14640;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 14644;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 14645;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 14646;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 14650;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 14651;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 14652;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 14656;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 14657;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 14658;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 14662;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 14663;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 14664;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 14668;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 14669;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 14670;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 14674;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 14675;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 14676;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 14680;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 14681;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 14682;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 14686;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 14687;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 14688;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 14692;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 14693;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 14694;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 14698;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 14699;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 14700;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 14704;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 14705;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 14706;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 14710;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 14711;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 14712;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 14716;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 14717;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 14718;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 14722;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 14723;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 14724;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 14728;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 14729;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 14730;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 14734;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 14735;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 14736;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 14740;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 14741;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 14742;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 14746;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 14747;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 14748;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 14752;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 14753;
- return 14754;
- }
- short DioriteWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace Dirt
- {
- constexpr short Dirt()
- {
- return 10;
- }
- }
- namespace Dispenser
- {
- constexpr short Dispenser(eBlockFace Facing, bool Triggered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Triggered) return 234;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Triggered) return 235;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Triggered) return 236;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Triggered) return 237;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Triggered) return 238;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Triggered) return 239;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Triggered) return 240;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Triggered) return 241;
- if (Facing == eBlockFace::BLOCK_FACE_YP && Triggered) return 242;
- if (Facing == eBlockFace::BLOCK_FACE_YP && !Triggered) return 243;
- if (Facing == eBlockFace::BLOCK_FACE_YM && Triggered) return 244;
- return 245;
- }
- short Dispenser();
- eBlockFace Facing(short ID);
- bool Triggered(short ID);
- }
- namespace DragonEgg
- {
- constexpr short DragonEgg()
- {
- return 5155;
- }
- }
- namespace DragonHead
- {
- constexpr short DragonHead(unsigned char Rotation)
- {
- if (Rotation == 0) return 6590;
- if (Rotation == 1) return 6591;
- if (Rotation == 2) return 6592;
- if (Rotation == 3) return 6593;
- if (Rotation == 4) return 6594;
- if (Rotation == 5) return 6595;
- if (Rotation == 6) return 6596;
- if (Rotation == 7) return 6597;
- if (Rotation == 8) return 6598;
- if (Rotation == 9) return 6599;
- if (Rotation == 10) return 6600;
- if (Rotation == 11) return 6601;
- if (Rotation == 12) return 6602;
- if (Rotation == 13) return 6603;
- if (Rotation == 14) return 6604;
- return 6605;
- }
- short DragonHead();
- unsigned char Rotation(short ID);
- }
- namespace DragonWallHead
- {
- constexpr short DragonWallHead(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6606;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6607;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 6608;
- return 6609;
- }
- short DragonWallHead();
- eBlockFace Facing(short ID);
- }
- namespace DriedKelpBlock
- {
- constexpr short DriedKelpBlock()
- {
- return 9497;
- }
- }
- namespace Dropper
- {
- constexpr short Dropper(eBlockFace Facing, bool Triggered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Triggered) return 6835;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Triggered) return 6836;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Triggered) return 6837;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Triggered) return 6838;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Triggered) return 6839;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Triggered) return 6840;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Triggered) return 6841;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Triggered) return 6842;
- if (Facing == eBlockFace::BLOCK_FACE_YP && Triggered) return 6843;
- if (Facing == eBlockFace::BLOCK_FACE_YP && !Triggered) return 6844;
- if (Facing == eBlockFace::BLOCK_FACE_YM && Triggered) return 6845;
- return 6846;
- }
- short Dropper();
- eBlockFace Facing(short ID);
- bool Triggered(short ID);
- }
- namespace EmeraldBlock
- {
- constexpr short EmeraldBlock()
- {
- return 5403;
- }
- }
- namespace EmeraldOre
- {
- constexpr short EmeraldOre()
- {
- return 5250;
- }
- }
- namespace EnchantingTable
- {
- constexpr short EnchantingTable()
- {
- return 5132;
- }
- }
- namespace EndGateway
- {
- constexpr short EndGateway()
- {
- return 9224;
- }
- }
- namespace EndPortal
- {
- constexpr short EndPortal()
- {
- return 5145;
- }
- }
- namespace EndPortalFrame
- {
- constexpr short EndPortalFrame(bool Eye, eBlockFace Facing)
- {
- if (Eye && Facing == eBlockFace::BLOCK_FACE_ZM) return 5146;
- if (Eye && Facing == eBlockFace::BLOCK_FACE_ZP) return 5147;
- if (Eye && Facing == eBlockFace::BLOCK_FACE_XM) return 5148;
- if (Eye && Facing == eBlockFace::BLOCK_FACE_XP) return 5149;
- if (!Eye && Facing == eBlockFace::BLOCK_FACE_ZM) return 5150;
- if (!Eye && Facing == eBlockFace::BLOCK_FACE_ZP) return 5151;
- if (!Eye && Facing == eBlockFace::BLOCK_FACE_XM) return 5152;
- return 5153;
- }
- short EndPortalFrame();
- bool Eye(short ID);
- eBlockFace Facing(short ID);
- }
- namespace EndRod
- {
- constexpr short EndRod(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9058;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9059;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9060;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9061;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9062;
- return 9063;
- }
- short EndRod();
- eBlockFace Facing(short ID);
- }
- namespace EndStone
- {
- constexpr short EndStone()
- {
- return 5154;
- }
- }
- namespace EndStoneBrickSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short EndStoneBrickSlab(enum Type Type)
- {
- if (Type == Type::Top) return 10820;
- if (Type == Type::Bottom) return 10822;
- return 10824;
- }
- short EndStoneBrickSlab();
- enum Type Type(short ID);
- }
- namespace EndStoneBrickStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short EndStoneBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 10070;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 10072;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 10074;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 10076;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 10078;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 10080;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10082;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10084;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10086;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10088;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 10090;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 10092;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 10094;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 10096;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 10098;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 10100;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10102;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10104;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10106;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 10108;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 10110;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 10112;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 10114;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 10116;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 10118;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 10120;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10122;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10124;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10126;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10128;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 10130;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 10132;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 10134;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 10136;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 10138;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 10140;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10142;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10144;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10146;
- return 10148;
- }
- short EndStoneBrickStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace EndStoneBrickWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short EndStoneBrickWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 14110;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 14111;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 14112;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 14116;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 14117;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 14118;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 14122;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 14123;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 14124;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 14128;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 14129;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 14130;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 14134;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 14135;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 14136;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 14140;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 14141;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 14142;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 14146;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 14147;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 14148;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 14152;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 14153;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 14154;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 14158;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 14159;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 14160;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 14164;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 14165;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 14166;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 14170;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 14171;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 14172;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 14176;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 14177;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 14178;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 14182;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 14183;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 14184;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 14188;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 14189;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 14190;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 14194;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 14195;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 14196;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 14200;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 14201;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 14202;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 14206;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 14207;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 14208;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 14212;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 14213;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 14214;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 14218;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 14219;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 14220;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 14224;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 14225;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 14226;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 14230;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 14231;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 14232;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 14236;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 14237;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 14238;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 14242;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 14243;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 14244;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 14248;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 14249;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 14250;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 14254;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 14255;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 14256;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 14260;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 14261;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 14262;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 14266;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 14267;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 14268;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 14272;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 14273;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 14274;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 14278;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 14279;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 14280;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 14284;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 14285;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 14286;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 14290;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 14291;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 14292;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 14296;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 14297;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 14298;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 14302;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 14303;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 14304;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 14308;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 14309;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 14310;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 14314;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 14315;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 14316;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 14320;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 14321;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 14322;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 14326;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 14327;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 14328;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 14332;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 14333;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 14334;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 14338;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 14339;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 14340;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 14344;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 14345;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 14346;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 14350;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 14351;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 14352;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 14356;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 14357;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 14358;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 14362;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 14363;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 14364;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 14368;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 14369;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 14370;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 14374;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 14375;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 14376;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 14380;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 14381;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 14382;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 14386;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 14387;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 14388;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 14392;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 14393;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 14394;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 14398;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 14399;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 14400;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 14404;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 14405;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 14406;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 14410;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 14411;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 14412;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 14416;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 14417;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 14418;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 14422;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 14423;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 14424;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 14428;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 14429;
- return 14430;
- }
- short EndStoneBrickWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace EndStoneBricks
- {
- constexpr short EndStoneBricks()
- {
- return 9218;
- }
- }
- namespace EnderChest
- {
- constexpr short EnderChest(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 5252;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 5254;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 5256;
- return 5258;
- }
- short EnderChest();
- eBlockFace Facing(short ID);
- }
- namespace Farmland
- {
- constexpr short Farmland(unsigned char Moisture)
- {
- if (Moisture == 0) return 3365;
- if (Moisture == 1) return 3366;
- if (Moisture == 2) return 3367;
- if (Moisture == 3) return 3368;
- if (Moisture == 4) return 3369;
- if (Moisture == 5) return 3370;
- if (Moisture == 6) return 3371;
- return 3372;
- }
- short Farmland();
- unsigned char Moisture(short ID);
- }
- namespace Fern
- {
- constexpr short Fern()
- {
- return 1343;
- }
- }
- namespace Fire
- {
- constexpr short Fire(unsigned char Age, bool East, bool North, bool South, bool Up, bool West)
- {
- if (Age == 0 && East && North && South && Up && West) return 1440;
- if (Age == 0 && East && North && South && Up && !West) return 1441;
- if (Age == 0 && East && North && South && !Up && West) return 1442;
- if (Age == 0 && East && North && South && !Up && !West) return 1443;
- if (Age == 0 && East && North && !South && Up && West) return 1444;
- if (Age == 0 && East && North && !South && Up && !West) return 1445;
- if (Age == 0 && East && North && !South && !Up && West) return 1446;
- if (Age == 0 && East && North && !South && !Up && !West) return 1447;
- if (Age == 0 && East && !North && South && Up && West) return 1448;
- if (Age == 0 && East && !North && South && Up && !West) return 1449;
- if (Age == 0 && East && !North && South && !Up && West) return 1450;
- if (Age == 0 && East && !North && South && !Up && !West) return 1451;
- if (Age == 0 && East && !North && !South && Up && West) return 1452;
- if (Age == 0 && East && !North && !South && Up && !West) return 1453;
- if (Age == 0 && East && !North && !South && !Up && West) return 1454;
- if (Age == 0 && East && !North && !South && !Up && !West) return 1455;
- if (Age == 0 && !East && North && South && Up && West) return 1456;
- if (Age == 0 && !East && North && South && Up && !West) return 1457;
- if (Age == 0 && !East && North && South && !Up && West) return 1458;
- if (Age == 0 && !East && North && South && !Up && !West) return 1459;
- if (Age == 0 && !East && North && !South && Up && West) return 1460;
- if (Age == 0 && !East && North && !South && Up && !West) return 1461;
- if (Age == 0 && !East && North && !South && !Up && West) return 1462;
- if (Age == 0 && !East && North && !South && !Up && !West) return 1463;
- if (Age == 0 && !East && !North && South && Up && West) return 1464;
- if (Age == 0 && !East && !North && South && Up && !West) return 1465;
- if (Age == 0 && !East && !North && South && !Up && West) return 1466;
- if (Age == 0 && !East && !North && South && !Up && !West) return 1467;
- if (Age == 0 && !East && !North && !South && Up && West) return 1468;
- if (Age == 0 && !East && !North && !South && Up && !West) return 1469;
- if (Age == 0 && !East && !North && !South && !Up && West) return 1470;
- if (Age == 0 && !East && !North && !South && !Up && !West) return 1471;
- if (Age == 1 && East && North && South && Up && West) return 1472;
- if (Age == 1 && East && North && South && Up && !West) return 1473;
- if (Age == 1 && East && North && South && !Up && West) return 1474;
- if (Age == 1 && East && North && South && !Up && !West) return 1475;
- if (Age == 1 && East && North && !South && Up && West) return 1476;
- if (Age == 1 && East && North && !South && Up && !West) return 1477;
- if (Age == 1 && East && North && !South && !Up && West) return 1478;
- if (Age == 1 && East && North && !South && !Up && !West) return 1479;
- if (Age == 1 && East && !North && South && Up && West) return 1480;
- if (Age == 1 && East && !North && South && Up && !West) return 1481;
- if (Age == 1 && East && !North && South && !Up && West) return 1482;
- if (Age == 1 && East && !North && South && !Up && !West) return 1483;
- if (Age == 1 && East && !North && !South && Up && West) return 1484;
- if (Age == 1 && East && !North && !South && Up && !West) return 1485;
- if (Age == 1 && East && !North && !South && !Up && West) return 1486;
- if (Age == 1 && East && !North && !South && !Up && !West) return 1487;
- if (Age == 1 && !East && North && South && Up && West) return 1488;
- if (Age == 1 && !East && North && South && Up && !West) return 1489;
- if (Age == 1 && !East && North && South && !Up && West) return 1490;
- if (Age == 1 && !East && North && South && !Up && !West) return 1491;
- if (Age == 1 && !East && North && !South && Up && West) return 1492;
- if (Age == 1 && !East && North && !South && Up && !West) return 1493;
- if (Age == 1 && !East && North && !South && !Up && West) return 1494;
- if (Age == 1 && !East && North && !South && !Up && !West) return 1495;
- if (Age == 1 && !East && !North && South && Up && West) return 1496;
- if (Age == 1 && !East && !North && South && Up && !West) return 1497;
- if (Age == 1 && !East && !North && South && !Up && West) return 1498;
- if (Age == 1 && !East && !North && South && !Up && !West) return 1499;
- if (Age == 1 && !East && !North && !South && Up && West) return 1500;
- if (Age == 1 && !East && !North && !South && Up && !West) return 1501;
- if (Age == 1 && !East && !North && !South && !Up && West) return 1502;
- if (Age == 1 && !East && !North && !South && !Up && !West) return 1503;
- if (Age == 2 && East && North && South && Up && West) return 1504;
- if (Age == 2 && East && North && South && Up && !West) return 1505;
- if (Age == 2 && East && North && South && !Up && West) return 1506;
- if (Age == 2 && East && North && South && !Up && !West) return 1507;
- if (Age == 2 && East && North && !South && Up && West) return 1508;
- if (Age == 2 && East && North && !South && Up && !West) return 1509;
- if (Age == 2 && East && North && !South && !Up && West) return 1510;
- if (Age == 2 && East && North && !South && !Up && !West) return 1511;
- if (Age == 2 && East && !North && South && Up && West) return 1512;
- if (Age == 2 && East && !North && South && Up && !West) return 1513;
- if (Age == 2 && East && !North && South && !Up && West) return 1514;
- if (Age == 2 && East && !North && South && !Up && !West) return 1515;
- if (Age == 2 && East && !North && !South && Up && West) return 1516;
- if (Age == 2 && East && !North && !South && Up && !West) return 1517;
- if (Age == 2 && East && !North && !South && !Up && West) return 1518;
- if (Age == 2 && East && !North && !South && !Up && !West) return 1519;
- if (Age == 2 && !East && North && South && Up && West) return 1520;
- if (Age == 2 && !East && North && South && Up && !West) return 1521;
- if (Age == 2 && !East && North && South && !Up && West) return 1522;
- if (Age == 2 && !East && North && South && !Up && !West) return 1523;
- if (Age == 2 && !East && North && !South && Up && West) return 1524;
- if (Age == 2 && !East && North && !South && Up && !West) return 1525;
- if (Age == 2 && !East && North && !South && !Up && West) return 1526;
- if (Age == 2 && !East && North && !South && !Up && !West) return 1527;
- if (Age == 2 && !East && !North && South && Up && West) return 1528;
- if (Age == 2 && !East && !North && South && Up && !West) return 1529;
- if (Age == 2 && !East && !North && South && !Up && West) return 1530;
- if (Age == 2 && !East && !North && South && !Up && !West) return 1531;
- if (Age == 2 && !East && !North && !South && Up && West) return 1532;
- if (Age == 2 && !East && !North && !South && Up && !West) return 1533;
- if (Age == 2 && !East && !North && !South && !Up && West) return 1534;
- if (Age == 2 && !East && !North && !South && !Up && !West) return 1535;
- if (Age == 3 && East && North && South && Up && West) return 1536;
- if (Age == 3 && East && North && South && Up && !West) return 1537;
- if (Age == 3 && East && North && South && !Up && West) return 1538;
- if (Age == 3 && East && North && South && !Up && !West) return 1539;
- if (Age == 3 && East && North && !South && Up && West) return 1540;
- if (Age == 3 && East && North && !South && Up && !West) return 1541;
- if (Age == 3 && East && North && !South && !Up && West) return 1542;
- if (Age == 3 && East && North && !South && !Up && !West) return 1543;
- if (Age == 3 && East && !North && South && Up && West) return 1544;
- if (Age == 3 && East && !North && South && Up && !West) return 1545;
- if (Age == 3 && East && !North && South && !Up && West) return 1546;
- if (Age == 3 && East && !North && South && !Up && !West) return 1547;
- if (Age == 3 && East && !North && !South && Up && West) return 1548;
- if (Age == 3 && East && !North && !South && Up && !West) return 1549;
- if (Age == 3 && East && !North && !South && !Up && West) return 1550;
- if (Age == 3 && East && !North && !South && !Up && !West) return 1551;
- if (Age == 3 && !East && North && South && Up && West) return 1552;
- if (Age == 3 && !East && North && South && Up && !West) return 1553;
- if (Age == 3 && !East && North && South && !Up && West) return 1554;
- if (Age == 3 && !East && North && South && !Up && !West) return 1555;
- if (Age == 3 && !East && North && !South && Up && West) return 1556;
- if (Age == 3 && !East && North && !South && Up && !West) return 1557;
- if (Age == 3 && !East && North && !South && !Up && West) return 1558;
- if (Age == 3 && !East && North && !South && !Up && !West) return 1559;
- if (Age == 3 && !East && !North && South && Up && West) return 1560;
- if (Age == 3 && !East && !North && South && Up && !West) return 1561;
- if (Age == 3 && !East && !North && South && !Up && West) return 1562;
- if (Age == 3 && !East && !North && South && !Up && !West) return 1563;
- if (Age == 3 && !East && !North && !South && Up && West) return 1564;
- if (Age == 3 && !East && !North && !South && Up && !West) return 1565;
- if (Age == 3 && !East && !North && !South && !Up && West) return 1566;
- if (Age == 3 && !East && !North && !South && !Up && !West) return 1567;
- if (Age == 4 && East && North && South && Up && West) return 1568;
- if (Age == 4 && East && North && South && Up && !West) return 1569;
- if (Age == 4 && East && North && South && !Up && West) return 1570;
- if (Age == 4 && East && North && South && !Up && !West) return 1571;
- if (Age == 4 && East && North && !South && Up && West) return 1572;
- if (Age == 4 && East && North && !South && Up && !West) return 1573;
- if (Age == 4 && East && North && !South && !Up && West) return 1574;
- if (Age == 4 && East && North && !South && !Up && !West) return 1575;
- if (Age == 4 && East && !North && South && Up && West) return 1576;
- if (Age == 4 && East && !North && South && Up && !West) return 1577;
- if (Age == 4 && East && !North && South && !Up && West) return 1578;
- if (Age == 4 && East && !North && South && !Up && !West) return 1579;
- if (Age == 4 && East && !North && !South && Up && West) return 1580;
- if (Age == 4 && East && !North && !South && Up && !West) return 1581;
- if (Age == 4 && East && !North && !South && !Up && West) return 1582;
- if (Age == 4 && East && !North && !South && !Up && !West) return 1583;
- if (Age == 4 && !East && North && South && Up && West) return 1584;
- if (Age == 4 && !East && North && South && Up && !West) return 1585;
- if (Age == 4 && !East && North && South && !Up && West) return 1586;
- if (Age == 4 && !East && North && South && !Up && !West) return 1587;
- if (Age == 4 && !East && North && !South && Up && West) return 1588;
- if (Age == 4 && !East && North && !South && Up && !West) return 1589;
- if (Age == 4 && !East && North && !South && !Up && West) return 1590;
- if (Age == 4 && !East && North && !South && !Up && !West) return 1591;
- if (Age == 4 && !East && !North && South && Up && West) return 1592;
- if (Age == 4 && !East && !North && South && Up && !West) return 1593;
- if (Age == 4 && !East && !North && South && !Up && West) return 1594;
- if (Age == 4 && !East && !North && South && !Up && !West) return 1595;
- if (Age == 4 && !East && !North && !South && Up && West) return 1596;
- if (Age == 4 && !East && !North && !South && Up && !West) return 1597;
- if (Age == 4 && !East && !North && !South && !Up && West) return 1598;
- if (Age == 4 && !East && !North && !South && !Up && !West) return 1599;
- if (Age == 5 && East && North && South && Up && West) return 1600;
- if (Age == 5 && East && North && South && Up && !West) return 1601;
- if (Age == 5 && East && North && South && !Up && West) return 1602;
- if (Age == 5 && East && North && South && !Up && !West) return 1603;
- if (Age == 5 && East && North && !South && Up && West) return 1604;
- if (Age == 5 && East && North && !South && Up && !West) return 1605;
- if (Age == 5 && East && North && !South && !Up && West) return 1606;
- if (Age == 5 && East && North && !South && !Up && !West) return 1607;
- if (Age == 5 && East && !North && South && Up && West) return 1608;
- if (Age == 5 && East && !North && South && Up && !West) return 1609;
- if (Age == 5 && East && !North && South && !Up && West) return 1610;
- if (Age == 5 && East && !North && South && !Up && !West) return 1611;
- if (Age == 5 && East && !North && !South && Up && West) return 1612;
- if (Age == 5 && East && !North && !South && Up && !West) return 1613;
- if (Age == 5 && East && !North && !South && !Up && West) return 1614;
- if (Age == 5 && East && !North && !South && !Up && !West) return 1615;
- if (Age == 5 && !East && North && South && Up && West) return 1616;
- if (Age == 5 && !East && North && South && Up && !West) return 1617;
- if (Age == 5 && !East && North && South && !Up && West) return 1618;
- if (Age == 5 && !East && North && South && !Up && !West) return 1619;
- if (Age == 5 && !East && North && !South && Up && West) return 1620;
- if (Age == 5 && !East && North && !South && Up && !West) return 1621;
- if (Age == 5 && !East && North && !South && !Up && West) return 1622;
- if (Age == 5 && !East && North && !South && !Up && !West) return 1623;
- if (Age == 5 && !East && !North && South && Up && West) return 1624;
- if (Age == 5 && !East && !North && South && Up && !West) return 1625;
- if (Age == 5 && !East && !North && South && !Up && West) return 1626;
- if (Age == 5 && !East && !North && South && !Up && !West) return 1627;
- if (Age == 5 && !East && !North && !South && Up && West) return 1628;
- if (Age == 5 && !East && !North && !South && Up && !West) return 1629;
- if (Age == 5 && !East && !North && !South && !Up && West) return 1630;
- if (Age == 5 && !East && !North && !South && !Up && !West) return 1631;
- if (Age == 6 && East && North && South && Up && West) return 1632;
- if (Age == 6 && East && North && South && Up && !West) return 1633;
- if (Age == 6 && East && North && South && !Up && West) return 1634;
- if (Age == 6 && East && North && South && !Up && !West) return 1635;
- if (Age == 6 && East && North && !South && Up && West) return 1636;
- if (Age == 6 && East && North && !South && Up && !West) return 1637;
- if (Age == 6 && East && North && !South && !Up && West) return 1638;
- if (Age == 6 && East && North && !South && !Up && !West) return 1639;
- if (Age == 6 && East && !North && South && Up && West) return 1640;
- if (Age == 6 && East && !North && South && Up && !West) return 1641;
- if (Age == 6 && East && !North && South && !Up && West) return 1642;
- if (Age == 6 && East && !North && South && !Up && !West) return 1643;
- if (Age == 6 && East && !North && !South && Up && West) return 1644;
- if (Age == 6 && East && !North && !South && Up && !West) return 1645;
- if (Age == 6 && East && !North && !South && !Up && West) return 1646;
- if (Age == 6 && East && !North && !South && !Up && !West) return 1647;
- if (Age == 6 && !East && North && South && Up && West) return 1648;
- if (Age == 6 && !East && North && South && Up && !West) return 1649;
- if (Age == 6 && !East && North && South && !Up && West) return 1650;
- if (Age == 6 && !East && North && South && !Up && !West) return 1651;
- if (Age == 6 && !East && North && !South && Up && West) return 1652;
- if (Age == 6 && !East && North && !South && Up && !West) return 1653;
- if (Age == 6 && !East && North && !South && !Up && West) return 1654;
- if (Age == 6 && !East && North && !South && !Up && !West) return 1655;
- if (Age == 6 && !East && !North && South && Up && West) return 1656;
- if (Age == 6 && !East && !North && South && Up && !West) return 1657;
- if (Age == 6 && !East && !North && South && !Up && West) return 1658;
- if (Age == 6 && !East && !North && South && !Up && !West) return 1659;
- if (Age == 6 && !East && !North && !South && Up && West) return 1660;
- if (Age == 6 && !East && !North && !South && Up && !West) return 1661;
- if (Age == 6 && !East && !North && !South && !Up && West) return 1662;
- if (Age == 6 && !East && !North && !South && !Up && !West) return 1663;
- if (Age == 7 && East && North && South && Up && West) return 1664;
- if (Age == 7 && East && North && South && Up && !West) return 1665;
- if (Age == 7 && East && North && South && !Up && West) return 1666;
- if (Age == 7 && East && North && South && !Up && !West) return 1667;
- if (Age == 7 && East && North && !South && Up && West) return 1668;
- if (Age == 7 && East && North && !South && Up && !West) return 1669;
- if (Age == 7 && East && North && !South && !Up && West) return 1670;
- if (Age == 7 && East && North && !South && !Up && !West) return 1671;
- if (Age == 7 && East && !North && South && Up && West) return 1672;
- if (Age == 7 && East && !North && South && Up && !West) return 1673;
- if (Age == 7 && East && !North && South && !Up && West) return 1674;
- if (Age == 7 && East && !North && South && !Up && !West) return 1675;
- if (Age == 7 && East && !North && !South && Up && West) return 1676;
- if (Age == 7 && East && !North && !South && Up && !West) return 1677;
- if (Age == 7 && East && !North && !South && !Up && West) return 1678;
- if (Age == 7 && East && !North && !South && !Up && !West) return 1679;
- if (Age == 7 && !East && North && South && Up && West) return 1680;
- if (Age == 7 && !East && North && South && Up && !West) return 1681;
- if (Age == 7 && !East && North && South && !Up && West) return 1682;
- if (Age == 7 && !East && North && South && !Up && !West) return 1683;
- if (Age == 7 && !East && North && !South && Up && West) return 1684;
- if (Age == 7 && !East && North && !South && Up && !West) return 1685;
- if (Age == 7 && !East && North && !South && !Up && West) return 1686;
- if (Age == 7 && !East && North && !South && !Up && !West) return 1687;
- if (Age == 7 && !East && !North && South && Up && West) return 1688;
- if (Age == 7 && !East && !North && South && Up && !West) return 1689;
- if (Age == 7 && !East && !North && South && !Up && West) return 1690;
- if (Age == 7 && !East && !North && South && !Up && !West) return 1691;
- if (Age == 7 && !East && !North && !South && Up && West) return 1692;
- if (Age == 7 && !East && !North && !South && Up && !West) return 1693;
- if (Age == 7 && !East && !North && !South && !Up && West) return 1694;
- if (Age == 7 && !East && !North && !South && !Up && !West) return 1695;
- if (Age == 8 && East && North && South && Up && West) return 1696;
- if (Age == 8 && East && North && South && Up && !West) return 1697;
- if (Age == 8 && East && North && South && !Up && West) return 1698;
- if (Age == 8 && East && North && South && !Up && !West) return 1699;
- if (Age == 8 && East && North && !South && Up && West) return 1700;
- if (Age == 8 && East && North && !South && Up && !West) return 1701;
- if (Age == 8 && East && North && !South && !Up && West) return 1702;
- if (Age == 8 && East && North && !South && !Up && !West) return 1703;
- if (Age == 8 && East && !North && South && Up && West) return 1704;
- if (Age == 8 && East && !North && South && Up && !West) return 1705;
- if (Age == 8 && East && !North && South && !Up && West) return 1706;
- if (Age == 8 && East && !North && South && !Up && !West) return 1707;
- if (Age == 8 && East && !North && !South && Up && West) return 1708;
- if (Age == 8 && East && !North && !South && Up && !West) return 1709;
- if (Age == 8 && East && !North && !South && !Up && West) return 1710;
- if (Age == 8 && East && !North && !South && !Up && !West) return 1711;
- if (Age == 8 && !East && North && South && Up && West) return 1712;
- if (Age == 8 && !East && North && South && Up && !West) return 1713;
- if (Age == 8 && !East && North && South && !Up && West) return 1714;
- if (Age == 8 && !East && North && South && !Up && !West) return 1715;
- if (Age == 8 && !East && North && !South && Up && West) return 1716;
- if (Age == 8 && !East && North && !South && Up && !West) return 1717;
- if (Age == 8 && !East && North && !South && !Up && West) return 1718;
- if (Age == 8 && !East && North && !South && !Up && !West) return 1719;
- if (Age == 8 && !East && !North && South && Up && West) return 1720;
- if (Age == 8 && !East && !North && South && Up && !West) return 1721;
- if (Age == 8 && !East && !North && South && !Up && West) return 1722;
- if (Age == 8 && !East && !North && South && !Up && !West) return 1723;
- if (Age == 8 && !East && !North && !South && Up && West) return 1724;
- if (Age == 8 && !East && !North && !South && Up && !West) return 1725;
- if (Age == 8 && !East && !North && !South && !Up && West) return 1726;
- if (Age == 8 && !East && !North && !South && !Up && !West) return 1727;
- if (Age == 9 && East && North && South && Up && West) return 1728;
- if (Age == 9 && East && North && South && Up && !West) return 1729;
- if (Age == 9 && East && North && South && !Up && West) return 1730;
- if (Age == 9 && East && North && South && !Up && !West) return 1731;
- if (Age == 9 && East && North && !South && Up && West) return 1732;
- if (Age == 9 && East && North && !South && Up && !West) return 1733;
- if (Age == 9 && East && North && !South && !Up && West) return 1734;
- if (Age == 9 && East && North && !South && !Up && !West) return 1735;
- if (Age == 9 && East && !North && South && Up && West) return 1736;
- if (Age == 9 && East && !North && South && Up && !West) return 1737;
- if (Age == 9 && East && !North && South && !Up && West) return 1738;
- if (Age == 9 && East && !North && South && !Up && !West) return 1739;
- if (Age == 9 && East && !North && !South && Up && West) return 1740;
- if (Age == 9 && East && !North && !South && Up && !West) return 1741;
- if (Age == 9 && East && !North && !South && !Up && West) return 1742;
- if (Age == 9 && East && !North && !South && !Up && !West) return 1743;
- if (Age == 9 && !East && North && South && Up && West) return 1744;
- if (Age == 9 && !East && North && South && Up && !West) return 1745;
- if (Age == 9 && !East && North && South && !Up && West) return 1746;
- if (Age == 9 && !East && North && South && !Up && !West) return 1747;
- if (Age == 9 && !East && North && !South && Up && West) return 1748;
- if (Age == 9 && !East && North && !South && Up && !West) return 1749;
- if (Age == 9 && !East && North && !South && !Up && West) return 1750;
- if (Age == 9 && !East && North && !South && !Up && !West) return 1751;
- if (Age == 9 && !East && !North && South && Up && West) return 1752;
- if (Age == 9 && !East && !North && South && Up && !West) return 1753;
- if (Age == 9 && !East && !North && South && !Up && West) return 1754;
- if (Age == 9 && !East && !North && South && !Up && !West) return 1755;
- if (Age == 9 && !East && !North && !South && Up && West) return 1756;
- if (Age == 9 && !East && !North && !South && Up && !West) return 1757;
- if (Age == 9 && !East && !North && !South && !Up && West) return 1758;
- if (Age == 9 && !East && !North && !South && !Up && !West) return 1759;
- if (Age == 10 && East && North && South && Up && West) return 1760;
- if (Age == 10 && East && North && South && Up && !West) return 1761;
- if (Age == 10 && East && North && South && !Up && West) return 1762;
- if (Age == 10 && East && North && South && !Up && !West) return 1763;
- if (Age == 10 && East && North && !South && Up && West) return 1764;
- if (Age == 10 && East && North && !South && Up && !West) return 1765;
- if (Age == 10 && East && North && !South && !Up && West) return 1766;
- if (Age == 10 && East && North && !South && !Up && !West) return 1767;
- if (Age == 10 && East && !North && South && Up && West) return 1768;
- if (Age == 10 && East && !North && South && Up && !West) return 1769;
- if (Age == 10 && East && !North && South && !Up && West) return 1770;
- if (Age == 10 && East && !North && South && !Up && !West) return 1771;
- if (Age == 10 && East && !North && !South && Up && West) return 1772;
- if (Age == 10 && East && !North && !South && Up && !West) return 1773;
- if (Age == 10 && East && !North && !South && !Up && West) return 1774;
- if (Age == 10 && East && !North && !South && !Up && !West) return 1775;
- if (Age == 10 && !East && North && South && Up && West) return 1776;
- if (Age == 10 && !East && North && South && Up && !West) return 1777;
- if (Age == 10 && !East && North && South && !Up && West) return 1778;
- if (Age == 10 && !East && North && South && !Up && !West) return 1779;
- if (Age == 10 && !East && North && !South && Up && West) return 1780;
- if (Age == 10 && !East && North && !South && Up && !West) return 1781;
- if (Age == 10 && !East && North && !South && !Up && West) return 1782;
- if (Age == 10 && !East && North && !South && !Up && !West) return 1783;
- if (Age == 10 && !East && !North && South && Up && West) return 1784;
- if (Age == 10 && !East && !North && South && Up && !West) return 1785;
- if (Age == 10 && !East && !North && South && !Up && West) return 1786;
- if (Age == 10 && !East && !North && South && !Up && !West) return 1787;
- if (Age == 10 && !East && !North && !South && Up && West) return 1788;
- if (Age == 10 && !East && !North && !South && Up && !West) return 1789;
- if (Age == 10 && !East && !North && !South && !Up && West) return 1790;
- if (Age == 10 && !East && !North && !South && !Up && !West) return 1791;
- if (Age == 11 && East && North && South && Up && West) return 1792;
- if (Age == 11 && East && North && South && Up && !West) return 1793;
- if (Age == 11 && East && North && South && !Up && West) return 1794;
- if (Age == 11 && East && North && South && !Up && !West) return 1795;
- if (Age == 11 && East && North && !South && Up && West) return 1796;
- if (Age == 11 && East && North && !South && Up && !West) return 1797;
- if (Age == 11 && East && North && !South && !Up && West) return 1798;
- if (Age == 11 && East && North && !South && !Up && !West) return 1799;
- if (Age == 11 && East && !North && South && Up && West) return 1800;
- if (Age == 11 && East && !North && South && Up && !West) return 1801;
- if (Age == 11 && East && !North && South && !Up && West) return 1802;
- if (Age == 11 && East && !North && South && !Up && !West) return 1803;
- if (Age == 11 && East && !North && !South && Up && West) return 1804;
- if (Age == 11 && East && !North && !South && Up && !West) return 1805;
- if (Age == 11 && East && !North && !South && !Up && West) return 1806;
- if (Age == 11 && East && !North && !South && !Up && !West) return 1807;
- if (Age == 11 && !East && North && South && Up && West) return 1808;
- if (Age == 11 && !East && North && South && Up && !West) return 1809;
- if (Age == 11 && !East && North && South && !Up && West) return 1810;
- if (Age == 11 && !East && North && South && !Up && !West) return 1811;
- if (Age == 11 && !East && North && !South && Up && West) return 1812;
- if (Age == 11 && !East && North && !South && Up && !West) return 1813;
- if (Age == 11 && !East && North && !South && !Up && West) return 1814;
- if (Age == 11 && !East && North && !South && !Up && !West) return 1815;
- if (Age == 11 && !East && !North && South && Up && West) return 1816;
- if (Age == 11 && !East && !North && South && Up && !West) return 1817;
- if (Age == 11 && !East && !North && South && !Up && West) return 1818;
- if (Age == 11 && !East && !North && South && !Up && !West) return 1819;
- if (Age == 11 && !East && !North && !South && Up && West) return 1820;
- if (Age == 11 && !East && !North && !South && Up && !West) return 1821;
- if (Age == 11 && !East && !North && !South && !Up && West) return 1822;
- if (Age == 11 && !East && !North && !South && !Up && !West) return 1823;
- if (Age == 12 && East && North && South && Up && West) return 1824;
- if (Age == 12 && East && North && South && Up && !West) return 1825;
- if (Age == 12 && East && North && South && !Up && West) return 1826;
- if (Age == 12 && East && North && South && !Up && !West) return 1827;
- if (Age == 12 && East && North && !South && Up && West) return 1828;
- if (Age == 12 && East && North && !South && Up && !West) return 1829;
- if (Age == 12 && East && North && !South && !Up && West) return 1830;
- if (Age == 12 && East && North && !South && !Up && !West) return 1831;
- if (Age == 12 && East && !North && South && Up && West) return 1832;
- if (Age == 12 && East && !North && South && Up && !West) return 1833;
- if (Age == 12 && East && !North && South && !Up && West) return 1834;
- if (Age == 12 && East && !North && South && !Up && !West) return 1835;
- if (Age == 12 && East && !North && !South && Up && West) return 1836;
- if (Age == 12 && East && !North && !South && Up && !West) return 1837;
- if (Age == 12 && East && !North && !South && !Up && West) return 1838;
- if (Age == 12 && East && !North && !South && !Up && !West) return 1839;
- if (Age == 12 && !East && North && South && Up && West) return 1840;
- if (Age == 12 && !East && North && South && Up && !West) return 1841;
- if (Age == 12 && !East && North && South && !Up && West) return 1842;
- if (Age == 12 && !East && North && South && !Up && !West) return 1843;
- if (Age == 12 && !East && North && !South && Up && West) return 1844;
- if (Age == 12 && !East && North && !South && Up && !West) return 1845;
- if (Age == 12 && !East && North && !South && !Up && West) return 1846;
- if (Age == 12 && !East && North && !South && !Up && !West) return 1847;
- if (Age == 12 && !East && !North && South && Up && West) return 1848;
- if (Age == 12 && !East && !North && South && Up && !West) return 1849;
- if (Age == 12 && !East && !North && South && !Up && West) return 1850;
- if (Age == 12 && !East && !North && South && !Up && !West) return 1851;
- if (Age == 12 && !East && !North && !South && Up && West) return 1852;
- if (Age == 12 && !East && !North && !South && Up && !West) return 1853;
- if (Age == 12 && !East && !North && !South && !Up && West) return 1854;
- if (Age == 12 && !East && !North && !South && !Up && !West) return 1855;
- if (Age == 13 && East && North && South && Up && West) return 1856;
- if (Age == 13 && East && North && South && Up && !West) return 1857;
- if (Age == 13 && East && North && South && !Up && West) return 1858;
- if (Age == 13 && East && North && South && !Up && !West) return 1859;
- if (Age == 13 && East && North && !South && Up && West) return 1860;
- if (Age == 13 && East && North && !South && Up && !West) return 1861;
- if (Age == 13 && East && North && !South && !Up && West) return 1862;
- if (Age == 13 && East && North && !South && !Up && !West) return 1863;
- if (Age == 13 && East && !North && South && Up && West) return 1864;
- if (Age == 13 && East && !North && South && Up && !West) return 1865;
- if (Age == 13 && East && !North && South && !Up && West) return 1866;
- if (Age == 13 && East && !North && South && !Up && !West) return 1867;
- if (Age == 13 && East && !North && !South && Up && West) return 1868;
- if (Age == 13 && East && !North && !South && Up && !West) return 1869;
- if (Age == 13 && East && !North && !South && !Up && West) return 1870;
- if (Age == 13 && East && !North && !South && !Up && !West) return 1871;
- if (Age == 13 && !East && North && South && Up && West) return 1872;
- if (Age == 13 && !East && North && South && Up && !West) return 1873;
- if (Age == 13 && !East && North && South && !Up && West) return 1874;
- if (Age == 13 && !East && North && South && !Up && !West) return 1875;
- if (Age == 13 && !East && North && !South && Up && West) return 1876;
- if (Age == 13 && !East && North && !South && Up && !West) return 1877;
- if (Age == 13 && !East && North && !South && !Up && West) return 1878;
- if (Age == 13 && !East && North && !South && !Up && !West) return 1879;
- if (Age == 13 && !East && !North && South && Up && West) return 1880;
- if (Age == 13 && !East && !North && South && Up && !West) return 1881;
- if (Age == 13 && !East && !North && South && !Up && West) return 1882;
- if (Age == 13 && !East && !North && South && !Up && !West) return 1883;
- if (Age == 13 && !East && !North && !South && Up && West) return 1884;
- if (Age == 13 && !East && !North && !South && Up && !West) return 1885;
- if (Age == 13 && !East && !North && !South && !Up && West) return 1886;
- if (Age == 13 && !East && !North && !South && !Up && !West) return 1887;
- if (Age == 14 && East && North && South && Up && West) return 1888;
- if (Age == 14 && East && North && South && Up && !West) return 1889;
- if (Age == 14 && East && North && South && !Up && West) return 1890;
- if (Age == 14 && East && North && South && !Up && !West) return 1891;
- if (Age == 14 && East && North && !South && Up && West) return 1892;
- if (Age == 14 && East && North && !South && Up && !West) return 1893;
- if (Age == 14 && East && North && !South && !Up && West) return 1894;
- if (Age == 14 && East && North && !South && !Up && !West) return 1895;
- if (Age == 14 && East && !North && South && Up && West) return 1896;
- if (Age == 14 && East && !North && South && Up && !West) return 1897;
- if (Age == 14 && East && !North && South && !Up && West) return 1898;
- if (Age == 14 && East && !North && South && !Up && !West) return 1899;
- if (Age == 14 && East && !North && !South && Up && West) return 1900;
- if (Age == 14 && East && !North && !South && Up && !West) return 1901;
- if (Age == 14 && East && !North && !South && !Up && West) return 1902;
- if (Age == 14 && East && !North && !South && !Up && !West) return 1903;
- if (Age == 14 && !East && North && South && Up && West) return 1904;
- if (Age == 14 && !East && North && South && Up && !West) return 1905;
- if (Age == 14 && !East && North && South && !Up && West) return 1906;
- if (Age == 14 && !East && North && South && !Up && !West) return 1907;
- if (Age == 14 && !East && North && !South && Up && West) return 1908;
- if (Age == 14 && !East && North && !South && Up && !West) return 1909;
- if (Age == 14 && !East && North && !South && !Up && West) return 1910;
- if (Age == 14 && !East && North && !South && !Up && !West) return 1911;
- if (Age == 14 && !East && !North && South && Up && West) return 1912;
- if (Age == 14 && !East && !North && South && Up && !West) return 1913;
- if (Age == 14 && !East && !North && South && !Up && West) return 1914;
- if (Age == 14 && !East && !North && South && !Up && !West) return 1915;
- if (Age == 14 && !East && !North && !South && Up && West) return 1916;
- if (Age == 14 && !East && !North && !South && Up && !West) return 1917;
- if (Age == 14 && !East && !North && !South && !Up && West) return 1918;
- if (Age == 14 && !East && !North && !South && !Up && !West) return 1919;
- if (Age == 15 && East && North && South && Up && West) return 1920;
- if (Age == 15 && East && North && South && Up && !West) return 1921;
- if (Age == 15 && East && North && South && !Up && West) return 1922;
- if (Age == 15 && East && North && South && !Up && !West) return 1923;
- if (Age == 15 && East && North && !South && Up && West) return 1924;
- if (Age == 15 && East && North && !South && Up && !West) return 1925;
- if (Age == 15 && East && North && !South && !Up && West) return 1926;
- if (Age == 15 && East && North && !South && !Up && !West) return 1927;
- if (Age == 15 && East && !North && South && Up && West) return 1928;
- if (Age == 15 && East && !North && South && Up && !West) return 1929;
- if (Age == 15 && East && !North && South && !Up && West) return 1930;
- if (Age == 15 && East && !North && South && !Up && !West) return 1931;
- if (Age == 15 && East && !North && !South && Up && West) return 1932;
- if (Age == 15 && East && !North && !South && Up && !West) return 1933;
- if (Age == 15 && East && !North && !South && !Up && West) return 1934;
- if (Age == 15 && East && !North && !South && !Up && !West) return 1935;
- if (Age == 15 && !East && North && South && Up && West) return 1936;
- if (Age == 15 && !East && North && South && Up && !West) return 1937;
- if (Age == 15 && !East && North && South && !Up && West) return 1938;
- if (Age == 15 && !East && North && South && !Up && !West) return 1939;
- if (Age == 15 && !East && North && !South && Up && West) return 1940;
- if (Age == 15 && !East && North && !South && Up && !West) return 1941;
- if (Age == 15 && !East && North && !South && !Up && West) return 1942;
- if (Age == 15 && !East && North && !South && !Up && !West) return 1943;
- if (Age == 15 && !East && !North && South && Up && West) return 1944;
- if (Age == 15 && !East && !North && South && Up && !West) return 1945;
- if (Age == 15 && !East && !North && South && !Up && West) return 1946;
- if (Age == 15 && !East && !North && South && !Up && !West) return 1947;
- if (Age == 15 && !East && !North && !South && Up && West) return 1948;
- if (Age == 15 && !East && !North && !South && Up && !West) return 1949;
- if (Age == 15 && !East && !North && !South && !Up && West) return 1950;
- return 1951;
- }
- short Fire();
- unsigned char Age(short ID);
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool Up(short ID);
- bool West(short ID);
- }
- namespace FireCoral
- {
- constexpr short FireCoral()
- {
- return 9537;
- }
- }
- namespace FireCoralBlock
- {
- constexpr short FireCoralBlock()
- {
- return 9518;
- }
- }
- namespace FireCoralFan
- {
- constexpr short FireCoralFan()
- {
- return 9557;
- }
- }
- namespace FireCoralWallFan
- {
- constexpr short FireCoralWallFan(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9625;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9627;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9629;
- return 9631;
- }
- short FireCoralWallFan();
- eBlockFace Facing(short ID);
- }
- namespace FletchingTable
- {
- constexpr short FletchingTable()
- {
- return 14820;
- }
- }
- namespace FlowerPot
- {
- constexpr short FlowerPot()
- {
- return 6305;
- }
- }
- namespace FrostedIce
- {
- constexpr short FrostedIce(unsigned char Age)
- {
- if (Age == 0) return 9249;
- if (Age == 1) return 9250;
- if (Age == 2) return 9251;
- return 9252;
- }
- short FrostedIce();
- unsigned char Age(short ID);
- }
- namespace Furnace
- {
- constexpr short Furnace(eBlockFace Facing, bool Lit)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Lit) return 3373;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Lit) return 3374;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Lit) return 3375;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Lit) return 3376;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Lit) return 3377;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Lit) return 3378;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Lit) return 3379;
- return 3380;
- }
- short Furnace();
- eBlockFace Facing(short ID);
- bool Lit(short ID);
- }
- namespace GildedBlackstone
- {
- constexpr short GildedBlackstone()
- {
- return 16664;
- }
- }
- namespace Glass
- {
- constexpr short Glass()
- {
- return 231;
- }
- }
- namespace GlassPane
- {
- constexpr short GlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 4733;
- if (East && North && South && !West) return 4734;
- if (East && North && !South && West) return 4737;
- if (East && North && !South && !West) return 4738;
- if (East && !North && South && West) return 4741;
- if (East && !North && South && !West) return 4742;
- if (East && !North && !South && West) return 4745;
- if (East && !North && !South && !West) return 4746;
- if (!East && North && South && West) return 4749;
- if (!East && North && South && !West) return 4750;
- if (!East && North && !South && West) return 4753;
- if (!East && North && !South && !West) return 4754;
- if (!East && !North && South && West) return 4757;
- if (!East && !North && South && !West) return 4758;
- if (!East && !North && !South && West) return 4761;
- return 4762;
- }
- short GlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace Glowstone
- {
- constexpr short Glowstone()
- {
- return 4013;
- }
- }
- namespace GoldBlock
- {
- constexpr short GoldBlock()
- {
- return 1427;
- }
- }
- namespace GoldOre
- {
- constexpr short GoldOre()
- {
- return 69;
- }
- }
- namespace Granite
- {
- constexpr short Granite()
- {
- return 2;
- }
- }
- namespace GraniteSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short GraniteSlab(enum Type Type)
- {
- if (Type == Type::Top) return 10838;
- if (Type == Type::Bottom) return 10840;
- return 10842;
- }
- short GraniteSlab();
- enum Type Type(short ID);
- }
- namespace GraniteStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short GraniteStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 10390;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 10392;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 10394;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 10396;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 10398;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 10400;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10402;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10404;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10406;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10408;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 10410;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 10412;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 10414;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 10416;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 10418;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 10420;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10422;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10424;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10426;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 10428;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 10430;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 10432;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 10434;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 10436;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 10438;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 10440;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10442;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10444;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10446;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10448;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 10450;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 10452;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 10454;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 10456;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 10458;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 10460;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10462;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10464;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10466;
- return 10468;
- }
- short GraniteStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace GraniteWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short GraniteWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 12166;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 12167;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 12168;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 12172;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 12173;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 12174;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 12178;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 12179;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 12180;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 12184;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 12185;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 12186;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 12190;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 12191;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 12192;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 12196;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 12197;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 12198;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 12202;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 12203;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 12204;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 12208;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 12209;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 12210;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 12214;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 12215;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 12216;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 12220;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 12221;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 12222;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 12226;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 12227;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 12228;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 12232;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 12233;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 12234;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 12238;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 12239;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 12240;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 12244;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 12245;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 12246;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 12250;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 12251;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 12252;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 12256;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 12257;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 12258;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 12262;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 12263;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 12264;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 12268;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 12269;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 12270;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 12274;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 12275;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 12276;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 12280;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 12281;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 12282;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 12286;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 12287;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 12288;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 12292;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 12293;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 12294;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 12298;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 12299;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 12300;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 12304;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 12305;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 12306;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 12310;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 12311;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 12312;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 12316;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 12317;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 12318;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 12322;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 12323;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 12324;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 12328;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 12329;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 12330;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 12334;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 12335;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 12336;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 12340;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 12341;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 12342;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 12346;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 12347;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 12348;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 12352;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 12353;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 12354;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 12358;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 12359;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 12360;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 12364;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 12365;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 12366;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 12370;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 12371;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 12372;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 12376;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 12377;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 12378;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 12382;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 12383;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 12384;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 12388;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 12389;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 12390;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 12394;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 12395;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 12396;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 12400;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 12401;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 12402;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 12406;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 12407;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 12408;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 12412;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 12413;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 12414;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 12418;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 12419;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 12420;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 12424;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 12425;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 12426;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 12430;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 12431;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 12432;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 12436;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 12437;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 12438;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 12442;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 12443;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 12444;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 12448;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 12449;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 12450;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 12454;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 12455;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 12456;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 12460;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 12461;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 12462;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 12466;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 12467;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 12468;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 12472;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 12473;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 12474;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 12478;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 12479;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 12480;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 12484;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 12485;
- return 12486;
- }
- short GraniteWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace Grass
- {
- constexpr short Grass()
- {
- return 1342;
- }
- }
- namespace GrassBlock
- {
- constexpr short GrassBlock(bool Snowy)
- {
- if (Snowy) return 8;
- return 9;
- }
- short GrassBlock();
- bool Snowy(short ID);
- }
- namespace GrassPath
- {
- constexpr short GrassPath()
- {
- return 9223;
- }
- }
- namespace Gravel
- {
- constexpr short Gravel()
- {
- return 68;
- }
- }
- namespace GrayBanner
- {
- constexpr short GrayBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 8009;
- if (Rotation == 1) return 8010;
- if (Rotation == 2) return 8011;
- if (Rotation == 3) return 8012;
- if (Rotation == 4) return 8013;
- if (Rotation == 5) return 8014;
- if (Rotation == 6) return 8015;
- if (Rotation == 7) return 8016;
- if (Rotation == 8) return 8017;
- if (Rotation == 9) return 8018;
- if (Rotation == 10) return 8019;
- if (Rotation == 11) return 8020;
- if (Rotation == 12) return 8021;
- if (Rotation == 13) return 8022;
- if (Rotation == 14) return 8023;
- return 8024;
- }
- short GrayBanner();
- unsigned char Rotation(short ID);
- }
- namespace GrayBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short GrayBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1161;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1162;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1163;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1164;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1165;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1166;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1167;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1168;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1169;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1170;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1171;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1172;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1173;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1174;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1175;
- return 1176;
- }
- short GrayBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace GrayCarpet
- {
- constexpr short GrayCarpet()
- {
- return 7873;
- }
- }
- namespace GrayConcrete
- {
- constexpr short GrayConcrete()
- {
- return 9445;
- }
- }
- namespace GrayConcretePowder
- {
- constexpr short GrayConcretePowder()
- {
- return 9461;
- }
- }
- namespace GrayGlazedTerracotta
- {
- constexpr short GrayGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9402;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9403;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9404;
- return 9405;
- }
- short GrayGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace GrayShulkerBox
- {
- constexpr short GrayShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9320;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9321;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9322;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9323;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9324;
- return 9325;
- }
- short GrayShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace GrayStainedGlass
- {
- constexpr short GrayStainedGlass()
- {
- return 4102;
- }
- }
- namespace GrayStainedGlassPane
- {
- constexpr short GrayStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 7089;
- if (East && North && South && !West) return 7090;
- if (East && North && !South && West) return 7093;
- if (East && North && !South && !West) return 7094;
- if (East && !North && South && West) return 7097;
- if (East && !North && South && !West) return 7098;
- if (East && !North && !South && West) return 7101;
- if (East && !North && !South && !West) return 7102;
- if (!East && North && South && West) return 7105;
- if (!East && North && South && !West) return 7106;
- if (!East && North && !South && West) return 7109;
- if (!East && North && !South && !West) return 7110;
- if (!East && !North && South && West) return 7113;
- if (!East && !North && South && !West) return 7114;
- if (!East && !North && !South && West) return 7117;
- return 7118;
- }
- short GrayStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace GrayTerracotta
- {
- constexpr short GrayTerracotta()
- {
- return 6854;
- }
- }
- namespace GrayWallBanner
- {
- constexpr short GrayWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8181;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8182;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8183;
- return 8184;
- }
- short GrayWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace GrayWool
- {
- constexpr short GrayWool()
- {
- return 1391;
- }
- }
- namespace GreenBanner
- {
- constexpr short GreenBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 8105;
- if (Rotation == 1) return 8106;
- if (Rotation == 2) return 8107;
- if (Rotation == 3) return 8108;
- if (Rotation == 4) return 8109;
- if (Rotation == 5) return 8110;
- if (Rotation == 6) return 8111;
- if (Rotation == 7) return 8112;
- if (Rotation == 8) return 8113;
- if (Rotation == 9) return 8114;
- if (Rotation == 10) return 8115;
- if (Rotation == 11) return 8116;
- if (Rotation == 12) return 8117;
- if (Rotation == 13) return 8118;
- if (Rotation == 14) return 8119;
- return 8120;
- }
- short GreenBanner();
- unsigned char Rotation(short ID);
- }
- namespace GreenBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short GreenBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1257;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1258;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1259;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1260;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1261;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1262;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1263;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1264;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1265;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1266;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1267;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1268;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1269;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1270;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1271;
- return 1272;
- }
- short GreenBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace GreenCarpet
- {
- constexpr short GreenCarpet()
- {
- return 7879;
- }
- }
- namespace GreenConcrete
- {
- constexpr short GreenConcrete()
- {
- return 9451;
- }
- }
- namespace GreenConcretePowder
- {
- constexpr short GreenConcretePowder()
- {
- return 9467;
- }
- }
- namespace GreenGlazedTerracotta
- {
- constexpr short GreenGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9426;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9427;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9428;
- return 9429;
- }
- short GreenGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace GreenShulkerBox
- {
- constexpr short GreenShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9356;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9357;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9358;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9359;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9360;
- return 9361;
- }
- short GreenShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace GreenStainedGlass
- {
- constexpr short GreenStainedGlass()
- {
- return 4108;
- }
- }
- namespace GreenStainedGlassPane
- {
- constexpr short GreenStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 7281;
- if (East && North && South && !West) return 7282;
- if (East && North && !South && West) return 7285;
- if (East && North && !South && !West) return 7286;
- if (East && !North && South && West) return 7289;
- if (East && !North && South && !West) return 7290;
- if (East && !North && !South && West) return 7293;
- if (East && !North && !South && !West) return 7294;
- if (!East && North && South && West) return 7297;
- if (!East && North && South && !West) return 7298;
- if (!East && North && !South && West) return 7301;
- if (!East && North && !South && !West) return 7302;
- if (!East && !North && South && West) return 7305;
- if (!East && !North && South && !West) return 7306;
- if (!East && !North && !South && West) return 7309;
- return 7310;
- }
- short GreenStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace GreenTerracotta
- {
- constexpr short GreenTerracotta()
- {
- return 6860;
- }
- }
- namespace GreenWallBanner
- {
- constexpr short GreenWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8205;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8206;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8207;
- return 8208;
- }
- short GreenWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace GreenWool
- {
- constexpr short GreenWool()
- {
- return 1397;
- }
- }
- namespace Grindstone
- {
- enum class Face
- {
- Floor,
- Wall,
- Ceiling
- };
- constexpr short Grindstone(enum Face Face, eBlockFace Facing)
- {
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM) return 14821;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP) return 14822;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM) return 14823;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP) return 14824;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM) return 14825;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP) return 14826;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM) return 14827;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP) return 14828;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM) return 14829;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP) return 14830;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM) return 14831;
- return 14832;
- }
- short Grindstone();
- enum Face Face(short ID);
- eBlockFace Facing(short ID);
- }
- namespace HayBale
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short HayBale(enum Axis Axis)
- {
- if (Axis == Axis::X) return 7863;
- if (Axis == Axis::Y) return 7864;
- return 7865;
- }
- short HayBale();
- enum Axis Axis(short ID);
- }
- namespace HeavyWeightedPressurePlate
- {
- constexpr short HeavyWeightedPressurePlate(unsigned char Power)
- {
- if (Power == 0) return 6662;
- if (Power == 1) return 6663;
- if (Power == 2) return 6664;
- if (Power == 3) return 6665;
- if (Power == 4) return 6666;
- if (Power == 5) return 6667;
- if (Power == 6) return 6668;
- if (Power == 7) return 6669;
- if (Power == 8) return 6670;
- if (Power == 9) return 6671;
- if (Power == 10) return 6672;
- if (Power == 11) return 6673;
- if (Power == 12) return 6674;
- if (Power == 13) return 6675;
- if (Power == 14) return 6676;
- return 6677;
- }
- short HeavyWeightedPressurePlate();
- unsigned char Power(short ID);
- }
- namespace HoneyBlock
- {
- constexpr short HoneyBlock()
- {
- return 15824;
- }
- }
- namespace HoneycombBlock
- {
- constexpr short HoneycombBlock()
- {
- return 15825;
- }
- }
- namespace Hopper
- {
- constexpr short Hopper(bool Enabled, eBlockFace Facing)
- {
- if (Enabled && Facing == eBlockFace::BLOCK_FACE_YM) return 6728;
- if (Enabled && Facing == eBlockFace::BLOCK_FACE_ZM) return 6729;
- if (Enabled && Facing == eBlockFace::BLOCK_FACE_ZP) return 6730;
- if (Enabled && Facing == eBlockFace::BLOCK_FACE_XM) return 6731;
- if (Enabled && Facing == eBlockFace::BLOCK_FACE_XP) return 6732;
- if (!Enabled && Facing == eBlockFace::BLOCK_FACE_YM) return 6733;
- if (!Enabled && Facing == eBlockFace::BLOCK_FACE_ZM) return 6734;
- if (!Enabled && Facing == eBlockFace::BLOCK_FACE_ZP) return 6735;
- if (!Enabled && Facing == eBlockFace::BLOCK_FACE_XM) return 6736;
- return 6737;
- }
- short Hopper();
- bool Enabled(short ID);
- eBlockFace Facing(short ID);
- }
- namespace HornCoral
- {
- constexpr short HornCoral()
- {
- return 9539;
- }
- }
- namespace HornCoralBlock
- {
- constexpr short HornCoralBlock()
- {
- return 9519;
- }
- }
- namespace HornCoralFan
- {
- constexpr short HornCoralFan()
- {
- return 9559;
- }
- }
- namespace HornCoralWallFan
- {
- constexpr short HornCoralWallFan(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9633;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9635;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9637;
- return 9639;
- }
- short HornCoralWallFan();
- eBlockFace Facing(short ID);
- }
- namespace Ice
- {
- constexpr short Ice()
- {
- return 3929;
- }
- }
- namespace InfestedChiseledStoneBricks
- {
- constexpr short InfestedChiseledStoneBricks()
- {
- return 4504;
- }
- }
- namespace InfestedCobblestone
- {
- constexpr short InfestedCobblestone()
- {
- return 4500;
- }
- }
- namespace InfestedCrackedStoneBricks
- {
- constexpr short InfestedCrackedStoneBricks()
- {
- return 4503;
- }
- }
- namespace InfestedMossyStoneBricks
- {
- constexpr short InfestedMossyStoneBricks()
- {
- return 4502;
- }
- }
- namespace InfestedStone
- {
- constexpr short InfestedStone()
- {
- return 4499;
- }
- }
- namespace InfestedStoneBricks
- {
- constexpr short InfestedStoneBricks()
- {
- return 4501;
- }
- }
- namespace IronBars
- {
- constexpr short IronBars(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 4699;
- if (East && North && South && !West) return 4700;
- if (East && North && !South && West) return 4703;
- if (East && North && !South && !West) return 4704;
- if (East && !North && South && West) return 4707;
- if (East && !North && South && !West) return 4708;
- if (East && !North && !South && West) return 4711;
- if (East && !North && !South && !West) return 4712;
- if (!East && North && South && West) return 4715;
- if (!East && North && South && !West) return 4716;
- if (!East && North && !South && West) return 4719;
- if (!East && North && !South && !West) return 4720;
- if (!East && !North && South && West) return 4723;
- if (!East && !North && South && !West) return 4724;
- if (!East && !North && !South && West) return 4727;
- return 4728;
- }
- short IronBars();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace IronBlock
- {
- constexpr short IronBlock()
- {
- return 1428;
- }
- }
- namespace IronDoor
- {
- enum class Half
- {
- Upper,
- Lower
- };
- enum class Hinge
- {
- Left,
- Right
- };
- constexpr short IronDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 3809;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 3810;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 3811;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 3812;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 3813;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 3814;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 3815;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 3816;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 3817;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 3818;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 3819;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 3820;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 3821;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 3822;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 3823;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 3824;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 3825;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 3826;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 3827;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 3828;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 3829;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 3830;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 3831;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 3832;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 3833;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 3834;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 3835;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 3836;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 3837;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 3838;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 3839;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 3840;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 3841;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 3842;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 3843;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 3844;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 3845;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 3846;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 3847;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 3848;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 3849;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 3850;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 3851;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 3852;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 3853;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 3854;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 3855;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 3856;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 3857;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 3858;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 3859;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 3860;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 3861;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 3862;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 3863;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 3864;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 3865;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 3866;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 3867;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 3868;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 3869;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 3870;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 3871;
- return 3872;
- }
- short IronDoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Hinge Hinge(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace IronOre
- {
- constexpr short IronOre()
- {
- return 70;
- }
- }
- namespace IronTrapdoor
- {
- enum class Half
- {
- Top,
- Bottom
- };
- constexpr short IronTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && Powered) return 7538;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && !Powered) return 7540;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && Powered) return 7542;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && !Powered) return 7544;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && Powered) return 7546;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && !Powered) return 7548;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && Powered) return 7550;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && !Powered) return 7552;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && Powered) return 7554;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && !Powered) return 7556;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && Powered) return 7558;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && !Powered) return 7560;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && Powered) return 7562;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && !Powered) return 7564;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && Powered) return 7566;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && !Powered) return 7568;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && Powered) return 7570;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && !Powered) return 7572;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && Powered) return 7574;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && !Powered) return 7576;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && Powered) return 7578;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && !Powered) return 7580;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && Powered) return 7582;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && !Powered) return 7584;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && Powered) return 7586;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && !Powered) return 7588;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && Powered) return 7590;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && !Powered) return 7592;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && Powered) return 7594;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && !Powered) return 7596;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && !Open && Powered) return 7598;
- return 7600;
- }
- short IronTrapdoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace JackOLantern
- {
- constexpr short JackOLantern(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4020;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4021;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 4022;
- return 4023;
- }
- short JackOLantern();
- eBlockFace Facing(short ID);
- }
- namespace Jigsaw
- {
- enum class Orientation
- {
- DownEast,
- DownNorth,
- DownSouth,
- DownWest,
- UpEast,
- UpNorth,
- UpSouth,
- UpWest,
- WestUp,
- EastUp,
- NorthUp,
- SouthUp
- };
- constexpr short Jigsaw(enum Orientation Orientation)
- {
- if (Orientation == Orientation::DownEast) return 15739;
- if (Orientation == Orientation::DownNorth) return 15740;
- if (Orientation == Orientation::DownSouth) return 15741;
- if (Orientation == Orientation::DownWest) return 15742;
- if (Orientation == Orientation::UpEast) return 15743;
- if (Orientation == Orientation::UpNorth) return 15744;
- if (Orientation == Orientation::UpSouth) return 15745;
- if (Orientation == Orientation::UpWest) return 15746;
- if (Orientation == Orientation::WestUp) return 15747;
- if (Orientation == Orientation::EastUp) return 15748;
- if (Orientation == Orientation::NorthUp) return 15749;
- return 15750;
- }
- short Jigsaw();
- enum Orientation Orientation(short ID);
- }
- namespace Jukebox
- {
- constexpr short Jukebox(bool HasRecord)
- {
- if (HasRecord) return 3964;
- return 3965;
- }
- short Jukebox();
- bool HasRecord(short ID);
- }
- namespace JungleButton
- {
- enum class Face
- {
- Floor,
- Wall,
- Ceiling
- };
- constexpr short JungleButton(enum Face Face, eBlockFace Facing, bool Powered)
- {
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6418;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6419;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6420;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6421;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6422;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6423;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6424;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 6425;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6426;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6427;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6428;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6429;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6430;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6431;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6432;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 6433;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6434;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6435;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6436;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6437;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6438;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6439;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6440;
- return 6441;
- }
- short JungleButton();
- enum Face Face(short ID);
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace JungleDoor
- {
- enum class Half
- {
- Upper,
- Lower
- };
- enum class Hinge
- {
- Left,
- Right
- };
- constexpr short JungleDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8866;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8867;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8868;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8869;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8870;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8871;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8872;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8873;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8874;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8875;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8876;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8877;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8878;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8879;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8880;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 8881;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8882;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8883;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8884;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8885;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8886;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8887;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8888;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8889;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8890;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8891;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8892;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8893;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8894;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8895;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8896;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 8897;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8898;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8899;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8900;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8901;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8902;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8903;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8904;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8905;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8906;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8907;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8908;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8909;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8910;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8911;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8912;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 8913;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8914;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8915;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8916;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8917;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8918;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8919;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8920;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8921;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8922;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8923;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8924;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8925;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8926;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8927;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8928;
- return 8929;
- }
- short JungleDoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Hinge Hinge(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace JungleFence
- {
- constexpr short JungleFence(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 8644;
- if (East && North && South && !West) return 8645;
- if (East && North && !South && West) return 8648;
- if (East && North && !South && !West) return 8649;
- if (East && !North && South && West) return 8652;
- if (East && !North && South && !West) return 8653;
- if (East && !North && !South && West) return 8656;
- if (East && !North && !South && !West) return 8657;
- if (!East && North && South && West) return 8660;
- if (!East && North && South && !West) return 8661;
- if (!East && North && !South && West) return 8664;
- if (!East && North && !South && !West) return 8665;
- if (!East && !North && South && West) return 8668;
- if (!East && !North && South && !West) return 8669;
- if (!East && !North && !South && West) return 8672;
- return 8673;
- }
- short JungleFence();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace JungleFenceGate
- {
- constexpr short JungleFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && Powered) return 8482;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && !Powered) return 8483;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && Powered) return 8484;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && !Powered) return 8485;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && Powered) return 8486;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && !Powered) return 8487;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && Powered) return 8488;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && !Powered) return 8489;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && Powered) return 8490;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && !Powered) return 8491;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && Powered) return 8492;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && !Powered) return 8493;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && Powered) return 8494;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && !Powered) return 8495;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && Powered) return 8496;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && !Powered) return 8497;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && Powered) return 8498;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && !Powered) return 8499;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && Powered) return 8500;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && !Powered) return 8501;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && Powered) return 8502;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && !Powered) return 8503;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && Powered) return 8504;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && !Powered) return 8505;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && Powered) return 8506;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && !Powered) return 8507;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && Powered) return 8508;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && !Powered) return 8509;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && Powered) return 8510;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && !Powered) return 8511;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && !Open && Powered) return 8512;
- return 8513;
- }
- short JungleFenceGate();
- eBlockFace Facing(short ID);
- bool InWall(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace JungleLeaves
- {
- constexpr short JungleLeaves(unsigned char Distance, bool Persistent)
- {
- if (Distance == 1 && Persistent) return 187;
- if (Distance == 1 && !Persistent) return 188;
- if (Distance == 2 && Persistent) return 189;
- if (Distance == 2 && !Persistent) return 190;
- if (Distance == 3 && Persistent) return 191;
- if (Distance == 3 && !Persistent) return 192;
- if (Distance == 4 && Persistent) return 193;
- if (Distance == 4 && !Persistent) return 194;
- if (Distance == 5 && Persistent) return 195;
- if (Distance == 5 && !Persistent) return 196;
- if (Distance == 6 && Persistent) return 197;
- if (Distance == 6 && !Persistent) return 198;
- if (Distance == 7 && Persistent) return 199;
- return 200;
- }
- short JungleLeaves();
- unsigned char Distance(short ID);
- bool Persistent(short ID);
- }
- namespace JungleLog
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short JungleLog(enum Axis Axis)
- {
- if (Axis == Axis::X) return 82;
- if (Axis == Axis::Y) return 83;
- return 84;
- }
- short JungleLog();
- enum Axis Axis(short ID);
- }
- namespace JunglePlanks
- {
- constexpr short JunglePlanks()
- {
- return 18;
- }
- }
- namespace JunglePressurePlate
- {
- constexpr short JunglePressurePlate(bool Powered)
- {
- if (Powered) return 3879;
- return 3880;
- }
- short JunglePressurePlate();
- bool Powered(short ID);
- }
- namespace JungleSapling
- {
- constexpr short JungleSapling(unsigned char Stage)
- {
- if (Stage == 0) return 27;
- return 28;
- }
- short JungleSapling();
- unsigned char Stage(short ID);
- }
- namespace JungleSign
- {
- constexpr short JungleSign(unsigned char Rotation)
- {
- if (Rotation == 0) return 3510;
- if (Rotation == 1) return 3512;
- if (Rotation == 2) return 3514;
- if (Rotation == 3) return 3516;
- if (Rotation == 4) return 3518;
- if (Rotation == 5) return 3520;
- if (Rotation == 6) return 3522;
- if (Rotation == 7) return 3524;
- if (Rotation == 8) return 3526;
- if (Rotation == 9) return 3528;
- if (Rotation == 10) return 3530;
- if (Rotation == 11) return 3532;
- if (Rotation == 12) return 3534;
- if (Rotation == 13) return 3536;
- if (Rotation == 14) return 3538;
- return 3540;
- }
- short JungleSign();
- unsigned char Rotation(short ID);
- }
- namespace JungleSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short JungleSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8319;
- if (Type == Type::Bottom) return 8321;
- return 8323;
- }
- short JungleSlab();
- enum Type Type(short ID);
- }
- namespace JungleStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short JungleStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 5565;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 5567;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 5569;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 5571;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 5573;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 5575;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5577;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 5579;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5581;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 5583;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 5585;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 5587;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 5589;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 5591;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 5593;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 5595;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5597;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 5599;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5601;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 5603;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 5605;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 5607;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 5609;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 5611;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 5613;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 5615;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5617;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 5619;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5621;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 5623;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 5625;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 5627;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 5629;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 5631;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 5633;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 5635;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5637;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 5639;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5641;
- return 5643;
- }
- short JungleStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace JungleTrapdoor
- {
- enum class Half
- {
- Top,
- Bottom
- };
- constexpr short JungleTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && Powered) return 4304;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && !Powered) return 4306;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && Powered) return 4308;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && !Powered) return 4310;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && Powered) return 4312;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && !Powered) return 4314;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && Powered) return 4316;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && !Powered) return 4318;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && Powered) return 4320;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && !Powered) return 4322;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && Powered) return 4324;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && !Powered) return 4326;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && Powered) return 4328;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && !Powered) return 4330;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && Powered) return 4332;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && !Powered) return 4334;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && Powered) return 4336;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && !Powered) return 4338;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && Powered) return 4340;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && !Powered) return 4342;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && Powered) return 4344;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && !Powered) return 4346;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && Powered) return 4348;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && !Powered) return 4350;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && Powered) return 4352;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && !Powered) return 4354;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && Powered) return 4356;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && !Powered) return 4358;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && Powered) return 4360;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && !Powered) return 4362;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && !Open && Powered) return 4364;
- return 4366;
- }
- short JungleTrapdoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace JungleWallSign
- {
- constexpr short JungleWallSign(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3768;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3770;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 3772;
- return 3774;
- }
- short JungleWallSign();
- eBlockFace Facing(short ID);
- }
- namespace JungleWood
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short JungleWood(enum Axis Axis)
- {
- if (Axis == Axis::X) return 118;
- if (Axis == Axis::Y) return 119;
- return 120;
- }
- short JungleWood();
- enum Axis Axis(short ID);
- }
- namespace Kelp
- {
- constexpr short Kelp(unsigned char Age)
- {
- if (Age == 0) return 9470;
- if (Age == 1) return 9471;
- if (Age == 2) return 9472;
- if (Age == 3) return 9473;
- if (Age == 4) return 9474;
- if (Age == 5) return 9475;
- if (Age == 6) return 9476;
- if (Age == 7) return 9477;
- if (Age == 8) return 9478;
- if (Age == 9) return 9479;
- if (Age == 10) return 9480;
- if (Age == 11) return 9481;
- if (Age == 12) return 9482;
- if (Age == 13) return 9483;
- if (Age == 14) return 9484;
- if (Age == 15) return 9485;
- if (Age == 16) return 9486;
- if (Age == 17) return 9487;
- if (Age == 18) return 9488;
- if (Age == 19) return 9489;
- if (Age == 20) return 9490;
- if (Age == 21) return 9491;
- if (Age == 22) return 9492;
- if (Age == 23) return 9493;
- if (Age == 24) return 9494;
- return 9495;
- }
- short Kelp();
- unsigned char Age(short ID);
- }
- namespace KelpPlant
- {
- constexpr short KelpPlant()
- {
- return 9496;
- }
- }
- namespace Ladder
- {
- constexpr short Ladder(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3638;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3640;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 3642;
- return 3644;
- }
- short Ladder();
- eBlockFace Facing(short ID);
- }
- namespace Lantern
- {
- constexpr short Lantern(bool Hanging)
- {
- if (Hanging) return 14886;
- return 14887;
- }
- short Lantern();
- bool Hanging(short ID);
- }
- namespace LapisBlock
- {
- constexpr short LapisBlock()
- {
- return 233;
- }
- }
- namespace LapisOre
- {
- constexpr short LapisOre()
- {
- return 232;
- }
- }
- namespace LargeFern
- {
- enum class Half
- {
- Upper,
- Lower
- };
- constexpr short LargeFern(enum Half Half)
- {
- if (Half == Half::Upper) return 7895;
- return 7896;
- }
- short LargeFern();
- enum Half Half(short ID);
- }
- namespace Lava
- {
- constexpr short Lava(unsigned char Level)
- {
- if (Level == 0) return 50;
- if (Level == 1) return 51;
- if (Level == 2) return 52;
- if (Level == 3) return 53;
- if (Level == 4) return 54;
- if (Level == 5) return 55;
- if (Level == 6) return 56;
- if (Level == 7) return 57;
- if (Level == 8) return 58;
- if (Level == 9) return 59;
- if (Level == 10) return 60;
- if (Level == 11) return 61;
- if (Level == 12) return 62;
- if (Level == 13) return 63;
- if (Level == 14) return 64;
- return 65;
- }
- short Lava();
- unsigned char Level(short ID);
- }
- namespace Lectern
- {
- constexpr short Lectern(eBlockFace Facing, bool HasBook, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HasBook && Powered) return 14833;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && HasBook && !Powered) return 14834;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !HasBook && Powered) return 14835;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !HasBook && !Powered) return 14836;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HasBook && Powered) return 14837;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && HasBook && !Powered) return 14838;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !HasBook && Powered) return 14839;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !HasBook && !Powered) return 14840;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HasBook && Powered) return 14841;
- if (Facing == eBlockFace::BLOCK_FACE_XM && HasBook && !Powered) return 14842;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !HasBook && Powered) return 14843;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !HasBook && !Powered) return 14844;
- if (Facing == eBlockFace::BLOCK_FACE_XP && HasBook && Powered) return 14845;
- if (Facing == eBlockFace::BLOCK_FACE_XP && HasBook && !Powered) return 14846;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !HasBook && Powered) return 14847;
- return 14848;
- }
- short Lectern();
- eBlockFace Facing(short ID);
- bool HasBook(short ID);
- bool Powered(short ID);
- }
- namespace Lever
- {
- enum class Face
- {
- Floor,
- Wall,
- Ceiling
- };
- constexpr short Lever(enum Face Face, eBlockFace Facing, bool Powered)
- {
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 3783;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 3784;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 3785;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 3786;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 3787;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 3788;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 3789;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 3790;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 3791;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 3792;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 3793;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 3794;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 3795;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 3796;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 3797;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 3798;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 3799;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 3800;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 3801;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 3802;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 3803;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 3804;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 3805;
- return 3806;
- }
- short Lever();
- enum Face Face(short ID);
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace LightBlueBanner
- {
- constexpr short LightBlueBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 7945;
- if (Rotation == 1) return 7946;
- if (Rotation == 2) return 7947;
- if (Rotation == 3) return 7948;
- if (Rotation == 4) return 7949;
- if (Rotation == 5) return 7950;
- if (Rotation == 6) return 7951;
- if (Rotation == 7) return 7952;
- if (Rotation == 8) return 7953;
- if (Rotation == 9) return 7954;
- if (Rotation == 10) return 7955;
- if (Rotation == 11) return 7956;
- if (Rotation == 12) return 7957;
- if (Rotation == 13) return 7958;
- if (Rotation == 14) return 7959;
- return 7960;
- }
- short LightBlueBanner();
- unsigned char Rotation(short ID);
- }
- namespace LightBlueBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short LightBlueBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1097;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1098;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1099;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1100;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1101;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1102;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1103;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1104;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1105;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1106;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1107;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1108;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1109;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1110;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1111;
- return 1112;
- }
- short LightBlueBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace LightBlueCarpet
- {
- constexpr short LightBlueCarpet()
- {
- return 7869;
- }
- }
- namespace LightBlueConcrete
- {
- constexpr short LightBlueConcrete()
- {
- return 9441;
- }
- }
- namespace LightBlueConcretePowder
- {
- constexpr short LightBlueConcretePowder()
- {
- return 9457;
- }
- }
- namespace LightBlueGlazedTerracotta
- {
- constexpr short LightBlueGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9386;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9387;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9388;
- return 9389;
- }
- short LightBlueGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace LightBlueShulkerBox
- {
- constexpr short LightBlueShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9296;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9297;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9298;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9299;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9300;
- return 9301;
- }
- short LightBlueShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace LightBlueStainedGlass
- {
- constexpr short LightBlueStainedGlass()
- {
- return 4098;
- }
- }
- namespace LightBlueStainedGlassPane
- {
- constexpr short LightBlueStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 6961;
- if (East && North && South && !West) return 6962;
- if (East && North && !South && West) return 6965;
- if (East && North && !South && !West) return 6966;
- if (East && !North && South && West) return 6969;
- if (East && !North && South && !West) return 6970;
- if (East && !North && !South && West) return 6973;
- if (East && !North && !South && !West) return 6974;
- if (!East && North && South && West) return 6977;
- if (!East && North && South && !West) return 6978;
- if (!East && North && !South && West) return 6981;
- if (!East && North && !South && !West) return 6982;
- if (!East && !North && South && West) return 6985;
- if (!East && !North && South && !West) return 6986;
- if (!East && !North && !South && West) return 6989;
- return 6990;
- }
- short LightBlueStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace LightBlueTerracotta
- {
- constexpr short LightBlueTerracotta()
- {
- return 6850;
- }
- }
- namespace LightBlueWallBanner
- {
- constexpr short LightBlueWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8165;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8166;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8167;
- return 8168;
- }
- short LightBlueWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace LightBlueWool
- {
- constexpr short LightBlueWool()
- {
- return 1387;
- }
- }
- namespace LightGrayBanner
- {
- constexpr short LightGrayBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 8025;
- if (Rotation == 1) return 8026;
- if (Rotation == 2) return 8027;
- if (Rotation == 3) return 8028;
- if (Rotation == 4) return 8029;
- if (Rotation == 5) return 8030;
- if (Rotation == 6) return 8031;
- if (Rotation == 7) return 8032;
- if (Rotation == 8) return 8033;
- if (Rotation == 9) return 8034;
- if (Rotation == 10) return 8035;
- if (Rotation == 11) return 8036;
- if (Rotation == 12) return 8037;
- if (Rotation == 13) return 8038;
- if (Rotation == 14) return 8039;
- return 8040;
- }
- short LightGrayBanner();
- unsigned char Rotation(short ID);
- }
- namespace LightGrayBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short LightGrayBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1177;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1178;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1179;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1180;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1181;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1182;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1183;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1184;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1185;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1186;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1187;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1188;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1189;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1190;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1191;
- return 1192;
- }
- short LightGrayBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace LightGrayCarpet
- {
- constexpr short LightGrayCarpet()
- {
- return 7874;
- }
- }
- namespace LightGrayConcrete
- {
- constexpr short LightGrayConcrete()
- {
- return 9446;
- }
- }
- namespace LightGrayConcretePowder
- {
- constexpr short LightGrayConcretePowder()
- {
- return 9462;
- }
- }
- namespace LightGrayGlazedTerracotta
- {
- constexpr short LightGrayGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9406;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9407;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9408;
- return 9409;
- }
- short LightGrayGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace LightGrayShulkerBox
- {
- constexpr short LightGrayShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9326;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9327;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9328;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9329;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9330;
- return 9331;
- }
- short LightGrayShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace LightGrayStainedGlass
- {
- constexpr short LightGrayStainedGlass()
- {
- return 4103;
- }
- }
- namespace LightGrayStainedGlassPane
- {
- constexpr short LightGrayStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 7121;
- if (East && North && South && !West) return 7122;
- if (East && North && !South && West) return 7125;
- if (East && North && !South && !West) return 7126;
- if (East && !North && South && West) return 7129;
- if (East && !North && South && !West) return 7130;
- if (East && !North && !South && West) return 7133;
- if (East && !North && !South && !West) return 7134;
- if (!East && North && South && West) return 7137;
- if (!East && North && South && !West) return 7138;
- if (!East && North && !South && West) return 7141;
- if (!East && North && !South && !West) return 7142;
- if (!East && !North && South && West) return 7145;
- if (!East && !North && South && !West) return 7146;
- if (!East && !North && !South && West) return 7149;
- return 7150;
- }
- short LightGrayStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace LightGrayTerracotta
- {
- constexpr short LightGrayTerracotta()
- {
- return 6855;
- }
- }
- namespace LightGrayWallBanner
- {
- constexpr short LightGrayWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8185;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8186;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8187;
- return 8188;
- }
- short LightGrayWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace LightGrayWool
- {
- constexpr short LightGrayWool()
- {
- return 1392;
- }
- }
- namespace LightWeightedPressurePlate
- {
- constexpr short LightWeightedPressurePlate(unsigned char Power)
- {
- if (Power == 0) return 6646;
- if (Power == 1) return 6647;
- if (Power == 2) return 6648;
- if (Power == 3) return 6649;
- if (Power == 4) return 6650;
- if (Power == 5) return 6651;
- if (Power == 6) return 6652;
- if (Power == 7) return 6653;
- if (Power == 8) return 6654;
- if (Power == 9) return 6655;
- if (Power == 10) return 6656;
- if (Power == 11) return 6657;
- if (Power == 12) return 6658;
- if (Power == 13) return 6659;
- if (Power == 14) return 6660;
- return 6661;
- }
- short LightWeightedPressurePlate();
- unsigned char Power(short ID);
- }
- namespace Lilac
- {
- enum class Half
- {
- Upper,
- Lower
- };
- constexpr short Lilac(enum Half Half)
- {
- if (Half == Half::Upper) return 7887;
- return 7888;
- }
- short Lilac();
- enum Half Half(short ID);
- }
- namespace LilyOfTheValley
- {
- constexpr short LilyOfTheValley()
- {
- return 1424;
- }
- }
- namespace LilyPad
- {
- constexpr short LilyPad()
- {
- return 5014;
- }
- }
- namespace LimeBanner
- {
- constexpr short LimeBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 7977;
- if (Rotation == 1) return 7978;
- if (Rotation == 2) return 7979;
- if (Rotation == 3) return 7980;
- if (Rotation == 4) return 7981;
- if (Rotation == 5) return 7982;
- if (Rotation == 6) return 7983;
- if (Rotation == 7) return 7984;
- if (Rotation == 8) return 7985;
- if (Rotation == 9) return 7986;
- if (Rotation == 10) return 7987;
- if (Rotation == 11) return 7988;
- if (Rotation == 12) return 7989;
- if (Rotation == 13) return 7990;
- if (Rotation == 14) return 7991;
- return 7992;
- }
- short LimeBanner();
- unsigned char Rotation(short ID);
- }
- namespace LimeBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short LimeBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1129;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1130;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1131;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1132;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1133;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1134;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1135;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1136;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1137;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1138;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1139;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1140;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1141;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1142;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1143;
- return 1144;
- }
- short LimeBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace LimeCarpet
- {
- constexpr short LimeCarpet()
- {
- return 7871;
- }
- }
- namespace LimeConcrete
- {
- constexpr short LimeConcrete()
- {
- return 9443;
- }
- }
- namespace LimeConcretePowder
- {
- constexpr short LimeConcretePowder()
- {
- return 9459;
- }
- }
- namespace LimeGlazedTerracotta
- {
- constexpr short LimeGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9394;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9395;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9396;
- return 9397;
- }
- short LimeGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace LimeShulkerBox
- {
- constexpr short LimeShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9308;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9309;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9310;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9311;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9312;
- return 9313;
- }
- short LimeShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace LimeStainedGlass
- {
- constexpr short LimeStainedGlass()
- {
- return 4100;
- }
- }
- namespace LimeStainedGlassPane
- {
- constexpr short LimeStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 7025;
- if (East && North && South && !West) return 7026;
- if (East && North && !South && West) return 7029;
- if (East && North && !South && !West) return 7030;
- if (East && !North && South && West) return 7033;
- if (East && !North && South && !West) return 7034;
- if (East && !North && !South && West) return 7037;
- if (East && !North && !South && !West) return 7038;
- if (!East && North && South && West) return 7041;
- if (!East && North && South && !West) return 7042;
- if (!East && North && !South && West) return 7045;
- if (!East && North && !South && !West) return 7046;
- if (!East && !North && South && West) return 7049;
- if (!East && !North && South && !West) return 7050;
- if (!East && !North && !South && West) return 7053;
- return 7054;
- }
- short LimeStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace LimeTerracotta
- {
- constexpr short LimeTerracotta()
- {
- return 6852;
- }
- }
- namespace LimeWallBanner
- {
- constexpr short LimeWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8173;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8174;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8175;
- return 8176;
- }
- short LimeWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace LimeWool
- {
- constexpr short LimeWool()
- {
- return 1389;
- }
- }
- namespace Lodestone
- {
- constexpr short Lodestone()
- {
- return 15838;
- }
- }
- namespace Loom
- {
- constexpr short Loom(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 14787;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 14788;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 14789;
- return 14790;
- }
- short Loom();
- eBlockFace Facing(short ID);
- }
- namespace MagentaBanner
- {
- constexpr short MagentaBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 7929;
- if (Rotation == 1) return 7930;
- if (Rotation == 2) return 7931;
- if (Rotation == 3) return 7932;
- if (Rotation == 4) return 7933;
- if (Rotation == 5) return 7934;
- if (Rotation == 6) return 7935;
- if (Rotation == 7) return 7936;
- if (Rotation == 8) return 7937;
- if (Rotation == 9) return 7938;
- if (Rotation == 10) return 7939;
- if (Rotation == 11) return 7940;
- if (Rotation == 12) return 7941;
- if (Rotation == 13) return 7942;
- if (Rotation == 14) return 7943;
- return 7944;
- }
- short MagentaBanner();
- unsigned char Rotation(short ID);
- }
- namespace MagentaBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short MagentaBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1081;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1082;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1083;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1084;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1085;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1086;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1087;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1088;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1089;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1090;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1091;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1092;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1093;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1094;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1095;
- return 1096;
- }
- short MagentaBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace MagentaCarpet
- {
- constexpr short MagentaCarpet()
- {
- return 7868;
- }
- }
- namespace MagentaConcrete
- {
- constexpr short MagentaConcrete()
- {
- return 9440;
- }
- }
- namespace MagentaConcretePowder
- {
- constexpr short MagentaConcretePowder()
- {
- return 9456;
- }
- }
- namespace MagentaGlazedTerracotta
- {
- constexpr short MagentaGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9382;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9383;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9384;
- return 9385;
- }
- short MagentaGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace MagentaShulkerBox
- {
- constexpr short MagentaShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9290;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9291;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9292;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9293;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9294;
- return 9295;
- }
- short MagentaShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace MagentaStainedGlass
- {
- constexpr short MagentaStainedGlass()
- {
- return 4097;
- }
- }
- namespace MagentaStainedGlassPane
- {
- constexpr short MagentaStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 6929;
- if (East && North && South && !West) return 6930;
- if (East && North && !South && West) return 6933;
- if (East && North && !South && !West) return 6934;
- if (East && !North && South && West) return 6937;
- if (East && !North && South && !West) return 6938;
- if (East && !North && !South && West) return 6941;
- if (East && !North && !South && !West) return 6942;
- if (!East && North && South && West) return 6945;
- if (!East && North && South && !West) return 6946;
- if (!East && North && !South && West) return 6949;
- if (!East && North && !South && !West) return 6950;
- if (!East && !North && South && West) return 6953;
- if (!East && !North && South && !West) return 6954;
- if (!East && !North && !South && West) return 6957;
- return 6958;
- }
- short MagentaStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace MagentaTerracotta
- {
- constexpr short MagentaTerracotta()
- {
- return 6849;
- }
- }
- namespace MagentaWallBanner
- {
- constexpr short MagentaWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8161;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8162;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8163;
- return 8164;
- }
- short MagentaWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace MagentaWool
- {
- constexpr short MagentaWool()
- {
- return 1386;
- }
- }
- namespace MagmaBlock
- {
- constexpr short MagmaBlock()
- {
- return 9253;
- }
- }
- namespace Melon
- {
- constexpr short Melon()
- {
- return 4763;
- }
- }
- namespace MelonStem
- {
- constexpr short MelonStem(unsigned char Age)
- {
- if (Age == 0) return 4780;
- if (Age == 1) return 4781;
- if (Age == 2) return 4782;
- if (Age == 3) return 4783;
- if (Age == 4) return 4784;
- if (Age == 5) return 4785;
- if (Age == 6) return 4786;
- return 4787;
- }
- short MelonStem();
- unsigned char Age(short ID);
- }
- namespace MossyCobblestone
- {
- constexpr short MossyCobblestone()
- {
- return 1433;
- }
- }
- namespace MossyCobblestoneSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short MossyCobblestoneSlab(enum Type Type)
- {
- if (Type == Type::Top) return 10814;
- if (Type == Type::Bottom) return 10816;
- return 10818;
- }
- short MossyCobblestoneSlab();
- enum Type Type(short ID);
- }
- namespace MossyCobblestoneStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short MossyCobblestoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 9990;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 9992;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 9994;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 9996;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 9998;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 10000;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10002;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10004;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10006;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10008;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 10010;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 10012;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 10014;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 10016;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 10018;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 10020;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10022;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10024;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10026;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 10028;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 10030;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 10032;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 10034;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 10036;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 10038;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 10040;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10042;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10044;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10046;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10048;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 10050;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 10052;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 10054;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 10056;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 10058;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 10060;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10062;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10064;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10066;
- return 10068;
- }
- short MossyCobblestoneStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace MossyCobblestoneWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short MossyCobblestoneWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 5984;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 5985;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 5986;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 5990;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 5991;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 5992;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 5996;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 5997;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 5998;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 6002;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 6003;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 6004;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 6008;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 6009;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 6010;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 6014;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 6015;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 6016;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 6020;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 6021;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 6022;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 6026;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 6027;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 6028;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 6032;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 6033;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 6034;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 6038;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 6039;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 6040;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 6044;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 6045;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 6046;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 6050;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 6051;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 6052;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 6056;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 6057;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 6058;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 6062;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 6063;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 6064;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 6068;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 6069;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 6070;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 6074;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 6075;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 6076;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 6080;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 6081;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 6082;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 6086;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 6087;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 6088;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 6092;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 6093;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 6094;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 6098;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 6099;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 6100;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 6104;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 6105;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 6106;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 6110;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 6111;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 6112;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 6116;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 6117;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 6118;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 6122;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 6123;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 6124;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 6128;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 6129;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 6130;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 6134;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 6135;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 6136;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 6140;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 6141;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 6142;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 6146;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 6147;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 6148;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 6152;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 6153;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 6154;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 6158;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 6159;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 6160;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 6164;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 6165;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 6166;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 6170;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 6171;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 6172;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 6176;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 6177;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 6178;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 6182;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 6183;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 6184;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 6188;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 6189;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 6190;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 6194;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 6195;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 6196;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 6200;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 6201;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 6202;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 6206;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 6207;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 6208;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 6212;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 6213;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 6214;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 6218;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 6219;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 6220;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 6224;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 6225;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 6226;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 6230;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 6231;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 6232;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 6236;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 6237;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 6238;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 6242;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 6243;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 6244;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 6248;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 6249;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 6250;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 6254;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 6255;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 6256;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 6260;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 6261;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 6262;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 6266;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 6267;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 6268;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 6272;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 6273;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 6274;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 6278;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 6279;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 6280;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 6284;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 6285;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 6286;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 6290;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 6291;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 6292;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 6296;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 6297;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 6298;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 6302;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 6303;
- return 6304;
- }
- short MossyCobblestoneWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace MossyStoneBrickSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short MossyStoneBrickSlab(enum Type Type)
- {
- if (Type == Type::Top) return 10802;
- if (Type == Type::Bottom) return 10804;
- return 10806;
- }
- short MossyStoneBrickSlab();
- enum Type Type(short ID);
- }
- namespace MossyStoneBrickStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short MossyStoneBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 9830;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 9832;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 9834;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 9836;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 9838;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 9840;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9842;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 9844;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9846;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 9848;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 9850;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 9852;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 9854;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 9856;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 9858;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 9860;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9862;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 9864;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9866;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 9868;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 9870;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 9872;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 9874;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 9876;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 9878;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 9880;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9882;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 9884;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9886;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 9888;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 9890;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 9892;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 9894;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 9896;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 9898;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 9900;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9902;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 9904;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9906;
- return 9908;
- }
- short MossyStoneBrickStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace MossyStoneBrickWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short MossyStoneBrickWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 11842;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 11843;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 11844;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 11848;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 11849;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 11850;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 11854;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 11855;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 11856;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 11860;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 11861;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 11862;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 11866;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 11867;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 11868;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 11872;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 11873;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 11874;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 11878;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 11879;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 11880;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 11884;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 11885;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 11886;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 11890;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 11891;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 11892;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 11896;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 11897;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 11898;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 11902;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 11903;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 11904;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 11908;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 11909;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 11910;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 11914;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 11915;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 11916;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 11920;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 11921;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 11922;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 11926;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 11927;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 11928;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 11932;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 11933;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 11934;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 11938;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 11939;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 11940;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 11944;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 11945;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 11946;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 11950;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 11951;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 11952;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 11956;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 11957;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 11958;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 11962;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 11963;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 11964;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 11968;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 11969;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 11970;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 11974;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 11975;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 11976;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 11980;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 11981;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 11982;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 11986;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 11987;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 11988;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 11992;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 11993;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 11994;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 11998;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 11999;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 12000;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 12004;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 12005;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 12006;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 12010;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 12011;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 12012;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 12016;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 12017;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 12018;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 12022;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 12023;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 12024;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 12028;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 12029;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 12030;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 12034;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 12035;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 12036;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 12040;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 12041;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 12042;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 12046;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 12047;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 12048;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 12052;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 12053;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 12054;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 12058;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 12059;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 12060;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 12064;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 12065;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 12066;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 12070;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 12071;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 12072;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 12076;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 12077;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 12078;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 12082;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 12083;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 12084;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 12088;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 12089;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 12090;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 12094;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 12095;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 12096;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 12100;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 12101;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 12102;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 12106;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 12107;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 12108;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 12112;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 12113;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 12114;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 12118;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 12119;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 12120;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 12124;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 12125;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 12126;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 12130;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 12131;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 12132;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 12136;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 12137;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 12138;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 12142;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 12143;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 12144;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 12148;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 12149;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 12150;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 12154;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 12155;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 12156;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 12160;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 12161;
- return 12162;
- }
- short MossyStoneBrickWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace MossyStoneBricks
- {
- constexpr short MossyStoneBricks()
- {
- return 4496;
- }
- }
- namespace MovingPiston
- {
- enum class Type
- {
- Normal,
- Sticky
- };
- constexpr short MovingPiston(eBlockFace Facing, enum Type Type)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Type == Type::Normal) return 1400;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Type == Type::Sticky) return 1401;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Type == Type::Normal) return 1402;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Type == Type::Sticky) return 1403;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Type == Type::Normal) return 1404;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Type == Type::Sticky) return 1405;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Type == Type::Normal) return 1406;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Type == Type::Sticky) return 1407;
- if (Facing == eBlockFace::BLOCK_FACE_YP && Type == Type::Normal) return 1408;
- if (Facing == eBlockFace::BLOCK_FACE_YP && Type == Type::Sticky) return 1409;
- if (Facing == eBlockFace::BLOCK_FACE_YM && Type == Type::Normal) return 1410;
- return 1411;
- }
- short MovingPiston();
- eBlockFace Facing(short ID);
- enum Type Type(short ID);
- }
- namespace MushroomStem
- {
- constexpr short MushroomStem(bool Down, bool East, bool North, bool South, bool Up, bool West)
- {
- if (Down && East && North && South && Up && West) return 4633;
- if (Down && East && North && South && Up && !West) return 4634;
- if (Down && East && North && South && !Up && West) return 4635;
- if (Down && East && North && South && !Up && !West) return 4636;
- if (Down && East && North && !South && Up && West) return 4637;
- if (Down && East && North && !South && Up && !West) return 4638;
- if (Down && East && North && !South && !Up && West) return 4639;
- if (Down && East && North && !South && !Up && !West) return 4640;
- if (Down && East && !North && South && Up && West) return 4641;
- if (Down && East && !North && South && Up && !West) return 4642;
- if (Down && East && !North && South && !Up && West) return 4643;
- if (Down && East && !North && South && !Up && !West) return 4644;
- if (Down && East && !North && !South && Up && West) return 4645;
- if (Down && East && !North && !South && Up && !West) return 4646;
- if (Down && East && !North && !South && !Up && West) return 4647;
- if (Down && East && !North && !South && !Up && !West) return 4648;
- if (Down && !East && North && South && Up && West) return 4649;
- if (Down && !East && North && South && Up && !West) return 4650;
- if (Down && !East && North && South && !Up && West) return 4651;
- if (Down && !East && North && South && !Up && !West) return 4652;
- if (Down && !East && North && !South && Up && West) return 4653;
- if (Down && !East && North && !South && Up && !West) return 4654;
- if (Down && !East && North && !South && !Up && West) return 4655;
- if (Down && !East && North && !South && !Up && !West) return 4656;
- if (Down && !East && !North && South && Up && West) return 4657;
- if (Down && !East && !North && South && Up && !West) return 4658;
- if (Down && !East && !North && South && !Up && West) return 4659;
- if (Down && !East && !North && South && !Up && !West) return 4660;
- if (Down && !East && !North && !South && Up && West) return 4661;
- if (Down && !East && !North && !South && Up && !West) return 4662;
- if (Down && !East && !North && !South && !Up && West) return 4663;
- if (Down && !East && !North && !South && !Up && !West) return 4664;
- if (!Down && East && North && South && Up && West) return 4665;
- if (!Down && East && North && South && Up && !West) return 4666;
- if (!Down && East && North && South && !Up && West) return 4667;
- if (!Down && East && North && South && !Up && !West) return 4668;
- if (!Down && East && North && !South && Up && West) return 4669;
- if (!Down && East && North && !South && Up && !West) return 4670;
- if (!Down && East && North && !South && !Up && West) return 4671;
- if (!Down && East && North && !South && !Up && !West) return 4672;
- if (!Down && East && !North && South && Up && West) return 4673;
- if (!Down && East && !North && South && Up && !West) return 4674;
- if (!Down && East && !North && South && !Up && West) return 4675;
- if (!Down && East && !North && South && !Up && !West) return 4676;
- if (!Down && East && !North && !South && Up && West) return 4677;
- if (!Down && East && !North && !South && Up && !West) return 4678;
- if (!Down && East && !North && !South && !Up && West) return 4679;
- if (!Down && East && !North && !South && !Up && !West) return 4680;
- if (!Down && !East && North && South && Up && West) return 4681;
- if (!Down && !East && North && South && Up && !West) return 4682;
- if (!Down && !East && North && South && !Up && West) return 4683;
- if (!Down && !East && North && South && !Up && !West) return 4684;
- if (!Down && !East && North && !South && Up && West) return 4685;
- if (!Down && !East && North && !South && Up && !West) return 4686;
- if (!Down && !East && North && !South && !Up && West) return 4687;
- if (!Down && !East && North && !South && !Up && !West) return 4688;
- if (!Down && !East && !North && South && Up && West) return 4689;
- if (!Down && !East && !North && South && Up && !West) return 4690;
- if (!Down && !East && !North && South && !Up && West) return 4691;
- if (!Down && !East && !North && South && !Up && !West) return 4692;
- if (!Down && !East && !North && !South && Up && West) return 4693;
- if (!Down && !East && !North && !South && Up && !West) return 4694;
- if (!Down && !East && !North && !South && !Up && West) return 4695;
- return 4696;
- }
- short MushroomStem();
- bool Down(short ID);
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool Up(short ID);
- bool West(short ID);
- }
- namespace Mycelium
- {
- constexpr short Mycelium(bool Snowy)
- {
- if (Snowy) return 5012;
- return 5013;
- }
- short Mycelium();
- bool Snowy(short ID);
- }
- namespace NetherBrickFence
- {
- constexpr short NetherBrickFence(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 5018;
- if (East && North && South && !West) return 5019;
- if (East && North && !South && West) return 5022;
- if (East && North && !South && !West) return 5023;
- if (East && !North && South && West) return 5026;
- if (East && !North && South && !West) return 5027;
- if (East && !North && !South && West) return 5030;
- if (East && !North && !South && !West) return 5031;
- if (!East && North && South && West) return 5034;
- if (!East && North && South && !West) return 5035;
- if (!East && North && !South && West) return 5038;
- if (!East && North && !South && !West) return 5039;
- if (!East && !North && South && West) return 5042;
- if (!East && !North && South && !West) return 5043;
- if (!East && !North && !South && West) return 5046;
- return 5047;
- }
- short NetherBrickFence();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace NetherBrickSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short NetherBrickSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8385;
- if (Type == Type::Bottom) return 8387;
- return 8389;
- }
- short NetherBrickSlab();
- enum Type Type(short ID);
- }
- namespace NetherBrickStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short NetherBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 5049;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 5051;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 5053;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 5055;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 5057;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 5059;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5061;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 5063;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5065;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 5067;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 5069;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 5071;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 5073;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 5075;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 5077;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 5079;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5081;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 5083;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5085;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 5087;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 5089;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 5091;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 5093;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 5095;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 5097;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 5099;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5101;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 5103;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5105;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 5107;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 5109;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 5111;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 5113;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 5115;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 5117;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 5119;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5121;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 5123;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5125;
- return 5127;
- }
- short NetherBrickStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace NetherBrickWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short NetherBrickWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 12814;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 12815;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 12816;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 12820;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 12821;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 12822;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 12826;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 12827;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 12828;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 12832;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 12833;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 12834;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 12838;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 12839;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 12840;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 12844;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 12845;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 12846;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 12850;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 12851;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 12852;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 12856;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 12857;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 12858;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 12862;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 12863;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 12864;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 12868;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 12869;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 12870;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 12874;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 12875;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 12876;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 12880;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 12881;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 12882;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 12886;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 12887;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 12888;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 12892;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 12893;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 12894;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 12898;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 12899;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 12900;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 12904;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 12905;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 12906;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 12910;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 12911;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 12912;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 12916;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 12917;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 12918;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 12922;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 12923;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 12924;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 12928;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 12929;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 12930;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 12934;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 12935;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 12936;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 12940;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 12941;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 12942;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 12946;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 12947;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 12948;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 12952;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 12953;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 12954;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 12958;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 12959;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 12960;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 12964;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 12965;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 12966;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 12970;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 12971;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 12972;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 12976;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 12977;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 12978;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 12982;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 12983;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 12984;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 12988;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 12989;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 12990;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 12994;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 12995;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 12996;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 13000;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 13001;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 13002;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 13006;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 13007;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 13008;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 13012;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 13013;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 13014;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 13018;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 13019;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 13020;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 13024;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 13025;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 13026;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 13030;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 13031;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 13032;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 13036;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 13037;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 13038;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 13042;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 13043;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 13044;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 13048;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 13049;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 13050;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 13054;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 13055;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 13056;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 13060;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 13061;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 13062;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 13066;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 13067;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 13068;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 13072;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 13073;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 13074;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 13078;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 13079;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 13080;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 13084;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 13085;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 13086;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 13090;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 13091;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 13092;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 13096;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 13097;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 13098;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 13102;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 13103;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 13104;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 13108;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 13109;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 13110;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 13114;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 13115;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 13116;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 13120;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 13121;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 13122;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 13126;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 13127;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 13128;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 13132;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 13133;
- return 13134;
- }
- short NetherBrickWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace NetherBricks
- {
- constexpr short NetherBricks()
- {
- return 5015;
- }
- }
- namespace NetherGoldOre
- {
- constexpr short NetherGoldOre()
- {
- return 72;
- }
- }
- namespace NetherPortal
- {
- enum class Axis
- {
- X,
- Z
- };
- constexpr short NetherPortal(enum Axis Axis)
- {
- if (Axis == Axis::X) return 4014;
- return 4015;
- }
- short NetherPortal();
- enum Axis Axis(short ID);
- }
- namespace NetherQuartzOre
- {
- constexpr short NetherQuartzOre()
- {
- return 6727;
- }
- }
- namespace NetherSprouts
- {
- constexpr short NetherSprouts()
- {
- return 14974;
- }
- }
- namespace NetherWart
- {
- constexpr short NetherWart(unsigned char Age)
- {
- if (Age == 0) return 5128;
- if (Age == 1) return 5129;
- if (Age == 2) return 5130;
- return 5131;
- }
- short NetherWart();
- unsigned char Age(short ID);
- }
- namespace NetherWartBlock
- {
- constexpr short NetherWartBlock()
- {
- return 9254;
- }
- }
- namespace NetheriteBlock
- {
- constexpr short NetheriteBlock()
- {
- return 15826;
- }
- }
- namespace Netherrack
- {
- constexpr short Netherrack()
- {
- return 3999;
- }
- }
- namespace NoteBlock
- {
- enum class Instrument
- {
- Harp,
- Basedrum,
- Snare,
- Hat,
- Bass,
- Flute,
- Bell,
- Guitar,
- Chime,
- Xylophone,
- IronXylophone,
- CowBell,
- Didgeridoo,
- Bit,
- Banjo,
- Pling
- };
- constexpr short NoteBlock(enum Instrument Instrument, unsigned char Note, bool Powered)
- {
- if (Instrument == Instrument::Harp && Note == 0 && Powered) return 249;
- if (Instrument == Instrument::Harp && Note == 0 && !Powered) return 250;
- if (Instrument == Instrument::Harp && Note == 1 && Powered) return 251;
- if (Instrument == Instrument::Harp && Note == 1 && !Powered) return 252;
- if (Instrument == Instrument::Harp && Note == 2 && Powered) return 253;
- if (Instrument == Instrument::Harp && Note == 2 && !Powered) return 254;
- if (Instrument == Instrument::Harp && Note == 3 && Powered) return 255;
- if (Instrument == Instrument::Harp && Note == 3 && !Powered) return 256;
- if (Instrument == Instrument::Harp && Note == 4 && Powered) return 257;
- if (Instrument == Instrument::Harp && Note == 4 && !Powered) return 258;
- if (Instrument == Instrument::Harp && Note == 5 && Powered) return 259;
- if (Instrument == Instrument::Harp && Note == 5 && !Powered) return 260;
- if (Instrument == Instrument::Harp && Note == 6 && Powered) return 261;
- if (Instrument == Instrument::Harp && Note == 6 && !Powered) return 262;
- if (Instrument == Instrument::Harp && Note == 7 && Powered) return 263;
- if (Instrument == Instrument::Harp && Note == 7 && !Powered) return 264;
- if (Instrument == Instrument::Harp && Note == 8 && Powered) return 265;
- if (Instrument == Instrument::Harp && Note == 8 && !Powered) return 266;
- if (Instrument == Instrument::Harp && Note == 9 && Powered) return 267;
- if (Instrument == Instrument::Harp && Note == 9 && !Powered) return 268;
- if (Instrument == Instrument::Harp && Note == 10 && Powered) return 269;
- if (Instrument == Instrument::Harp && Note == 10 && !Powered) return 270;
- if (Instrument == Instrument::Harp && Note == 11 && Powered) return 271;
- if (Instrument == Instrument::Harp && Note == 11 && !Powered) return 272;
- if (Instrument == Instrument::Harp && Note == 12 && Powered) return 273;
- if (Instrument == Instrument::Harp && Note == 12 && !Powered) return 274;
- if (Instrument == Instrument::Harp && Note == 13 && Powered) return 275;
- if (Instrument == Instrument::Harp && Note == 13 && !Powered) return 276;
- if (Instrument == Instrument::Harp && Note == 14 && Powered) return 277;
- if (Instrument == Instrument::Harp && Note == 14 && !Powered) return 278;
- if (Instrument == Instrument::Harp && Note == 15 && Powered) return 279;
- if (Instrument == Instrument::Harp && Note == 15 && !Powered) return 280;
- if (Instrument == Instrument::Harp && Note == 16 && Powered) return 281;
- if (Instrument == Instrument::Harp && Note == 16 && !Powered) return 282;
- if (Instrument == Instrument::Harp && Note == 17 && Powered) return 283;
- if (Instrument == Instrument::Harp && Note == 17 && !Powered) return 284;
- if (Instrument == Instrument::Harp && Note == 18 && Powered) return 285;
- if (Instrument == Instrument::Harp && Note == 18 && !Powered) return 286;
- if (Instrument == Instrument::Harp && Note == 19 && Powered) return 287;
- if (Instrument == Instrument::Harp && Note == 19 && !Powered) return 288;
- if (Instrument == Instrument::Harp && Note == 20 && Powered) return 289;
- if (Instrument == Instrument::Harp && Note == 20 && !Powered) return 290;
- if (Instrument == Instrument::Harp && Note == 21 && Powered) return 291;
- if (Instrument == Instrument::Harp && Note == 21 && !Powered) return 292;
- if (Instrument == Instrument::Harp && Note == 22 && Powered) return 293;
- if (Instrument == Instrument::Harp && Note == 22 && !Powered) return 294;
- if (Instrument == Instrument::Harp && Note == 23 && Powered) return 295;
- if (Instrument == Instrument::Harp && Note == 23 && !Powered) return 296;
- if (Instrument == Instrument::Harp && Note == 24 && Powered) return 297;
- if (Instrument == Instrument::Harp && Note == 24 && !Powered) return 298;
- if (Instrument == Instrument::Basedrum && Note == 0 && Powered) return 299;
- if (Instrument == Instrument::Basedrum && Note == 0 && !Powered) return 300;
- if (Instrument == Instrument::Basedrum && Note == 1 && Powered) return 301;
- if (Instrument == Instrument::Basedrum && Note == 1 && !Powered) return 302;
- if (Instrument == Instrument::Basedrum && Note == 2 && Powered) return 303;
- if (Instrument == Instrument::Basedrum && Note == 2 && !Powered) return 304;
- if (Instrument == Instrument::Basedrum && Note == 3 && Powered) return 305;
- if (Instrument == Instrument::Basedrum && Note == 3 && !Powered) return 306;
- if (Instrument == Instrument::Basedrum && Note == 4 && Powered) return 307;
- if (Instrument == Instrument::Basedrum && Note == 4 && !Powered) return 308;
- if (Instrument == Instrument::Basedrum && Note == 5 && Powered) return 309;
- if (Instrument == Instrument::Basedrum && Note == 5 && !Powered) return 310;
- if (Instrument == Instrument::Basedrum && Note == 6 && Powered) return 311;
- if (Instrument == Instrument::Basedrum && Note == 6 && !Powered) return 312;
- if (Instrument == Instrument::Basedrum && Note == 7 && Powered) return 313;
- if (Instrument == Instrument::Basedrum && Note == 7 && !Powered) return 314;
- if (Instrument == Instrument::Basedrum && Note == 8 && Powered) return 315;
- if (Instrument == Instrument::Basedrum && Note == 8 && !Powered) return 316;
- if (Instrument == Instrument::Basedrum && Note == 9 && Powered) return 317;
- if (Instrument == Instrument::Basedrum && Note == 9 && !Powered) return 318;
- if (Instrument == Instrument::Basedrum && Note == 10 && Powered) return 319;
- if (Instrument == Instrument::Basedrum && Note == 10 && !Powered) return 320;
- if (Instrument == Instrument::Basedrum && Note == 11 && Powered) return 321;
- if (Instrument == Instrument::Basedrum && Note == 11 && !Powered) return 322;
- if (Instrument == Instrument::Basedrum && Note == 12 && Powered) return 323;
- if (Instrument == Instrument::Basedrum && Note == 12 && !Powered) return 324;
- if (Instrument == Instrument::Basedrum && Note == 13 && Powered) return 325;
- if (Instrument == Instrument::Basedrum && Note == 13 && !Powered) return 326;
- if (Instrument == Instrument::Basedrum && Note == 14 && Powered) return 327;
- if (Instrument == Instrument::Basedrum && Note == 14 && !Powered) return 328;
- if (Instrument == Instrument::Basedrum && Note == 15 && Powered) return 329;
- if (Instrument == Instrument::Basedrum && Note == 15 && !Powered) return 330;
- if (Instrument == Instrument::Basedrum && Note == 16 && Powered) return 331;
- if (Instrument == Instrument::Basedrum && Note == 16 && !Powered) return 332;
- if (Instrument == Instrument::Basedrum && Note == 17 && Powered) return 333;
- if (Instrument == Instrument::Basedrum && Note == 17 && !Powered) return 334;
- if (Instrument == Instrument::Basedrum && Note == 18 && Powered) return 335;
- if (Instrument == Instrument::Basedrum && Note == 18 && !Powered) return 336;
- if (Instrument == Instrument::Basedrum && Note == 19 && Powered) return 337;
- if (Instrument == Instrument::Basedrum && Note == 19 && !Powered) return 338;
- if (Instrument == Instrument::Basedrum && Note == 20 && Powered) return 339;
- if (Instrument == Instrument::Basedrum && Note == 20 && !Powered) return 340;
- if (Instrument == Instrument::Basedrum && Note == 21 && Powered) return 341;
- if (Instrument == Instrument::Basedrum && Note == 21 && !Powered) return 342;
- if (Instrument == Instrument::Basedrum && Note == 22 && Powered) return 343;
- if (Instrument == Instrument::Basedrum && Note == 22 && !Powered) return 344;
- if (Instrument == Instrument::Basedrum && Note == 23 && Powered) return 345;
- if (Instrument == Instrument::Basedrum && Note == 23 && !Powered) return 346;
- if (Instrument == Instrument::Basedrum && Note == 24 && Powered) return 347;
- if (Instrument == Instrument::Basedrum && Note == 24 && !Powered) return 348;
- if (Instrument == Instrument::Snare && Note == 0 && Powered) return 349;
- if (Instrument == Instrument::Snare && Note == 0 && !Powered) return 350;
- if (Instrument == Instrument::Snare && Note == 1 && Powered) return 351;
- if (Instrument == Instrument::Snare && Note == 1 && !Powered) return 352;
- if (Instrument == Instrument::Snare && Note == 2 && Powered) return 353;
- if (Instrument == Instrument::Snare && Note == 2 && !Powered) return 354;
- if (Instrument == Instrument::Snare && Note == 3 && Powered) return 355;
- if (Instrument == Instrument::Snare && Note == 3 && !Powered) return 356;
- if (Instrument == Instrument::Snare && Note == 4 && Powered) return 357;
- if (Instrument == Instrument::Snare && Note == 4 && !Powered) return 358;
- if (Instrument == Instrument::Snare && Note == 5 && Powered) return 359;
- if (Instrument == Instrument::Snare && Note == 5 && !Powered) return 360;
- if (Instrument == Instrument::Snare && Note == 6 && Powered) return 361;
- if (Instrument == Instrument::Snare && Note == 6 && !Powered) return 362;
- if (Instrument == Instrument::Snare && Note == 7 && Powered) return 363;
- if (Instrument == Instrument::Snare && Note == 7 && !Powered) return 364;
- if (Instrument == Instrument::Snare && Note == 8 && Powered) return 365;
- if (Instrument == Instrument::Snare && Note == 8 && !Powered) return 366;
- if (Instrument == Instrument::Snare && Note == 9 && Powered) return 367;
- if (Instrument == Instrument::Snare && Note == 9 && !Powered) return 368;
- if (Instrument == Instrument::Snare && Note == 10 && Powered) return 369;
- if (Instrument == Instrument::Snare && Note == 10 && !Powered) return 370;
- if (Instrument == Instrument::Snare && Note == 11 && Powered) return 371;
- if (Instrument == Instrument::Snare && Note == 11 && !Powered) return 372;
- if (Instrument == Instrument::Snare && Note == 12 && Powered) return 373;
- if (Instrument == Instrument::Snare && Note == 12 && !Powered) return 374;
- if (Instrument == Instrument::Snare && Note == 13 && Powered) return 375;
- if (Instrument == Instrument::Snare && Note == 13 && !Powered) return 376;
- if (Instrument == Instrument::Snare && Note == 14 && Powered) return 377;
- if (Instrument == Instrument::Snare && Note == 14 && !Powered) return 378;
- if (Instrument == Instrument::Snare && Note == 15 && Powered) return 379;
- if (Instrument == Instrument::Snare && Note == 15 && !Powered) return 380;
- if (Instrument == Instrument::Snare && Note == 16 && Powered) return 381;
- if (Instrument == Instrument::Snare && Note == 16 && !Powered) return 382;
- if (Instrument == Instrument::Snare && Note == 17 && Powered) return 383;
- if (Instrument == Instrument::Snare && Note == 17 && !Powered) return 384;
- if (Instrument == Instrument::Snare && Note == 18 && Powered) return 385;
- if (Instrument == Instrument::Snare && Note == 18 && !Powered) return 386;
- if (Instrument == Instrument::Snare && Note == 19 && Powered) return 387;
- if (Instrument == Instrument::Snare && Note == 19 && !Powered) return 388;
- if (Instrument == Instrument::Snare && Note == 20 && Powered) return 389;
- if (Instrument == Instrument::Snare && Note == 20 && !Powered) return 390;
- if (Instrument == Instrument::Snare && Note == 21 && Powered) return 391;
- if (Instrument == Instrument::Snare && Note == 21 && !Powered) return 392;
- if (Instrument == Instrument::Snare && Note == 22 && Powered) return 393;
- if (Instrument == Instrument::Snare && Note == 22 && !Powered) return 394;
- if (Instrument == Instrument::Snare && Note == 23 && Powered) return 395;
- if (Instrument == Instrument::Snare && Note == 23 && !Powered) return 396;
- if (Instrument == Instrument::Snare && Note == 24 && Powered) return 397;
- if (Instrument == Instrument::Snare && Note == 24 && !Powered) return 398;
- if (Instrument == Instrument::Hat && Note == 0 && Powered) return 399;
- if (Instrument == Instrument::Hat && Note == 0 && !Powered) return 400;
- if (Instrument == Instrument::Hat && Note == 1 && Powered) return 401;
- if (Instrument == Instrument::Hat && Note == 1 && !Powered) return 402;
- if (Instrument == Instrument::Hat && Note == 2 && Powered) return 403;
- if (Instrument == Instrument::Hat && Note == 2 && !Powered) return 404;
- if (Instrument == Instrument::Hat && Note == 3 && Powered) return 405;
- if (Instrument == Instrument::Hat && Note == 3 && !Powered) return 406;
- if (Instrument == Instrument::Hat && Note == 4 && Powered) return 407;
- if (Instrument == Instrument::Hat && Note == 4 && !Powered) return 408;
- if (Instrument == Instrument::Hat && Note == 5 && Powered) return 409;
- if (Instrument == Instrument::Hat && Note == 5 && !Powered) return 410;
- if (Instrument == Instrument::Hat && Note == 6 && Powered) return 411;
- if (Instrument == Instrument::Hat && Note == 6 && !Powered) return 412;
- if (Instrument == Instrument::Hat && Note == 7 && Powered) return 413;
- if (Instrument == Instrument::Hat && Note == 7 && !Powered) return 414;
- if (Instrument == Instrument::Hat && Note == 8 && Powered) return 415;
- if (Instrument == Instrument::Hat && Note == 8 && !Powered) return 416;
- if (Instrument == Instrument::Hat && Note == 9 && Powered) return 417;
- if (Instrument == Instrument::Hat && Note == 9 && !Powered) return 418;
- if (Instrument == Instrument::Hat && Note == 10 && Powered) return 419;
- if (Instrument == Instrument::Hat && Note == 10 && !Powered) return 420;
- if (Instrument == Instrument::Hat && Note == 11 && Powered) return 421;
- if (Instrument == Instrument::Hat && Note == 11 && !Powered) return 422;
- if (Instrument == Instrument::Hat && Note == 12 && Powered) return 423;
- if (Instrument == Instrument::Hat && Note == 12 && !Powered) return 424;
- if (Instrument == Instrument::Hat && Note == 13 && Powered) return 425;
- if (Instrument == Instrument::Hat && Note == 13 && !Powered) return 426;
- if (Instrument == Instrument::Hat && Note == 14 && Powered) return 427;
- if (Instrument == Instrument::Hat && Note == 14 && !Powered) return 428;
- if (Instrument == Instrument::Hat && Note == 15 && Powered) return 429;
- if (Instrument == Instrument::Hat && Note == 15 && !Powered) return 430;
- if (Instrument == Instrument::Hat && Note == 16 && Powered) return 431;
- if (Instrument == Instrument::Hat && Note == 16 && !Powered) return 432;
- if (Instrument == Instrument::Hat && Note == 17 && Powered) return 433;
- if (Instrument == Instrument::Hat && Note == 17 && !Powered) return 434;
- if (Instrument == Instrument::Hat && Note == 18 && Powered) return 435;
- if (Instrument == Instrument::Hat && Note == 18 && !Powered) return 436;
- if (Instrument == Instrument::Hat && Note == 19 && Powered) return 437;
- if (Instrument == Instrument::Hat && Note == 19 && !Powered) return 438;
- if (Instrument == Instrument::Hat && Note == 20 && Powered) return 439;
- if (Instrument == Instrument::Hat && Note == 20 && !Powered) return 440;
- if (Instrument == Instrument::Hat && Note == 21 && Powered) return 441;
- if (Instrument == Instrument::Hat && Note == 21 && !Powered) return 442;
- if (Instrument == Instrument::Hat && Note == 22 && Powered) return 443;
- if (Instrument == Instrument::Hat && Note == 22 && !Powered) return 444;
- if (Instrument == Instrument::Hat && Note == 23 && Powered) return 445;
- if (Instrument == Instrument::Hat && Note == 23 && !Powered) return 446;
- if (Instrument == Instrument::Hat && Note == 24 && Powered) return 447;
- if (Instrument == Instrument::Hat && Note == 24 && !Powered) return 448;
- if (Instrument == Instrument::Bass && Note == 0 && Powered) return 449;
- if (Instrument == Instrument::Bass && Note == 0 && !Powered) return 450;
- if (Instrument == Instrument::Bass && Note == 1 && Powered) return 451;
- if (Instrument == Instrument::Bass && Note == 1 && !Powered) return 452;
- if (Instrument == Instrument::Bass && Note == 2 && Powered) return 453;
- if (Instrument == Instrument::Bass && Note == 2 && !Powered) return 454;
- if (Instrument == Instrument::Bass && Note == 3 && Powered) return 455;
- if (Instrument == Instrument::Bass && Note == 3 && !Powered) return 456;
- if (Instrument == Instrument::Bass && Note == 4 && Powered) return 457;
- if (Instrument == Instrument::Bass && Note == 4 && !Powered) return 458;
- if (Instrument == Instrument::Bass && Note == 5 && Powered) return 459;
- if (Instrument == Instrument::Bass && Note == 5 && !Powered) return 460;
- if (Instrument == Instrument::Bass && Note == 6 && Powered) return 461;
- if (Instrument == Instrument::Bass && Note == 6 && !Powered) return 462;
- if (Instrument == Instrument::Bass && Note == 7 && Powered) return 463;
- if (Instrument == Instrument::Bass && Note == 7 && !Powered) return 464;
- if (Instrument == Instrument::Bass && Note == 8 && Powered) return 465;
- if (Instrument == Instrument::Bass && Note == 8 && !Powered) return 466;
- if (Instrument == Instrument::Bass && Note == 9 && Powered) return 467;
- if (Instrument == Instrument::Bass && Note == 9 && !Powered) return 468;
- if (Instrument == Instrument::Bass && Note == 10 && Powered) return 469;
- if (Instrument == Instrument::Bass && Note == 10 && !Powered) return 470;
- if (Instrument == Instrument::Bass && Note == 11 && Powered) return 471;
- if (Instrument == Instrument::Bass && Note == 11 && !Powered) return 472;
- if (Instrument == Instrument::Bass && Note == 12 && Powered) return 473;
- if (Instrument == Instrument::Bass && Note == 12 && !Powered) return 474;
- if (Instrument == Instrument::Bass && Note == 13 && Powered) return 475;
- if (Instrument == Instrument::Bass && Note == 13 && !Powered) return 476;
- if (Instrument == Instrument::Bass && Note == 14 && Powered) return 477;
- if (Instrument == Instrument::Bass && Note == 14 && !Powered) return 478;
- if (Instrument == Instrument::Bass && Note == 15 && Powered) return 479;
- if (Instrument == Instrument::Bass && Note == 15 && !Powered) return 480;
- if (Instrument == Instrument::Bass && Note == 16 && Powered) return 481;
- if (Instrument == Instrument::Bass && Note == 16 && !Powered) return 482;
- if (Instrument == Instrument::Bass && Note == 17 && Powered) return 483;
- if (Instrument == Instrument::Bass && Note == 17 && !Powered) return 484;
- if (Instrument == Instrument::Bass && Note == 18 && Powered) return 485;
- if (Instrument == Instrument::Bass && Note == 18 && !Powered) return 486;
- if (Instrument == Instrument::Bass && Note == 19 && Powered) return 487;
- if (Instrument == Instrument::Bass && Note == 19 && !Powered) return 488;
- if (Instrument == Instrument::Bass && Note == 20 && Powered) return 489;
- if (Instrument == Instrument::Bass && Note == 20 && !Powered) return 490;
- if (Instrument == Instrument::Bass && Note == 21 && Powered) return 491;
- if (Instrument == Instrument::Bass && Note == 21 && !Powered) return 492;
- if (Instrument == Instrument::Bass && Note == 22 && Powered) return 493;
- if (Instrument == Instrument::Bass && Note == 22 && !Powered) return 494;
- if (Instrument == Instrument::Bass && Note == 23 && Powered) return 495;
- if (Instrument == Instrument::Bass && Note == 23 && !Powered) return 496;
- if (Instrument == Instrument::Bass && Note == 24 && Powered) return 497;
- if (Instrument == Instrument::Bass && Note == 24 && !Powered) return 498;
- if (Instrument == Instrument::Flute && Note == 0 && Powered) return 499;
- if (Instrument == Instrument::Flute && Note == 0 && !Powered) return 500;
- if (Instrument == Instrument::Flute && Note == 1 && Powered) return 501;
- if (Instrument == Instrument::Flute && Note == 1 && !Powered) return 502;
- if (Instrument == Instrument::Flute && Note == 2 && Powered) return 503;
- if (Instrument == Instrument::Flute && Note == 2 && !Powered) return 504;
- if (Instrument == Instrument::Flute && Note == 3 && Powered) return 505;
- if (Instrument == Instrument::Flute && Note == 3 && !Powered) return 506;
- if (Instrument == Instrument::Flute && Note == 4 && Powered) return 507;
- if (Instrument == Instrument::Flute && Note == 4 && !Powered) return 508;
- if (Instrument == Instrument::Flute && Note == 5 && Powered) return 509;
- if (Instrument == Instrument::Flute && Note == 5 && !Powered) return 510;
- if (Instrument == Instrument::Flute && Note == 6 && Powered) return 511;
- if (Instrument == Instrument::Flute && Note == 6 && !Powered) return 512;
- if (Instrument == Instrument::Flute && Note == 7 && Powered) return 513;
- if (Instrument == Instrument::Flute && Note == 7 && !Powered) return 514;
- if (Instrument == Instrument::Flute && Note == 8 && Powered) return 515;
- if (Instrument == Instrument::Flute && Note == 8 && !Powered) return 516;
- if (Instrument == Instrument::Flute && Note == 9 && Powered) return 517;
- if (Instrument == Instrument::Flute && Note == 9 && !Powered) return 518;
- if (Instrument == Instrument::Flute && Note == 10 && Powered) return 519;
- if (Instrument == Instrument::Flute && Note == 10 && !Powered) return 520;
- if (Instrument == Instrument::Flute && Note == 11 && Powered) return 521;
- if (Instrument == Instrument::Flute && Note == 11 && !Powered) return 522;
- if (Instrument == Instrument::Flute && Note == 12 && Powered) return 523;
- if (Instrument == Instrument::Flute && Note == 12 && !Powered) return 524;
- if (Instrument == Instrument::Flute && Note == 13 && Powered) return 525;
- if (Instrument == Instrument::Flute && Note == 13 && !Powered) return 526;
- if (Instrument == Instrument::Flute && Note == 14 && Powered) return 527;
- if (Instrument == Instrument::Flute && Note == 14 && !Powered) return 528;
- if (Instrument == Instrument::Flute && Note == 15 && Powered) return 529;
- if (Instrument == Instrument::Flute && Note == 15 && !Powered) return 530;
- if (Instrument == Instrument::Flute && Note == 16 && Powered) return 531;
- if (Instrument == Instrument::Flute && Note == 16 && !Powered) return 532;
- if (Instrument == Instrument::Flute && Note == 17 && Powered) return 533;
- if (Instrument == Instrument::Flute && Note == 17 && !Powered) return 534;
- if (Instrument == Instrument::Flute && Note == 18 && Powered) return 535;
- if (Instrument == Instrument::Flute && Note == 18 && !Powered) return 536;
- if (Instrument == Instrument::Flute && Note == 19 && Powered) return 537;
- if (Instrument == Instrument::Flute && Note == 19 && !Powered) return 538;
- if (Instrument == Instrument::Flute && Note == 20 && Powered) return 539;
- if (Instrument == Instrument::Flute && Note == 20 && !Powered) return 540;
- if (Instrument == Instrument::Flute && Note == 21 && Powered) return 541;
- if (Instrument == Instrument::Flute && Note == 21 && !Powered) return 542;
- if (Instrument == Instrument::Flute && Note == 22 && Powered) return 543;
- if (Instrument == Instrument::Flute && Note == 22 && !Powered) return 544;
- if (Instrument == Instrument::Flute && Note == 23 && Powered) return 545;
- if (Instrument == Instrument::Flute && Note == 23 && !Powered) return 546;
- if (Instrument == Instrument::Flute && Note == 24 && Powered) return 547;
- if (Instrument == Instrument::Flute && Note == 24 && !Powered) return 548;
- if (Instrument == Instrument::Bell && Note == 0 && Powered) return 549;
- if (Instrument == Instrument::Bell && Note == 0 && !Powered) return 550;
- if (Instrument == Instrument::Bell && Note == 1 && Powered) return 551;
- if (Instrument == Instrument::Bell && Note == 1 && !Powered) return 552;
- if (Instrument == Instrument::Bell && Note == 2 && Powered) return 553;
- if (Instrument == Instrument::Bell && Note == 2 && !Powered) return 554;
- if (Instrument == Instrument::Bell && Note == 3 && Powered) return 555;
- if (Instrument == Instrument::Bell && Note == 3 && !Powered) return 556;
- if (Instrument == Instrument::Bell && Note == 4 && Powered) return 557;
- if (Instrument == Instrument::Bell && Note == 4 && !Powered) return 558;
- if (Instrument == Instrument::Bell && Note == 5 && Powered) return 559;
- if (Instrument == Instrument::Bell && Note == 5 && !Powered) return 560;
- if (Instrument == Instrument::Bell && Note == 6 && Powered) return 561;
- if (Instrument == Instrument::Bell && Note == 6 && !Powered) return 562;
- if (Instrument == Instrument::Bell && Note == 7 && Powered) return 563;
- if (Instrument == Instrument::Bell && Note == 7 && !Powered) return 564;
- if (Instrument == Instrument::Bell && Note == 8 && Powered) return 565;
- if (Instrument == Instrument::Bell && Note == 8 && !Powered) return 566;
- if (Instrument == Instrument::Bell && Note == 9 && Powered) return 567;
- if (Instrument == Instrument::Bell && Note == 9 && !Powered) return 568;
- if (Instrument == Instrument::Bell && Note == 10 && Powered) return 569;
- if (Instrument == Instrument::Bell && Note == 10 && !Powered) return 570;
- if (Instrument == Instrument::Bell && Note == 11 && Powered) return 571;
- if (Instrument == Instrument::Bell && Note == 11 && !Powered) return 572;
- if (Instrument == Instrument::Bell && Note == 12 && Powered) return 573;
- if (Instrument == Instrument::Bell && Note == 12 && !Powered) return 574;
- if (Instrument == Instrument::Bell && Note == 13 && Powered) return 575;
- if (Instrument == Instrument::Bell && Note == 13 && !Powered) return 576;
- if (Instrument == Instrument::Bell && Note == 14 && Powered) return 577;
- if (Instrument == Instrument::Bell && Note == 14 && !Powered) return 578;
- if (Instrument == Instrument::Bell && Note == 15 && Powered) return 579;
- if (Instrument == Instrument::Bell && Note == 15 && !Powered) return 580;
- if (Instrument == Instrument::Bell && Note == 16 && Powered) return 581;
- if (Instrument == Instrument::Bell && Note == 16 && !Powered) return 582;
- if (Instrument == Instrument::Bell && Note == 17 && Powered) return 583;
- if (Instrument == Instrument::Bell && Note == 17 && !Powered) return 584;
- if (Instrument == Instrument::Bell && Note == 18 && Powered) return 585;
- if (Instrument == Instrument::Bell && Note == 18 && !Powered) return 586;
- if (Instrument == Instrument::Bell && Note == 19 && Powered) return 587;
- if (Instrument == Instrument::Bell && Note == 19 && !Powered) return 588;
- if (Instrument == Instrument::Bell && Note == 20 && Powered) return 589;
- if (Instrument == Instrument::Bell && Note == 20 && !Powered) return 590;
- if (Instrument == Instrument::Bell && Note == 21 && Powered) return 591;
- if (Instrument == Instrument::Bell && Note == 21 && !Powered) return 592;
- if (Instrument == Instrument::Bell && Note == 22 && Powered) return 593;
- if (Instrument == Instrument::Bell && Note == 22 && !Powered) return 594;
- if (Instrument == Instrument::Bell && Note == 23 && Powered) return 595;
- if (Instrument == Instrument::Bell && Note == 23 && !Powered) return 596;
- if (Instrument == Instrument::Bell && Note == 24 && Powered) return 597;
- if (Instrument == Instrument::Bell && Note == 24 && !Powered) return 598;
- if (Instrument == Instrument::Guitar && Note == 0 && Powered) return 599;
- if (Instrument == Instrument::Guitar && Note == 0 && !Powered) return 600;
- if (Instrument == Instrument::Guitar && Note == 1 && Powered) return 601;
- if (Instrument == Instrument::Guitar && Note == 1 && !Powered) return 602;
- if (Instrument == Instrument::Guitar && Note == 2 && Powered) return 603;
- if (Instrument == Instrument::Guitar && Note == 2 && !Powered) return 604;
- if (Instrument == Instrument::Guitar && Note == 3 && Powered) return 605;
- if (Instrument == Instrument::Guitar && Note == 3 && !Powered) return 606;
- if (Instrument == Instrument::Guitar && Note == 4 && Powered) return 607;
- if (Instrument == Instrument::Guitar && Note == 4 && !Powered) return 608;
- if (Instrument == Instrument::Guitar && Note == 5 && Powered) return 609;
- if (Instrument == Instrument::Guitar && Note == 5 && !Powered) return 610;
- if (Instrument == Instrument::Guitar && Note == 6 && Powered) return 611;
- if (Instrument == Instrument::Guitar && Note == 6 && !Powered) return 612;
- if (Instrument == Instrument::Guitar && Note == 7 && Powered) return 613;
- if (Instrument == Instrument::Guitar && Note == 7 && !Powered) return 614;
- if (Instrument == Instrument::Guitar && Note == 8 && Powered) return 615;
- if (Instrument == Instrument::Guitar && Note == 8 && !Powered) return 616;
- if (Instrument == Instrument::Guitar && Note == 9 && Powered) return 617;
- if (Instrument == Instrument::Guitar && Note == 9 && !Powered) return 618;
- if (Instrument == Instrument::Guitar && Note == 10 && Powered) return 619;
- if (Instrument == Instrument::Guitar && Note == 10 && !Powered) return 620;
- if (Instrument == Instrument::Guitar && Note == 11 && Powered) return 621;
- if (Instrument == Instrument::Guitar && Note == 11 && !Powered) return 622;
- if (Instrument == Instrument::Guitar && Note == 12 && Powered) return 623;
- if (Instrument == Instrument::Guitar && Note == 12 && !Powered) return 624;
- if (Instrument == Instrument::Guitar && Note == 13 && Powered) return 625;
- if (Instrument == Instrument::Guitar && Note == 13 && !Powered) return 626;
- if (Instrument == Instrument::Guitar && Note == 14 && Powered) return 627;
- if (Instrument == Instrument::Guitar && Note == 14 && !Powered) return 628;
- if (Instrument == Instrument::Guitar && Note == 15 && Powered) return 629;
- if (Instrument == Instrument::Guitar && Note == 15 && !Powered) return 630;
- if (Instrument == Instrument::Guitar && Note == 16 && Powered) return 631;
- if (Instrument == Instrument::Guitar && Note == 16 && !Powered) return 632;
- if (Instrument == Instrument::Guitar && Note == 17 && Powered) return 633;
- if (Instrument == Instrument::Guitar && Note == 17 && !Powered) return 634;
- if (Instrument == Instrument::Guitar && Note == 18 && Powered) return 635;
- if (Instrument == Instrument::Guitar && Note == 18 && !Powered) return 636;
- if (Instrument == Instrument::Guitar && Note == 19 && Powered) return 637;
- if (Instrument == Instrument::Guitar && Note == 19 && !Powered) return 638;
- if (Instrument == Instrument::Guitar && Note == 20 && Powered) return 639;
- if (Instrument == Instrument::Guitar && Note == 20 && !Powered) return 640;
- if (Instrument == Instrument::Guitar && Note == 21 && Powered) return 641;
- if (Instrument == Instrument::Guitar && Note == 21 && !Powered) return 642;
- if (Instrument == Instrument::Guitar && Note == 22 && Powered) return 643;
- if (Instrument == Instrument::Guitar && Note == 22 && !Powered) return 644;
- if (Instrument == Instrument::Guitar && Note == 23 && Powered) return 645;
- if (Instrument == Instrument::Guitar && Note == 23 && !Powered) return 646;
- if (Instrument == Instrument::Guitar && Note == 24 && Powered) return 647;
- if (Instrument == Instrument::Guitar && Note == 24 && !Powered) return 648;
- if (Instrument == Instrument::Chime && Note == 0 && Powered) return 649;
- if (Instrument == Instrument::Chime && Note == 0 && !Powered) return 650;
- if (Instrument == Instrument::Chime && Note == 1 && Powered) return 651;
- if (Instrument == Instrument::Chime && Note == 1 && !Powered) return 652;
- if (Instrument == Instrument::Chime && Note == 2 && Powered) return 653;
- if (Instrument == Instrument::Chime && Note == 2 && !Powered) return 654;
- if (Instrument == Instrument::Chime && Note == 3 && Powered) return 655;
- if (Instrument == Instrument::Chime && Note == 3 && !Powered) return 656;
- if (Instrument == Instrument::Chime && Note == 4 && Powered) return 657;
- if (Instrument == Instrument::Chime && Note == 4 && !Powered) return 658;
- if (Instrument == Instrument::Chime && Note == 5 && Powered) return 659;
- if (Instrument == Instrument::Chime && Note == 5 && !Powered) return 660;
- if (Instrument == Instrument::Chime && Note == 6 && Powered) return 661;
- if (Instrument == Instrument::Chime && Note == 6 && !Powered) return 662;
- if (Instrument == Instrument::Chime && Note == 7 && Powered) return 663;
- if (Instrument == Instrument::Chime && Note == 7 && !Powered) return 664;
- if (Instrument == Instrument::Chime && Note == 8 && Powered) return 665;
- if (Instrument == Instrument::Chime && Note == 8 && !Powered) return 666;
- if (Instrument == Instrument::Chime && Note == 9 && Powered) return 667;
- if (Instrument == Instrument::Chime && Note == 9 && !Powered) return 668;
- if (Instrument == Instrument::Chime && Note == 10 && Powered) return 669;
- if (Instrument == Instrument::Chime && Note == 10 && !Powered) return 670;
- if (Instrument == Instrument::Chime && Note == 11 && Powered) return 671;
- if (Instrument == Instrument::Chime && Note == 11 && !Powered) return 672;
- if (Instrument == Instrument::Chime && Note == 12 && Powered) return 673;
- if (Instrument == Instrument::Chime && Note == 12 && !Powered) return 674;
- if (Instrument == Instrument::Chime && Note == 13 && Powered) return 675;
- if (Instrument == Instrument::Chime && Note == 13 && !Powered) return 676;
- if (Instrument == Instrument::Chime && Note == 14 && Powered) return 677;
- if (Instrument == Instrument::Chime && Note == 14 && !Powered) return 678;
- if (Instrument == Instrument::Chime && Note == 15 && Powered) return 679;
- if (Instrument == Instrument::Chime && Note == 15 && !Powered) return 680;
- if (Instrument == Instrument::Chime && Note == 16 && Powered) return 681;
- if (Instrument == Instrument::Chime && Note == 16 && !Powered) return 682;
- if (Instrument == Instrument::Chime && Note == 17 && Powered) return 683;
- if (Instrument == Instrument::Chime && Note == 17 && !Powered) return 684;
- if (Instrument == Instrument::Chime && Note == 18 && Powered) return 685;
- if (Instrument == Instrument::Chime && Note == 18 && !Powered) return 686;
- if (Instrument == Instrument::Chime && Note == 19 && Powered) return 687;
- if (Instrument == Instrument::Chime && Note == 19 && !Powered) return 688;
- if (Instrument == Instrument::Chime && Note == 20 && Powered) return 689;
- if (Instrument == Instrument::Chime && Note == 20 && !Powered) return 690;
- if (Instrument == Instrument::Chime && Note == 21 && Powered) return 691;
- if (Instrument == Instrument::Chime && Note == 21 && !Powered) return 692;
- if (Instrument == Instrument::Chime && Note == 22 && Powered) return 693;
- if (Instrument == Instrument::Chime && Note == 22 && !Powered) return 694;
- if (Instrument == Instrument::Chime && Note == 23 && Powered) return 695;
- if (Instrument == Instrument::Chime && Note == 23 && !Powered) return 696;
- if (Instrument == Instrument::Chime && Note == 24 && Powered) return 697;
- if (Instrument == Instrument::Chime && Note == 24 && !Powered) return 698;
- if (Instrument == Instrument::Xylophone && Note == 0 && Powered) return 699;
- if (Instrument == Instrument::Xylophone && Note == 0 && !Powered) return 700;
- if (Instrument == Instrument::Xylophone && Note == 1 && Powered) return 701;
- if (Instrument == Instrument::Xylophone && Note == 1 && !Powered) return 702;
- if (Instrument == Instrument::Xylophone && Note == 2 && Powered) return 703;
- if (Instrument == Instrument::Xylophone && Note == 2 && !Powered) return 704;
- if (Instrument == Instrument::Xylophone && Note == 3 && Powered) return 705;
- if (Instrument == Instrument::Xylophone && Note == 3 && !Powered) return 706;
- if (Instrument == Instrument::Xylophone && Note == 4 && Powered) return 707;
- if (Instrument == Instrument::Xylophone && Note == 4 && !Powered) return 708;
- if (Instrument == Instrument::Xylophone && Note == 5 && Powered) return 709;
- if (Instrument == Instrument::Xylophone && Note == 5 && !Powered) return 710;
- if (Instrument == Instrument::Xylophone && Note == 6 && Powered) return 711;
- if (Instrument == Instrument::Xylophone && Note == 6 && !Powered) return 712;
- if (Instrument == Instrument::Xylophone && Note == 7 && Powered) return 713;
- if (Instrument == Instrument::Xylophone && Note == 7 && !Powered) return 714;
- if (Instrument == Instrument::Xylophone && Note == 8 && Powered) return 715;
- if (Instrument == Instrument::Xylophone && Note == 8 && !Powered) return 716;
- if (Instrument == Instrument::Xylophone && Note == 9 && Powered) return 717;
- if (Instrument == Instrument::Xylophone && Note == 9 && !Powered) return 718;
- if (Instrument == Instrument::Xylophone && Note == 10 && Powered) return 719;
- if (Instrument == Instrument::Xylophone && Note == 10 && !Powered) return 720;
- if (Instrument == Instrument::Xylophone && Note == 11 && Powered) return 721;
- if (Instrument == Instrument::Xylophone && Note == 11 && !Powered) return 722;
- if (Instrument == Instrument::Xylophone && Note == 12 && Powered) return 723;
- if (Instrument == Instrument::Xylophone && Note == 12 && !Powered) return 724;
- if (Instrument == Instrument::Xylophone && Note == 13 && Powered) return 725;
- if (Instrument == Instrument::Xylophone && Note == 13 && !Powered) return 726;
- if (Instrument == Instrument::Xylophone && Note == 14 && Powered) return 727;
- if (Instrument == Instrument::Xylophone && Note == 14 && !Powered) return 728;
- if (Instrument == Instrument::Xylophone && Note == 15 && Powered) return 729;
- if (Instrument == Instrument::Xylophone && Note == 15 && !Powered) return 730;
- if (Instrument == Instrument::Xylophone && Note == 16 && Powered) return 731;
- if (Instrument == Instrument::Xylophone && Note == 16 && !Powered) return 732;
- if (Instrument == Instrument::Xylophone && Note == 17 && Powered) return 733;
- if (Instrument == Instrument::Xylophone && Note == 17 && !Powered) return 734;
- if (Instrument == Instrument::Xylophone && Note == 18 && Powered) return 735;
- if (Instrument == Instrument::Xylophone && Note == 18 && !Powered) return 736;
- if (Instrument == Instrument::Xylophone && Note == 19 && Powered) return 737;
- if (Instrument == Instrument::Xylophone && Note == 19 && !Powered) return 738;
- if (Instrument == Instrument::Xylophone && Note == 20 && Powered) return 739;
- if (Instrument == Instrument::Xylophone && Note == 20 && !Powered) return 740;
- if (Instrument == Instrument::Xylophone && Note == 21 && Powered) return 741;
- if (Instrument == Instrument::Xylophone && Note == 21 && !Powered) return 742;
- if (Instrument == Instrument::Xylophone && Note == 22 && Powered) return 743;
- if (Instrument == Instrument::Xylophone && Note == 22 && !Powered) return 744;
- if (Instrument == Instrument::Xylophone && Note == 23 && Powered) return 745;
- if (Instrument == Instrument::Xylophone && Note == 23 && !Powered) return 746;
- if (Instrument == Instrument::Xylophone && Note == 24 && Powered) return 747;
- if (Instrument == Instrument::Xylophone && Note == 24 && !Powered) return 748;
- if (Instrument == Instrument::IronXylophone && Note == 0 && Powered) return 749;
- if (Instrument == Instrument::IronXylophone && Note == 0 && !Powered) return 750;
- if (Instrument == Instrument::IronXylophone && Note == 1 && Powered) return 751;
- if (Instrument == Instrument::IronXylophone && Note == 1 && !Powered) return 752;
- if (Instrument == Instrument::IronXylophone && Note == 2 && Powered) return 753;
- if (Instrument == Instrument::IronXylophone && Note == 2 && !Powered) return 754;
- if (Instrument == Instrument::IronXylophone && Note == 3 && Powered) return 755;
- if (Instrument == Instrument::IronXylophone && Note == 3 && !Powered) return 756;
- if (Instrument == Instrument::IronXylophone && Note == 4 && Powered) return 757;
- if (Instrument == Instrument::IronXylophone && Note == 4 && !Powered) return 758;
- if (Instrument == Instrument::IronXylophone && Note == 5 && Powered) return 759;
- if (Instrument == Instrument::IronXylophone && Note == 5 && !Powered) return 760;
- if (Instrument == Instrument::IronXylophone && Note == 6 && Powered) return 761;
- if (Instrument == Instrument::IronXylophone && Note == 6 && !Powered) return 762;
- if (Instrument == Instrument::IronXylophone && Note == 7 && Powered) return 763;
- if (Instrument == Instrument::IronXylophone && Note == 7 && !Powered) return 764;
- if (Instrument == Instrument::IronXylophone && Note == 8 && Powered) return 765;
- if (Instrument == Instrument::IronXylophone && Note == 8 && !Powered) return 766;
- if (Instrument == Instrument::IronXylophone && Note == 9 && Powered) return 767;
- if (Instrument == Instrument::IronXylophone && Note == 9 && !Powered) return 768;
- if (Instrument == Instrument::IronXylophone && Note == 10 && Powered) return 769;
- if (Instrument == Instrument::IronXylophone && Note == 10 && !Powered) return 770;
- if (Instrument == Instrument::IronXylophone && Note == 11 && Powered) return 771;
- if (Instrument == Instrument::IronXylophone && Note == 11 && !Powered) return 772;
- if (Instrument == Instrument::IronXylophone && Note == 12 && Powered) return 773;
- if (Instrument == Instrument::IronXylophone && Note == 12 && !Powered) return 774;
- if (Instrument == Instrument::IronXylophone && Note == 13 && Powered) return 775;
- if (Instrument == Instrument::IronXylophone && Note == 13 && !Powered) return 776;
- if (Instrument == Instrument::IronXylophone && Note == 14 && Powered) return 777;
- if (Instrument == Instrument::IronXylophone && Note == 14 && !Powered) return 778;
- if (Instrument == Instrument::IronXylophone && Note == 15 && Powered) return 779;
- if (Instrument == Instrument::IronXylophone && Note == 15 && !Powered) return 780;
- if (Instrument == Instrument::IronXylophone && Note == 16 && Powered) return 781;
- if (Instrument == Instrument::IronXylophone && Note == 16 && !Powered) return 782;
- if (Instrument == Instrument::IronXylophone && Note == 17 && Powered) return 783;
- if (Instrument == Instrument::IronXylophone && Note == 17 && !Powered) return 784;
- if (Instrument == Instrument::IronXylophone && Note == 18 && Powered) return 785;
- if (Instrument == Instrument::IronXylophone && Note == 18 && !Powered) return 786;
- if (Instrument == Instrument::IronXylophone && Note == 19 && Powered) return 787;
- if (Instrument == Instrument::IronXylophone && Note == 19 && !Powered) return 788;
- if (Instrument == Instrument::IronXylophone && Note == 20 && Powered) return 789;
- if (Instrument == Instrument::IronXylophone && Note == 20 && !Powered) return 790;
- if (Instrument == Instrument::IronXylophone && Note == 21 && Powered) return 791;
- if (Instrument == Instrument::IronXylophone && Note == 21 && !Powered) return 792;
- if (Instrument == Instrument::IronXylophone && Note == 22 && Powered) return 793;
- if (Instrument == Instrument::IronXylophone && Note == 22 && !Powered) return 794;
- if (Instrument == Instrument::IronXylophone && Note == 23 && Powered) return 795;
- if (Instrument == Instrument::IronXylophone && Note == 23 && !Powered) return 796;
- if (Instrument == Instrument::IronXylophone && Note == 24 && Powered) return 797;
- if (Instrument == Instrument::IronXylophone && Note == 24 && !Powered) return 798;
- if (Instrument == Instrument::CowBell && Note == 0 && Powered) return 799;
- if (Instrument == Instrument::CowBell && Note == 0 && !Powered) return 800;
- if (Instrument == Instrument::CowBell && Note == 1 && Powered) return 801;
- if (Instrument == Instrument::CowBell && Note == 1 && !Powered) return 802;
- if (Instrument == Instrument::CowBell && Note == 2 && Powered) return 803;
- if (Instrument == Instrument::CowBell && Note == 2 && !Powered) return 804;
- if (Instrument == Instrument::CowBell && Note == 3 && Powered) return 805;
- if (Instrument == Instrument::CowBell && Note == 3 && !Powered) return 806;
- if (Instrument == Instrument::CowBell && Note == 4 && Powered) return 807;
- if (Instrument == Instrument::CowBell && Note == 4 && !Powered) return 808;
- if (Instrument == Instrument::CowBell && Note == 5 && Powered) return 809;
- if (Instrument == Instrument::CowBell && Note == 5 && !Powered) return 810;
- if (Instrument == Instrument::CowBell && Note == 6 && Powered) return 811;
- if (Instrument == Instrument::CowBell && Note == 6 && !Powered) return 812;
- if (Instrument == Instrument::CowBell && Note == 7 && Powered) return 813;
- if (Instrument == Instrument::CowBell && Note == 7 && !Powered) return 814;
- if (Instrument == Instrument::CowBell && Note == 8 && Powered) return 815;
- if (Instrument == Instrument::CowBell && Note == 8 && !Powered) return 816;
- if (Instrument == Instrument::CowBell && Note == 9 && Powered) return 817;
- if (Instrument == Instrument::CowBell && Note == 9 && !Powered) return 818;
- if (Instrument == Instrument::CowBell && Note == 10 && Powered) return 819;
- if (Instrument == Instrument::CowBell && Note == 10 && !Powered) return 820;
- if (Instrument == Instrument::CowBell && Note == 11 && Powered) return 821;
- if (Instrument == Instrument::CowBell && Note == 11 && !Powered) return 822;
- if (Instrument == Instrument::CowBell && Note == 12 && Powered) return 823;
- if (Instrument == Instrument::CowBell && Note == 12 && !Powered) return 824;
- if (Instrument == Instrument::CowBell && Note == 13 && Powered) return 825;
- if (Instrument == Instrument::CowBell && Note == 13 && !Powered) return 826;
- if (Instrument == Instrument::CowBell && Note == 14 && Powered) return 827;
- if (Instrument == Instrument::CowBell && Note == 14 && !Powered) return 828;
- if (Instrument == Instrument::CowBell && Note == 15 && Powered) return 829;
- if (Instrument == Instrument::CowBell && Note == 15 && !Powered) return 830;
- if (Instrument == Instrument::CowBell && Note == 16 && Powered) return 831;
- if (Instrument == Instrument::CowBell && Note == 16 && !Powered) return 832;
- if (Instrument == Instrument::CowBell && Note == 17 && Powered) return 833;
- if (Instrument == Instrument::CowBell && Note == 17 && !Powered) return 834;
- if (Instrument == Instrument::CowBell && Note == 18 && Powered) return 835;
- if (Instrument == Instrument::CowBell && Note == 18 && !Powered) return 836;
- if (Instrument == Instrument::CowBell && Note == 19 && Powered) return 837;
- if (Instrument == Instrument::CowBell && Note == 19 && !Powered) return 838;
- if (Instrument == Instrument::CowBell && Note == 20 && Powered) return 839;
- if (Instrument == Instrument::CowBell && Note == 20 && !Powered) return 840;
- if (Instrument == Instrument::CowBell && Note == 21 && Powered) return 841;
- if (Instrument == Instrument::CowBell && Note == 21 && !Powered) return 842;
- if (Instrument == Instrument::CowBell && Note == 22 && Powered) return 843;
- if (Instrument == Instrument::CowBell && Note == 22 && !Powered) return 844;
- if (Instrument == Instrument::CowBell && Note == 23 && Powered) return 845;
- if (Instrument == Instrument::CowBell && Note == 23 && !Powered) return 846;
- if (Instrument == Instrument::CowBell && Note == 24 && Powered) return 847;
- if (Instrument == Instrument::CowBell && Note == 24 && !Powered) return 848;
- if (Instrument == Instrument::Didgeridoo && Note == 0 && Powered) return 849;
- if (Instrument == Instrument::Didgeridoo && Note == 0 && !Powered) return 850;
- if (Instrument == Instrument::Didgeridoo && Note == 1 && Powered) return 851;
- if (Instrument == Instrument::Didgeridoo && Note == 1 && !Powered) return 852;
- if (Instrument == Instrument::Didgeridoo && Note == 2 && Powered) return 853;
- if (Instrument == Instrument::Didgeridoo && Note == 2 && !Powered) return 854;
- if (Instrument == Instrument::Didgeridoo && Note == 3 && Powered) return 855;
- if (Instrument == Instrument::Didgeridoo && Note == 3 && !Powered) return 856;
- if (Instrument == Instrument::Didgeridoo && Note == 4 && Powered) return 857;
- if (Instrument == Instrument::Didgeridoo && Note == 4 && !Powered) return 858;
- if (Instrument == Instrument::Didgeridoo && Note == 5 && Powered) return 859;
- if (Instrument == Instrument::Didgeridoo && Note == 5 && !Powered) return 860;
- if (Instrument == Instrument::Didgeridoo && Note == 6 && Powered) return 861;
- if (Instrument == Instrument::Didgeridoo && Note == 6 && !Powered) return 862;
- if (Instrument == Instrument::Didgeridoo && Note == 7 && Powered) return 863;
- if (Instrument == Instrument::Didgeridoo && Note == 7 && !Powered) return 864;
- if (Instrument == Instrument::Didgeridoo && Note == 8 && Powered) return 865;
- if (Instrument == Instrument::Didgeridoo && Note == 8 && !Powered) return 866;
- if (Instrument == Instrument::Didgeridoo && Note == 9 && Powered) return 867;
- if (Instrument == Instrument::Didgeridoo && Note == 9 && !Powered) return 868;
- if (Instrument == Instrument::Didgeridoo && Note == 10 && Powered) return 869;
- if (Instrument == Instrument::Didgeridoo && Note == 10 && !Powered) return 870;
- if (Instrument == Instrument::Didgeridoo && Note == 11 && Powered) return 871;
- if (Instrument == Instrument::Didgeridoo && Note == 11 && !Powered) return 872;
- if (Instrument == Instrument::Didgeridoo && Note == 12 && Powered) return 873;
- if (Instrument == Instrument::Didgeridoo && Note == 12 && !Powered) return 874;
- if (Instrument == Instrument::Didgeridoo && Note == 13 && Powered) return 875;
- if (Instrument == Instrument::Didgeridoo && Note == 13 && !Powered) return 876;
- if (Instrument == Instrument::Didgeridoo && Note == 14 && Powered) return 877;
- if (Instrument == Instrument::Didgeridoo && Note == 14 && !Powered) return 878;
- if (Instrument == Instrument::Didgeridoo && Note == 15 && Powered) return 879;
- if (Instrument == Instrument::Didgeridoo && Note == 15 && !Powered) return 880;
- if (Instrument == Instrument::Didgeridoo && Note == 16 && Powered) return 881;
- if (Instrument == Instrument::Didgeridoo && Note == 16 && !Powered) return 882;
- if (Instrument == Instrument::Didgeridoo && Note == 17 && Powered) return 883;
- if (Instrument == Instrument::Didgeridoo && Note == 17 && !Powered) return 884;
- if (Instrument == Instrument::Didgeridoo && Note == 18 && Powered) return 885;
- if (Instrument == Instrument::Didgeridoo && Note == 18 && !Powered) return 886;
- if (Instrument == Instrument::Didgeridoo && Note == 19 && Powered) return 887;
- if (Instrument == Instrument::Didgeridoo && Note == 19 && !Powered) return 888;
- if (Instrument == Instrument::Didgeridoo && Note == 20 && Powered) return 889;
- if (Instrument == Instrument::Didgeridoo && Note == 20 && !Powered) return 890;
- if (Instrument == Instrument::Didgeridoo && Note == 21 && Powered) return 891;
- if (Instrument == Instrument::Didgeridoo && Note == 21 && !Powered) return 892;
- if (Instrument == Instrument::Didgeridoo && Note == 22 && Powered) return 893;
- if (Instrument == Instrument::Didgeridoo && Note == 22 && !Powered) return 894;
- if (Instrument == Instrument::Didgeridoo && Note == 23 && Powered) return 895;
- if (Instrument == Instrument::Didgeridoo && Note == 23 && !Powered) return 896;
- if (Instrument == Instrument::Didgeridoo && Note == 24 && Powered) return 897;
- if (Instrument == Instrument::Didgeridoo && Note == 24 && !Powered) return 898;
- if (Instrument == Instrument::Bit && Note == 0 && Powered) return 899;
- if (Instrument == Instrument::Bit && Note == 0 && !Powered) return 900;
- if (Instrument == Instrument::Bit && Note == 1 && Powered) return 901;
- if (Instrument == Instrument::Bit && Note == 1 && !Powered) return 902;
- if (Instrument == Instrument::Bit && Note == 2 && Powered) return 903;
- if (Instrument == Instrument::Bit && Note == 2 && !Powered) return 904;
- if (Instrument == Instrument::Bit && Note == 3 && Powered) return 905;
- if (Instrument == Instrument::Bit && Note == 3 && !Powered) return 906;
- if (Instrument == Instrument::Bit && Note == 4 && Powered) return 907;
- if (Instrument == Instrument::Bit && Note == 4 && !Powered) return 908;
- if (Instrument == Instrument::Bit && Note == 5 && Powered) return 909;
- if (Instrument == Instrument::Bit && Note == 5 && !Powered) return 910;
- if (Instrument == Instrument::Bit && Note == 6 && Powered) return 911;
- if (Instrument == Instrument::Bit && Note == 6 && !Powered) return 912;
- if (Instrument == Instrument::Bit && Note == 7 && Powered) return 913;
- if (Instrument == Instrument::Bit && Note == 7 && !Powered) return 914;
- if (Instrument == Instrument::Bit && Note == 8 && Powered) return 915;
- if (Instrument == Instrument::Bit && Note == 8 && !Powered) return 916;
- if (Instrument == Instrument::Bit && Note == 9 && Powered) return 917;
- if (Instrument == Instrument::Bit && Note == 9 && !Powered) return 918;
- if (Instrument == Instrument::Bit && Note == 10 && Powered) return 919;
- if (Instrument == Instrument::Bit && Note == 10 && !Powered) return 920;
- if (Instrument == Instrument::Bit && Note == 11 && Powered) return 921;
- if (Instrument == Instrument::Bit && Note == 11 && !Powered) return 922;
- if (Instrument == Instrument::Bit && Note == 12 && Powered) return 923;
- if (Instrument == Instrument::Bit && Note == 12 && !Powered) return 924;
- if (Instrument == Instrument::Bit && Note == 13 && Powered) return 925;
- if (Instrument == Instrument::Bit && Note == 13 && !Powered) return 926;
- if (Instrument == Instrument::Bit && Note == 14 && Powered) return 927;
- if (Instrument == Instrument::Bit && Note == 14 && !Powered) return 928;
- if (Instrument == Instrument::Bit && Note == 15 && Powered) return 929;
- if (Instrument == Instrument::Bit && Note == 15 && !Powered) return 930;
- if (Instrument == Instrument::Bit && Note == 16 && Powered) return 931;
- if (Instrument == Instrument::Bit && Note == 16 && !Powered) return 932;
- if (Instrument == Instrument::Bit && Note == 17 && Powered) return 933;
- if (Instrument == Instrument::Bit && Note == 17 && !Powered) return 934;
- if (Instrument == Instrument::Bit && Note == 18 && Powered) return 935;
- if (Instrument == Instrument::Bit && Note == 18 && !Powered) return 936;
- if (Instrument == Instrument::Bit && Note == 19 && Powered) return 937;
- if (Instrument == Instrument::Bit && Note == 19 && !Powered) return 938;
- if (Instrument == Instrument::Bit && Note == 20 && Powered) return 939;
- if (Instrument == Instrument::Bit && Note == 20 && !Powered) return 940;
- if (Instrument == Instrument::Bit && Note == 21 && Powered) return 941;
- if (Instrument == Instrument::Bit && Note == 21 && !Powered) return 942;
- if (Instrument == Instrument::Bit && Note == 22 && Powered) return 943;
- if (Instrument == Instrument::Bit && Note == 22 && !Powered) return 944;
- if (Instrument == Instrument::Bit && Note == 23 && Powered) return 945;
- if (Instrument == Instrument::Bit && Note == 23 && !Powered) return 946;
- if (Instrument == Instrument::Bit && Note == 24 && Powered) return 947;
- if (Instrument == Instrument::Bit && Note == 24 && !Powered) return 948;
- if (Instrument == Instrument::Banjo && Note == 0 && Powered) return 949;
- if (Instrument == Instrument::Banjo && Note == 0 && !Powered) return 950;
- if (Instrument == Instrument::Banjo && Note == 1 && Powered) return 951;
- if (Instrument == Instrument::Banjo && Note == 1 && !Powered) return 952;
- if (Instrument == Instrument::Banjo && Note == 2 && Powered) return 953;
- if (Instrument == Instrument::Banjo && Note == 2 && !Powered) return 954;
- if (Instrument == Instrument::Banjo && Note == 3 && Powered) return 955;
- if (Instrument == Instrument::Banjo && Note == 3 && !Powered) return 956;
- if (Instrument == Instrument::Banjo && Note == 4 && Powered) return 957;
- if (Instrument == Instrument::Banjo && Note == 4 && !Powered) return 958;
- if (Instrument == Instrument::Banjo && Note == 5 && Powered) return 959;
- if (Instrument == Instrument::Banjo && Note == 5 && !Powered) return 960;
- if (Instrument == Instrument::Banjo && Note == 6 && Powered) return 961;
- if (Instrument == Instrument::Banjo && Note == 6 && !Powered) return 962;
- if (Instrument == Instrument::Banjo && Note == 7 && Powered) return 963;
- if (Instrument == Instrument::Banjo && Note == 7 && !Powered) return 964;
- if (Instrument == Instrument::Banjo && Note == 8 && Powered) return 965;
- if (Instrument == Instrument::Banjo && Note == 8 && !Powered) return 966;
- if (Instrument == Instrument::Banjo && Note == 9 && Powered) return 967;
- if (Instrument == Instrument::Banjo && Note == 9 && !Powered) return 968;
- if (Instrument == Instrument::Banjo && Note == 10 && Powered) return 969;
- if (Instrument == Instrument::Banjo && Note == 10 && !Powered) return 970;
- if (Instrument == Instrument::Banjo && Note == 11 && Powered) return 971;
- if (Instrument == Instrument::Banjo && Note == 11 && !Powered) return 972;
- if (Instrument == Instrument::Banjo && Note == 12 && Powered) return 973;
- if (Instrument == Instrument::Banjo && Note == 12 && !Powered) return 974;
- if (Instrument == Instrument::Banjo && Note == 13 && Powered) return 975;
- if (Instrument == Instrument::Banjo && Note == 13 && !Powered) return 976;
- if (Instrument == Instrument::Banjo && Note == 14 && Powered) return 977;
- if (Instrument == Instrument::Banjo && Note == 14 && !Powered) return 978;
- if (Instrument == Instrument::Banjo && Note == 15 && Powered) return 979;
- if (Instrument == Instrument::Banjo && Note == 15 && !Powered) return 980;
- if (Instrument == Instrument::Banjo && Note == 16 && Powered) return 981;
- if (Instrument == Instrument::Banjo && Note == 16 && !Powered) return 982;
- if (Instrument == Instrument::Banjo && Note == 17 && Powered) return 983;
- if (Instrument == Instrument::Banjo && Note == 17 && !Powered) return 984;
- if (Instrument == Instrument::Banjo && Note == 18 && Powered) return 985;
- if (Instrument == Instrument::Banjo && Note == 18 && !Powered) return 986;
- if (Instrument == Instrument::Banjo && Note == 19 && Powered) return 987;
- if (Instrument == Instrument::Banjo && Note == 19 && !Powered) return 988;
- if (Instrument == Instrument::Banjo && Note == 20 && Powered) return 989;
- if (Instrument == Instrument::Banjo && Note == 20 && !Powered) return 990;
- if (Instrument == Instrument::Banjo && Note == 21 && Powered) return 991;
- if (Instrument == Instrument::Banjo && Note == 21 && !Powered) return 992;
- if (Instrument == Instrument::Banjo && Note == 22 && Powered) return 993;
- if (Instrument == Instrument::Banjo && Note == 22 && !Powered) return 994;
- if (Instrument == Instrument::Banjo && Note == 23 && Powered) return 995;
- if (Instrument == Instrument::Banjo && Note == 23 && !Powered) return 996;
- if (Instrument == Instrument::Banjo && Note == 24 && Powered) return 997;
- if (Instrument == Instrument::Banjo && Note == 24 && !Powered) return 998;
- if (Instrument == Instrument::Pling && Note == 0 && Powered) return 999;
- if (Instrument == Instrument::Pling && Note == 0 && !Powered) return 1000;
- if (Instrument == Instrument::Pling && Note == 1 && Powered) return 1001;
- if (Instrument == Instrument::Pling && Note == 1 && !Powered) return 1002;
- if (Instrument == Instrument::Pling && Note == 2 && Powered) return 1003;
- if (Instrument == Instrument::Pling && Note == 2 && !Powered) return 1004;
- if (Instrument == Instrument::Pling && Note == 3 && Powered) return 1005;
- if (Instrument == Instrument::Pling && Note == 3 && !Powered) return 1006;
- if (Instrument == Instrument::Pling && Note == 4 && Powered) return 1007;
- if (Instrument == Instrument::Pling && Note == 4 && !Powered) return 1008;
- if (Instrument == Instrument::Pling && Note == 5 && Powered) return 1009;
- if (Instrument == Instrument::Pling && Note == 5 && !Powered) return 1010;
- if (Instrument == Instrument::Pling && Note == 6 && Powered) return 1011;
- if (Instrument == Instrument::Pling && Note == 6 && !Powered) return 1012;
- if (Instrument == Instrument::Pling && Note == 7 && Powered) return 1013;
- if (Instrument == Instrument::Pling && Note == 7 && !Powered) return 1014;
- if (Instrument == Instrument::Pling && Note == 8 && Powered) return 1015;
- if (Instrument == Instrument::Pling && Note == 8 && !Powered) return 1016;
- if (Instrument == Instrument::Pling && Note == 9 && Powered) return 1017;
- if (Instrument == Instrument::Pling && Note == 9 && !Powered) return 1018;
- if (Instrument == Instrument::Pling && Note == 10 && Powered) return 1019;
- if (Instrument == Instrument::Pling && Note == 10 && !Powered) return 1020;
- if (Instrument == Instrument::Pling && Note == 11 && Powered) return 1021;
- if (Instrument == Instrument::Pling && Note == 11 && !Powered) return 1022;
- if (Instrument == Instrument::Pling && Note == 12 && Powered) return 1023;
- if (Instrument == Instrument::Pling && Note == 12 && !Powered) return 1024;
- if (Instrument == Instrument::Pling && Note == 13 && Powered) return 1025;
- if (Instrument == Instrument::Pling && Note == 13 && !Powered) return 1026;
- if (Instrument == Instrument::Pling && Note == 14 && Powered) return 1027;
- if (Instrument == Instrument::Pling && Note == 14 && !Powered) return 1028;
- if (Instrument == Instrument::Pling && Note == 15 && Powered) return 1029;
- if (Instrument == Instrument::Pling && Note == 15 && !Powered) return 1030;
- if (Instrument == Instrument::Pling && Note == 16 && Powered) return 1031;
- if (Instrument == Instrument::Pling && Note == 16 && !Powered) return 1032;
- if (Instrument == Instrument::Pling && Note == 17 && Powered) return 1033;
- if (Instrument == Instrument::Pling && Note == 17 && !Powered) return 1034;
- if (Instrument == Instrument::Pling && Note == 18 && Powered) return 1035;
- if (Instrument == Instrument::Pling && Note == 18 && !Powered) return 1036;
- if (Instrument == Instrument::Pling && Note == 19 && Powered) return 1037;
- if (Instrument == Instrument::Pling && Note == 19 && !Powered) return 1038;
- if (Instrument == Instrument::Pling && Note == 20 && Powered) return 1039;
- if (Instrument == Instrument::Pling && Note == 20 && !Powered) return 1040;
- if (Instrument == Instrument::Pling && Note == 21 && Powered) return 1041;
- if (Instrument == Instrument::Pling && Note == 21 && !Powered) return 1042;
- if (Instrument == Instrument::Pling && Note == 22 && Powered) return 1043;
- if (Instrument == Instrument::Pling && Note == 22 && !Powered) return 1044;
- if (Instrument == Instrument::Pling && Note == 23 && Powered) return 1045;
- if (Instrument == Instrument::Pling && Note == 23 && !Powered) return 1046;
- if (Instrument == Instrument::Pling && Note == 24 && Powered) return 1047;
- return 1048;
- }
- short NoteBlock();
- enum Instrument Instrument(short ID);
- unsigned char Note(short ID);
- bool Powered(short ID);
- }
- namespace OakButton
- {
- enum class Face
- {
- Floor,
- Wall,
- Ceiling
- };
- constexpr short OakButton(enum Face Face, eBlockFace Facing, bool Powered)
- {
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6346;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6347;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6348;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6349;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6350;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6351;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6352;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 6353;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6354;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6355;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6356;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6357;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6358;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6359;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6360;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 6361;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6362;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6363;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6364;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6365;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6366;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6367;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6368;
- return 6369;
- }
- short OakButton();
- enum Face Face(short ID);
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace OakDoor
- {
- enum class Half
- {
- Upper,
- Lower
- };
- enum class Hinge
- {
- Left,
- Right
- };
- constexpr short OakDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 3573;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 3574;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 3575;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 3576;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 3577;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 3578;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 3579;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 3580;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 3581;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 3582;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 3583;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 3584;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 3585;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 3586;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 3587;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 3588;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 3589;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 3590;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 3591;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 3592;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 3593;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 3594;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 3595;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 3596;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 3597;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 3598;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 3599;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 3600;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 3601;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 3602;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 3603;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 3604;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 3605;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 3606;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 3607;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 3608;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 3609;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 3610;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 3611;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 3612;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 3613;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 3614;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 3615;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 3616;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 3617;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 3618;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 3619;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 3620;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 3621;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 3622;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 3623;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 3624;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 3625;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 3626;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 3627;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 3628;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 3629;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 3630;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 3631;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 3632;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 3633;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 3634;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 3635;
- return 3636;
- }
- short OakDoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Hinge Hinge(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace OakFence
- {
- constexpr short OakFence(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 3968;
- if (East && North && South && !West) return 3969;
- if (East && North && !South && West) return 3972;
- if (East && North && !South && !West) return 3973;
- if (East && !North && South && West) return 3976;
- if (East && !North && South && !West) return 3977;
- if (East && !North && !South && West) return 3980;
- if (East && !North && !South && !West) return 3981;
- if (!East && North && South && West) return 3984;
- if (!East && North && South && !West) return 3985;
- if (!East && North && !South && West) return 3988;
- if (!East && North && !South && !West) return 3989;
- if (!East && !North && South && West) return 3992;
- if (!East && !North && South && !West) return 3993;
- if (!East && !North && !South && West) return 3996;
- return 3997;
- }
- short OakFence();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace OakFenceGate
- {
- constexpr short OakFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && Powered) return 4820;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && !Powered) return 4821;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && Powered) return 4822;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && !Powered) return 4823;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && Powered) return 4824;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && !Powered) return 4825;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && Powered) return 4826;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && !Powered) return 4827;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && Powered) return 4828;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && !Powered) return 4829;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && Powered) return 4830;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && !Powered) return 4831;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && Powered) return 4832;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && !Powered) return 4833;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && Powered) return 4834;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && !Powered) return 4835;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && Powered) return 4836;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && !Powered) return 4837;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && Powered) return 4838;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && !Powered) return 4839;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && Powered) return 4840;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && !Powered) return 4841;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && Powered) return 4842;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && !Powered) return 4843;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && Powered) return 4844;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && !Powered) return 4845;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && Powered) return 4846;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && !Powered) return 4847;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && Powered) return 4848;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && !Powered) return 4849;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && !Open && Powered) return 4850;
- return 4851;
- }
- short OakFenceGate();
- eBlockFace Facing(short ID);
- bool InWall(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace OakLeaves
- {
- constexpr short OakLeaves(unsigned char Distance, bool Persistent)
- {
- if (Distance == 1 && Persistent) return 145;
- if (Distance == 1 && !Persistent) return 146;
- if (Distance == 2 && Persistent) return 147;
- if (Distance == 2 && !Persistent) return 148;
- if (Distance == 3 && Persistent) return 149;
- if (Distance == 3 && !Persistent) return 150;
- if (Distance == 4 && Persistent) return 151;
- if (Distance == 4 && !Persistent) return 152;
- if (Distance == 5 && Persistent) return 153;
- if (Distance == 5 && !Persistent) return 154;
- if (Distance == 6 && Persistent) return 155;
- if (Distance == 6 && !Persistent) return 156;
- if (Distance == 7 && Persistent) return 157;
- return 158;
- }
- short OakLeaves();
- unsigned char Distance(short ID);
- bool Persistent(short ID);
- }
- namespace OakLog
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short OakLog(enum Axis Axis)
- {
- if (Axis == Axis::X) return 73;
- if (Axis == Axis::Y) return 74;
- return 75;
- }
- short OakLog();
- enum Axis Axis(short ID);
- }
- namespace OakPlanks
- {
- constexpr short OakPlanks()
- {
- return 15;
- }
- }
- namespace OakPressurePlate
- {
- constexpr short OakPressurePlate(bool Powered)
- {
- if (Powered) return 3873;
- return 3874;
- }
- short OakPressurePlate();
- bool Powered(short ID);
- }
- namespace OakSapling
- {
- constexpr short OakSapling(unsigned char Stage)
- {
- if (Stage == 0) return 21;
- return 22;
- }
- short OakSapling();
- unsigned char Stage(short ID);
- }
- namespace OakSign
- {
- constexpr short OakSign(unsigned char Rotation)
- {
- if (Rotation == 0) return 3382;
- if (Rotation == 1) return 3384;
- if (Rotation == 2) return 3386;
- if (Rotation == 3) return 3388;
- if (Rotation == 4) return 3390;
- if (Rotation == 5) return 3392;
- if (Rotation == 6) return 3394;
- if (Rotation == 7) return 3396;
- if (Rotation == 8) return 3398;
- if (Rotation == 9) return 3400;
- if (Rotation == 10) return 3402;
- if (Rotation == 11) return 3404;
- if (Rotation == 12) return 3406;
- if (Rotation == 13) return 3408;
- if (Rotation == 14) return 3410;
- return 3412;
- }
- short OakSign();
- unsigned char Rotation(short ID);
- }
- namespace OakSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short OakSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8301;
- if (Type == Type::Bottom) return 8303;
- return 8305;
- }
- short OakSlab();
- enum Type Type(short ID);
- }
- namespace OakStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short OakStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 1955;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 1957;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 1959;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 1961;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 1963;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 1965;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 1967;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 1969;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 1971;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 1973;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 1975;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 1977;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 1979;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 1981;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 1983;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 1985;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 1987;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 1989;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 1991;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 1993;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 1995;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 1997;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 1999;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 2001;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 2003;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 2005;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 2007;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 2009;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 2011;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 2013;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 2015;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 2017;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 2019;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 2021;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 2023;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 2025;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 2027;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 2029;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 2031;
- return 2033;
- }
- short OakStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace OakTrapdoor
- {
- enum class Half
- {
- Top,
- Bottom
- };
- constexpr short OakTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && Powered) return 4112;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && !Powered) return 4114;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && Powered) return 4116;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && !Powered) return 4118;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && Powered) return 4120;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && !Powered) return 4122;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && Powered) return 4124;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && !Powered) return 4126;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && Powered) return 4128;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && !Powered) return 4130;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && Powered) return 4132;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && !Powered) return 4134;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && Powered) return 4136;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && !Powered) return 4138;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && Powered) return 4140;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && !Powered) return 4142;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && Powered) return 4144;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && !Powered) return 4146;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && Powered) return 4148;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && !Powered) return 4150;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && Powered) return 4152;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && !Powered) return 4154;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && Powered) return 4156;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && !Powered) return 4158;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && Powered) return 4160;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && !Powered) return 4162;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && Powered) return 4164;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && !Powered) return 4166;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && Powered) return 4168;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && !Powered) return 4170;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && !Open && Powered) return 4172;
- return 4174;
- }
- short OakTrapdoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace OakWallSign
- {
- constexpr short OakWallSign(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3736;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3738;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 3740;
- return 3742;
- }
- short OakWallSign();
- eBlockFace Facing(short ID);
- }
- namespace OakWood
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short OakWood(enum Axis Axis)
- {
- if (Axis == Axis::X) return 109;
- if (Axis == Axis::Y) return 110;
- return 111;
- }
- short OakWood();
- enum Axis Axis(short ID);
- }
- namespace Observer
- {
- constexpr short Observer(eBlockFace Facing, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 9260;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 9261;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 9262;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 9263;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 9264;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 9265;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 9266;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 9267;
- if (Facing == eBlockFace::BLOCK_FACE_YP && Powered) return 9268;
- if (Facing == eBlockFace::BLOCK_FACE_YP && !Powered) return 9269;
- if (Facing == eBlockFace::BLOCK_FACE_YM && Powered) return 9270;
- return 9271;
- }
- short Observer();
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace Obsidian
- {
- constexpr short Obsidian()
- {
- return 1434;
- }
- }
- namespace OrangeBanner
- {
- constexpr short OrangeBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 7913;
- if (Rotation == 1) return 7914;
- if (Rotation == 2) return 7915;
- if (Rotation == 3) return 7916;
- if (Rotation == 4) return 7917;
- if (Rotation == 5) return 7918;
- if (Rotation == 6) return 7919;
- if (Rotation == 7) return 7920;
- if (Rotation == 8) return 7921;
- if (Rotation == 9) return 7922;
- if (Rotation == 10) return 7923;
- if (Rotation == 11) return 7924;
- if (Rotation == 12) return 7925;
- if (Rotation == 13) return 7926;
- if (Rotation == 14) return 7927;
- return 7928;
- }
- short OrangeBanner();
- unsigned char Rotation(short ID);
- }
- namespace OrangeBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short OrangeBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1065;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1066;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1067;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1068;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1069;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1070;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1071;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1072;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1073;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1074;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1075;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1076;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1077;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1078;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1079;
- return 1080;
- }
- short OrangeBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace OrangeCarpet
- {
- constexpr short OrangeCarpet()
- {
- return 7867;
- }
- }
- namespace OrangeConcrete
- {
- constexpr short OrangeConcrete()
- {
- return 9439;
- }
- }
- namespace OrangeConcretePowder
- {
- constexpr short OrangeConcretePowder()
- {
- return 9455;
- }
- }
- namespace OrangeGlazedTerracotta
- {
- constexpr short OrangeGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9378;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9379;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9380;
- return 9381;
- }
- short OrangeGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace OrangeShulkerBox
- {
- constexpr short OrangeShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9284;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9285;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9286;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9287;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9288;
- return 9289;
- }
- short OrangeShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace OrangeStainedGlass
- {
- constexpr short OrangeStainedGlass()
- {
- return 4096;
- }
- }
- namespace OrangeStainedGlassPane
- {
- constexpr short OrangeStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 6897;
- if (East && North && South && !West) return 6898;
- if (East && North && !South && West) return 6901;
- if (East && North && !South && !West) return 6902;
- if (East && !North && South && West) return 6905;
- if (East && !North && South && !West) return 6906;
- if (East && !North && !South && West) return 6909;
- if (East && !North && !South && !West) return 6910;
- if (!East && North && South && West) return 6913;
- if (!East && North && South && !West) return 6914;
- if (!East && North && !South && West) return 6917;
- if (!East && North && !South && !West) return 6918;
- if (!East && !North && South && West) return 6921;
- if (!East && !North && South && !West) return 6922;
- if (!East && !North && !South && West) return 6925;
- return 6926;
- }
- short OrangeStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace OrangeTerracotta
- {
- constexpr short OrangeTerracotta()
- {
- return 6848;
- }
- }
- namespace OrangeTulip
- {
- constexpr short OrangeTulip()
- {
- return 1418;
- }
- }
- namespace OrangeWallBanner
- {
- constexpr short OrangeWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8157;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8158;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8159;
- return 8160;
- }
- short OrangeWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace OrangeWool
- {
- constexpr short OrangeWool()
- {
- return 1385;
- }
- }
- namespace OxeyeDaisy
- {
- constexpr short OxeyeDaisy()
- {
- return 1421;
- }
- }
- namespace PackedIce
- {
- constexpr short PackedIce()
- {
- return 7884;
- }
- }
- namespace Peony
- {
- enum class Half
- {
- Upper,
- Lower
- };
- constexpr short Peony(enum Half Half)
- {
- if (Half == Half::Upper) return 7891;
- return 7892;
- }
- short Peony();
- enum Half Half(short ID);
- }
- namespace PetrifiedOakSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short PetrifiedOakSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8361;
- if (Type == Type::Bottom) return 8363;
- return 8365;
- }
- short PetrifiedOakSlab();
- enum Type Type(short ID);
- }
- namespace PinkBanner
- {
- constexpr short PinkBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 7993;
- if (Rotation == 1) return 7994;
- if (Rotation == 2) return 7995;
- if (Rotation == 3) return 7996;
- if (Rotation == 4) return 7997;
- if (Rotation == 5) return 7998;
- if (Rotation == 6) return 7999;
- if (Rotation == 7) return 8000;
- if (Rotation == 8) return 8001;
- if (Rotation == 9) return 8002;
- if (Rotation == 10) return 8003;
- if (Rotation == 11) return 8004;
- if (Rotation == 12) return 8005;
- if (Rotation == 13) return 8006;
- if (Rotation == 14) return 8007;
- return 8008;
- }
- short PinkBanner();
- unsigned char Rotation(short ID);
- }
- namespace PinkBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short PinkBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1145;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1146;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1147;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1148;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1149;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1150;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1151;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1152;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1153;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1154;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1155;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1156;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1157;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1158;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1159;
- return 1160;
- }
- short PinkBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace PinkCarpet
- {
- constexpr short PinkCarpet()
- {
- return 7872;
- }
- }
- namespace PinkConcrete
- {
- constexpr short PinkConcrete()
- {
- return 9444;
- }
- }
- namespace PinkConcretePowder
- {
- constexpr short PinkConcretePowder()
- {
- return 9460;
- }
- }
- namespace PinkGlazedTerracotta
- {
- constexpr short PinkGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9398;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9399;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9400;
- return 9401;
- }
- short PinkGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace PinkShulkerBox
- {
- constexpr short PinkShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9314;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9315;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9316;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9317;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9318;
- return 9319;
- }
- short PinkShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace PinkStainedGlass
- {
- constexpr short PinkStainedGlass()
- {
- return 4101;
- }
- }
- namespace PinkStainedGlassPane
- {
- constexpr short PinkStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 7057;
- if (East && North && South && !West) return 7058;
- if (East && North && !South && West) return 7061;
- if (East && North && !South && !West) return 7062;
- if (East && !North && South && West) return 7065;
- if (East && !North && South && !West) return 7066;
- if (East && !North && !South && West) return 7069;
- if (East && !North && !South && !West) return 7070;
- if (!East && North && South && West) return 7073;
- if (!East && North && South && !West) return 7074;
- if (!East && North && !South && West) return 7077;
- if (!East && North && !South && !West) return 7078;
- if (!East && !North && South && West) return 7081;
- if (!East && !North && South && !West) return 7082;
- if (!East && !North && !South && West) return 7085;
- return 7086;
- }
- short PinkStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace PinkTerracotta
- {
- constexpr short PinkTerracotta()
- {
- return 6853;
- }
- }
- namespace PinkTulip
- {
- constexpr short PinkTulip()
- {
- return 1420;
- }
- }
- namespace PinkWallBanner
- {
- constexpr short PinkWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8177;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8178;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8179;
- return 8180;
- }
- short PinkWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace PinkWool
- {
- constexpr short PinkWool()
- {
- return 1390;
- }
- }
- namespace Piston
- {
- constexpr short Piston(bool Extended, eBlockFace Facing)
- {
- if (Extended && Facing == eBlockFace::BLOCK_FACE_ZM) return 1348;
- if (Extended && Facing == eBlockFace::BLOCK_FACE_XP) return 1349;
- if (Extended && Facing == eBlockFace::BLOCK_FACE_ZP) return 1350;
- if (Extended && Facing == eBlockFace::BLOCK_FACE_XM) return 1351;
- if (Extended && Facing == eBlockFace::BLOCK_FACE_YP) return 1352;
- if (Extended && Facing == eBlockFace::BLOCK_FACE_YM) return 1353;
- if (!Extended && Facing == eBlockFace::BLOCK_FACE_ZM) return 1354;
- if (!Extended && Facing == eBlockFace::BLOCK_FACE_XP) return 1355;
- if (!Extended && Facing == eBlockFace::BLOCK_FACE_ZP) return 1356;
- if (!Extended && Facing == eBlockFace::BLOCK_FACE_XM) return 1357;
- if (!Extended && Facing == eBlockFace::BLOCK_FACE_YP) return 1358;
- return 1359;
- }
- short Piston();
- bool Extended(short ID);
- eBlockFace Facing(short ID);
- }
- namespace PistonHead
- {
- enum class Type
- {
- Normal,
- Sticky
- };
- constexpr short PistonHead(eBlockFace Facing, bool Short, enum Type Type)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Short && Type == Type::Normal) return 1360;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Short && Type == Type::Sticky) return 1361;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Short && Type == Type::Normal) return 1362;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Short && Type == Type::Sticky) return 1363;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Short && Type == Type::Normal) return 1364;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Short && Type == Type::Sticky) return 1365;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Short && Type == Type::Normal) return 1366;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Short && Type == Type::Sticky) return 1367;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Short && Type == Type::Normal) return 1368;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Short && Type == Type::Sticky) return 1369;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Short && Type == Type::Normal) return 1370;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Short && Type == Type::Sticky) return 1371;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Short && Type == Type::Normal) return 1372;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Short && Type == Type::Sticky) return 1373;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Short && Type == Type::Normal) return 1374;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Short && Type == Type::Sticky) return 1375;
- if (Facing == eBlockFace::BLOCK_FACE_YP && Short && Type == Type::Normal) return 1376;
- if (Facing == eBlockFace::BLOCK_FACE_YP && Short && Type == Type::Sticky) return 1377;
- if (Facing == eBlockFace::BLOCK_FACE_YP && !Short && Type == Type::Normal) return 1378;
- if (Facing == eBlockFace::BLOCK_FACE_YP && !Short && Type == Type::Sticky) return 1379;
- if (Facing == eBlockFace::BLOCK_FACE_YM && Short && Type == Type::Normal) return 1380;
- if (Facing == eBlockFace::BLOCK_FACE_YM && Short && Type == Type::Sticky) return 1381;
- if (Facing == eBlockFace::BLOCK_FACE_YM && !Short && Type == Type::Normal) return 1382;
- return 1383;
- }
- short PistonHead();
- eBlockFace Facing(short ID);
- bool Short(short ID);
- enum Type Type(short ID);
- }
- namespace PlayerHead
- {
- constexpr short PlayerHead(unsigned char Rotation)
- {
- if (Rotation == 0) return 6550;
- if (Rotation == 1) return 6551;
- if (Rotation == 2) return 6552;
- if (Rotation == 3) return 6553;
- if (Rotation == 4) return 6554;
- if (Rotation == 5) return 6555;
- if (Rotation == 6) return 6556;
- if (Rotation == 7) return 6557;
- if (Rotation == 8) return 6558;
- if (Rotation == 9) return 6559;
- if (Rotation == 10) return 6560;
- if (Rotation == 11) return 6561;
- if (Rotation == 12) return 6562;
- if (Rotation == 13) return 6563;
- if (Rotation == 14) return 6564;
- return 6565;
- }
- short PlayerHead();
- unsigned char Rotation(short ID);
- }
- namespace PlayerWallHead
- {
- constexpr short PlayerWallHead(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6566;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6567;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 6568;
- return 6569;
- }
- short PlayerWallHead();
- eBlockFace Facing(short ID);
- }
- namespace Podzol
- {
- constexpr short Podzol(bool Snowy)
- {
- if (Snowy) return 12;
- return 13;
- }
- short Podzol();
- bool Snowy(short ID);
- }
- namespace PolishedAndesite
- {
- constexpr short PolishedAndesite()
- {
- return 7;
- }
- }
- namespace PolishedAndesiteSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short PolishedAndesiteSlab(enum Type Type)
- {
- if (Type == Type::Top) return 10856;
- if (Type == Type::Bottom) return 10858;
- return 10860;
- }
- short PolishedAndesiteSlab();
- enum Type Type(short ID);
- }
- namespace PolishedAndesiteStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short PolishedAndesiteStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 10630;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 10632;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 10634;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 10636;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 10638;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 10640;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10642;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10644;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10646;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10648;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 10650;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 10652;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 10654;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 10656;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 10658;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 10660;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10662;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10664;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10666;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 10668;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 10670;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 10672;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 10674;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 10676;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 10678;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 10680;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10682;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10684;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10686;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10688;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 10690;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 10692;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 10694;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 10696;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 10698;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 10700;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10702;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10704;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10706;
- return 10708;
- }
- short PolishedAndesiteStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace PolishedBasalt
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short PolishedBasalt(enum Axis Axis)
- {
- if (Axis == Axis::X) return 4005;
- if (Axis == Axis::Y) return 4006;
- return 4007;
- }
- short PolishedBasalt();
- enum Axis Axis(short ID);
- }
- namespace PolishedBlackstone
- {
- constexpr short PolishedBlackstone()
- {
- return 16250;
- }
- }
- namespace PolishedBlackstoneBrickSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short PolishedBlackstoneBrickSlab(enum Type Type)
- {
- if (Type == Type::Top) return 16255;
- if (Type == Type::Bottom) return 16257;
- return 16259;
- }
- short PolishedBlackstoneBrickSlab();
- enum Type Type(short ID);
- }
- namespace PolishedBlackstoneBrickStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short PolishedBlackstoneBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 16261;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 16263;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 16265;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 16267;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 16269;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 16271;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 16273;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 16275;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 16277;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 16279;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 16281;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 16283;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 16285;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 16287;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 16289;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 16291;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 16293;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 16295;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 16297;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 16299;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 16301;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 16303;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 16305;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 16307;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 16309;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 16311;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 16313;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 16315;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 16317;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 16319;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 16321;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 16323;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 16325;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 16327;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 16329;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 16331;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 16333;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 16335;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 16337;
- return 16339;
- }
- short PolishedBlackstoneBrickStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace PolishedBlackstoneBrickWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short PolishedBlackstoneBrickWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 16343;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 16344;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 16345;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 16349;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 16350;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 16351;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 16355;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 16356;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 16357;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 16361;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 16362;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 16363;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 16367;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 16368;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 16369;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 16373;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 16374;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 16375;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 16379;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 16380;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 16381;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 16385;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 16386;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 16387;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 16391;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 16392;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 16393;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 16397;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 16398;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 16399;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 16403;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 16404;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 16405;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 16409;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 16410;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 16411;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 16415;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 16416;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 16417;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 16421;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 16422;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 16423;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 16427;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 16428;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 16429;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 16433;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 16434;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 16435;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 16439;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 16440;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 16441;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 16445;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 16446;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 16447;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 16451;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 16452;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 16453;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 16457;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 16458;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 16459;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 16463;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 16464;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 16465;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 16469;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 16470;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 16471;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 16475;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 16476;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 16477;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 16481;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 16482;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 16483;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 16487;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 16488;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 16489;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 16493;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 16494;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 16495;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 16499;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 16500;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 16501;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 16505;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 16506;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 16507;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 16511;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 16512;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 16513;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 16517;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 16518;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 16519;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 16523;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 16524;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 16525;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 16529;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 16530;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 16531;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 16535;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 16536;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 16537;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 16541;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 16542;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 16543;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 16547;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 16548;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 16549;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 16553;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 16554;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 16555;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 16559;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 16560;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 16561;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 16565;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 16566;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 16567;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 16571;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 16572;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 16573;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 16577;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 16578;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 16579;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 16583;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 16584;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 16585;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 16589;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 16590;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 16591;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 16595;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 16596;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 16597;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 16601;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 16602;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 16603;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 16607;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 16608;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 16609;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 16613;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 16614;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 16615;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 16619;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 16620;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 16621;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 16625;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 16626;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 16627;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 16631;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 16632;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 16633;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 16637;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 16638;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 16639;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 16643;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 16644;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 16645;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 16649;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 16650;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 16651;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 16655;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 16656;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 16657;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 16661;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 16662;
- return 16663;
- }
- short PolishedBlackstoneBrickWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace PolishedBlackstoneBricks
- {
- constexpr short PolishedBlackstoneBricks()
- {
- return 16251;
- }
- }
- namespace PolishedBlackstoneButton
- {
- enum class Face
- {
- Floor,
- Wall,
- Ceiling
- };
- constexpr short PolishedBlackstoneButton(enum Face Face, eBlockFace Facing, bool Powered)
- {
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 16753;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 16754;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 16755;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 16756;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 16757;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 16758;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 16759;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 16760;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 16761;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 16762;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 16763;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 16764;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 16765;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 16766;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 16767;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 16768;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 16769;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 16770;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 16771;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 16772;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 16773;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 16774;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 16775;
- return 16776;
- }
- short PolishedBlackstoneButton();
- enum Face Face(short ID);
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace PolishedBlackstonePressurePlate
- {
- constexpr short PolishedBlackstonePressurePlate(bool Powered)
- {
- if (Powered) return 16751;
- return 16752;
- }
- short PolishedBlackstonePressurePlate();
- bool Powered(short ID);
- }
- namespace PolishedBlackstoneSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short PolishedBlackstoneSlab(enum Type Type)
- {
- if (Type == Type::Top) return 16746;
- if (Type == Type::Bottom) return 16748;
- return 16750;
- }
- short PolishedBlackstoneSlab();
- enum Type Type(short ID);
- }
- namespace PolishedBlackstoneStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short PolishedBlackstoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 16666;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 16668;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 16670;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 16672;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 16674;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 16676;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 16678;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 16680;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 16682;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 16684;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 16686;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 16688;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 16690;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 16692;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 16694;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 16696;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 16698;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 16700;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 16702;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 16704;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 16706;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 16708;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 16710;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 16712;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 16714;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 16716;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 16718;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 16720;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 16722;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 16724;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 16726;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 16728;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 16730;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 16732;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 16734;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 16736;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 16738;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 16740;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 16742;
- return 16744;
- }
- short PolishedBlackstoneStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace PolishedBlackstoneWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short PolishedBlackstoneWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 16780;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 16781;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 16782;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 16786;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 16787;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 16788;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 16792;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 16793;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 16794;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 16798;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 16799;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 16800;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 16804;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 16805;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 16806;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 16810;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 16811;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 16812;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 16816;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 16817;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 16818;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 16822;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 16823;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 16824;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 16828;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 16829;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 16830;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 16834;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 16835;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 16836;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 16840;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 16841;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 16842;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 16846;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 16847;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 16848;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 16852;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 16853;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 16854;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 16858;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 16859;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 16860;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 16864;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 16865;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 16866;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 16870;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 16871;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 16872;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 16876;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 16877;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 16878;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 16882;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 16883;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 16884;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 16888;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 16889;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 16890;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 16894;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 16895;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 16896;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 16900;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 16901;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 16902;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 16906;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 16907;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 16908;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 16912;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 16913;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 16914;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 16918;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 16919;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 16920;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 16924;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 16925;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 16926;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 16930;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 16931;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 16932;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 16936;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 16937;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 16938;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 16942;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 16943;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 16944;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 16948;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 16949;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 16950;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 16954;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 16955;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 16956;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 16960;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 16961;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 16962;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 16966;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 16967;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 16968;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 16972;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 16973;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 16974;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 16978;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 16979;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 16980;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 16984;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 16985;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 16986;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 16990;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 16991;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 16992;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 16996;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 16997;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 16998;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 17002;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 17003;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 17004;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 17008;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 17009;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 17010;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 17014;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 17015;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 17016;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 17020;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 17021;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 17022;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 17026;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 17027;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 17028;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 17032;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 17033;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 17034;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 17038;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 17039;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 17040;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 17044;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 17045;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 17046;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 17050;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 17051;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 17052;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 17056;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 17057;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 17058;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 17062;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 17063;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 17064;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 17068;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 17069;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 17070;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 17074;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 17075;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 17076;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 17080;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 17081;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 17082;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 17086;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 17087;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 17088;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 17092;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 17093;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 17094;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 17098;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 17099;
- return 17100;
- }
- short PolishedBlackstoneWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace PolishedDiorite
- {
- constexpr short PolishedDiorite()
- {
- return 5;
- }
- }
- namespace PolishedDioriteSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short PolishedDioriteSlab(enum Type Type)
- {
- if (Type == Type::Top) return 10808;
- if (Type == Type::Bottom) return 10810;
- return 10812;
- }
- short PolishedDioriteSlab();
- enum Type Type(short ID);
- }
- namespace PolishedDioriteStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short PolishedDioriteStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 9910;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 9912;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 9914;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 9916;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 9918;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 9920;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9922;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 9924;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9926;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 9928;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 9930;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 9932;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 9934;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 9936;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 9938;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 9940;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9942;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 9944;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9946;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 9948;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 9950;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 9952;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 9954;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 9956;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 9958;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 9960;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9962;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 9964;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9966;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 9968;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 9970;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 9972;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 9974;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 9976;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 9978;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 9980;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9982;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 9984;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9986;
- return 9988;
- }
- short PolishedDioriteStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace PolishedGranite
- {
- constexpr short PolishedGranite()
- {
- return 3;
- }
- }
- namespace PolishedGraniteSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short PolishedGraniteSlab(enum Type Type)
- {
- if (Type == Type::Top) return 10790;
- if (Type == Type::Bottom) return 10792;
- return 10794;
- }
- short PolishedGraniteSlab();
- enum Type Type(short ID);
- }
- namespace PolishedGraniteStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short PolishedGraniteStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 9670;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 9672;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 9674;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 9676;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 9678;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 9680;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9682;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 9684;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9686;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 9688;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 9690;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 9692;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 9694;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 9696;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 9698;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 9700;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9702;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 9704;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9706;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 9708;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 9710;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 9712;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 9714;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 9716;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 9718;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 9720;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9722;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 9724;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9726;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 9728;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 9730;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 9732;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 9734;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 9736;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 9738;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 9740;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9742;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 9744;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9746;
- return 9748;
- }
- short PolishedGraniteStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace Poppy
- {
- constexpr short Poppy()
- {
- return 1413;
- }
- }
- namespace Potatoes
- {
- constexpr short Potatoes(unsigned char Age)
- {
- if (Age == 0) return 6338;
- if (Age == 1) return 6339;
- if (Age == 2) return 6340;
- if (Age == 3) return 6341;
- if (Age == 4) return 6342;
- if (Age == 5) return 6343;
- if (Age == 6) return 6344;
- return 6345;
- }
- short Potatoes();
- unsigned char Age(short ID);
- }
- namespace PottedAcaciaSapling
- {
- constexpr short PottedAcaciaSapling()
- {
- return 6310;
- }
- }
- namespace PottedAllium
- {
- constexpr short PottedAllium()
- {
- return 6316;
- }
- }
- namespace PottedAzureBluet
- {
- constexpr short PottedAzureBluet()
- {
- return 6317;
- }
- }
- namespace PottedBamboo
- {
- constexpr short PottedBamboo()
- {
- return 9664;
- }
- }
- namespace PottedBirchSapling
- {
- constexpr short PottedBirchSapling()
- {
- return 6308;
- }
- }
- namespace PottedBlueOrchid
- {
- constexpr short PottedBlueOrchid()
- {
- return 6315;
- }
- }
- namespace PottedBrownMushroom
- {
- constexpr short PottedBrownMushroom()
- {
- return 6327;
- }
- }
- namespace PottedCactus
- {
- constexpr short PottedCactus()
- {
- return 6329;
- }
- }
- namespace PottedCornflower
- {
- constexpr short PottedCornflower()
- {
- return 6323;
- }
- }
- namespace PottedCrimsonFungus
- {
- constexpr short PottedCrimsonFungus()
- {
- return 15834;
- }
- }
- namespace PottedCrimsonRoots
- {
- constexpr short PottedCrimsonRoots()
- {
- return 15836;
- }
- }
- namespace PottedDandelion
- {
- constexpr short PottedDandelion()
- {
- return 6313;
- }
- }
- namespace PottedDarkOakSapling
- {
- constexpr short PottedDarkOakSapling()
- {
- return 6311;
- }
- }
- namespace PottedDeadBush
- {
- constexpr short PottedDeadBush()
- {
- return 6328;
- }
- }
- namespace PottedFern
- {
- constexpr short PottedFern()
- {
- return 6312;
- }
- }
- namespace PottedJungleSapling
- {
- constexpr short PottedJungleSapling()
- {
- return 6309;
- }
- }
- namespace PottedLilyOfTheValley
- {
- constexpr short PottedLilyOfTheValley()
- {
- return 6324;
- }
- }
- namespace PottedOakSapling
- {
- constexpr short PottedOakSapling()
- {
- return 6306;
- }
- }
- namespace PottedOrangeTulip
- {
- constexpr short PottedOrangeTulip()
- {
- return 6319;
- }
- }
- namespace PottedOxeyeDaisy
- {
- constexpr short PottedOxeyeDaisy()
- {
- return 6322;
- }
- }
- namespace PottedPinkTulip
- {
- constexpr short PottedPinkTulip()
- {
- return 6321;
- }
- }
- namespace PottedPoppy
- {
- constexpr short PottedPoppy()
- {
- return 6314;
- }
- }
- namespace PottedRedMushroom
- {
- constexpr short PottedRedMushroom()
- {
- return 6326;
- }
- }
- namespace PottedRedTulip
- {
- constexpr short PottedRedTulip()
- {
- return 6318;
- }
- }
- namespace PottedSpruceSapling
- {
- constexpr short PottedSpruceSapling()
- {
- return 6307;
- }
- }
- namespace PottedWarpedFungus
- {
- constexpr short PottedWarpedFungus()
- {
- return 15835;
- }
- }
- namespace PottedWarpedRoots
- {
- constexpr short PottedWarpedRoots()
- {
- return 15837;
- }
- }
- namespace PottedWhiteTulip
- {
- constexpr short PottedWhiteTulip()
- {
- return 6320;
- }
- }
- namespace PottedWitherRose
- {
- constexpr short PottedWitherRose()
- {
- return 6325;
- }
- }
- namespace PoweredRail
- {
- enum class Shape
- {
- NorthSouth,
- EastWest,
- AscendingEast,
- AscendingWest,
- AscendingNorth,
- AscendingSouth
- };
- constexpr short PoweredRail(bool Powered, enum Shape Shape)
- {
- if (Powered && Shape == Shape::NorthSouth) return 1305;
- if (Powered && Shape == Shape::EastWest) return 1306;
- if (Powered && Shape == Shape::AscendingEast) return 1307;
- if (Powered && Shape == Shape::AscendingWest) return 1308;
- if (Powered && Shape == Shape::AscendingNorth) return 1309;
- if (Powered && Shape == Shape::AscendingSouth) return 1310;
- if (!Powered && Shape == Shape::NorthSouth) return 1311;
- if (!Powered && Shape == Shape::EastWest) return 1312;
- if (!Powered && Shape == Shape::AscendingEast) return 1313;
- if (!Powered && Shape == Shape::AscendingWest) return 1314;
- if (!Powered && Shape == Shape::AscendingNorth) return 1315;
- return 1316;
- }
- short PoweredRail();
- bool Powered(short ID);
- enum Shape Shape(short ID);
- }
- namespace Prismarine
- {
- constexpr short Prismarine()
- {
- return 7601;
- }
- }
- namespace PrismarineBrickSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short PrismarineBrickSlab(enum Type Type)
- {
- if (Type == Type::Top) return 7851;
- if (Type == Type::Bottom) return 7853;
- return 7855;
- }
- short PrismarineBrickSlab();
- enum Type Type(short ID);
- }
- namespace PrismarineBrickStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short PrismarineBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 7685;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 7687;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 7689;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 7691;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 7693;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 7695;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7697;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 7699;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7701;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 7703;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 7705;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 7707;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 7709;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 7711;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 7713;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 7715;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7717;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 7719;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7721;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 7723;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 7725;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 7727;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 7729;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 7731;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 7733;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 7735;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7737;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 7739;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7741;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 7743;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 7745;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 7747;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 7749;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 7751;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 7753;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 7755;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7757;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 7759;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7761;
- return 7763;
- }
- short PrismarineBrickStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace PrismarineBricks
- {
- constexpr short PrismarineBricks()
- {
- return 7602;
- }
- }
- namespace PrismarineSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short PrismarineSlab(enum Type Type)
- {
- if (Type == Type::Top) return 7845;
- if (Type == Type::Bottom) return 7847;
- return 7849;
- }
- short PrismarineSlab();
- enum Type Type(short ID);
- }
- namespace PrismarineStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short PrismarineStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 7605;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 7607;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 7609;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 7611;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 7613;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 7615;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7617;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 7619;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7621;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 7623;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 7625;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 7627;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 7629;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 7631;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 7633;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 7635;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7637;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 7639;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7641;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 7643;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 7645;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 7647;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 7649;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 7651;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 7653;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 7655;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7657;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 7659;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7661;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 7663;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 7665;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 7667;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 7669;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 7671;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 7673;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 7675;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 7677;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 7679;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 7681;
- return 7683;
- }
- short PrismarineStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace PrismarineWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short PrismarineWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 11194;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 11195;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 11196;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 11200;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 11201;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 11202;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 11206;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 11207;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 11208;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 11212;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 11213;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 11214;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 11218;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 11219;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 11220;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 11224;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 11225;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 11226;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 11230;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 11231;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 11232;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 11236;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 11237;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 11238;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 11242;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 11243;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 11244;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 11248;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 11249;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 11250;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 11254;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 11255;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 11256;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 11260;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 11261;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 11262;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 11266;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 11267;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 11268;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 11272;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 11273;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 11274;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 11278;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 11279;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 11280;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 11284;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 11285;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 11286;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 11290;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 11291;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 11292;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 11296;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 11297;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 11298;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 11302;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 11303;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 11304;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 11308;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 11309;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 11310;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 11314;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 11315;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 11316;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 11320;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 11321;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 11322;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 11326;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 11327;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 11328;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 11332;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 11333;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 11334;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 11338;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 11339;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 11340;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 11344;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 11345;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 11346;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 11350;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 11351;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 11352;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 11356;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 11357;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 11358;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 11362;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 11363;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 11364;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 11368;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 11369;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 11370;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 11374;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 11375;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 11376;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 11380;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 11381;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 11382;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 11386;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 11387;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 11388;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 11392;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 11393;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 11394;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 11398;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 11399;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 11400;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 11404;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 11405;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 11406;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 11410;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 11411;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 11412;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 11416;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 11417;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 11418;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 11422;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 11423;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 11424;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 11428;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 11429;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 11430;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 11434;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 11435;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 11436;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 11440;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 11441;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 11442;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 11446;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 11447;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 11448;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 11452;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 11453;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 11454;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 11458;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 11459;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 11460;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 11464;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 11465;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 11466;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 11470;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 11471;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 11472;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 11476;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 11477;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 11478;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 11482;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 11483;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 11484;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 11488;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 11489;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 11490;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 11494;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 11495;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 11496;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 11500;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 11501;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 11502;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 11506;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 11507;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 11508;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 11512;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 11513;
- return 11514;
- }
- short PrismarineWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace Pumpkin
- {
- constexpr short Pumpkin()
- {
- return 3998;
- }
- }
- namespace PumpkinStem
- {
- constexpr short PumpkinStem(unsigned char Age)
- {
- if (Age == 0) return 4772;
- if (Age == 1) return 4773;
- if (Age == 2) return 4774;
- if (Age == 3) return 4775;
- if (Age == 4) return 4776;
- if (Age == 5) return 4777;
- if (Age == 6) return 4778;
- return 4779;
- }
- short PumpkinStem();
- unsigned char Age(short ID);
- }
- namespace PurpleBanner
- {
- constexpr short PurpleBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 8057;
- if (Rotation == 1) return 8058;
- if (Rotation == 2) return 8059;
- if (Rotation == 3) return 8060;
- if (Rotation == 4) return 8061;
- if (Rotation == 5) return 8062;
- if (Rotation == 6) return 8063;
- if (Rotation == 7) return 8064;
- if (Rotation == 8) return 8065;
- if (Rotation == 9) return 8066;
- if (Rotation == 10) return 8067;
- if (Rotation == 11) return 8068;
- if (Rotation == 12) return 8069;
- if (Rotation == 13) return 8070;
- if (Rotation == 14) return 8071;
- return 8072;
- }
- short PurpleBanner();
- unsigned char Rotation(short ID);
- }
- namespace PurpleBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short PurpleBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1209;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1210;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1211;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1212;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1213;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1214;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1215;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1216;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1217;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1218;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1219;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1220;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1221;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1222;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1223;
- return 1224;
- }
- short PurpleBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace PurpleCarpet
- {
- constexpr short PurpleCarpet()
- {
- return 7876;
- }
- }
- namespace PurpleConcrete
- {
- constexpr short PurpleConcrete()
- {
- return 9448;
- }
- }
- namespace PurpleConcretePowder
- {
- constexpr short PurpleConcretePowder()
- {
- return 9464;
- }
- }
- namespace PurpleGlazedTerracotta
- {
- constexpr short PurpleGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9414;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9415;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9416;
- return 9417;
- }
- short PurpleGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace PurpleShulkerBox
- {
- constexpr short PurpleShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9338;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9339;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9340;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9341;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9342;
- return 9343;
- }
- short PurpleShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace PurpleStainedGlass
- {
- constexpr short PurpleStainedGlass()
- {
- return 4105;
- }
- }
- namespace PurpleStainedGlassPane
- {
- constexpr short PurpleStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 7185;
- if (East && North && South && !West) return 7186;
- if (East && North && !South && West) return 7189;
- if (East && North && !South && !West) return 7190;
- if (East && !North && South && West) return 7193;
- if (East && !North && South && !West) return 7194;
- if (East && !North && !South && West) return 7197;
- if (East && !North && !South && !West) return 7198;
- if (!East && North && South && West) return 7201;
- if (!East && North && South && !West) return 7202;
- if (!East && North && !South && West) return 7205;
- if (!East && North && !South && !West) return 7206;
- if (!East && !North && South && West) return 7209;
- if (!East && !North && South && !West) return 7210;
- if (!East && !North && !South && West) return 7213;
- return 7214;
- }
- short PurpleStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace PurpleTerracotta
- {
- constexpr short PurpleTerracotta()
- {
- return 6857;
- }
- }
- namespace PurpleWallBanner
- {
- constexpr short PurpleWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8193;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8194;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8195;
- return 8196;
- }
- short PurpleWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace PurpleWool
- {
- constexpr short PurpleWool()
- {
- return 1394;
- }
- }
- namespace PurpurBlock
- {
- constexpr short PurpurBlock()
- {
- return 9134;
- }
- }
- namespace PurpurPillar
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short PurpurPillar(enum Axis Axis)
- {
- if (Axis == Axis::X) return 9135;
- if (Axis == Axis::Y) return 9136;
- return 9137;
- }
- short PurpurPillar();
- enum Axis Axis(short ID);
- }
- namespace PurpurSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short PurpurSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8409;
- if (Type == Type::Bottom) return 8411;
- return 8413;
- }
- short PurpurSlab();
- enum Type Type(short ID);
- }
- namespace PurpurStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short PurpurStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 9139;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 9141;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 9143;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 9145;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 9147;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 9149;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9151;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 9153;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9155;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 9157;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 9159;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 9161;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 9163;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 9165;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 9167;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 9169;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9171;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 9173;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9175;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 9177;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 9179;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 9181;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 9183;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 9185;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 9187;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 9189;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9191;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 9193;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9195;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 9197;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 9199;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 9201;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 9203;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 9205;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 9207;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 9209;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9211;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 9213;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9215;
- return 9217;
- }
- short PurpurStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace QuartzBlock
- {
- constexpr short QuartzBlock()
- {
- return 6738;
- }
- }
- namespace QuartzBricks
- {
- constexpr short QuartzBricks()
- {
- return 17103;
- }
- }
- namespace QuartzPillar
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short QuartzPillar(enum Axis Axis)
- {
- if (Axis == Axis::X) return 6740;
- if (Axis == Axis::Y) return 6741;
- return 6742;
- }
- short QuartzPillar();
- enum Axis Axis(short ID);
- }
- namespace QuartzSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short QuartzSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8391;
- if (Type == Type::Bottom) return 8393;
- return 8395;
- }
- short QuartzSlab();
- enum Type Type(short ID);
- }
- namespace QuartzStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short QuartzStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 6744;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 6746;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 6748;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 6750;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 6752;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 6754;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 6756;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 6758;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 6760;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 6762;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 6764;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 6766;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 6768;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 6770;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 6772;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 6774;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 6776;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 6778;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 6780;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 6782;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 6784;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 6786;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 6788;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 6790;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 6792;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 6794;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 6796;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 6798;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 6800;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 6802;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 6804;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 6806;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 6808;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 6810;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 6812;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 6814;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 6816;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 6818;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 6820;
- return 6822;
- }
- short QuartzStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace Rail
- {
- enum class Shape
- {
- NorthSouth,
- EastWest,
- AscendingEast,
- AscendingWest,
- AscendingNorth,
- AscendingSouth,
- SouthEast,
- SouthWest,
- NorthWest,
- NorthEast
- };
- constexpr short Rail(enum Shape Shape)
- {
- if (Shape == Shape::NorthSouth) return 3645;
- if (Shape == Shape::EastWest) return 3646;
- if (Shape == Shape::AscendingEast) return 3647;
- if (Shape == Shape::AscendingWest) return 3648;
- if (Shape == Shape::AscendingNorth) return 3649;
- if (Shape == Shape::AscendingSouth) return 3650;
- if (Shape == Shape::SouthEast) return 3651;
- if (Shape == Shape::SouthWest) return 3652;
- if (Shape == Shape::NorthWest) return 3653;
- return 3654;
- }
- short Rail();
- enum Shape Shape(short ID);
- }
- namespace RedBanner
- {
- constexpr short RedBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 8121;
- if (Rotation == 1) return 8122;
- if (Rotation == 2) return 8123;
- if (Rotation == 3) return 8124;
- if (Rotation == 4) return 8125;
- if (Rotation == 5) return 8126;
- if (Rotation == 6) return 8127;
- if (Rotation == 7) return 8128;
- if (Rotation == 8) return 8129;
- if (Rotation == 9) return 8130;
- if (Rotation == 10) return 8131;
- if (Rotation == 11) return 8132;
- if (Rotation == 12) return 8133;
- if (Rotation == 13) return 8134;
- if (Rotation == 14) return 8135;
- return 8136;
- }
- short RedBanner();
- unsigned char Rotation(short ID);
- }
- namespace RedBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short RedBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1273;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1274;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1275;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1276;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1277;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1278;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1279;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1280;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1281;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1282;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1283;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1284;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1285;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1286;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1287;
- return 1288;
- }
- short RedBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace RedCarpet
- {
- constexpr short RedCarpet()
- {
- return 7880;
- }
- }
- namespace RedConcrete
- {
- constexpr short RedConcrete()
- {
- return 9452;
- }
- }
- namespace RedConcretePowder
- {
- constexpr short RedConcretePowder()
- {
- return 9468;
- }
- }
- namespace RedGlazedTerracotta
- {
- constexpr short RedGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9430;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9431;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9432;
- return 9433;
- }
- short RedGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace RedMushroom
- {
- constexpr short RedMushroom()
- {
- return 1426;
- }
- }
- namespace RedMushroomBlock
- {
- constexpr short RedMushroomBlock(bool Down, bool East, bool North, bool South, bool Up, bool West)
- {
- if (Down && East && North && South && Up && West) return 4569;
- if (Down && East && North && South && Up && !West) return 4570;
- if (Down && East && North && South && !Up && West) return 4571;
- if (Down && East && North && South && !Up && !West) return 4572;
- if (Down && East && North && !South && Up && West) return 4573;
- if (Down && East && North && !South && Up && !West) return 4574;
- if (Down && East && North && !South && !Up && West) return 4575;
- if (Down && East && North && !South && !Up && !West) return 4576;
- if (Down && East && !North && South && Up && West) return 4577;
- if (Down && East && !North && South && Up && !West) return 4578;
- if (Down && East && !North && South && !Up && West) return 4579;
- if (Down && East && !North && South && !Up && !West) return 4580;
- if (Down && East && !North && !South && Up && West) return 4581;
- if (Down && East && !North && !South && Up && !West) return 4582;
- if (Down && East && !North && !South && !Up && West) return 4583;
- if (Down && East && !North && !South && !Up && !West) return 4584;
- if (Down && !East && North && South && Up && West) return 4585;
- if (Down && !East && North && South && Up && !West) return 4586;
- if (Down && !East && North && South && !Up && West) return 4587;
- if (Down && !East && North && South && !Up && !West) return 4588;
- if (Down && !East && North && !South && Up && West) return 4589;
- if (Down && !East && North && !South && Up && !West) return 4590;
- if (Down && !East && North && !South && !Up && West) return 4591;
- if (Down && !East && North && !South && !Up && !West) return 4592;
- if (Down && !East && !North && South && Up && West) return 4593;
- if (Down && !East && !North && South && Up && !West) return 4594;
- if (Down && !East && !North && South && !Up && West) return 4595;
- if (Down && !East && !North && South && !Up && !West) return 4596;
- if (Down && !East && !North && !South && Up && West) return 4597;
- if (Down && !East && !North && !South && Up && !West) return 4598;
- if (Down && !East && !North && !South && !Up && West) return 4599;
- if (Down && !East && !North && !South && !Up && !West) return 4600;
- if (!Down && East && North && South && Up && West) return 4601;
- if (!Down && East && North && South && Up && !West) return 4602;
- if (!Down && East && North && South && !Up && West) return 4603;
- if (!Down && East && North && South && !Up && !West) return 4604;
- if (!Down && East && North && !South && Up && West) return 4605;
- if (!Down && East && North && !South && Up && !West) return 4606;
- if (!Down && East && North && !South && !Up && West) return 4607;
- if (!Down && East && North && !South && !Up && !West) return 4608;
- if (!Down && East && !North && South && Up && West) return 4609;
- if (!Down && East && !North && South && Up && !West) return 4610;
- if (!Down && East && !North && South && !Up && West) return 4611;
- if (!Down && East && !North && South && !Up && !West) return 4612;
- if (!Down && East && !North && !South && Up && West) return 4613;
- if (!Down && East && !North && !South && Up && !West) return 4614;
- if (!Down && East && !North && !South && !Up && West) return 4615;
- if (!Down && East && !North && !South && !Up && !West) return 4616;
- if (!Down && !East && North && South && Up && West) return 4617;
- if (!Down && !East && North && South && Up && !West) return 4618;
- if (!Down && !East && North && South && !Up && West) return 4619;
- if (!Down && !East && North && South && !Up && !West) return 4620;
- if (!Down && !East && North && !South && Up && West) return 4621;
- if (!Down && !East && North && !South && Up && !West) return 4622;
- if (!Down && !East && North && !South && !Up && West) return 4623;
- if (!Down && !East && North && !South && !Up && !West) return 4624;
- if (!Down && !East && !North && South && Up && West) return 4625;
- if (!Down && !East && !North && South && Up && !West) return 4626;
- if (!Down && !East && !North && South && !Up && West) return 4627;
- if (!Down && !East && !North && South && !Up && !West) return 4628;
- if (!Down && !East && !North && !South && Up && West) return 4629;
- if (!Down && !East && !North && !South && Up && !West) return 4630;
- if (!Down && !East && !North && !South && !Up && West) return 4631;
- return 4632;
- }
- short RedMushroomBlock();
- bool Down(short ID);
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool Up(short ID);
- bool West(short ID);
- }
- namespace RedNetherBrickSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short RedNetherBrickSlab(enum Type Type)
- {
- if (Type == Type::Top) return 10850;
- if (Type == Type::Bottom) return 10852;
- return 10854;
- }
- short RedNetherBrickSlab();
- enum Type Type(short ID);
- }
- namespace RedNetherBrickStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short RedNetherBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 10550;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 10552;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 10554;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 10556;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 10558;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 10560;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10562;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10564;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10566;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10568;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 10570;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 10572;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 10574;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 10576;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 10578;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 10580;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10582;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10584;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10586;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 10588;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 10590;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 10592;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 10594;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 10596;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 10598;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 10600;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10602;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10604;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10606;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10608;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 10610;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 10612;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 10614;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 10616;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 10618;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 10620;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10622;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10624;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10626;
- return 10628;
- }
- short RedNetherBrickStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace RedNetherBrickWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short RedNetherBrickWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 13462;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 13463;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 13464;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 13468;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 13469;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 13470;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 13474;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 13475;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 13476;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 13480;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 13481;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 13482;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 13486;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 13487;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 13488;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 13492;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 13493;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 13494;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 13498;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 13499;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 13500;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 13504;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 13505;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 13506;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 13510;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 13511;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 13512;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 13516;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 13517;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 13518;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 13522;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 13523;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 13524;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 13528;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 13529;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 13530;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 13534;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 13535;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 13536;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 13540;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 13541;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 13542;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 13546;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 13547;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 13548;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 13552;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 13553;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 13554;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 13558;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 13559;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 13560;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 13564;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 13565;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 13566;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 13570;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 13571;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 13572;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 13576;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 13577;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 13578;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 13582;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 13583;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 13584;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 13588;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 13589;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 13590;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 13594;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 13595;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 13596;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 13600;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 13601;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 13602;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 13606;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 13607;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 13608;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 13612;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 13613;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 13614;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 13618;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 13619;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 13620;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 13624;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 13625;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 13626;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 13630;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 13631;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 13632;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 13636;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 13637;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 13638;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 13642;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 13643;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 13644;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 13648;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 13649;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 13650;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 13654;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 13655;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 13656;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 13660;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 13661;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 13662;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 13666;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 13667;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 13668;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 13672;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 13673;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 13674;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 13678;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 13679;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 13680;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 13684;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 13685;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 13686;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 13690;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 13691;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 13692;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 13696;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 13697;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 13698;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 13702;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 13703;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 13704;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 13708;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 13709;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 13710;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 13714;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 13715;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 13716;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 13720;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 13721;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 13722;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 13726;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 13727;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 13728;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 13732;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 13733;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 13734;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 13738;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 13739;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 13740;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 13744;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 13745;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 13746;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 13750;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 13751;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 13752;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 13756;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 13757;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 13758;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 13762;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 13763;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 13764;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 13768;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 13769;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 13770;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 13774;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 13775;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 13776;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 13780;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 13781;
- return 13782;
- }
- short RedNetherBrickWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace RedNetherBricks
- {
- constexpr short RedNetherBricks()
- {
- return 9255;
- }
- }
- namespace RedSand
- {
- constexpr short RedSand()
- {
- return 67;
- }
- }
- namespace RedSandstone
- {
- constexpr short RedSandstone()
- {
- return 8217;
- }
- }
- namespace RedSandstoneSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short RedSandstoneSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8397;
- if (Type == Type::Bottom) return 8399;
- return 8401;
- }
- short RedSandstoneSlab();
- enum Type Type(short ID);
- }
- namespace RedSandstoneStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short RedSandstoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 8221;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 8223;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 8225;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 8227;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 8229;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 8231;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 8233;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 8235;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 8237;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 8239;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 8241;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 8243;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 8245;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 8247;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 8249;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 8251;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 8253;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 8255;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 8257;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 8259;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 8261;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 8263;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 8265;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 8267;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 8269;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 8271;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 8273;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 8275;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 8277;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 8279;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 8281;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 8283;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 8285;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 8287;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 8289;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 8291;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 8293;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 8295;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 8297;
- return 8299;
- }
- short RedSandstoneStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace RedSandstoneWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short RedSandstoneWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 11518;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 11519;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 11520;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 11524;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 11525;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 11526;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 11530;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 11531;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 11532;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 11536;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 11537;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 11538;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 11542;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 11543;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 11544;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 11548;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 11549;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 11550;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 11554;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 11555;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 11556;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 11560;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 11561;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 11562;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 11566;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 11567;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 11568;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 11572;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 11573;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 11574;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 11578;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 11579;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 11580;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 11584;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 11585;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 11586;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 11590;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 11591;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 11592;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 11596;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 11597;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 11598;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 11602;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 11603;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 11604;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 11608;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 11609;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 11610;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 11614;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 11615;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 11616;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 11620;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 11621;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 11622;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 11626;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 11627;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 11628;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 11632;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 11633;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 11634;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 11638;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 11639;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 11640;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 11644;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 11645;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 11646;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 11650;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 11651;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 11652;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 11656;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 11657;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 11658;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 11662;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 11663;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 11664;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 11668;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 11669;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 11670;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 11674;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 11675;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 11676;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 11680;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 11681;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 11682;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 11686;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 11687;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 11688;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 11692;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 11693;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 11694;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 11698;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 11699;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 11700;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 11704;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 11705;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 11706;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 11710;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 11711;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 11712;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 11716;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 11717;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 11718;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 11722;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 11723;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 11724;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 11728;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 11729;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 11730;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 11734;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 11735;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 11736;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 11740;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 11741;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 11742;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 11746;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 11747;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 11748;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 11752;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 11753;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 11754;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 11758;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 11759;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 11760;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 11764;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 11765;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 11766;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 11770;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 11771;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 11772;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 11776;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 11777;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 11778;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 11782;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 11783;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 11784;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 11788;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 11789;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 11790;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 11794;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 11795;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 11796;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 11800;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 11801;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 11802;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 11806;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 11807;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 11808;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 11812;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 11813;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 11814;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 11818;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 11819;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 11820;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 11824;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 11825;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 11826;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 11830;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 11831;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 11832;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 11836;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 11837;
- return 11838;
- }
- short RedSandstoneWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace RedShulkerBox
- {
- constexpr short RedShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9362;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9363;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9364;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9365;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9366;
- return 9367;
- }
- short RedShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace RedStainedGlass
- {
- constexpr short RedStainedGlass()
- {
- return 4109;
- }
- }
- namespace RedStainedGlassPane
- {
- constexpr short RedStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 7313;
- if (East && North && South && !West) return 7314;
- if (East && North && !South && West) return 7317;
- if (East && North && !South && !West) return 7318;
- if (East && !North && South && West) return 7321;
- if (East && !North && South && !West) return 7322;
- if (East && !North && !South && West) return 7325;
- if (East && !North && !South && !West) return 7326;
- if (!East && North && South && West) return 7329;
- if (!East && North && South && !West) return 7330;
- if (!East && North && !South && West) return 7333;
- if (!East && North && !South && !West) return 7334;
- if (!East && !North && South && West) return 7337;
- if (!East && !North && South && !West) return 7338;
- if (!East && !North && !South && West) return 7341;
- return 7342;
- }
- short RedStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace RedTerracotta
- {
- constexpr short RedTerracotta()
- {
- return 6861;
- }
- }
- namespace RedTulip
- {
- constexpr short RedTulip()
- {
- return 1417;
- }
- }
- namespace RedWallBanner
- {
- constexpr short RedWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8209;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8210;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8211;
- return 8212;
- }
- short RedWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace RedWool
- {
- constexpr short RedWool()
- {
- return 1398;
- }
- }
- namespace RedstoneBlock
- {
- constexpr short RedstoneBlock()
- {
- return 6726;
- }
- }
- namespace RedstoneLamp
- {
- constexpr short RedstoneLamp(bool Lit)
- {
- if (Lit) return 5156;
- return 5157;
- }
- short RedstoneLamp();
- bool Lit(short ID);
- }
- namespace RedstoneOre
- {
- constexpr short RedstoneOre(bool Lit)
- {
- if (Lit) return 3885;
- return 3886;
- }
- short RedstoneOre();
- bool Lit(short ID);
- }
- namespace RedstoneTorch
- {
- constexpr short RedstoneTorch(bool Lit)
- {
- if (Lit) return 3887;
- return 3888;
- }
- short RedstoneTorch();
- bool Lit(short ID);
- }
- namespace RedstoneWallTorch
- {
- constexpr short RedstoneWallTorch(eBlockFace Facing, bool Lit)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Lit) return 3889;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Lit) return 3890;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Lit) return 3891;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Lit) return 3892;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Lit) return 3893;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Lit) return 3894;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Lit) return 3895;
- return 3896;
- }
- short RedstoneWallTorch();
- eBlockFace Facing(short ID);
- bool Lit(short ID);
- }
- namespace RedstoneWire
- {
- enum class East
- {
- Up,
- Side,
- None
- };
- enum class North
- {
- Up,
- Side,
- None
- };
- enum class South
- {
- Up,
- Side,
- None
- };
- enum class West
- {
- Up,
- Side,
- None
- };
- constexpr short RedstoneWire(enum East East, enum North North, unsigned char Power, enum South South, enum West West)
- {
- if (East == East::Up && North == North::Up && Power == 0 && South == South::Up && West == West::Up) return 2058;
- if (East == East::Up && North == North::Up && Power == 0 && South == South::Up && West == West::Side) return 2059;
- if (East == East::Up && North == North::Up && Power == 0 && South == South::Up && West == West::None) return 2060;
- if (East == East::Up && North == North::Up && Power == 0 && South == South::Side && West == West::Up) return 2061;
- if (East == East::Up && North == North::Up && Power == 0 && South == South::Side && West == West::Side) return 2062;
- if (East == East::Up && North == North::Up && Power == 0 && South == South::Side && West == West::None) return 2063;
- if (East == East::Up && North == North::Up && Power == 0 && South == South::None && West == West::Up) return 2064;
- if (East == East::Up && North == North::Up && Power == 0 && South == South::None && West == West::Side) return 2065;
- if (East == East::Up && North == North::Up && Power == 0 && South == South::None && West == West::None) return 2066;
- if (East == East::Up && North == North::Up && Power == 1 && South == South::Up && West == West::Up) return 2067;
- if (East == East::Up && North == North::Up && Power == 1 && South == South::Up && West == West::Side) return 2068;
- if (East == East::Up && North == North::Up && Power == 1 && South == South::Up && West == West::None) return 2069;
- if (East == East::Up && North == North::Up && Power == 1 && South == South::Side && West == West::Up) return 2070;
- if (East == East::Up && North == North::Up && Power == 1 && South == South::Side && West == West::Side) return 2071;
- if (East == East::Up && North == North::Up && Power == 1 && South == South::Side && West == West::None) return 2072;
- if (East == East::Up && North == North::Up && Power == 1 && South == South::None && West == West::Up) return 2073;
- if (East == East::Up && North == North::Up && Power == 1 && South == South::None && West == West::Side) return 2074;
- if (East == East::Up && North == North::Up && Power == 1 && South == South::None && West == West::None) return 2075;
- if (East == East::Up && North == North::Up && Power == 2 && South == South::Up && West == West::Up) return 2076;
- if (East == East::Up && North == North::Up && Power == 2 && South == South::Up && West == West::Side) return 2077;
- if (East == East::Up && North == North::Up && Power == 2 && South == South::Up && West == West::None) return 2078;
- if (East == East::Up && North == North::Up && Power == 2 && South == South::Side && West == West::Up) return 2079;
- if (East == East::Up && North == North::Up && Power == 2 && South == South::Side && West == West::Side) return 2080;
- if (East == East::Up && North == North::Up && Power == 2 && South == South::Side && West == West::None) return 2081;
- if (East == East::Up && North == North::Up && Power == 2 && South == South::None && West == West::Up) return 2082;
- if (East == East::Up && North == North::Up && Power == 2 && South == South::None && West == West::Side) return 2083;
- if (East == East::Up && North == North::Up && Power == 2 && South == South::None && West == West::None) return 2084;
- if (East == East::Up && North == North::Up && Power == 3 && South == South::Up && West == West::Up) return 2085;
- if (East == East::Up && North == North::Up && Power == 3 && South == South::Up && West == West::Side) return 2086;
- if (East == East::Up && North == North::Up && Power == 3 && South == South::Up && West == West::None) return 2087;
- if (East == East::Up && North == North::Up && Power == 3 && South == South::Side && West == West::Up) return 2088;
- if (East == East::Up && North == North::Up && Power == 3 && South == South::Side && West == West::Side) return 2089;
- if (East == East::Up && North == North::Up && Power == 3 && South == South::Side && West == West::None) return 2090;
- if (East == East::Up && North == North::Up && Power == 3 && South == South::None && West == West::Up) return 2091;
- if (East == East::Up && North == North::Up && Power == 3 && South == South::None && West == West::Side) return 2092;
- if (East == East::Up && North == North::Up && Power == 3 && South == South::None && West == West::None) return 2093;
- if (East == East::Up && North == North::Up && Power == 4 && South == South::Up && West == West::Up) return 2094;
- if (East == East::Up && North == North::Up && Power == 4 && South == South::Up && West == West::Side) return 2095;
- if (East == East::Up && North == North::Up && Power == 4 && South == South::Up && West == West::None) return 2096;
- if (East == East::Up && North == North::Up && Power == 4 && South == South::Side && West == West::Up) return 2097;
- if (East == East::Up && North == North::Up && Power == 4 && South == South::Side && West == West::Side) return 2098;
- if (East == East::Up && North == North::Up && Power == 4 && South == South::Side && West == West::None) return 2099;
- if (East == East::Up && North == North::Up && Power == 4 && South == South::None && West == West::Up) return 2100;
- if (East == East::Up && North == North::Up && Power == 4 && South == South::None && West == West::Side) return 2101;
- if (East == East::Up && North == North::Up && Power == 4 && South == South::None && West == West::None) return 2102;
- if (East == East::Up && North == North::Up && Power == 5 && South == South::Up && West == West::Up) return 2103;
- if (East == East::Up && North == North::Up && Power == 5 && South == South::Up && West == West::Side) return 2104;
- if (East == East::Up && North == North::Up && Power == 5 && South == South::Up && West == West::None) return 2105;
- if (East == East::Up && North == North::Up && Power == 5 && South == South::Side && West == West::Up) return 2106;
- if (East == East::Up && North == North::Up && Power == 5 && South == South::Side && West == West::Side) return 2107;
- if (East == East::Up && North == North::Up && Power == 5 && South == South::Side && West == West::None) return 2108;
- if (East == East::Up && North == North::Up && Power == 5 && South == South::None && West == West::Up) return 2109;
- if (East == East::Up && North == North::Up && Power == 5 && South == South::None && West == West::Side) return 2110;
- if (East == East::Up && North == North::Up && Power == 5 && South == South::None && West == West::None) return 2111;
- if (East == East::Up && North == North::Up && Power == 6 && South == South::Up && West == West::Up) return 2112;
- if (East == East::Up && North == North::Up && Power == 6 && South == South::Up && West == West::Side) return 2113;
- if (East == East::Up && North == North::Up && Power == 6 && South == South::Up && West == West::None) return 2114;
- if (East == East::Up && North == North::Up && Power == 6 && South == South::Side && West == West::Up) return 2115;
- if (East == East::Up && North == North::Up && Power == 6 && South == South::Side && West == West::Side) return 2116;
- if (East == East::Up && North == North::Up && Power == 6 && South == South::Side && West == West::None) return 2117;
- if (East == East::Up && North == North::Up && Power == 6 && South == South::None && West == West::Up) return 2118;
- if (East == East::Up && North == North::Up && Power == 6 && South == South::None && West == West::Side) return 2119;
- if (East == East::Up && North == North::Up && Power == 6 && South == South::None && West == West::None) return 2120;
- if (East == East::Up && North == North::Up && Power == 7 && South == South::Up && West == West::Up) return 2121;
- if (East == East::Up && North == North::Up && Power == 7 && South == South::Up && West == West::Side) return 2122;
- if (East == East::Up && North == North::Up && Power == 7 && South == South::Up && West == West::None) return 2123;
- if (East == East::Up && North == North::Up && Power == 7 && South == South::Side && West == West::Up) return 2124;
- if (East == East::Up && North == North::Up && Power == 7 && South == South::Side && West == West::Side) return 2125;
- if (East == East::Up && North == North::Up && Power == 7 && South == South::Side && West == West::None) return 2126;
- if (East == East::Up && North == North::Up && Power == 7 && South == South::None && West == West::Up) return 2127;
- if (East == East::Up && North == North::Up && Power == 7 && South == South::None && West == West::Side) return 2128;
- if (East == East::Up && North == North::Up && Power == 7 && South == South::None && West == West::None) return 2129;
- if (East == East::Up && North == North::Up && Power == 8 && South == South::Up && West == West::Up) return 2130;
- if (East == East::Up && North == North::Up && Power == 8 && South == South::Up && West == West::Side) return 2131;
- if (East == East::Up && North == North::Up && Power == 8 && South == South::Up && West == West::None) return 2132;
- if (East == East::Up && North == North::Up && Power == 8 && South == South::Side && West == West::Up) return 2133;
- if (East == East::Up && North == North::Up && Power == 8 && South == South::Side && West == West::Side) return 2134;
- if (East == East::Up && North == North::Up && Power == 8 && South == South::Side && West == West::None) return 2135;
- if (East == East::Up && North == North::Up && Power == 8 && South == South::None && West == West::Up) return 2136;
- if (East == East::Up && North == North::Up && Power == 8 && South == South::None && West == West::Side) return 2137;
- if (East == East::Up && North == North::Up && Power == 8 && South == South::None && West == West::None) return 2138;
- if (East == East::Up && North == North::Up && Power == 9 && South == South::Up && West == West::Up) return 2139;
- if (East == East::Up && North == North::Up && Power == 9 && South == South::Up && West == West::Side) return 2140;
- if (East == East::Up && North == North::Up && Power == 9 && South == South::Up && West == West::None) return 2141;
- if (East == East::Up && North == North::Up && Power == 9 && South == South::Side && West == West::Up) return 2142;
- if (East == East::Up && North == North::Up && Power == 9 && South == South::Side && West == West::Side) return 2143;
- if (East == East::Up && North == North::Up && Power == 9 && South == South::Side && West == West::None) return 2144;
- if (East == East::Up && North == North::Up && Power == 9 && South == South::None && West == West::Up) return 2145;
- if (East == East::Up && North == North::Up && Power == 9 && South == South::None && West == West::Side) return 2146;
- if (East == East::Up && North == North::Up && Power == 9 && South == South::None && West == West::None) return 2147;
- if (East == East::Up && North == North::Up && Power == 10 && South == South::Up && West == West::Up) return 2148;
- if (East == East::Up && North == North::Up && Power == 10 && South == South::Up && West == West::Side) return 2149;
- if (East == East::Up && North == North::Up && Power == 10 && South == South::Up && West == West::None) return 2150;
- if (East == East::Up && North == North::Up && Power == 10 && South == South::Side && West == West::Up) return 2151;
- if (East == East::Up && North == North::Up && Power == 10 && South == South::Side && West == West::Side) return 2152;
- if (East == East::Up && North == North::Up && Power == 10 && South == South::Side && West == West::None) return 2153;
- if (East == East::Up && North == North::Up && Power == 10 && South == South::None && West == West::Up) return 2154;
- if (East == East::Up && North == North::Up && Power == 10 && South == South::None && West == West::Side) return 2155;
- if (East == East::Up && North == North::Up && Power == 10 && South == South::None && West == West::None) return 2156;
- if (East == East::Up && North == North::Up && Power == 11 && South == South::Up && West == West::Up) return 2157;
- if (East == East::Up && North == North::Up && Power == 11 && South == South::Up && West == West::Side) return 2158;
- if (East == East::Up && North == North::Up && Power == 11 && South == South::Up && West == West::None) return 2159;
- if (East == East::Up && North == North::Up && Power == 11 && South == South::Side && West == West::Up) return 2160;
- if (East == East::Up && North == North::Up && Power == 11 && South == South::Side && West == West::Side) return 2161;
- if (East == East::Up && North == North::Up && Power == 11 && South == South::Side && West == West::None) return 2162;
- if (East == East::Up && North == North::Up && Power == 11 && South == South::None && West == West::Up) return 2163;
- if (East == East::Up && North == North::Up && Power == 11 && South == South::None && West == West::Side) return 2164;
- if (East == East::Up && North == North::Up && Power == 11 && South == South::None && West == West::None) return 2165;
- if (East == East::Up && North == North::Up && Power == 12 && South == South::Up && West == West::Up) return 2166;
- if (East == East::Up && North == North::Up && Power == 12 && South == South::Up && West == West::Side) return 2167;
- if (East == East::Up && North == North::Up && Power == 12 && South == South::Up && West == West::None) return 2168;
- if (East == East::Up && North == North::Up && Power == 12 && South == South::Side && West == West::Up) return 2169;
- if (East == East::Up && North == North::Up && Power == 12 && South == South::Side && West == West::Side) return 2170;
- if (East == East::Up && North == North::Up && Power == 12 && South == South::Side && West == West::None) return 2171;
- if (East == East::Up && North == North::Up && Power == 12 && South == South::None && West == West::Up) return 2172;
- if (East == East::Up && North == North::Up && Power == 12 && South == South::None && West == West::Side) return 2173;
- if (East == East::Up && North == North::Up && Power == 12 && South == South::None && West == West::None) return 2174;
- if (East == East::Up && North == North::Up && Power == 13 && South == South::Up && West == West::Up) return 2175;
- if (East == East::Up && North == North::Up && Power == 13 && South == South::Up && West == West::Side) return 2176;
- if (East == East::Up && North == North::Up && Power == 13 && South == South::Up && West == West::None) return 2177;
- if (East == East::Up && North == North::Up && Power == 13 && South == South::Side && West == West::Up) return 2178;
- if (East == East::Up && North == North::Up && Power == 13 && South == South::Side && West == West::Side) return 2179;
- if (East == East::Up && North == North::Up && Power == 13 && South == South::Side && West == West::None) return 2180;
- if (East == East::Up && North == North::Up && Power == 13 && South == South::None && West == West::Up) return 2181;
- if (East == East::Up && North == North::Up && Power == 13 && South == South::None && West == West::Side) return 2182;
- if (East == East::Up && North == North::Up && Power == 13 && South == South::None && West == West::None) return 2183;
- if (East == East::Up && North == North::Up && Power == 14 && South == South::Up && West == West::Up) return 2184;
- if (East == East::Up && North == North::Up && Power == 14 && South == South::Up && West == West::Side) return 2185;
- if (East == East::Up && North == North::Up && Power == 14 && South == South::Up && West == West::None) return 2186;
- if (East == East::Up && North == North::Up && Power == 14 && South == South::Side && West == West::Up) return 2187;
- if (East == East::Up && North == North::Up && Power == 14 && South == South::Side && West == West::Side) return 2188;
- if (East == East::Up && North == North::Up && Power == 14 && South == South::Side && West == West::None) return 2189;
- if (East == East::Up && North == North::Up && Power == 14 && South == South::None && West == West::Up) return 2190;
- if (East == East::Up && North == North::Up && Power == 14 && South == South::None && West == West::Side) return 2191;
- if (East == East::Up && North == North::Up && Power == 14 && South == South::None && West == West::None) return 2192;
- if (East == East::Up && North == North::Up && Power == 15 && South == South::Up && West == West::Up) return 2193;
- if (East == East::Up && North == North::Up && Power == 15 && South == South::Up && West == West::Side) return 2194;
- if (East == East::Up && North == North::Up && Power == 15 && South == South::Up && West == West::None) return 2195;
- if (East == East::Up && North == North::Up && Power == 15 && South == South::Side && West == West::Up) return 2196;
- if (East == East::Up && North == North::Up && Power == 15 && South == South::Side && West == West::Side) return 2197;
- if (East == East::Up && North == North::Up && Power == 15 && South == South::Side && West == West::None) return 2198;
- if (East == East::Up && North == North::Up && Power == 15 && South == South::None && West == West::Up) return 2199;
- if (East == East::Up && North == North::Up && Power == 15 && South == South::None && West == West::Side) return 2200;
- if (East == East::Up && North == North::Up && Power == 15 && South == South::None && West == West::None) return 2201;
- if (East == East::Up && North == North::Side && Power == 0 && South == South::Up && West == West::Up) return 2202;
- if (East == East::Up && North == North::Side && Power == 0 && South == South::Up && West == West::Side) return 2203;
- if (East == East::Up && North == North::Side && Power == 0 && South == South::Up && West == West::None) return 2204;
- if (East == East::Up && North == North::Side && Power == 0 && South == South::Side && West == West::Up) return 2205;
- if (East == East::Up && North == North::Side && Power == 0 && South == South::Side && West == West::Side) return 2206;
- if (East == East::Up && North == North::Side && Power == 0 && South == South::Side && West == West::None) return 2207;
- if (East == East::Up && North == North::Side && Power == 0 && South == South::None && West == West::Up) return 2208;
- if (East == East::Up && North == North::Side && Power == 0 && South == South::None && West == West::Side) return 2209;
- if (East == East::Up && North == North::Side && Power == 0 && South == South::None && West == West::None) return 2210;
- if (East == East::Up && North == North::Side && Power == 1 && South == South::Up && West == West::Up) return 2211;
- if (East == East::Up && North == North::Side && Power == 1 && South == South::Up && West == West::Side) return 2212;
- if (East == East::Up && North == North::Side && Power == 1 && South == South::Up && West == West::None) return 2213;
- if (East == East::Up && North == North::Side && Power == 1 && South == South::Side && West == West::Up) return 2214;
- if (East == East::Up && North == North::Side && Power == 1 && South == South::Side && West == West::Side) return 2215;
- if (East == East::Up && North == North::Side && Power == 1 && South == South::Side && West == West::None) return 2216;
- if (East == East::Up && North == North::Side && Power == 1 && South == South::None && West == West::Up) return 2217;
- if (East == East::Up && North == North::Side && Power == 1 && South == South::None && West == West::Side) return 2218;
- if (East == East::Up && North == North::Side && Power == 1 && South == South::None && West == West::None) return 2219;
- if (East == East::Up && North == North::Side && Power == 2 && South == South::Up && West == West::Up) return 2220;
- if (East == East::Up && North == North::Side && Power == 2 && South == South::Up && West == West::Side) return 2221;
- if (East == East::Up && North == North::Side && Power == 2 && South == South::Up && West == West::None) return 2222;
- if (East == East::Up && North == North::Side && Power == 2 && South == South::Side && West == West::Up) return 2223;
- if (East == East::Up && North == North::Side && Power == 2 && South == South::Side && West == West::Side) return 2224;
- if (East == East::Up && North == North::Side && Power == 2 && South == South::Side && West == West::None) return 2225;
- if (East == East::Up && North == North::Side && Power == 2 && South == South::None && West == West::Up) return 2226;
- if (East == East::Up && North == North::Side && Power == 2 && South == South::None && West == West::Side) return 2227;
- if (East == East::Up && North == North::Side && Power == 2 && South == South::None && West == West::None) return 2228;
- if (East == East::Up && North == North::Side && Power == 3 && South == South::Up && West == West::Up) return 2229;
- if (East == East::Up && North == North::Side && Power == 3 && South == South::Up && West == West::Side) return 2230;
- if (East == East::Up && North == North::Side && Power == 3 && South == South::Up && West == West::None) return 2231;
- if (East == East::Up && North == North::Side && Power == 3 && South == South::Side && West == West::Up) return 2232;
- if (East == East::Up && North == North::Side && Power == 3 && South == South::Side && West == West::Side) return 2233;
- if (East == East::Up && North == North::Side && Power == 3 && South == South::Side && West == West::None) return 2234;
- if (East == East::Up && North == North::Side && Power == 3 && South == South::None && West == West::Up) return 2235;
- if (East == East::Up && North == North::Side && Power == 3 && South == South::None && West == West::Side) return 2236;
- if (East == East::Up && North == North::Side && Power == 3 && South == South::None && West == West::None) return 2237;
- if (East == East::Up && North == North::Side && Power == 4 && South == South::Up && West == West::Up) return 2238;
- if (East == East::Up && North == North::Side && Power == 4 && South == South::Up && West == West::Side) return 2239;
- if (East == East::Up && North == North::Side && Power == 4 && South == South::Up && West == West::None) return 2240;
- if (East == East::Up && North == North::Side && Power == 4 && South == South::Side && West == West::Up) return 2241;
- if (East == East::Up && North == North::Side && Power == 4 && South == South::Side && West == West::Side) return 2242;
- if (East == East::Up && North == North::Side && Power == 4 && South == South::Side && West == West::None) return 2243;
- if (East == East::Up && North == North::Side && Power == 4 && South == South::None && West == West::Up) return 2244;
- if (East == East::Up && North == North::Side && Power == 4 && South == South::None && West == West::Side) return 2245;
- if (East == East::Up && North == North::Side && Power == 4 && South == South::None && West == West::None) return 2246;
- if (East == East::Up && North == North::Side && Power == 5 && South == South::Up && West == West::Up) return 2247;
- if (East == East::Up && North == North::Side && Power == 5 && South == South::Up && West == West::Side) return 2248;
- if (East == East::Up && North == North::Side && Power == 5 && South == South::Up && West == West::None) return 2249;
- if (East == East::Up && North == North::Side && Power == 5 && South == South::Side && West == West::Up) return 2250;
- if (East == East::Up && North == North::Side && Power == 5 && South == South::Side && West == West::Side) return 2251;
- if (East == East::Up && North == North::Side && Power == 5 && South == South::Side && West == West::None) return 2252;
- if (East == East::Up && North == North::Side && Power == 5 && South == South::None && West == West::Up) return 2253;
- if (East == East::Up && North == North::Side && Power == 5 && South == South::None && West == West::Side) return 2254;
- if (East == East::Up && North == North::Side && Power == 5 && South == South::None && West == West::None) return 2255;
- if (East == East::Up && North == North::Side && Power == 6 && South == South::Up && West == West::Up) return 2256;
- if (East == East::Up && North == North::Side && Power == 6 && South == South::Up && West == West::Side) return 2257;
- if (East == East::Up && North == North::Side && Power == 6 && South == South::Up && West == West::None) return 2258;
- if (East == East::Up && North == North::Side && Power == 6 && South == South::Side && West == West::Up) return 2259;
- if (East == East::Up && North == North::Side && Power == 6 && South == South::Side && West == West::Side) return 2260;
- if (East == East::Up && North == North::Side && Power == 6 && South == South::Side && West == West::None) return 2261;
- if (East == East::Up && North == North::Side && Power == 6 && South == South::None && West == West::Up) return 2262;
- if (East == East::Up && North == North::Side && Power == 6 && South == South::None && West == West::Side) return 2263;
- if (East == East::Up && North == North::Side && Power == 6 && South == South::None && West == West::None) return 2264;
- if (East == East::Up && North == North::Side && Power == 7 && South == South::Up && West == West::Up) return 2265;
- if (East == East::Up && North == North::Side && Power == 7 && South == South::Up && West == West::Side) return 2266;
- if (East == East::Up && North == North::Side && Power == 7 && South == South::Up && West == West::None) return 2267;
- if (East == East::Up && North == North::Side && Power == 7 && South == South::Side && West == West::Up) return 2268;
- if (East == East::Up && North == North::Side && Power == 7 && South == South::Side && West == West::Side) return 2269;
- if (East == East::Up && North == North::Side && Power == 7 && South == South::Side && West == West::None) return 2270;
- if (East == East::Up && North == North::Side && Power == 7 && South == South::None && West == West::Up) return 2271;
- if (East == East::Up && North == North::Side && Power == 7 && South == South::None && West == West::Side) return 2272;
- if (East == East::Up && North == North::Side && Power == 7 && South == South::None && West == West::None) return 2273;
- if (East == East::Up && North == North::Side && Power == 8 && South == South::Up && West == West::Up) return 2274;
- if (East == East::Up && North == North::Side && Power == 8 && South == South::Up && West == West::Side) return 2275;
- if (East == East::Up && North == North::Side && Power == 8 && South == South::Up && West == West::None) return 2276;
- if (East == East::Up && North == North::Side && Power == 8 && South == South::Side && West == West::Up) return 2277;
- if (East == East::Up && North == North::Side && Power == 8 && South == South::Side && West == West::Side) return 2278;
- if (East == East::Up && North == North::Side && Power == 8 && South == South::Side && West == West::None) return 2279;
- if (East == East::Up && North == North::Side && Power == 8 && South == South::None && West == West::Up) return 2280;
- if (East == East::Up && North == North::Side && Power == 8 && South == South::None && West == West::Side) return 2281;
- if (East == East::Up && North == North::Side && Power == 8 && South == South::None && West == West::None) return 2282;
- if (East == East::Up && North == North::Side && Power == 9 && South == South::Up && West == West::Up) return 2283;
- if (East == East::Up && North == North::Side && Power == 9 && South == South::Up && West == West::Side) return 2284;
- if (East == East::Up && North == North::Side && Power == 9 && South == South::Up && West == West::None) return 2285;
- if (East == East::Up && North == North::Side && Power == 9 && South == South::Side && West == West::Up) return 2286;
- if (East == East::Up && North == North::Side && Power == 9 && South == South::Side && West == West::Side) return 2287;
- if (East == East::Up && North == North::Side && Power == 9 && South == South::Side && West == West::None) return 2288;
- if (East == East::Up && North == North::Side && Power == 9 && South == South::None && West == West::Up) return 2289;
- if (East == East::Up && North == North::Side && Power == 9 && South == South::None && West == West::Side) return 2290;
- if (East == East::Up && North == North::Side && Power == 9 && South == South::None && West == West::None) return 2291;
- if (East == East::Up && North == North::Side && Power == 10 && South == South::Up && West == West::Up) return 2292;
- if (East == East::Up && North == North::Side && Power == 10 && South == South::Up && West == West::Side) return 2293;
- if (East == East::Up && North == North::Side && Power == 10 && South == South::Up && West == West::None) return 2294;
- if (East == East::Up && North == North::Side && Power == 10 && South == South::Side && West == West::Up) return 2295;
- if (East == East::Up && North == North::Side && Power == 10 && South == South::Side && West == West::Side) return 2296;
- if (East == East::Up && North == North::Side && Power == 10 && South == South::Side && West == West::None) return 2297;
- if (East == East::Up && North == North::Side && Power == 10 && South == South::None && West == West::Up) return 2298;
- if (East == East::Up && North == North::Side && Power == 10 && South == South::None && West == West::Side) return 2299;
- if (East == East::Up && North == North::Side && Power == 10 && South == South::None && West == West::None) return 2300;
- if (East == East::Up && North == North::Side && Power == 11 && South == South::Up && West == West::Up) return 2301;
- if (East == East::Up && North == North::Side && Power == 11 && South == South::Up && West == West::Side) return 2302;
- if (East == East::Up && North == North::Side && Power == 11 && South == South::Up && West == West::None) return 2303;
- if (East == East::Up && North == North::Side && Power == 11 && South == South::Side && West == West::Up) return 2304;
- if (East == East::Up && North == North::Side && Power == 11 && South == South::Side && West == West::Side) return 2305;
- if (East == East::Up && North == North::Side && Power == 11 && South == South::Side && West == West::None) return 2306;
- if (East == East::Up && North == North::Side && Power == 11 && South == South::None && West == West::Up) return 2307;
- if (East == East::Up && North == North::Side && Power == 11 && South == South::None && West == West::Side) return 2308;
- if (East == East::Up && North == North::Side && Power == 11 && South == South::None && West == West::None) return 2309;
- if (East == East::Up && North == North::Side && Power == 12 && South == South::Up && West == West::Up) return 2310;
- if (East == East::Up && North == North::Side && Power == 12 && South == South::Up && West == West::Side) return 2311;
- if (East == East::Up && North == North::Side && Power == 12 && South == South::Up && West == West::None) return 2312;
- if (East == East::Up && North == North::Side && Power == 12 && South == South::Side && West == West::Up) return 2313;
- if (East == East::Up && North == North::Side && Power == 12 && South == South::Side && West == West::Side) return 2314;
- if (East == East::Up && North == North::Side && Power == 12 && South == South::Side && West == West::None) return 2315;
- if (East == East::Up && North == North::Side && Power == 12 && South == South::None && West == West::Up) return 2316;
- if (East == East::Up && North == North::Side && Power == 12 && South == South::None && West == West::Side) return 2317;
- if (East == East::Up && North == North::Side && Power == 12 && South == South::None && West == West::None) return 2318;
- if (East == East::Up && North == North::Side && Power == 13 && South == South::Up && West == West::Up) return 2319;
- if (East == East::Up && North == North::Side && Power == 13 && South == South::Up && West == West::Side) return 2320;
- if (East == East::Up && North == North::Side && Power == 13 && South == South::Up && West == West::None) return 2321;
- if (East == East::Up && North == North::Side && Power == 13 && South == South::Side && West == West::Up) return 2322;
- if (East == East::Up && North == North::Side && Power == 13 && South == South::Side && West == West::Side) return 2323;
- if (East == East::Up && North == North::Side && Power == 13 && South == South::Side && West == West::None) return 2324;
- if (East == East::Up && North == North::Side && Power == 13 && South == South::None && West == West::Up) return 2325;
- if (East == East::Up && North == North::Side && Power == 13 && South == South::None && West == West::Side) return 2326;
- if (East == East::Up && North == North::Side && Power == 13 && South == South::None && West == West::None) return 2327;
- if (East == East::Up && North == North::Side && Power == 14 && South == South::Up && West == West::Up) return 2328;
- if (East == East::Up && North == North::Side && Power == 14 && South == South::Up && West == West::Side) return 2329;
- if (East == East::Up && North == North::Side && Power == 14 && South == South::Up && West == West::None) return 2330;
- if (East == East::Up && North == North::Side && Power == 14 && South == South::Side && West == West::Up) return 2331;
- if (East == East::Up && North == North::Side && Power == 14 && South == South::Side && West == West::Side) return 2332;
- if (East == East::Up && North == North::Side && Power == 14 && South == South::Side && West == West::None) return 2333;
- if (East == East::Up && North == North::Side && Power == 14 && South == South::None && West == West::Up) return 2334;
- if (East == East::Up && North == North::Side && Power == 14 && South == South::None && West == West::Side) return 2335;
- if (East == East::Up && North == North::Side && Power == 14 && South == South::None && West == West::None) return 2336;
- if (East == East::Up && North == North::Side && Power == 15 && South == South::Up && West == West::Up) return 2337;
- if (East == East::Up && North == North::Side && Power == 15 && South == South::Up && West == West::Side) return 2338;
- if (East == East::Up && North == North::Side && Power == 15 && South == South::Up && West == West::None) return 2339;
- if (East == East::Up && North == North::Side && Power == 15 && South == South::Side && West == West::Up) return 2340;
- if (East == East::Up && North == North::Side && Power == 15 && South == South::Side && West == West::Side) return 2341;
- if (East == East::Up && North == North::Side && Power == 15 && South == South::Side && West == West::None) return 2342;
- if (East == East::Up && North == North::Side && Power == 15 && South == South::None && West == West::Up) return 2343;
- if (East == East::Up && North == North::Side && Power == 15 && South == South::None && West == West::Side) return 2344;
- if (East == East::Up && North == North::Side && Power == 15 && South == South::None && West == West::None) return 2345;
- if (East == East::Up && North == North::None && Power == 0 && South == South::Up && West == West::Up) return 2346;
- if (East == East::Up && North == North::None && Power == 0 && South == South::Up && West == West::Side) return 2347;
- if (East == East::Up && North == North::None && Power == 0 && South == South::Up && West == West::None) return 2348;
- if (East == East::Up && North == North::None && Power == 0 && South == South::Side && West == West::Up) return 2349;
- if (East == East::Up && North == North::None && Power == 0 && South == South::Side && West == West::Side) return 2350;
- if (East == East::Up && North == North::None && Power == 0 && South == South::Side && West == West::None) return 2351;
- if (East == East::Up && North == North::None && Power == 0 && South == South::None && West == West::Up) return 2352;
- if (East == East::Up && North == North::None && Power == 0 && South == South::None && West == West::Side) return 2353;
- if (East == East::Up && North == North::None && Power == 0 && South == South::None && West == West::None) return 2354;
- if (East == East::Up && North == North::None && Power == 1 && South == South::Up && West == West::Up) return 2355;
- if (East == East::Up && North == North::None && Power == 1 && South == South::Up && West == West::Side) return 2356;
- if (East == East::Up && North == North::None && Power == 1 && South == South::Up && West == West::None) return 2357;
- if (East == East::Up && North == North::None && Power == 1 && South == South::Side && West == West::Up) return 2358;
- if (East == East::Up && North == North::None && Power == 1 && South == South::Side && West == West::Side) return 2359;
- if (East == East::Up && North == North::None && Power == 1 && South == South::Side && West == West::None) return 2360;
- if (East == East::Up && North == North::None && Power == 1 && South == South::None && West == West::Up) return 2361;
- if (East == East::Up && North == North::None && Power == 1 && South == South::None && West == West::Side) return 2362;
- if (East == East::Up && North == North::None && Power == 1 && South == South::None && West == West::None) return 2363;
- if (East == East::Up && North == North::None && Power == 2 && South == South::Up && West == West::Up) return 2364;
- if (East == East::Up && North == North::None && Power == 2 && South == South::Up && West == West::Side) return 2365;
- if (East == East::Up && North == North::None && Power == 2 && South == South::Up && West == West::None) return 2366;
- if (East == East::Up && North == North::None && Power == 2 && South == South::Side && West == West::Up) return 2367;
- if (East == East::Up && North == North::None && Power == 2 && South == South::Side && West == West::Side) return 2368;
- if (East == East::Up && North == North::None && Power == 2 && South == South::Side && West == West::None) return 2369;
- if (East == East::Up && North == North::None && Power == 2 && South == South::None && West == West::Up) return 2370;
- if (East == East::Up && North == North::None && Power == 2 && South == South::None && West == West::Side) return 2371;
- if (East == East::Up && North == North::None && Power == 2 && South == South::None && West == West::None) return 2372;
- if (East == East::Up && North == North::None && Power == 3 && South == South::Up && West == West::Up) return 2373;
- if (East == East::Up && North == North::None && Power == 3 && South == South::Up && West == West::Side) return 2374;
- if (East == East::Up && North == North::None && Power == 3 && South == South::Up && West == West::None) return 2375;
- if (East == East::Up && North == North::None && Power == 3 && South == South::Side && West == West::Up) return 2376;
- if (East == East::Up && North == North::None && Power == 3 && South == South::Side && West == West::Side) return 2377;
- if (East == East::Up && North == North::None && Power == 3 && South == South::Side && West == West::None) return 2378;
- if (East == East::Up && North == North::None && Power == 3 && South == South::None && West == West::Up) return 2379;
- if (East == East::Up && North == North::None && Power == 3 && South == South::None && West == West::Side) return 2380;
- if (East == East::Up && North == North::None && Power == 3 && South == South::None && West == West::None) return 2381;
- if (East == East::Up && North == North::None && Power == 4 && South == South::Up && West == West::Up) return 2382;
- if (East == East::Up && North == North::None && Power == 4 && South == South::Up && West == West::Side) return 2383;
- if (East == East::Up && North == North::None && Power == 4 && South == South::Up && West == West::None) return 2384;
- if (East == East::Up && North == North::None && Power == 4 && South == South::Side && West == West::Up) return 2385;
- if (East == East::Up && North == North::None && Power == 4 && South == South::Side && West == West::Side) return 2386;
- if (East == East::Up && North == North::None && Power == 4 && South == South::Side && West == West::None) return 2387;
- if (East == East::Up && North == North::None && Power == 4 && South == South::None && West == West::Up) return 2388;
- if (East == East::Up && North == North::None && Power == 4 && South == South::None && West == West::Side) return 2389;
- if (East == East::Up && North == North::None && Power == 4 && South == South::None && West == West::None) return 2390;
- if (East == East::Up && North == North::None && Power == 5 && South == South::Up && West == West::Up) return 2391;
- if (East == East::Up && North == North::None && Power == 5 && South == South::Up && West == West::Side) return 2392;
- if (East == East::Up && North == North::None && Power == 5 && South == South::Up && West == West::None) return 2393;
- if (East == East::Up && North == North::None && Power == 5 && South == South::Side && West == West::Up) return 2394;
- if (East == East::Up && North == North::None && Power == 5 && South == South::Side && West == West::Side) return 2395;
- if (East == East::Up && North == North::None && Power == 5 && South == South::Side && West == West::None) return 2396;
- if (East == East::Up && North == North::None && Power == 5 && South == South::None && West == West::Up) return 2397;
- if (East == East::Up && North == North::None && Power == 5 && South == South::None && West == West::Side) return 2398;
- if (East == East::Up && North == North::None && Power == 5 && South == South::None && West == West::None) return 2399;
- if (East == East::Up && North == North::None && Power == 6 && South == South::Up && West == West::Up) return 2400;
- if (East == East::Up && North == North::None && Power == 6 && South == South::Up && West == West::Side) return 2401;
- if (East == East::Up && North == North::None && Power == 6 && South == South::Up && West == West::None) return 2402;
- if (East == East::Up && North == North::None && Power == 6 && South == South::Side && West == West::Up) return 2403;
- if (East == East::Up && North == North::None && Power == 6 && South == South::Side && West == West::Side) return 2404;
- if (East == East::Up && North == North::None && Power == 6 && South == South::Side && West == West::None) return 2405;
- if (East == East::Up && North == North::None && Power == 6 && South == South::None && West == West::Up) return 2406;
- if (East == East::Up && North == North::None && Power == 6 && South == South::None && West == West::Side) return 2407;
- if (East == East::Up && North == North::None && Power == 6 && South == South::None && West == West::None) return 2408;
- if (East == East::Up && North == North::None && Power == 7 && South == South::Up && West == West::Up) return 2409;
- if (East == East::Up && North == North::None && Power == 7 && South == South::Up && West == West::Side) return 2410;
- if (East == East::Up && North == North::None && Power == 7 && South == South::Up && West == West::None) return 2411;
- if (East == East::Up && North == North::None && Power == 7 && South == South::Side && West == West::Up) return 2412;
- if (East == East::Up && North == North::None && Power == 7 && South == South::Side && West == West::Side) return 2413;
- if (East == East::Up && North == North::None && Power == 7 && South == South::Side && West == West::None) return 2414;
- if (East == East::Up && North == North::None && Power == 7 && South == South::None && West == West::Up) return 2415;
- if (East == East::Up && North == North::None && Power == 7 && South == South::None && West == West::Side) return 2416;
- if (East == East::Up && North == North::None && Power == 7 && South == South::None && West == West::None) return 2417;
- if (East == East::Up && North == North::None && Power == 8 && South == South::Up && West == West::Up) return 2418;
- if (East == East::Up && North == North::None && Power == 8 && South == South::Up && West == West::Side) return 2419;
- if (East == East::Up && North == North::None && Power == 8 && South == South::Up && West == West::None) return 2420;
- if (East == East::Up && North == North::None && Power == 8 && South == South::Side && West == West::Up) return 2421;
- if (East == East::Up && North == North::None && Power == 8 && South == South::Side && West == West::Side) return 2422;
- if (East == East::Up && North == North::None && Power == 8 && South == South::Side && West == West::None) return 2423;
- if (East == East::Up && North == North::None && Power == 8 && South == South::None && West == West::Up) return 2424;
- if (East == East::Up && North == North::None && Power == 8 && South == South::None && West == West::Side) return 2425;
- if (East == East::Up && North == North::None && Power == 8 && South == South::None && West == West::None) return 2426;
- if (East == East::Up && North == North::None && Power == 9 && South == South::Up && West == West::Up) return 2427;
- if (East == East::Up && North == North::None && Power == 9 && South == South::Up && West == West::Side) return 2428;
- if (East == East::Up && North == North::None && Power == 9 && South == South::Up && West == West::None) return 2429;
- if (East == East::Up && North == North::None && Power == 9 && South == South::Side && West == West::Up) return 2430;
- if (East == East::Up && North == North::None && Power == 9 && South == South::Side && West == West::Side) return 2431;
- if (East == East::Up && North == North::None && Power == 9 && South == South::Side && West == West::None) return 2432;
- if (East == East::Up && North == North::None && Power == 9 && South == South::None && West == West::Up) return 2433;
- if (East == East::Up && North == North::None && Power == 9 && South == South::None && West == West::Side) return 2434;
- if (East == East::Up && North == North::None && Power == 9 && South == South::None && West == West::None) return 2435;
- if (East == East::Up && North == North::None && Power == 10 && South == South::Up && West == West::Up) return 2436;
- if (East == East::Up && North == North::None && Power == 10 && South == South::Up && West == West::Side) return 2437;
- if (East == East::Up && North == North::None && Power == 10 && South == South::Up && West == West::None) return 2438;
- if (East == East::Up && North == North::None && Power == 10 && South == South::Side && West == West::Up) return 2439;
- if (East == East::Up && North == North::None && Power == 10 && South == South::Side && West == West::Side) return 2440;
- if (East == East::Up && North == North::None && Power == 10 && South == South::Side && West == West::None) return 2441;
- if (East == East::Up && North == North::None && Power == 10 && South == South::None && West == West::Up) return 2442;
- if (East == East::Up && North == North::None && Power == 10 && South == South::None && West == West::Side) return 2443;
- if (East == East::Up && North == North::None && Power == 10 && South == South::None && West == West::None) return 2444;
- if (East == East::Up && North == North::None && Power == 11 && South == South::Up && West == West::Up) return 2445;
- if (East == East::Up && North == North::None && Power == 11 && South == South::Up && West == West::Side) return 2446;
- if (East == East::Up && North == North::None && Power == 11 && South == South::Up && West == West::None) return 2447;
- if (East == East::Up && North == North::None && Power == 11 && South == South::Side && West == West::Up) return 2448;
- if (East == East::Up && North == North::None && Power == 11 && South == South::Side && West == West::Side) return 2449;
- if (East == East::Up && North == North::None && Power == 11 && South == South::Side && West == West::None) return 2450;
- if (East == East::Up && North == North::None && Power == 11 && South == South::None && West == West::Up) return 2451;
- if (East == East::Up && North == North::None && Power == 11 && South == South::None && West == West::Side) return 2452;
- if (East == East::Up && North == North::None && Power == 11 && South == South::None && West == West::None) return 2453;
- if (East == East::Up && North == North::None && Power == 12 && South == South::Up && West == West::Up) return 2454;
- if (East == East::Up && North == North::None && Power == 12 && South == South::Up && West == West::Side) return 2455;
- if (East == East::Up && North == North::None && Power == 12 && South == South::Up && West == West::None) return 2456;
- if (East == East::Up && North == North::None && Power == 12 && South == South::Side && West == West::Up) return 2457;
- if (East == East::Up && North == North::None && Power == 12 && South == South::Side && West == West::Side) return 2458;
- if (East == East::Up && North == North::None && Power == 12 && South == South::Side && West == West::None) return 2459;
- if (East == East::Up && North == North::None && Power == 12 && South == South::None && West == West::Up) return 2460;
- if (East == East::Up && North == North::None && Power == 12 && South == South::None && West == West::Side) return 2461;
- if (East == East::Up && North == North::None && Power == 12 && South == South::None && West == West::None) return 2462;
- if (East == East::Up && North == North::None && Power == 13 && South == South::Up && West == West::Up) return 2463;
- if (East == East::Up && North == North::None && Power == 13 && South == South::Up && West == West::Side) return 2464;
- if (East == East::Up && North == North::None && Power == 13 && South == South::Up && West == West::None) return 2465;
- if (East == East::Up && North == North::None && Power == 13 && South == South::Side && West == West::Up) return 2466;
- if (East == East::Up && North == North::None && Power == 13 && South == South::Side && West == West::Side) return 2467;
- if (East == East::Up && North == North::None && Power == 13 && South == South::Side && West == West::None) return 2468;
- if (East == East::Up && North == North::None && Power == 13 && South == South::None && West == West::Up) return 2469;
- if (East == East::Up && North == North::None && Power == 13 && South == South::None && West == West::Side) return 2470;
- if (East == East::Up && North == North::None && Power == 13 && South == South::None && West == West::None) return 2471;
- if (East == East::Up && North == North::None && Power == 14 && South == South::Up && West == West::Up) return 2472;
- if (East == East::Up && North == North::None && Power == 14 && South == South::Up && West == West::Side) return 2473;
- if (East == East::Up && North == North::None && Power == 14 && South == South::Up && West == West::None) return 2474;
- if (East == East::Up && North == North::None && Power == 14 && South == South::Side && West == West::Up) return 2475;
- if (East == East::Up && North == North::None && Power == 14 && South == South::Side && West == West::Side) return 2476;
- if (East == East::Up && North == North::None && Power == 14 && South == South::Side && West == West::None) return 2477;
- if (East == East::Up && North == North::None && Power == 14 && South == South::None && West == West::Up) return 2478;
- if (East == East::Up && North == North::None && Power == 14 && South == South::None && West == West::Side) return 2479;
- if (East == East::Up && North == North::None && Power == 14 && South == South::None && West == West::None) return 2480;
- if (East == East::Up && North == North::None && Power == 15 && South == South::Up && West == West::Up) return 2481;
- if (East == East::Up && North == North::None && Power == 15 && South == South::Up && West == West::Side) return 2482;
- if (East == East::Up && North == North::None && Power == 15 && South == South::Up && West == West::None) return 2483;
- if (East == East::Up && North == North::None && Power == 15 && South == South::Side && West == West::Up) return 2484;
- if (East == East::Up && North == North::None && Power == 15 && South == South::Side && West == West::Side) return 2485;
- if (East == East::Up && North == North::None && Power == 15 && South == South::Side && West == West::None) return 2486;
- if (East == East::Up && North == North::None && Power == 15 && South == South::None && West == West::Up) return 2487;
- if (East == East::Up && North == North::None && Power == 15 && South == South::None && West == West::Side) return 2488;
- if (East == East::Up && North == North::None && Power == 15 && South == South::None && West == West::None) return 2489;
- if (East == East::Side && North == North::Up && Power == 0 && South == South::Up && West == West::Up) return 2490;
- if (East == East::Side && North == North::Up && Power == 0 && South == South::Up && West == West::Side) return 2491;
- if (East == East::Side && North == North::Up && Power == 0 && South == South::Up && West == West::None) return 2492;
- if (East == East::Side && North == North::Up && Power == 0 && South == South::Side && West == West::Up) return 2493;
- if (East == East::Side && North == North::Up && Power == 0 && South == South::Side && West == West::Side) return 2494;
- if (East == East::Side && North == North::Up && Power == 0 && South == South::Side && West == West::None) return 2495;
- if (East == East::Side && North == North::Up && Power == 0 && South == South::None && West == West::Up) return 2496;
- if (East == East::Side && North == North::Up && Power == 0 && South == South::None && West == West::Side) return 2497;
- if (East == East::Side && North == North::Up && Power == 0 && South == South::None && West == West::None) return 2498;
- if (East == East::Side && North == North::Up && Power == 1 && South == South::Up && West == West::Up) return 2499;
- if (East == East::Side && North == North::Up && Power == 1 && South == South::Up && West == West::Side) return 2500;
- if (East == East::Side && North == North::Up && Power == 1 && South == South::Up && West == West::None) return 2501;
- if (East == East::Side && North == North::Up && Power == 1 && South == South::Side && West == West::Up) return 2502;
- if (East == East::Side && North == North::Up && Power == 1 && South == South::Side && West == West::Side) return 2503;
- if (East == East::Side && North == North::Up && Power == 1 && South == South::Side && West == West::None) return 2504;
- if (East == East::Side && North == North::Up && Power == 1 && South == South::None && West == West::Up) return 2505;
- if (East == East::Side && North == North::Up && Power == 1 && South == South::None && West == West::Side) return 2506;
- if (East == East::Side && North == North::Up && Power == 1 && South == South::None && West == West::None) return 2507;
- if (East == East::Side && North == North::Up && Power == 2 && South == South::Up && West == West::Up) return 2508;
- if (East == East::Side && North == North::Up && Power == 2 && South == South::Up && West == West::Side) return 2509;
- if (East == East::Side && North == North::Up && Power == 2 && South == South::Up && West == West::None) return 2510;
- if (East == East::Side && North == North::Up && Power == 2 && South == South::Side && West == West::Up) return 2511;
- if (East == East::Side && North == North::Up && Power == 2 && South == South::Side && West == West::Side) return 2512;
- if (East == East::Side && North == North::Up && Power == 2 && South == South::Side && West == West::None) return 2513;
- if (East == East::Side && North == North::Up && Power == 2 && South == South::None && West == West::Up) return 2514;
- if (East == East::Side && North == North::Up && Power == 2 && South == South::None && West == West::Side) return 2515;
- if (East == East::Side && North == North::Up && Power == 2 && South == South::None && West == West::None) return 2516;
- if (East == East::Side && North == North::Up && Power == 3 && South == South::Up && West == West::Up) return 2517;
- if (East == East::Side && North == North::Up && Power == 3 && South == South::Up && West == West::Side) return 2518;
- if (East == East::Side && North == North::Up && Power == 3 && South == South::Up && West == West::None) return 2519;
- if (East == East::Side && North == North::Up && Power == 3 && South == South::Side && West == West::Up) return 2520;
- if (East == East::Side && North == North::Up && Power == 3 && South == South::Side && West == West::Side) return 2521;
- if (East == East::Side && North == North::Up && Power == 3 && South == South::Side && West == West::None) return 2522;
- if (East == East::Side && North == North::Up && Power == 3 && South == South::None && West == West::Up) return 2523;
- if (East == East::Side && North == North::Up && Power == 3 && South == South::None && West == West::Side) return 2524;
- if (East == East::Side && North == North::Up && Power == 3 && South == South::None && West == West::None) return 2525;
- if (East == East::Side && North == North::Up && Power == 4 && South == South::Up && West == West::Up) return 2526;
- if (East == East::Side && North == North::Up && Power == 4 && South == South::Up && West == West::Side) return 2527;
- if (East == East::Side && North == North::Up && Power == 4 && South == South::Up && West == West::None) return 2528;
- if (East == East::Side && North == North::Up && Power == 4 && South == South::Side && West == West::Up) return 2529;
- if (East == East::Side && North == North::Up && Power == 4 && South == South::Side && West == West::Side) return 2530;
- if (East == East::Side && North == North::Up && Power == 4 && South == South::Side && West == West::None) return 2531;
- if (East == East::Side && North == North::Up && Power == 4 && South == South::None && West == West::Up) return 2532;
- if (East == East::Side && North == North::Up && Power == 4 && South == South::None && West == West::Side) return 2533;
- if (East == East::Side && North == North::Up && Power == 4 && South == South::None && West == West::None) return 2534;
- if (East == East::Side && North == North::Up && Power == 5 && South == South::Up && West == West::Up) return 2535;
- if (East == East::Side && North == North::Up && Power == 5 && South == South::Up && West == West::Side) return 2536;
- if (East == East::Side && North == North::Up && Power == 5 && South == South::Up && West == West::None) return 2537;
- if (East == East::Side && North == North::Up && Power == 5 && South == South::Side && West == West::Up) return 2538;
- if (East == East::Side && North == North::Up && Power == 5 && South == South::Side && West == West::Side) return 2539;
- if (East == East::Side && North == North::Up && Power == 5 && South == South::Side && West == West::None) return 2540;
- if (East == East::Side && North == North::Up && Power == 5 && South == South::None && West == West::Up) return 2541;
- if (East == East::Side && North == North::Up && Power == 5 && South == South::None && West == West::Side) return 2542;
- if (East == East::Side && North == North::Up && Power == 5 && South == South::None && West == West::None) return 2543;
- if (East == East::Side && North == North::Up && Power == 6 && South == South::Up && West == West::Up) return 2544;
- if (East == East::Side && North == North::Up && Power == 6 && South == South::Up && West == West::Side) return 2545;
- if (East == East::Side && North == North::Up && Power == 6 && South == South::Up && West == West::None) return 2546;
- if (East == East::Side && North == North::Up && Power == 6 && South == South::Side && West == West::Up) return 2547;
- if (East == East::Side && North == North::Up && Power == 6 && South == South::Side && West == West::Side) return 2548;
- if (East == East::Side && North == North::Up && Power == 6 && South == South::Side && West == West::None) return 2549;
- if (East == East::Side && North == North::Up && Power == 6 && South == South::None && West == West::Up) return 2550;
- if (East == East::Side && North == North::Up && Power == 6 && South == South::None && West == West::Side) return 2551;
- if (East == East::Side && North == North::Up && Power == 6 && South == South::None && West == West::None) return 2552;
- if (East == East::Side && North == North::Up && Power == 7 && South == South::Up && West == West::Up) return 2553;
- if (East == East::Side && North == North::Up && Power == 7 && South == South::Up && West == West::Side) return 2554;
- if (East == East::Side && North == North::Up && Power == 7 && South == South::Up && West == West::None) return 2555;
- if (East == East::Side && North == North::Up && Power == 7 && South == South::Side && West == West::Up) return 2556;
- if (East == East::Side && North == North::Up && Power == 7 && South == South::Side && West == West::Side) return 2557;
- if (East == East::Side && North == North::Up && Power == 7 && South == South::Side && West == West::None) return 2558;
- if (East == East::Side && North == North::Up && Power == 7 && South == South::None && West == West::Up) return 2559;
- if (East == East::Side && North == North::Up && Power == 7 && South == South::None && West == West::Side) return 2560;
- if (East == East::Side && North == North::Up && Power == 7 && South == South::None && West == West::None) return 2561;
- if (East == East::Side && North == North::Up && Power == 8 && South == South::Up && West == West::Up) return 2562;
- if (East == East::Side && North == North::Up && Power == 8 && South == South::Up && West == West::Side) return 2563;
- if (East == East::Side && North == North::Up && Power == 8 && South == South::Up && West == West::None) return 2564;
- if (East == East::Side && North == North::Up && Power == 8 && South == South::Side && West == West::Up) return 2565;
- if (East == East::Side && North == North::Up && Power == 8 && South == South::Side && West == West::Side) return 2566;
- if (East == East::Side && North == North::Up && Power == 8 && South == South::Side && West == West::None) return 2567;
- if (East == East::Side && North == North::Up && Power == 8 && South == South::None && West == West::Up) return 2568;
- if (East == East::Side && North == North::Up && Power == 8 && South == South::None && West == West::Side) return 2569;
- if (East == East::Side && North == North::Up && Power == 8 && South == South::None && West == West::None) return 2570;
- if (East == East::Side && North == North::Up && Power == 9 && South == South::Up && West == West::Up) return 2571;
- if (East == East::Side && North == North::Up && Power == 9 && South == South::Up && West == West::Side) return 2572;
- if (East == East::Side && North == North::Up && Power == 9 && South == South::Up && West == West::None) return 2573;
- if (East == East::Side && North == North::Up && Power == 9 && South == South::Side && West == West::Up) return 2574;
- if (East == East::Side && North == North::Up && Power == 9 && South == South::Side && West == West::Side) return 2575;
- if (East == East::Side && North == North::Up && Power == 9 && South == South::Side && West == West::None) return 2576;
- if (East == East::Side && North == North::Up && Power == 9 && South == South::None && West == West::Up) return 2577;
- if (East == East::Side && North == North::Up && Power == 9 && South == South::None && West == West::Side) return 2578;
- if (East == East::Side && North == North::Up && Power == 9 && South == South::None && West == West::None) return 2579;
- if (East == East::Side && North == North::Up && Power == 10 && South == South::Up && West == West::Up) return 2580;
- if (East == East::Side && North == North::Up && Power == 10 && South == South::Up && West == West::Side) return 2581;
- if (East == East::Side && North == North::Up && Power == 10 && South == South::Up && West == West::None) return 2582;
- if (East == East::Side && North == North::Up && Power == 10 && South == South::Side && West == West::Up) return 2583;
- if (East == East::Side && North == North::Up && Power == 10 && South == South::Side && West == West::Side) return 2584;
- if (East == East::Side && North == North::Up && Power == 10 && South == South::Side && West == West::None) return 2585;
- if (East == East::Side && North == North::Up && Power == 10 && South == South::None && West == West::Up) return 2586;
- if (East == East::Side && North == North::Up && Power == 10 && South == South::None && West == West::Side) return 2587;
- if (East == East::Side && North == North::Up && Power == 10 && South == South::None && West == West::None) return 2588;
- if (East == East::Side && North == North::Up && Power == 11 && South == South::Up && West == West::Up) return 2589;
- if (East == East::Side && North == North::Up && Power == 11 && South == South::Up && West == West::Side) return 2590;
- if (East == East::Side && North == North::Up && Power == 11 && South == South::Up && West == West::None) return 2591;
- if (East == East::Side && North == North::Up && Power == 11 && South == South::Side && West == West::Up) return 2592;
- if (East == East::Side && North == North::Up && Power == 11 && South == South::Side && West == West::Side) return 2593;
- if (East == East::Side && North == North::Up && Power == 11 && South == South::Side && West == West::None) return 2594;
- if (East == East::Side && North == North::Up && Power == 11 && South == South::None && West == West::Up) return 2595;
- if (East == East::Side && North == North::Up && Power == 11 && South == South::None && West == West::Side) return 2596;
- if (East == East::Side && North == North::Up && Power == 11 && South == South::None && West == West::None) return 2597;
- if (East == East::Side && North == North::Up && Power == 12 && South == South::Up && West == West::Up) return 2598;
- if (East == East::Side && North == North::Up && Power == 12 && South == South::Up && West == West::Side) return 2599;
- if (East == East::Side && North == North::Up && Power == 12 && South == South::Up && West == West::None) return 2600;
- if (East == East::Side && North == North::Up && Power == 12 && South == South::Side && West == West::Up) return 2601;
- if (East == East::Side && North == North::Up && Power == 12 && South == South::Side && West == West::Side) return 2602;
- if (East == East::Side && North == North::Up && Power == 12 && South == South::Side && West == West::None) return 2603;
- if (East == East::Side && North == North::Up && Power == 12 && South == South::None && West == West::Up) return 2604;
- if (East == East::Side && North == North::Up && Power == 12 && South == South::None && West == West::Side) return 2605;
- if (East == East::Side && North == North::Up && Power == 12 && South == South::None && West == West::None) return 2606;
- if (East == East::Side && North == North::Up && Power == 13 && South == South::Up && West == West::Up) return 2607;
- if (East == East::Side && North == North::Up && Power == 13 && South == South::Up && West == West::Side) return 2608;
- if (East == East::Side && North == North::Up && Power == 13 && South == South::Up && West == West::None) return 2609;
- if (East == East::Side && North == North::Up && Power == 13 && South == South::Side && West == West::Up) return 2610;
- if (East == East::Side && North == North::Up && Power == 13 && South == South::Side && West == West::Side) return 2611;
- if (East == East::Side && North == North::Up && Power == 13 && South == South::Side && West == West::None) return 2612;
- if (East == East::Side && North == North::Up && Power == 13 && South == South::None && West == West::Up) return 2613;
- if (East == East::Side && North == North::Up && Power == 13 && South == South::None && West == West::Side) return 2614;
- if (East == East::Side && North == North::Up && Power == 13 && South == South::None && West == West::None) return 2615;
- if (East == East::Side && North == North::Up && Power == 14 && South == South::Up && West == West::Up) return 2616;
- if (East == East::Side && North == North::Up && Power == 14 && South == South::Up && West == West::Side) return 2617;
- if (East == East::Side && North == North::Up && Power == 14 && South == South::Up && West == West::None) return 2618;
- if (East == East::Side && North == North::Up && Power == 14 && South == South::Side && West == West::Up) return 2619;
- if (East == East::Side && North == North::Up && Power == 14 && South == South::Side && West == West::Side) return 2620;
- if (East == East::Side && North == North::Up && Power == 14 && South == South::Side && West == West::None) return 2621;
- if (East == East::Side && North == North::Up && Power == 14 && South == South::None && West == West::Up) return 2622;
- if (East == East::Side && North == North::Up && Power == 14 && South == South::None && West == West::Side) return 2623;
- if (East == East::Side && North == North::Up && Power == 14 && South == South::None && West == West::None) return 2624;
- if (East == East::Side && North == North::Up && Power == 15 && South == South::Up && West == West::Up) return 2625;
- if (East == East::Side && North == North::Up && Power == 15 && South == South::Up && West == West::Side) return 2626;
- if (East == East::Side && North == North::Up && Power == 15 && South == South::Up && West == West::None) return 2627;
- if (East == East::Side && North == North::Up && Power == 15 && South == South::Side && West == West::Up) return 2628;
- if (East == East::Side && North == North::Up && Power == 15 && South == South::Side && West == West::Side) return 2629;
- if (East == East::Side && North == North::Up && Power == 15 && South == South::Side && West == West::None) return 2630;
- if (East == East::Side && North == North::Up && Power == 15 && South == South::None && West == West::Up) return 2631;
- if (East == East::Side && North == North::Up && Power == 15 && South == South::None && West == West::Side) return 2632;
- if (East == East::Side && North == North::Up && Power == 15 && South == South::None && West == West::None) return 2633;
- if (East == East::Side && North == North::Side && Power == 0 && South == South::Up && West == West::Up) return 2634;
- if (East == East::Side && North == North::Side && Power == 0 && South == South::Up && West == West::Side) return 2635;
- if (East == East::Side && North == North::Side && Power == 0 && South == South::Up && West == West::None) return 2636;
- if (East == East::Side && North == North::Side && Power == 0 && South == South::Side && West == West::Up) return 2637;
- if (East == East::Side && North == North::Side && Power == 0 && South == South::Side && West == West::Side) return 2638;
- if (East == East::Side && North == North::Side && Power == 0 && South == South::Side && West == West::None) return 2639;
- if (East == East::Side && North == North::Side && Power == 0 && South == South::None && West == West::Up) return 2640;
- if (East == East::Side && North == North::Side && Power == 0 && South == South::None && West == West::Side) return 2641;
- if (East == East::Side && North == North::Side && Power == 0 && South == South::None && West == West::None) return 2642;
- if (East == East::Side && North == North::Side && Power == 1 && South == South::Up && West == West::Up) return 2643;
- if (East == East::Side && North == North::Side && Power == 1 && South == South::Up && West == West::Side) return 2644;
- if (East == East::Side && North == North::Side && Power == 1 && South == South::Up && West == West::None) return 2645;
- if (East == East::Side && North == North::Side && Power == 1 && South == South::Side && West == West::Up) return 2646;
- if (East == East::Side && North == North::Side && Power == 1 && South == South::Side && West == West::Side) return 2647;
- if (East == East::Side && North == North::Side && Power == 1 && South == South::Side && West == West::None) return 2648;
- if (East == East::Side && North == North::Side && Power == 1 && South == South::None && West == West::Up) return 2649;
- if (East == East::Side && North == North::Side && Power == 1 && South == South::None && West == West::Side) return 2650;
- if (East == East::Side && North == North::Side && Power == 1 && South == South::None && West == West::None) return 2651;
- if (East == East::Side && North == North::Side && Power == 2 && South == South::Up && West == West::Up) return 2652;
- if (East == East::Side && North == North::Side && Power == 2 && South == South::Up && West == West::Side) return 2653;
- if (East == East::Side && North == North::Side && Power == 2 && South == South::Up && West == West::None) return 2654;
- if (East == East::Side && North == North::Side && Power == 2 && South == South::Side && West == West::Up) return 2655;
- if (East == East::Side && North == North::Side && Power == 2 && South == South::Side && West == West::Side) return 2656;
- if (East == East::Side && North == North::Side && Power == 2 && South == South::Side && West == West::None) return 2657;
- if (East == East::Side && North == North::Side && Power == 2 && South == South::None && West == West::Up) return 2658;
- if (East == East::Side && North == North::Side && Power == 2 && South == South::None && West == West::Side) return 2659;
- if (East == East::Side && North == North::Side && Power == 2 && South == South::None && West == West::None) return 2660;
- if (East == East::Side && North == North::Side && Power == 3 && South == South::Up && West == West::Up) return 2661;
- if (East == East::Side && North == North::Side && Power == 3 && South == South::Up && West == West::Side) return 2662;
- if (East == East::Side && North == North::Side && Power == 3 && South == South::Up && West == West::None) return 2663;
- if (East == East::Side && North == North::Side && Power == 3 && South == South::Side && West == West::Up) return 2664;
- if (East == East::Side && North == North::Side && Power == 3 && South == South::Side && West == West::Side) return 2665;
- if (East == East::Side && North == North::Side && Power == 3 && South == South::Side && West == West::None) return 2666;
- if (East == East::Side && North == North::Side && Power == 3 && South == South::None && West == West::Up) return 2667;
- if (East == East::Side && North == North::Side && Power == 3 && South == South::None && West == West::Side) return 2668;
- if (East == East::Side && North == North::Side && Power == 3 && South == South::None && West == West::None) return 2669;
- if (East == East::Side && North == North::Side && Power == 4 && South == South::Up && West == West::Up) return 2670;
- if (East == East::Side && North == North::Side && Power == 4 && South == South::Up && West == West::Side) return 2671;
- if (East == East::Side && North == North::Side && Power == 4 && South == South::Up && West == West::None) return 2672;
- if (East == East::Side && North == North::Side && Power == 4 && South == South::Side && West == West::Up) return 2673;
- if (East == East::Side && North == North::Side && Power == 4 && South == South::Side && West == West::Side) return 2674;
- if (East == East::Side && North == North::Side && Power == 4 && South == South::Side && West == West::None) return 2675;
- if (East == East::Side && North == North::Side && Power == 4 && South == South::None && West == West::Up) return 2676;
- if (East == East::Side && North == North::Side && Power == 4 && South == South::None && West == West::Side) return 2677;
- if (East == East::Side && North == North::Side && Power == 4 && South == South::None && West == West::None) return 2678;
- if (East == East::Side && North == North::Side && Power == 5 && South == South::Up && West == West::Up) return 2679;
- if (East == East::Side && North == North::Side && Power == 5 && South == South::Up && West == West::Side) return 2680;
- if (East == East::Side && North == North::Side && Power == 5 && South == South::Up && West == West::None) return 2681;
- if (East == East::Side && North == North::Side && Power == 5 && South == South::Side && West == West::Up) return 2682;
- if (East == East::Side && North == North::Side && Power == 5 && South == South::Side && West == West::Side) return 2683;
- if (East == East::Side && North == North::Side && Power == 5 && South == South::Side && West == West::None) return 2684;
- if (East == East::Side && North == North::Side && Power == 5 && South == South::None && West == West::Up) return 2685;
- if (East == East::Side && North == North::Side && Power == 5 && South == South::None && West == West::Side) return 2686;
- if (East == East::Side && North == North::Side && Power == 5 && South == South::None && West == West::None) return 2687;
- if (East == East::Side && North == North::Side && Power == 6 && South == South::Up && West == West::Up) return 2688;
- if (East == East::Side && North == North::Side && Power == 6 && South == South::Up && West == West::Side) return 2689;
- if (East == East::Side && North == North::Side && Power == 6 && South == South::Up && West == West::None) return 2690;
- if (East == East::Side && North == North::Side && Power == 6 && South == South::Side && West == West::Up) return 2691;
- if (East == East::Side && North == North::Side && Power == 6 && South == South::Side && West == West::Side) return 2692;
- if (East == East::Side && North == North::Side && Power == 6 && South == South::Side && West == West::None) return 2693;
- if (East == East::Side && North == North::Side && Power == 6 && South == South::None && West == West::Up) return 2694;
- if (East == East::Side && North == North::Side && Power == 6 && South == South::None && West == West::Side) return 2695;
- if (East == East::Side && North == North::Side && Power == 6 && South == South::None && West == West::None) return 2696;
- if (East == East::Side && North == North::Side && Power == 7 && South == South::Up && West == West::Up) return 2697;
- if (East == East::Side && North == North::Side && Power == 7 && South == South::Up && West == West::Side) return 2698;
- if (East == East::Side && North == North::Side && Power == 7 && South == South::Up && West == West::None) return 2699;
- if (East == East::Side && North == North::Side && Power == 7 && South == South::Side && West == West::Up) return 2700;
- if (East == East::Side && North == North::Side && Power == 7 && South == South::Side && West == West::Side) return 2701;
- if (East == East::Side && North == North::Side && Power == 7 && South == South::Side && West == West::None) return 2702;
- if (East == East::Side && North == North::Side && Power == 7 && South == South::None && West == West::Up) return 2703;
- if (East == East::Side && North == North::Side && Power == 7 && South == South::None && West == West::Side) return 2704;
- if (East == East::Side && North == North::Side && Power == 7 && South == South::None && West == West::None) return 2705;
- if (East == East::Side && North == North::Side && Power == 8 && South == South::Up && West == West::Up) return 2706;
- if (East == East::Side && North == North::Side && Power == 8 && South == South::Up && West == West::Side) return 2707;
- if (East == East::Side && North == North::Side && Power == 8 && South == South::Up && West == West::None) return 2708;
- if (East == East::Side && North == North::Side && Power == 8 && South == South::Side && West == West::Up) return 2709;
- if (East == East::Side && North == North::Side && Power == 8 && South == South::Side && West == West::Side) return 2710;
- if (East == East::Side && North == North::Side && Power == 8 && South == South::Side && West == West::None) return 2711;
- if (East == East::Side && North == North::Side && Power == 8 && South == South::None && West == West::Up) return 2712;
- if (East == East::Side && North == North::Side && Power == 8 && South == South::None && West == West::Side) return 2713;
- if (East == East::Side && North == North::Side && Power == 8 && South == South::None && West == West::None) return 2714;
- if (East == East::Side && North == North::Side && Power == 9 && South == South::Up && West == West::Up) return 2715;
- if (East == East::Side && North == North::Side && Power == 9 && South == South::Up && West == West::Side) return 2716;
- if (East == East::Side && North == North::Side && Power == 9 && South == South::Up && West == West::None) return 2717;
- if (East == East::Side && North == North::Side && Power == 9 && South == South::Side && West == West::Up) return 2718;
- if (East == East::Side && North == North::Side && Power == 9 && South == South::Side && West == West::Side) return 2719;
- if (East == East::Side && North == North::Side && Power == 9 && South == South::Side && West == West::None) return 2720;
- if (East == East::Side && North == North::Side && Power == 9 && South == South::None && West == West::Up) return 2721;
- if (East == East::Side && North == North::Side && Power == 9 && South == South::None && West == West::Side) return 2722;
- if (East == East::Side && North == North::Side && Power == 9 && South == South::None && West == West::None) return 2723;
- if (East == East::Side && North == North::Side && Power == 10 && South == South::Up && West == West::Up) return 2724;
- if (East == East::Side && North == North::Side && Power == 10 && South == South::Up && West == West::Side) return 2725;
- if (East == East::Side && North == North::Side && Power == 10 && South == South::Up && West == West::None) return 2726;
- if (East == East::Side && North == North::Side && Power == 10 && South == South::Side && West == West::Up) return 2727;
- if (East == East::Side && North == North::Side && Power == 10 && South == South::Side && West == West::Side) return 2728;
- if (East == East::Side && North == North::Side && Power == 10 && South == South::Side && West == West::None) return 2729;
- if (East == East::Side && North == North::Side && Power == 10 && South == South::None && West == West::Up) return 2730;
- if (East == East::Side && North == North::Side && Power == 10 && South == South::None && West == West::Side) return 2731;
- if (East == East::Side && North == North::Side && Power == 10 && South == South::None && West == West::None) return 2732;
- if (East == East::Side && North == North::Side && Power == 11 && South == South::Up && West == West::Up) return 2733;
- if (East == East::Side && North == North::Side && Power == 11 && South == South::Up && West == West::Side) return 2734;
- if (East == East::Side && North == North::Side && Power == 11 && South == South::Up && West == West::None) return 2735;
- if (East == East::Side && North == North::Side && Power == 11 && South == South::Side && West == West::Up) return 2736;
- if (East == East::Side && North == North::Side && Power == 11 && South == South::Side && West == West::Side) return 2737;
- if (East == East::Side && North == North::Side && Power == 11 && South == South::Side && West == West::None) return 2738;
- if (East == East::Side && North == North::Side && Power == 11 && South == South::None && West == West::Up) return 2739;
- if (East == East::Side && North == North::Side && Power == 11 && South == South::None && West == West::Side) return 2740;
- if (East == East::Side && North == North::Side && Power == 11 && South == South::None && West == West::None) return 2741;
- if (East == East::Side && North == North::Side && Power == 12 && South == South::Up && West == West::Up) return 2742;
- if (East == East::Side && North == North::Side && Power == 12 && South == South::Up && West == West::Side) return 2743;
- if (East == East::Side && North == North::Side && Power == 12 && South == South::Up && West == West::None) return 2744;
- if (East == East::Side && North == North::Side && Power == 12 && South == South::Side && West == West::Up) return 2745;
- if (East == East::Side && North == North::Side && Power == 12 && South == South::Side && West == West::Side) return 2746;
- if (East == East::Side && North == North::Side && Power == 12 && South == South::Side && West == West::None) return 2747;
- if (East == East::Side && North == North::Side && Power == 12 && South == South::None && West == West::Up) return 2748;
- if (East == East::Side && North == North::Side && Power == 12 && South == South::None && West == West::Side) return 2749;
- if (East == East::Side && North == North::Side && Power == 12 && South == South::None && West == West::None) return 2750;
- if (East == East::Side && North == North::Side && Power == 13 && South == South::Up && West == West::Up) return 2751;
- if (East == East::Side && North == North::Side && Power == 13 && South == South::Up && West == West::Side) return 2752;
- if (East == East::Side && North == North::Side && Power == 13 && South == South::Up && West == West::None) return 2753;
- if (East == East::Side && North == North::Side && Power == 13 && South == South::Side && West == West::Up) return 2754;
- if (East == East::Side && North == North::Side && Power == 13 && South == South::Side && West == West::Side) return 2755;
- if (East == East::Side && North == North::Side && Power == 13 && South == South::Side && West == West::None) return 2756;
- if (East == East::Side && North == North::Side && Power == 13 && South == South::None && West == West::Up) return 2757;
- if (East == East::Side && North == North::Side && Power == 13 && South == South::None && West == West::Side) return 2758;
- if (East == East::Side && North == North::Side && Power == 13 && South == South::None && West == West::None) return 2759;
- if (East == East::Side && North == North::Side && Power == 14 && South == South::Up && West == West::Up) return 2760;
- if (East == East::Side && North == North::Side && Power == 14 && South == South::Up && West == West::Side) return 2761;
- if (East == East::Side && North == North::Side && Power == 14 && South == South::Up && West == West::None) return 2762;
- if (East == East::Side && North == North::Side && Power == 14 && South == South::Side && West == West::Up) return 2763;
- if (East == East::Side && North == North::Side && Power == 14 && South == South::Side && West == West::Side) return 2764;
- if (East == East::Side && North == North::Side && Power == 14 && South == South::Side && West == West::None) return 2765;
- if (East == East::Side && North == North::Side && Power == 14 && South == South::None && West == West::Up) return 2766;
- if (East == East::Side && North == North::Side && Power == 14 && South == South::None && West == West::Side) return 2767;
- if (East == East::Side && North == North::Side && Power == 14 && South == South::None && West == West::None) return 2768;
- if (East == East::Side && North == North::Side && Power == 15 && South == South::Up && West == West::Up) return 2769;
- if (East == East::Side && North == North::Side && Power == 15 && South == South::Up && West == West::Side) return 2770;
- if (East == East::Side && North == North::Side && Power == 15 && South == South::Up && West == West::None) return 2771;
- if (East == East::Side && North == North::Side && Power == 15 && South == South::Side && West == West::Up) return 2772;
- if (East == East::Side && North == North::Side && Power == 15 && South == South::Side && West == West::Side) return 2773;
- if (East == East::Side && North == North::Side && Power == 15 && South == South::Side && West == West::None) return 2774;
- if (East == East::Side && North == North::Side && Power == 15 && South == South::None && West == West::Up) return 2775;
- if (East == East::Side && North == North::Side && Power == 15 && South == South::None && West == West::Side) return 2776;
- if (East == East::Side && North == North::Side && Power == 15 && South == South::None && West == West::None) return 2777;
- if (East == East::Side && North == North::None && Power == 0 && South == South::Up && West == West::Up) return 2778;
- if (East == East::Side && North == North::None && Power == 0 && South == South::Up && West == West::Side) return 2779;
- if (East == East::Side && North == North::None && Power == 0 && South == South::Up && West == West::None) return 2780;
- if (East == East::Side && North == North::None && Power == 0 && South == South::Side && West == West::Up) return 2781;
- if (East == East::Side && North == North::None && Power == 0 && South == South::Side && West == West::Side) return 2782;
- if (East == East::Side && North == North::None && Power == 0 && South == South::Side && West == West::None) return 2783;
- if (East == East::Side && North == North::None && Power == 0 && South == South::None && West == West::Up) return 2784;
- if (East == East::Side && North == North::None && Power == 0 && South == South::None && West == West::Side) return 2785;
- if (East == East::Side && North == North::None && Power == 0 && South == South::None && West == West::None) return 2786;
- if (East == East::Side && North == North::None && Power == 1 && South == South::Up && West == West::Up) return 2787;
- if (East == East::Side && North == North::None && Power == 1 && South == South::Up && West == West::Side) return 2788;
- if (East == East::Side && North == North::None && Power == 1 && South == South::Up && West == West::None) return 2789;
- if (East == East::Side && North == North::None && Power == 1 && South == South::Side && West == West::Up) return 2790;
- if (East == East::Side && North == North::None && Power == 1 && South == South::Side && West == West::Side) return 2791;
- if (East == East::Side && North == North::None && Power == 1 && South == South::Side && West == West::None) return 2792;
- if (East == East::Side && North == North::None && Power == 1 && South == South::None && West == West::Up) return 2793;
- if (East == East::Side && North == North::None && Power == 1 && South == South::None && West == West::Side) return 2794;
- if (East == East::Side && North == North::None && Power == 1 && South == South::None && West == West::None) return 2795;
- if (East == East::Side && North == North::None && Power == 2 && South == South::Up && West == West::Up) return 2796;
- if (East == East::Side && North == North::None && Power == 2 && South == South::Up && West == West::Side) return 2797;
- if (East == East::Side && North == North::None && Power == 2 && South == South::Up && West == West::None) return 2798;
- if (East == East::Side && North == North::None && Power == 2 && South == South::Side && West == West::Up) return 2799;
- if (East == East::Side && North == North::None && Power == 2 && South == South::Side && West == West::Side) return 2800;
- if (East == East::Side && North == North::None && Power == 2 && South == South::Side && West == West::None) return 2801;
- if (East == East::Side && North == North::None && Power == 2 && South == South::None && West == West::Up) return 2802;
- if (East == East::Side && North == North::None && Power == 2 && South == South::None && West == West::Side) return 2803;
- if (East == East::Side && North == North::None && Power == 2 && South == South::None && West == West::None) return 2804;
- if (East == East::Side && North == North::None && Power == 3 && South == South::Up && West == West::Up) return 2805;
- if (East == East::Side && North == North::None && Power == 3 && South == South::Up && West == West::Side) return 2806;
- if (East == East::Side && North == North::None && Power == 3 && South == South::Up && West == West::None) return 2807;
- if (East == East::Side && North == North::None && Power == 3 && South == South::Side && West == West::Up) return 2808;
- if (East == East::Side && North == North::None && Power == 3 && South == South::Side && West == West::Side) return 2809;
- if (East == East::Side && North == North::None && Power == 3 && South == South::Side && West == West::None) return 2810;
- if (East == East::Side && North == North::None && Power == 3 && South == South::None && West == West::Up) return 2811;
- if (East == East::Side && North == North::None && Power == 3 && South == South::None && West == West::Side) return 2812;
- if (East == East::Side && North == North::None && Power == 3 && South == South::None && West == West::None) return 2813;
- if (East == East::Side && North == North::None && Power == 4 && South == South::Up && West == West::Up) return 2814;
- if (East == East::Side && North == North::None && Power == 4 && South == South::Up && West == West::Side) return 2815;
- if (East == East::Side && North == North::None && Power == 4 && South == South::Up && West == West::None) return 2816;
- if (East == East::Side && North == North::None && Power == 4 && South == South::Side && West == West::Up) return 2817;
- if (East == East::Side && North == North::None && Power == 4 && South == South::Side && West == West::Side) return 2818;
- if (East == East::Side && North == North::None && Power == 4 && South == South::Side && West == West::None) return 2819;
- if (East == East::Side && North == North::None && Power == 4 && South == South::None && West == West::Up) return 2820;
- if (East == East::Side && North == North::None && Power == 4 && South == South::None && West == West::Side) return 2821;
- if (East == East::Side && North == North::None && Power == 4 && South == South::None && West == West::None) return 2822;
- if (East == East::Side && North == North::None && Power == 5 && South == South::Up && West == West::Up) return 2823;
- if (East == East::Side && North == North::None && Power == 5 && South == South::Up && West == West::Side) return 2824;
- if (East == East::Side && North == North::None && Power == 5 && South == South::Up && West == West::None) return 2825;
- if (East == East::Side && North == North::None && Power == 5 && South == South::Side && West == West::Up) return 2826;
- if (East == East::Side && North == North::None && Power == 5 && South == South::Side && West == West::Side) return 2827;
- if (East == East::Side && North == North::None && Power == 5 && South == South::Side && West == West::None) return 2828;
- if (East == East::Side && North == North::None && Power == 5 && South == South::None && West == West::Up) return 2829;
- if (East == East::Side && North == North::None && Power == 5 && South == South::None && West == West::Side) return 2830;
- if (East == East::Side && North == North::None && Power == 5 && South == South::None && West == West::None) return 2831;
- if (East == East::Side && North == North::None && Power == 6 && South == South::Up && West == West::Up) return 2832;
- if (East == East::Side && North == North::None && Power == 6 && South == South::Up && West == West::Side) return 2833;
- if (East == East::Side && North == North::None && Power == 6 && South == South::Up && West == West::None) return 2834;
- if (East == East::Side && North == North::None && Power == 6 && South == South::Side && West == West::Up) return 2835;
- if (East == East::Side && North == North::None && Power == 6 && South == South::Side && West == West::Side) return 2836;
- if (East == East::Side && North == North::None && Power == 6 && South == South::Side && West == West::None) return 2837;
- if (East == East::Side && North == North::None && Power == 6 && South == South::None && West == West::Up) return 2838;
- if (East == East::Side && North == North::None && Power == 6 && South == South::None && West == West::Side) return 2839;
- if (East == East::Side && North == North::None && Power == 6 && South == South::None && West == West::None) return 2840;
- if (East == East::Side && North == North::None && Power == 7 && South == South::Up && West == West::Up) return 2841;
- if (East == East::Side && North == North::None && Power == 7 && South == South::Up && West == West::Side) return 2842;
- if (East == East::Side && North == North::None && Power == 7 && South == South::Up && West == West::None) return 2843;
- if (East == East::Side && North == North::None && Power == 7 && South == South::Side && West == West::Up) return 2844;
- if (East == East::Side && North == North::None && Power == 7 && South == South::Side && West == West::Side) return 2845;
- if (East == East::Side && North == North::None && Power == 7 && South == South::Side && West == West::None) return 2846;
- if (East == East::Side && North == North::None && Power == 7 && South == South::None && West == West::Up) return 2847;
- if (East == East::Side && North == North::None && Power == 7 && South == South::None && West == West::Side) return 2848;
- if (East == East::Side && North == North::None && Power == 7 && South == South::None && West == West::None) return 2849;
- if (East == East::Side && North == North::None && Power == 8 && South == South::Up && West == West::Up) return 2850;
- if (East == East::Side && North == North::None && Power == 8 && South == South::Up && West == West::Side) return 2851;
- if (East == East::Side && North == North::None && Power == 8 && South == South::Up && West == West::None) return 2852;
- if (East == East::Side && North == North::None && Power == 8 && South == South::Side && West == West::Up) return 2853;
- if (East == East::Side && North == North::None && Power == 8 && South == South::Side && West == West::Side) return 2854;
- if (East == East::Side && North == North::None && Power == 8 && South == South::Side && West == West::None) return 2855;
- if (East == East::Side && North == North::None && Power == 8 && South == South::None && West == West::Up) return 2856;
- if (East == East::Side && North == North::None && Power == 8 && South == South::None && West == West::Side) return 2857;
- if (East == East::Side && North == North::None && Power == 8 && South == South::None && West == West::None) return 2858;
- if (East == East::Side && North == North::None && Power == 9 && South == South::Up && West == West::Up) return 2859;
- if (East == East::Side && North == North::None && Power == 9 && South == South::Up && West == West::Side) return 2860;
- if (East == East::Side && North == North::None && Power == 9 && South == South::Up && West == West::None) return 2861;
- if (East == East::Side && North == North::None && Power == 9 && South == South::Side && West == West::Up) return 2862;
- if (East == East::Side && North == North::None && Power == 9 && South == South::Side && West == West::Side) return 2863;
- if (East == East::Side && North == North::None && Power == 9 && South == South::Side && West == West::None) return 2864;
- if (East == East::Side && North == North::None && Power == 9 && South == South::None && West == West::Up) return 2865;
- if (East == East::Side && North == North::None && Power == 9 && South == South::None && West == West::Side) return 2866;
- if (East == East::Side && North == North::None && Power == 9 && South == South::None && West == West::None) return 2867;
- if (East == East::Side && North == North::None && Power == 10 && South == South::Up && West == West::Up) return 2868;
- if (East == East::Side && North == North::None && Power == 10 && South == South::Up && West == West::Side) return 2869;
- if (East == East::Side && North == North::None && Power == 10 && South == South::Up && West == West::None) return 2870;
- if (East == East::Side && North == North::None && Power == 10 && South == South::Side && West == West::Up) return 2871;
- if (East == East::Side && North == North::None && Power == 10 && South == South::Side && West == West::Side) return 2872;
- if (East == East::Side && North == North::None && Power == 10 && South == South::Side && West == West::None) return 2873;
- if (East == East::Side && North == North::None && Power == 10 && South == South::None && West == West::Up) return 2874;
- if (East == East::Side && North == North::None && Power == 10 && South == South::None && West == West::Side) return 2875;
- if (East == East::Side && North == North::None && Power == 10 && South == South::None && West == West::None) return 2876;
- if (East == East::Side && North == North::None && Power == 11 && South == South::Up && West == West::Up) return 2877;
- if (East == East::Side && North == North::None && Power == 11 && South == South::Up && West == West::Side) return 2878;
- if (East == East::Side && North == North::None && Power == 11 && South == South::Up && West == West::None) return 2879;
- if (East == East::Side && North == North::None && Power == 11 && South == South::Side && West == West::Up) return 2880;
- if (East == East::Side && North == North::None && Power == 11 && South == South::Side && West == West::Side) return 2881;
- if (East == East::Side && North == North::None && Power == 11 && South == South::Side && West == West::None) return 2882;
- if (East == East::Side && North == North::None && Power == 11 && South == South::None && West == West::Up) return 2883;
- if (East == East::Side && North == North::None && Power == 11 && South == South::None && West == West::Side) return 2884;
- if (East == East::Side && North == North::None && Power == 11 && South == South::None && West == West::None) return 2885;
- if (East == East::Side && North == North::None && Power == 12 && South == South::Up && West == West::Up) return 2886;
- if (East == East::Side && North == North::None && Power == 12 && South == South::Up && West == West::Side) return 2887;
- if (East == East::Side && North == North::None && Power == 12 && South == South::Up && West == West::None) return 2888;
- if (East == East::Side && North == North::None && Power == 12 && South == South::Side && West == West::Up) return 2889;
- if (East == East::Side && North == North::None && Power == 12 && South == South::Side && West == West::Side) return 2890;
- if (East == East::Side && North == North::None && Power == 12 && South == South::Side && West == West::None) return 2891;
- if (East == East::Side && North == North::None && Power == 12 && South == South::None && West == West::Up) return 2892;
- if (East == East::Side && North == North::None && Power == 12 && South == South::None && West == West::Side) return 2893;
- if (East == East::Side && North == North::None && Power == 12 && South == South::None && West == West::None) return 2894;
- if (East == East::Side && North == North::None && Power == 13 && South == South::Up && West == West::Up) return 2895;
- if (East == East::Side && North == North::None && Power == 13 && South == South::Up && West == West::Side) return 2896;
- if (East == East::Side && North == North::None && Power == 13 && South == South::Up && West == West::None) return 2897;
- if (East == East::Side && North == North::None && Power == 13 && South == South::Side && West == West::Up) return 2898;
- if (East == East::Side && North == North::None && Power == 13 && South == South::Side && West == West::Side) return 2899;
- if (East == East::Side && North == North::None && Power == 13 && South == South::Side && West == West::None) return 2900;
- if (East == East::Side && North == North::None && Power == 13 && South == South::None && West == West::Up) return 2901;
- if (East == East::Side && North == North::None && Power == 13 && South == South::None && West == West::Side) return 2902;
- if (East == East::Side && North == North::None && Power == 13 && South == South::None && West == West::None) return 2903;
- if (East == East::Side && North == North::None && Power == 14 && South == South::Up && West == West::Up) return 2904;
- if (East == East::Side && North == North::None && Power == 14 && South == South::Up && West == West::Side) return 2905;
- if (East == East::Side && North == North::None && Power == 14 && South == South::Up && West == West::None) return 2906;
- if (East == East::Side && North == North::None && Power == 14 && South == South::Side && West == West::Up) return 2907;
- if (East == East::Side && North == North::None && Power == 14 && South == South::Side && West == West::Side) return 2908;
- if (East == East::Side && North == North::None && Power == 14 && South == South::Side && West == West::None) return 2909;
- if (East == East::Side && North == North::None && Power == 14 && South == South::None && West == West::Up) return 2910;
- if (East == East::Side && North == North::None && Power == 14 && South == South::None && West == West::Side) return 2911;
- if (East == East::Side && North == North::None && Power == 14 && South == South::None && West == West::None) return 2912;
- if (East == East::Side && North == North::None && Power == 15 && South == South::Up && West == West::Up) return 2913;
- if (East == East::Side && North == North::None && Power == 15 && South == South::Up && West == West::Side) return 2914;
- if (East == East::Side && North == North::None && Power == 15 && South == South::Up && West == West::None) return 2915;
- if (East == East::Side && North == North::None && Power == 15 && South == South::Side && West == West::Up) return 2916;
- if (East == East::Side && North == North::None && Power == 15 && South == South::Side && West == West::Side) return 2917;
- if (East == East::Side && North == North::None && Power == 15 && South == South::Side && West == West::None) return 2918;
- if (East == East::Side && North == North::None && Power == 15 && South == South::None && West == West::Up) return 2919;
- if (East == East::Side && North == North::None && Power == 15 && South == South::None && West == West::Side) return 2920;
- if (East == East::Side && North == North::None && Power == 15 && South == South::None && West == West::None) return 2921;
- if (East == East::None && North == North::Up && Power == 0 && South == South::Up && West == West::Up) return 2922;
- if (East == East::None && North == North::Up && Power == 0 && South == South::Up && West == West::Side) return 2923;
- if (East == East::None && North == North::Up && Power == 0 && South == South::Up && West == West::None) return 2924;
- if (East == East::None && North == North::Up && Power == 0 && South == South::Side && West == West::Up) return 2925;
- if (East == East::None && North == North::Up && Power == 0 && South == South::Side && West == West::Side) return 2926;
- if (East == East::None && North == North::Up && Power == 0 && South == South::Side && West == West::None) return 2927;
- if (East == East::None && North == North::Up && Power == 0 && South == South::None && West == West::Up) return 2928;
- if (East == East::None && North == North::Up && Power == 0 && South == South::None && West == West::Side) return 2929;
- if (East == East::None && North == North::Up && Power == 0 && South == South::None && West == West::None) return 2930;
- if (East == East::None && North == North::Up && Power == 1 && South == South::Up && West == West::Up) return 2931;
- if (East == East::None && North == North::Up && Power == 1 && South == South::Up && West == West::Side) return 2932;
- if (East == East::None && North == North::Up && Power == 1 && South == South::Up && West == West::None) return 2933;
- if (East == East::None && North == North::Up && Power == 1 && South == South::Side && West == West::Up) return 2934;
- if (East == East::None && North == North::Up && Power == 1 && South == South::Side && West == West::Side) return 2935;
- if (East == East::None && North == North::Up && Power == 1 && South == South::Side && West == West::None) return 2936;
- if (East == East::None && North == North::Up && Power == 1 && South == South::None && West == West::Up) return 2937;
- if (East == East::None && North == North::Up && Power == 1 && South == South::None && West == West::Side) return 2938;
- if (East == East::None && North == North::Up && Power == 1 && South == South::None && West == West::None) return 2939;
- if (East == East::None && North == North::Up && Power == 2 && South == South::Up && West == West::Up) return 2940;
- if (East == East::None && North == North::Up && Power == 2 && South == South::Up && West == West::Side) return 2941;
- if (East == East::None && North == North::Up && Power == 2 && South == South::Up && West == West::None) return 2942;
- if (East == East::None && North == North::Up && Power == 2 && South == South::Side && West == West::Up) return 2943;
- if (East == East::None && North == North::Up && Power == 2 && South == South::Side && West == West::Side) return 2944;
- if (East == East::None && North == North::Up && Power == 2 && South == South::Side && West == West::None) return 2945;
- if (East == East::None && North == North::Up && Power == 2 && South == South::None && West == West::Up) return 2946;
- if (East == East::None && North == North::Up && Power == 2 && South == South::None && West == West::Side) return 2947;
- if (East == East::None && North == North::Up && Power == 2 && South == South::None && West == West::None) return 2948;
- if (East == East::None && North == North::Up && Power == 3 && South == South::Up && West == West::Up) return 2949;
- if (East == East::None && North == North::Up && Power == 3 && South == South::Up && West == West::Side) return 2950;
- if (East == East::None && North == North::Up && Power == 3 && South == South::Up && West == West::None) return 2951;
- if (East == East::None && North == North::Up && Power == 3 && South == South::Side && West == West::Up) return 2952;
- if (East == East::None && North == North::Up && Power == 3 && South == South::Side && West == West::Side) return 2953;
- if (East == East::None && North == North::Up && Power == 3 && South == South::Side && West == West::None) return 2954;
- if (East == East::None && North == North::Up && Power == 3 && South == South::None && West == West::Up) return 2955;
- if (East == East::None && North == North::Up && Power == 3 && South == South::None && West == West::Side) return 2956;
- if (East == East::None && North == North::Up && Power == 3 && South == South::None && West == West::None) return 2957;
- if (East == East::None && North == North::Up && Power == 4 && South == South::Up && West == West::Up) return 2958;
- if (East == East::None && North == North::Up && Power == 4 && South == South::Up && West == West::Side) return 2959;
- if (East == East::None && North == North::Up && Power == 4 && South == South::Up && West == West::None) return 2960;
- if (East == East::None && North == North::Up && Power == 4 && South == South::Side && West == West::Up) return 2961;
- if (East == East::None && North == North::Up && Power == 4 && South == South::Side && West == West::Side) return 2962;
- if (East == East::None && North == North::Up && Power == 4 && South == South::Side && West == West::None) return 2963;
- if (East == East::None && North == North::Up && Power == 4 && South == South::None && West == West::Up) return 2964;
- if (East == East::None && North == North::Up && Power == 4 && South == South::None && West == West::Side) return 2965;
- if (East == East::None && North == North::Up && Power == 4 && South == South::None && West == West::None) return 2966;
- if (East == East::None && North == North::Up && Power == 5 && South == South::Up && West == West::Up) return 2967;
- if (East == East::None && North == North::Up && Power == 5 && South == South::Up && West == West::Side) return 2968;
- if (East == East::None && North == North::Up && Power == 5 && South == South::Up && West == West::None) return 2969;
- if (East == East::None && North == North::Up && Power == 5 && South == South::Side && West == West::Up) return 2970;
- if (East == East::None && North == North::Up && Power == 5 && South == South::Side && West == West::Side) return 2971;
- if (East == East::None && North == North::Up && Power == 5 && South == South::Side && West == West::None) return 2972;
- if (East == East::None && North == North::Up && Power == 5 && South == South::None && West == West::Up) return 2973;
- if (East == East::None && North == North::Up && Power == 5 && South == South::None && West == West::Side) return 2974;
- if (East == East::None && North == North::Up && Power == 5 && South == South::None && West == West::None) return 2975;
- if (East == East::None && North == North::Up && Power == 6 && South == South::Up && West == West::Up) return 2976;
- if (East == East::None && North == North::Up && Power == 6 && South == South::Up && West == West::Side) return 2977;
- if (East == East::None && North == North::Up && Power == 6 && South == South::Up && West == West::None) return 2978;
- if (East == East::None && North == North::Up && Power == 6 && South == South::Side && West == West::Up) return 2979;
- if (East == East::None && North == North::Up && Power == 6 && South == South::Side && West == West::Side) return 2980;
- if (East == East::None && North == North::Up && Power == 6 && South == South::Side && West == West::None) return 2981;
- if (East == East::None && North == North::Up && Power == 6 && South == South::None && West == West::Up) return 2982;
- if (East == East::None && North == North::Up && Power == 6 && South == South::None && West == West::Side) return 2983;
- if (East == East::None && North == North::Up && Power == 6 && South == South::None && West == West::None) return 2984;
- if (East == East::None && North == North::Up && Power == 7 && South == South::Up && West == West::Up) return 2985;
- if (East == East::None && North == North::Up && Power == 7 && South == South::Up && West == West::Side) return 2986;
- if (East == East::None && North == North::Up && Power == 7 && South == South::Up && West == West::None) return 2987;
- if (East == East::None && North == North::Up && Power == 7 && South == South::Side && West == West::Up) return 2988;
- if (East == East::None && North == North::Up && Power == 7 && South == South::Side && West == West::Side) return 2989;
- if (East == East::None && North == North::Up && Power == 7 && South == South::Side && West == West::None) return 2990;
- if (East == East::None && North == North::Up && Power == 7 && South == South::None && West == West::Up) return 2991;
- if (East == East::None && North == North::Up && Power == 7 && South == South::None && West == West::Side) return 2992;
- if (East == East::None && North == North::Up && Power == 7 && South == South::None && West == West::None) return 2993;
- if (East == East::None && North == North::Up && Power == 8 && South == South::Up && West == West::Up) return 2994;
- if (East == East::None && North == North::Up && Power == 8 && South == South::Up && West == West::Side) return 2995;
- if (East == East::None && North == North::Up && Power == 8 && South == South::Up && West == West::None) return 2996;
- if (East == East::None && North == North::Up && Power == 8 && South == South::Side && West == West::Up) return 2997;
- if (East == East::None && North == North::Up && Power == 8 && South == South::Side && West == West::Side) return 2998;
- if (East == East::None && North == North::Up && Power == 8 && South == South::Side && West == West::None) return 2999;
- if (East == East::None && North == North::Up && Power == 8 && South == South::None && West == West::Up) return 3000;
- if (East == East::None && North == North::Up && Power == 8 && South == South::None && West == West::Side) return 3001;
- if (East == East::None && North == North::Up && Power == 8 && South == South::None && West == West::None) return 3002;
- if (East == East::None && North == North::Up && Power == 9 && South == South::Up && West == West::Up) return 3003;
- if (East == East::None && North == North::Up && Power == 9 && South == South::Up && West == West::Side) return 3004;
- if (East == East::None && North == North::Up && Power == 9 && South == South::Up && West == West::None) return 3005;
- if (East == East::None && North == North::Up && Power == 9 && South == South::Side && West == West::Up) return 3006;
- if (East == East::None && North == North::Up && Power == 9 && South == South::Side && West == West::Side) return 3007;
- if (East == East::None && North == North::Up && Power == 9 && South == South::Side && West == West::None) return 3008;
- if (East == East::None && North == North::Up && Power == 9 && South == South::None && West == West::Up) return 3009;
- if (East == East::None && North == North::Up && Power == 9 && South == South::None && West == West::Side) return 3010;
- if (East == East::None && North == North::Up && Power == 9 && South == South::None && West == West::None) return 3011;
- if (East == East::None && North == North::Up && Power == 10 && South == South::Up && West == West::Up) return 3012;
- if (East == East::None && North == North::Up && Power == 10 && South == South::Up && West == West::Side) return 3013;
- if (East == East::None && North == North::Up && Power == 10 && South == South::Up && West == West::None) return 3014;
- if (East == East::None && North == North::Up && Power == 10 && South == South::Side && West == West::Up) return 3015;
- if (East == East::None && North == North::Up && Power == 10 && South == South::Side && West == West::Side) return 3016;
- if (East == East::None && North == North::Up && Power == 10 && South == South::Side && West == West::None) return 3017;
- if (East == East::None && North == North::Up && Power == 10 && South == South::None && West == West::Up) return 3018;
- if (East == East::None && North == North::Up && Power == 10 && South == South::None && West == West::Side) return 3019;
- if (East == East::None && North == North::Up && Power == 10 && South == South::None && West == West::None) return 3020;
- if (East == East::None && North == North::Up && Power == 11 && South == South::Up && West == West::Up) return 3021;
- if (East == East::None && North == North::Up && Power == 11 && South == South::Up && West == West::Side) return 3022;
- if (East == East::None && North == North::Up && Power == 11 && South == South::Up && West == West::None) return 3023;
- if (East == East::None && North == North::Up && Power == 11 && South == South::Side && West == West::Up) return 3024;
- if (East == East::None && North == North::Up && Power == 11 && South == South::Side && West == West::Side) return 3025;
- if (East == East::None && North == North::Up && Power == 11 && South == South::Side && West == West::None) return 3026;
- if (East == East::None && North == North::Up && Power == 11 && South == South::None && West == West::Up) return 3027;
- if (East == East::None && North == North::Up && Power == 11 && South == South::None && West == West::Side) return 3028;
- if (East == East::None && North == North::Up && Power == 11 && South == South::None && West == West::None) return 3029;
- if (East == East::None && North == North::Up && Power == 12 && South == South::Up && West == West::Up) return 3030;
- if (East == East::None && North == North::Up && Power == 12 && South == South::Up && West == West::Side) return 3031;
- if (East == East::None && North == North::Up && Power == 12 && South == South::Up && West == West::None) return 3032;
- if (East == East::None && North == North::Up && Power == 12 && South == South::Side && West == West::Up) return 3033;
- if (East == East::None && North == North::Up && Power == 12 && South == South::Side && West == West::Side) return 3034;
- if (East == East::None && North == North::Up && Power == 12 && South == South::Side && West == West::None) return 3035;
- if (East == East::None && North == North::Up && Power == 12 && South == South::None && West == West::Up) return 3036;
- if (East == East::None && North == North::Up && Power == 12 && South == South::None && West == West::Side) return 3037;
- if (East == East::None && North == North::Up && Power == 12 && South == South::None && West == West::None) return 3038;
- if (East == East::None && North == North::Up && Power == 13 && South == South::Up && West == West::Up) return 3039;
- if (East == East::None && North == North::Up && Power == 13 && South == South::Up && West == West::Side) return 3040;
- if (East == East::None && North == North::Up && Power == 13 && South == South::Up && West == West::None) return 3041;
- if (East == East::None && North == North::Up && Power == 13 && South == South::Side && West == West::Up) return 3042;
- if (East == East::None && North == North::Up && Power == 13 && South == South::Side && West == West::Side) return 3043;
- if (East == East::None && North == North::Up && Power == 13 && South == South::Side && West == West::None) return 3044;
- if (East == East::None && North == North::Up && Power == 13 && South == South::None && West == West::Up) return 3045;
- if (East == East::None && North == North::Up && Power == 13 && South == South::None && West == West::Side) return 3046;
- if (East == East::None && North == North::Up && Power == 13 && South == South::None && West == West::None) return 3047;
- if (East == East::None && North == North::Up && Power == 14 && South == South::Up && West == West::Up) return 3048;
- if (East == East::None && North == North::Up && Power == 14 && South == South::Up && West == West::Side) return 3049;
- if (East == East::None && North == North::Up && Power == 14 && South == South::Up && West == West::None) return 3050;
- if (East == East::None && North == North::Up && Power == 14 && South == South::Side && West == West::Up) return 3051;
- if (East == East::None && North == North::Up && Power == 14 && South == South::Side && West == West::Side) return 3052;
- if (East == East::None && North == North::Up && Power == 14 && South == South::Side && West == West::None) return 3053;
- if (East == East::None && North == North::Up && Power == 14 && South == South::None && West == West::Up) return 3054;
- if (East == East::None && North == North::Up && Power == 14 && South == South::None && West == West::Side) return 3055;
- if (East == East::None && North == North::Up && Power == 14 && South == South::None && West == West::None) return 3056;
- if (East == East::None && North == North::Up && Power == 15 && South == South::Up && West == West::Up) return 3057;
- if (East == East::None && North == North::Up && Power == 15 && South == South::Up && West == West::Side) return 3058;
- if (East == East::None && North == North::Up && Power == 15 && South == South::Up && West == West::None) return 3059;
- if (East == East::None && North == North::Up && Power == 15 && South == South::Side && West == West::Up) return 3060;
- if (East == East::None && North == North::Up && Power == 15 && South == South::Side && West == West::Side) return 3061;
- if (East == East::None && North == North::Up && Power == 15 && South == South::Side && West == West::None) return 3062;
- if (East == East::None && North == North::Up && Power == 15 && South == South::None && West == West::Up) return 3063;
- if (East == East::None && North == North::Up && Power == 15 && South == South::None && West == West::Side) return 3064;
- if (East == East::None && North == North::Up && Power == 15 && South == South::None && West == West::None) return 3065;
- if (East == East::None && North == North::Side && Power == 0 && South == South::Up && West == West::Up) return 3066;
- if (East == East::None && North == North::Side && Power == 0 && South == South::Up && West == West::Side) return 3067;
- if (East == East::None && North == North::Side && Power == 0 && South == South::Up && West == West::None) return 3068;
- if (East == East::None && North == North::Side && Power == 0 && South == South::Side && West == West::Up) return 3069;
- if (East == East::None && North == North::Side && Power == 0 && South == South::Side && West == West::Side) return 3070;
- if (East == East::None && North == North::Side && Power == 0 && South == South::Side && West == West::None) return 3071;
- if (East == East::None && North == North::Side && Power == 0 && South == South::None && West == West::Up) return 3072;
- if (East == East::None && North == North::Side && Power == 0 && South == South::None && West == West::Side) return 3073;
- if (East == East::None && North == North::Side && Power == 0 && South == South::None && West == West::None) return 3074;
- if (East == East::None && North == North::Side && Power == 1 && South == South::Up && West == West::Up) return 3075;
- if (East == East::None && North == North::Side && Power == 1 && South == South::Up && West == West::Side) return 3076;
- if (East == East::None && North == North::Side && Power == 1 && South == South::Up && West == West::None) return 3077;
- if (East == East::None && North == North::Side && Power == 1 && South == South::Side && West == West::Up) return 3078;
- if (East == East::None && North == North::Side && Power == 1 && South == South::Side && West == West::Side) return 3079;
- if (East == East::None && North == North::Side && Power == 1 && South == South::Side && West == West::None) return 3080;
- if (East == East::None && North == North::Side && Power == 1 && South == South::None && West == West::Up) return 3081;
- if (East == East::None && North == North::Side && Power == 1 && South == South::None && West == West::Side) return 3082;
- if (East == East::None && North == North::Side && Power == 1 && South == South::None && West == West::None) return 3083;
- if (East == East::None && North == North::Side && Power == 2 && South == South::Up && West == West::Up) return 3084;
- if (East == East::None && North == North::Side && Power == 2 && South == South::Up && West == West::Side) return 3085;
- if (East == East::None && North == North::Side && Power == 2 && South == South::Up && West == West::None) return 3086;
- if (East == East::None && North == North::Side && Power == 2 && South == South::Side && West == West::Up) return 3087;
- if (East == East::None && North == North::Side && Power == 2 && South == South::Side && West == West::Side) return 3088;
- if (East == East::None && North == North::Side && Power == 2 && South == South::Side && West == West::None) return 3089;
- if (East == East::None && North == North::Side && Power == 2 && South == South::None && West == West::Up) return 3090;
- if (East == East::None && North == North::Side && Power == 2 && South == South::None && West == West::Side) return 3091;
- if (East == East::None && North == North::Side && Power == 2 && South == South::None && West == West::None) return 3092;
- if (East == East::None && North == North::Side && Power == 3 && South == South::Up && West == West::Up) return 3093;
- if (East == East::None && North == North::Side && Power == 3 && South == South::Up && West == West::Side) return 3094;
- if (East == East::None && North == North::Side && Power == 3 && South == South::Up && West == West::None) return 3095;
- if (East == East::None && North == North::Side && Power == 3 && South == South::Side && West == West::Up) return 3096;
- if (East == East::None && North == North::Side && Power == 3 && South == South::Side && West == West::Side) return 3097;
- if (East == East::None && North == North::Side && Power == 3 && South == South::Side && West == West::None) return 3098;
- if (East == East::None && North == North::Side && Power == 3 && South == South::None && West == West::Up) return 3099;
- if (East == East::None && North == North::Side && Power == 3 && South == South::None && West == West::Side) return 3100;
- if (East == East::None && North == North::Side && Power == 3 && South == South::None && West == West::None) return 3101;
- if (East == East::None && North == North::Side && Power == 4 && South == South::Up && West == West::Up) return 3102;
- if (East == East::None && North == North::Side && Power == 4 && South == South::Up && West == West::Side) return 3103;
- if (East == East::None && North == North::Side && Power == 4 && South == South::Up && West == West::None) return 3104;
- if (East == East::None && North == North::Side && Power == 4 && South == South::Side && West == West::Up) return 3105;
- if (East == East::None && North == North::Side && Power == 4 && South == South::Side && West == West::Side) return 3106;
- if (East == East::None && North == North::Side && Power == 4 && South == South::Side && West == West::None) return 3107;
- if (East == East::None && North == North::Side && Power == 4 && South == South::None && West == West::Up) return 3108;
- if (East == East::None && North == North::Side && Power == 4 && South == South::None && West == West::Side) return 3109;
- if (East == East::None && North == North::Side && Power == 4 && South == South::None && West == West::None) return 3110;
- if (East == East::None && North == North::Side && Power == 5 && South == South::Up && West == West::Up) return 3111;
- if (East == East::None && North == North::Side && Power == 5 && South == South::Up && West == West::Side) return 3112;
- if (East == East::None && North == North::Side && Power == 5 && South == South::Up && West == West::None) return 3113;
- if (East == East::None && North == North::Side && Power == 5 && South == South::Side && West == West::Up) return 3114;
- if (East == East::None && North == North::Side && Power == 5 && South == South::Side && West == West::Side) return 3115;
- if (East == East::None && North == North::Side && Power == 5 && South == South::Side && West == West::None) return 3116;
- if (East == East::None && North == North::Side && Power == 5 && South == South::None && West == West::Up) return 3117;
- if (East == East::None && North == North::Side && Power == 5 && South == South::None && West == West::Side) return 3118;
- if (East == East::None && North == North::Side && Power == 5 && South == South::None && West == West::None) return 3119;
- if (East == East::None && North == North::Side && Power == 6 && South == South::Up && West == West::Up) return 3120;
- if (East == East::None && North == North::Side && Power == 6 && South == South::Up && West == West::Side) return 3121;
- if (East == East::None && North == North::Side && Power == 6 && South == South::Up && West == West::None) return 3122;
- if (East == East::None && North == North::Side && Power == 6 && South == South::Side && West == West::Up) return 3123;
- if (East == East::None && North == North::Side && Power == 6 && South == South::Side && West == West::Side) return 3124;
- if (East == East::None && North == North::Side && Power == 6 && South == South::Side && West == West::None) return 3125;
- if (East == East::None && North == North::Side && Power == 6 && South == South::None && West == West::Up) return 3126;
- if (East == East::None && North == North::Side && Power == 6 && South == South::None && West == West::Side) return 3127;
- if (East == East::None && North == North::Side && Power == 6 && South == South::None && West == West::None) return 3128;
- if (East == East::None && North == North::Side && Power == 7 && South == South::Up && West == West::Up) return 3129;
- if (East == East::None && North == North::Side && Power == 7 && South == South::Up && West == West::Side) return 3130;
- if (East == East::None && North == North::Side && Power == 7 && South == South::Up && West == West::None) return 3131;
- if (East == East::None && North == North::Side && Power == 7 && South == South::Side && West == West::Up) return 3132;
- if (East == East::None && North == North::Side && Power == 7 && South == South::Side && West == West::Side) return 3133;
- if (East == East::None && North == North::Side && Power == 7 && South == South::Side && West == West::None) return 3134;
- if (East == East::None && North == North::Side && Power == 7 && South == South::None && West == West::Up) return 3135;
- if (East == East::None && North == North::Side && Power == 7 && South == South::None && West == West::Side) return 3136;
- if (East == East::None && North == North::Side && Power == 7 && South == South::None && West == West::None) return 3137;
- if (East == East::None && North == North::Side && Power == 8 && South == South::Up && West == West::Up) return 3138;
- if (East == East::None && North == North::Side && Power == 8 && South == South::Up && West == West::Side) return 3139;
- if (East == East::None && North == North::Side && Power == 8 && South == South::Up && West == West::None) return 3140;
- if (East == East::None && North == North::Side && Power == 8 && South == South::Side && West == West::Up) return 3141;
- if (East == East::None && North == North::Side && Power == 8 && South == South::Side && West == West::Side) return 3142;
- if (East == East::None && North == North::Side && Power == 8 && South == South::Side && West == West::None) return 3143;
- if (East == East::None && North == North::Side && Power == 8 && South == South::None && West == West::Up) return 3144;
- if (East == East::None && North == North::Side && Power == 8 && South == South::None && West == West::Side) return 3145;
- if (East == East::None && North == North::Side && Power == 8 && South == South::None && West == West::None) return 3146;
- if (East == East::None && North == North::Side && Power == 9 && South == South::Up && West == West::Up) return 3147;
- if (East == East::None && North == North::Side && Power == 9 && South == South::Up && West == West::Side) return 3148;
- if (East == East::None && North == North::Side && Power == 9 && South == South::Up && West == West::None) return 3149;
- if (East == East::None && North == North::Side && Power == 9 && South == South::Side && West == West::Up) return 3150;
- if (East == East::None && North == North::Side && Power == 9 && South == South::Side && West == West::Side) return 3151;
- if (East == East::None && North == North::Side && Power == 9 && South == South::Side && West == West::None) return 3152;
- if (East == East::None && North == North::Side && Power == 9 && South == South::None && West == West::Up) return 3153;
- if (East == East::None && North == North::Side && Power == 9 && South == South::None && West == West::Side) return 3154;
- if (East == East::None && North == North::Side && Power == 9 && South == South::None && West == West::None) return 3155;
- if (East == East::None && North == North::Side && Power == 10 && South == South::Up && West == West::Up) return 3156;
- if (East == East::None && North == North::Side && Power == 10 && South == South::Up && West == West::Side) return 3157;
- if (East == East::None && North == North::Side && Power == 10 && South == South::Up && West == West::None) return 3158;
- if (East == East::None && North == North::Side && Power == 10 && South == South::Side && West == West::Up) return 3159;
- if (East == East::None && North == North::Side && Power == 10 && South == South::Side && West == West::Side) return 3160;
- if (East == East::None && North == North::Side && Power == 10 && South == South::Side && West == West::None) return 3161;
- if (East == East::None && North == North::Side && Power == 10 && South == South::None && West == West::Up) return 3162;
- if (East == East::None && North == North::Side && Power == 10 && South == South::None && West == West::Side) return 3163;
- if (East == East::None && North == North::Side && Power == 10 && South == South::None && West == West::None) return 3164;
- if (East == East::None && North == North::Side && Power == 11 && South == South::Up && West == West::Up) return 3165;
- if (East == East::None && North == North::Side && Power == 11 && South == South::Up && West == West::Side) return 3166;
- if (East == East::None && North == North::Side && Power == 11 && South == South::Up && West == West::None) return 3167;
- if (East == East::None && North == North::Side && Power == 11 && South == South::Side && West == West::Up) return 3168;
- if (East == East::None && North == North::Side && Power == 11 && South == South::Side && West == West::Side) return 3169;
- if (East == East::None && North == North::Side && Power == 11 && South == South::Side && West == West::None) return 3170;
- if (East == East::None && North == North::Side && Power == 11 && South == South::None && West == West::Up) return 3171;
- if (East == East::None && North == North::Side && Power == 11 && South == South::None && West == West::Side) return 3172;
- if (East == East::None && North == North::Side && Power == 11 && South == South::None && West == West::None) return 3173;
- if (East == East::None && North == North::Side && Power == 12 && South == South::Up && West == West::Up) return 3174;
- if (East == East::None && North == North::Side && Power == 12 && South == South::Up && West == West::Side) return 3175;
- if (East == East::None && North == North::Side && Power == 12 && South == South::Up && West == West::None) return 3176;
- if (East == East::None && North == North::Side && Power == 12 && South == South::Side && West == West::Up) return 3177;
- if (East == East::None && North == North::Side && Power == 12 && South == South::Side && West == West::Side) return 3178;
- if (East == East::None && North == North::Side && Power == 12 && South == South::Side && West == West::None) return 3179;
- if (East == East::None && North == North::Side && Power == 12 && South == South::None && West == West::Up) return 3180;
- if (East == East::None && North == North::Side && Power == 12 && South == South::None && West == West::Side) return 3181;
- if (East == East::None && North == North::Side && Power == 12 && South == South::None && West == West::None) return 3182;
- if (East == East::None && North == North::Side && Power == 13 && South == South::Up && West == West::Up) return 3183;
- if (East == East::None && North == North::Side && Power == 13 && South == South::Up && West == West::Side) return 3184;
- if (East == East::None && North == North::Side && Power == 13 && South == South::Up && West == West::None) return 3185;
- if (East == East::None && North == North::Side && Power == 13 && South == South::Side && West == West::Up) return 3186;
- if (East == East::None && North == North::Side && Power == 13 && South == South::Side && West == West::Side) return 3187;
- if (East == East::None && North == North::Side && Power == 13 && South == South::Side && West == West::None) return 3188;
- if (East == East::None && North == North::Side && Power == 13 && South == South::None && West == West::Up) return 3189;
- if (East == East::None && North == North::Side && Power == 13 && South == South::None && West == West::Side) return 3190;
- if (East == East::None && North == North::Side && Power == 13 && South == South::None && West == West::None) return 3191;
- if (East == East::None && North == North::Side && Power == 14 && South == South::Up && West == West::Up) return 3192;
- if (East == East::None && North == North::Side && Power == 14 && South == South::Up && West == West::Side) return 3193;
- if (East == East::None && North == North::Side && Power == 14 && South == South::Up && West == West::None) return 3194;
- if (East == East::None && North == North::Side && Power == 14 && South == South::Side && West == West::Up) return 3195;
- if (East == East::None && North == North::Side && Power == 14 && South == South::Side && West == West::Side) return 3196;
- if (East == East::None && North == North::Side && Power == 14 && South == South::Side && West == West::None) return 3197;
- if (East == East::None && North == North::Side && Power == 14 && South == South::None && West == West::Up) return 3198;
- if (East == East::None && North == North::Side && Power == 14 && South == South::None && West == West::Side) return 3199;
- if (East == East::None && North == North::Side && Power == 14 && South == South::None && West == West::None) return 3200;
- if (East == East::None && North == North::Side && Power == 15 && South == South::Up && West == West::Up) return 3201;
- if (East == East::None && North == North::Side && Power == 15 && South == South::Up && West == West::Side) return 3202;
- if (East == East::None && North == North::Side && Power == 15 && South == South::Up && West == West::None) return 3203;
- if (East == East::None && North == North::Side && Power == 15 && South == South::Side && West == West::Up) return 3204;
- if (East == East::None && North == North::Side && Power == 15 && South == South::Side && West == West::Side) return 3205;
- if (East == East::None && North == North::Side && Power == 15 && South == South::Side && West == West::None) return 3206;
- if (East == East::None && North == North::Side && Power == 15 && South == South::None && West == West::Up) return 3207;
- if (East == East::None && North == North::Side && Power == 15 && South == South::None && West == West::Side) return 3208;
- if (East == East::None && North == North::Side && Power == 15 && South == South::None && West == West::None) return 3209;
- if (East == East::None && North == North::None && Power == 0 && South == South::Up && West == West::Up) return 3210;
- if (East == East::None && North == North::None && Power == 0 && South == South::Up && West == West::Side) return 3211;
- if (East == East::None && North == North::None && Power == 0 && South == South::Up && West == West::None) return 3212;
- if (East == East::None && North == North::None && Power == 0 && South == South::Side && West == West::Up) return 3213;
- if (East == East::None && North == North::None && Power == 0 && South == South::Side && West == West::Side) return 3214;
- if (East == East::None && North == North::None && Power == 0 && South == South::Side && West == West::None) return 3215;
- if (East == East::None && North == North::None && Power == 0 && South == South::None && West == West::Up) return 3216;
- if (East == East::None && North == North::None && Power == 0 && South == South::None && West == West::Side) return 3217;
- if (East == East::None && North == North::None && Power == 0 && South == South::None && West == West::None) return 3218;
- if (East == East::None && North == North::None && Power == 1 && South == South::Up && West == West::Up) return 3219;
- if (East == East::None && North == North::None && Power == 1 && South == South::Up && West == West::Side) return 3220;
- if (East == East::None && North == North::None && Power == 1 && South == South::Up && West == West::None) return 3221;
- if (East == East::None && North == North::None && Power == 1 && South == South::Side && West == West::Up) return 3222;
- if (East == East::None && North == North::None && Power == 1 && South == South::Side && West == West::Side) return 3223;
- if (East == East::None && North == North::None && Power == 1 && South == South::Side && West == West::None) return 3224;
- if (East == East::None && North == North::None && Power == 1 && South == South::None && West == West::Up) return 3225;
- if (East == East::None && North == North::None && Power == 1 && South == South::None && West == West::Side) return 3226;
- if (East == East::None && North == North::None && Power == 1 && South == South::None && West == West::None) return 3227;
- if (East == East::None && North == North::None && Power == 2 && South == South::Up && West == West::Up) return 3228;
- if (East == East::None && North == North::None && Power == 2 && South == South::Up && West == West::Side) return 3229;
- if (East == East::None && North == North::None && Power == 2 && South == South::Up && West == West::None) return 3230;
- if (East == East::None && North == North::None && Power == 2 && South == South::Side && West == West::Up) return 3231;
- if (East == East::None && North == North::None && Power == 2 && South == South::Side && West == West::Side) return 3232;
- if (East == East::None && North == North::None && Power == 2 && South == South::Side && West == West::None) return 3233;
- if (East == East::None && North == North::None && Power == 2 && South == South::None && West == West::Up) return 3234;
- if (East == East::None && North == North::None && Power == 2 && South == South::None && West == West::Side) return 3235;
- if (East == East::None && North == North::None && Power == 2 && South == South::None && West == West::None) return 3236;
- if (East == East::None && North == North::None && Power == 3 && South == South::Up && West == West::Up) return 3237;
- if (East == East::None && North == North::None && Power == 3 && South == South::Up && West == West::Side) return 3238;
- if (East == East::None && North == North::None && Power == 3 && South == South::Up && West == West::None) return 3239;
- if (East == East::None && North == North::None && Power == 3 && South == South::Side && West == West::Up) return 3240;
- if (East == East::None && North == North::None && Power == 3 && South == South::Side && West == West::Side) return 3241;
- if (East == East::None && North == North::None && Power == 3 && South == South::Side && West == West::None) return 3242;
- if (East == East::None && North == North::None && Power == 3 && South == South::None && West == West::Up) return 3243;
- if (East == East::None && North == North::None && Power == 3 && South == South::None && West == West::Side) return 3244;
- if (East == East::None && North == North::None && Power == 3 && South == South::None && West == West::None) return 3245;
- if (East == East::None && North == North::None && Power == 4 && South == South::Up && West == West::Up) return 3246;
- if (East == East::None && North == North::None && Power == 4 && South == South::Up && West == West::Side) return 3247;
- if (East == East::None && North == North::None && Power == 4 && South == South::Up && West == West::None) return 3248;
- if (East == East::None && North == North::None && Power == 4 && South == South::Side && West == West::Up) return 3249;
- if (East == East::None && North == North::None && Power == 4 && South == South::Side && West == West::Side) return 3250;
- if (East == East::None && North == North::None && Power == 4 && South == South::Side && West == West::None) return 3251;
- if (East == East::None && North == North::None && Power == 4 && South == South::None && West == West::Up) return 3252;
- if (East == East::None && North == North::None && Power == 4 && South == South::None && West == West::Side) return 3253;
- if (East == East::None && North == North::None && Power == 4 && South == South::None && West == West::None) return 3254;
- if (East == East::None && North == North::None && Power == 5 && South == South::Up && West == West::Up) return 3255;
- if (East == East::None && North == North::None && Power == 5 && South == South::Up && West == West::Side) return 3256;
- if (East == East::None && North == North::None && Power == 5 && South == South::Up && West == West::None) return 3257;
- if (East == East::None && North == North::None && Power == 5 && South == South::Side && West == West::Up) return 3258;
- if (East == East::None && North == North::None && Power == 5 && South == South::Side && West == West::Side) return 3259;
- if (East == East::None && North == North::None && Power == 5 && South == South::Side && West == West::None) return 3260;
- if (East == East::None && North == North::None && Power == 5 && South == South::None && West == West::Up) return 3261;
- if (East == East::None && North == North::None && Power == 5 && South == South::None && West == West::Side) return 3262;
- if (East == East::None && North == North::None && Power == 5 && South == South::None && West == West::None) return 3263;
- if (East == East::None && North == North::None && Power == 6 && South == South::Up && West == West::Up) return 3264;
- if (East == East::None && North == North::None && Power == 6 && South == South::Up && West == West::Side) return 3265;
- if (East == East::None && North == North::None && Power == 6 && South == South::Up && West == West::None) return 3266;
- if (East == East::None && North == North::None && Power == 6 && South == South::Side && West == West::Up) return 3267;
- if (East == East::None && North == North::None && Power == 6 && South == South::Side && West == West::Side) return 3268;
- if (East == East::None && North == North::None && Power == 6 && South == South::Side && West == West::None) return 3269;
- if (East == East::None && North == North::None && Power == 6 && South == South::None && West == West::Up) return 3270;
- if (East == East::None && North == North::None && Power == 6 && South == South::None && West == West::Side) return 3271;
- if (East == East::None && North == North::None && Power == 6 && South == South::None && West == West::None) return 3272;
- if (East == East::None && North == North::None && Power == 7 && South == South::Up && West == West::Up) return 3273;
- if (East == East::None && North == North::None && Power == 7 && South == South::Up && West == West::Side) return 3274;
- if (East == East::None && North == North::None && Power == 7 && South == South::Up && West == West::None) return 3275;
- if (East == East::None && North == North::None && Power == 7 && South == South::Side && West == West::Up) return 3276;
- if (East == East::None && North == North::None && Power == 7 && South == South::Side && West == West::Side) return 3277;
- if (East == East::None && North == North::None && Power == 7 && South == South::Side && West == West::None) return 3278;
- if (East == East::None && North == North::None && Power == 7 && South == South::None && West == West::Up) return 3279;
- if (East == East::None && North == North::None && Power == 7 && South == South::None && West == West::Side) return 3280;
- if (East == East::None && North == North::None && Power == 7 && South == South::None && West == West::None) return 3281;
- if (East == East::None && North == North::None && Power == 8 && South == South::Up && West == West::Up) return 3282;
- if (East == East::None && North == North::None && Power == 8 && South == South::Up && West == West::Side) return 3283;
- if (East == East::None && North == North::None && Power == 8 && South == South::Up && West == West::None) return 3284;
- if (East == East::None && North == North::None && Power == 8 && South == South::Side && West == West::Up) return 3285;
- if (East == East::None && North == North::None && Power == 8 && South == South::Side && West == West::Side) return 3286;
- if (East == East::None && North == North::None && Power == 8 && South == South::Side && West == West::None) return 3287;
- if (East == East::None && North == North::None && Power == 8 && South == South::None && West == West::Up) return 3288;
- if (East == East::None && North == North::None && Power == 8 && South == South::None && West == West::Side) return 3289;
- if (East == East::None && North == North::None && Power == 8 && South == South::None && West == West::None) return 3290;
- if (East == East::None && North == North::None && Power == 9 && South == South::Up && West == West::Up) return 3291;
- if (East == East::None && North == North::None && Power == 9 && South == South::Up && West == West::Side) return 3292;
- if (East == East::None && North == North::None && Power == 9 && South == South::Up && West == West::None) return 3293;
- if (East == East::None && North == North::None && Power == 9 && South == South::Side && West == West::Up) return 3294;
- if (East == East::None && North == North::None && Power == 9 && South == South::Side && West == West::Side) return 3295;
- if (East == East::None && North == North::None && Power == 9 && South == South::Side && West == West::None) return 3296;
- if (East == East::None && North == North::None && Power == 9 && South == South::None && West == West::Up) return 3297;
- if (East == East::None && North == North::None && Power == 9 && South == South::None && West == West::Side) return 3298;
- if (East == East::None && North == North::None && Power == 9 && South == South::None && West == West::None) return 3299;
- if (East == East::None && North == North::None && Power == 10 && South == South::Up && West == West::Up) return 3300;
- if (East == East::None && North == North::None && Power == 10 && South == South::Up && West == West::Side) return 3301;
- if (East == East::None && North == North::None && Power == 10 && South == South::Up && West == West::None) return 3302;
- if (East == East::None && North == North::None && Power == 10 && South == South::Side && West == West::Up) return 3303;
- if (East == East::None && North == North::None && Power == 10 && South == South::Side && West == West::Side) return 3304;
- if (East == East::None && North == North::None && Power == 10 && South == South::Side && West == West::None) return 3305;
- if (East == East::None && North == North::None && Power == 10 && South == South::None && West == West::Up) return 3306;
- if (East == East::None && North == North::None && Power == 10 && South == South::None && West == West::Side) return 3307;
- if (East == East::None && North == North::None && Power == 10 && South == South::None && West == West::None) return 3308;
- if (East == East::None && North == North::None && Power == 11 && South == South::Up && West == West::Up) return 3309;
- if (East == East::None && North == North::None && Power == 11 && South == South::Up && West == West::Side) return 3310;
- if (East == East::None && North == North::None && Power == 11 && South == South::Up && West == West::None) return 3311;
- if (East == East::None && North == North::None && Power == 11 && South == South::Side && West == West::Up) return 3312;
- if (East == East::None && North == North::None && Power == 11 && South == South::Side && West == West::Side) return 3313;
- if (East == East::None && North == North::None && Power == 11 && South == South::Side && West == West::None) return 3314;
- if (East == East::None && North == North::None && Power == 11 && South == South::None && West == West::Up) return 3315;
- if (East == East::None && North == North::None && Power == 11 && South == South::None && West == West::Side) return 3316;
- if (East == East::None && North == North::None && Power == 11 && South == South::None && West == West::None) return 3317;
- if (East == East::None && North == North::None && Power == 12 && South == South::Up && West == West::Up) return 3318;
- if (East == East::None && North == North::None && Power == 12 && South == South::Up && West == West::Side) return 3319;
- if (East == East::None && North == North::None && Power == 12 && South == South::Up && West == West::None) return 3320;
- if (East == East::None && North == North::None && Power == 12 && South == South::Side && West == West::Up) return 3321;
- if (East == East::None && North == North::None && Power == 12 && South == South::Side && West == West::Side) return 3322;
- if (East == East::None && North == North::None && Power == 12 && South == South::Side && West == West::None) return 3323;
- if (East == East::None && North == North::None && Power == 12 && South == South::None && West == West::Up) return 3324;
- if (East == East::None && North == North::None && Power == 12 && South == South::None && West == West::Side) return 3325;
- if (East == East::None && North == North::None && Power == 12 && South == South::None && West == West::None) return 3326;
- if (East == East::None && North == North::None && Power == 13 && South == South::Up && West == West::Up) return 3327;
- if (East == East::None && North == North::None && Power == 13 && South == South::Up && West == West::Side) return 3328;
- if (East == East::None && North == North::None && Power == 13 && South == South::Up && West == West::None) return 3329;
- if (East == East::None && North == North::None && Power == 13 && South == South::Side && West == West::Up) return 3330;
- if (East == East::None && North == North::None && Power == 13 && South == South::Side && West == West::Side) return 3331;
- if (East == East::None && North == North::None && Power == 13 && South == South::Side && West == West::None) return 3332;
- if (East == East::None && North == North::None && Power == 13 && South == South::None && West == West::Up) return 3333;
- if (East == East::None && North == North::None && Power == 13 && South == South::None && West == West::Side) return 3334;
- if (East == East::None && North == North::None && Power == 13 && South == South::None && West == West::None) return 3335;
- if (East == East::None && North == North::None && Power == 14 && South == South::Up && West == West::Up) return 3336;
- if (East == East::None && North == North::None && Power == 14 && South == South::Up && West == West::Side) return 3337;
- if (East == East::None && North == North::None && Power == 14 && South == South::Up && West == West::None) return 3338;
- if (East == East::None && North == North::None && Power == 14 && South == South::Side && West == West::Up) return 3339;
- if (East == East::None && North == North::None && Power == 14 && South == South::Side && West == West::Side) return 3340;
- if (East == East::None && North == North::None && Power == 14 && South == South::Side && West == West::None) return 3341;
- if (East == East::None && North == North::None && Power == 14 && South == South::None && West == West::Up) return 3342;
- if (East == East::None && North == North::None && Power == 14 && South == South::None && West == West::Side) return 3343;
- if (East == East::None && North == North::None && Power == 14 && South == South::None && West == West::None) return 3344;
- if (East == East::None && North == North::None && Power == 15 && South == South::Up && West == West::Up) return 3345;
- if (East == East::None && North == North::None && Power == 15 && South == South::Up && West == West::Side) return 3346;
- if (East == East::None && North == North::None && Power == 15 && South == South::Up && West == West::None) return 3347;
- if (East == East::None && North == North::None && Power == 15 && South == South::Side && West == West::Up) return 3348;
- if (East == East::None && North == North::None && Power == 15 && South == South::Side && West == West::Side) return 3349;
- if (East == East::None && North == North::None && Power == 15 && South == South::Side && West == West::None) return 3350;
- if (East == East::None && North == North::None && Power == 15 && South == South::None && West == West::Up) return 3351;
- if (East == East::None && North == North::None && Power == 15 && South == South::None && West == West::Side) return 3352;
- return 3353;
- }
- short RedstoneWire();
- enum East East(short ID);
- enum North North(short ID);
- unsigned char Power(short ID);
- enum South South(short ID);
- enum West West(short ID);
- }
- namespace Repeater
- {
- constexpr short Repeater(unsigned char Delay, eBlockFace Facing, bool Locked, bool Powered)
- {
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZM && Locked && Powered) return 4031;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZM && Locked && !Powered) return 4032;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZM && !Locked && Powered) return 4033;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZM && !Locked && !Powered) return 4034;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZP && Locked && Powered) return 4035;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZP && Locked && !Powered) return 4036;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZP && !Locked && Powered) return 4037;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_ZP && !Locked && !Powered) return 4038;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XM && Locked && Powered) return 4039;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XM && Locked && !Powered) return 4040;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XM && !Locked && Powered) return 4041;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XM && !Locked && !Powered) return 4042;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XP && Locked && Powered) return 4043;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XP && Locked && !Powered) return 4044;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XP && !Locked && Powered) return 4045;
- if (Delay == 1 && Facing == eBlockFace::BLOCK_FACE_XP && !Locked && !Powered) return 4046;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZM && Locked && Powered) return 4047;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZM && Locked && !Powered) return 4048;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZM && !Locked && Powered) return 4049;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZM && !Locked && !Powered) return 4050;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZP && Locked && Powered) return 4051;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZP && Locked && !Powered) return 4052;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZP && !Locked && Powered) return 4053;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_ZP && !Locked && !Powered) return 4054;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XM && Locked && Powered) return 4055;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XM && Locked && !Powered) return 4056;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XM && !Locked && Powered) return 4057;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XM && !Locked && !Powered) return 4058;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XP && Locked && Powered) return 4059;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XP && Locked && !Powered) return 4060;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XP && !Locked && Powered) return 4061;
- if (Delay == 2 && Facing == eBlockFace::BLOCK_FACE_XP && !Locked && !Powered) return 4062;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZM && Locked && Powered) return 4063;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZM && Locked && !Powered) return 4064;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZM && !Locked && Powered) return 4065;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZM && !Locked && !Powered) return 4066;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZP && Locked && Powered) return 4067;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZP && Locked && !Powered) return 4068;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZP && !Locked && Powered) return 4069;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_ZP && !Locked && !Powered) return 4070;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XM && Locked && Powered) return 4071;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XM && Locked && !Powered) return 4072;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XM && !Locked && Powered) return 4073;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XM && !Locked && !Powered) return 4074;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XP && Locked && Powered) return 4075;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XP && Locked && !Powered) return 4076;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XP && !Locked && Powered) return 4077;
- if (Delay == 3 && Facing == eBlockFace::BLOCK_FACE_XP && !Locked && !Powered) return 4078;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZM && Locked && Powered) return 4079;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZM && Locked && !Powered) return 4080;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZM && !Locked && Powered) return 4081;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZM && !Locked && !Powered) return 4082;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZP && Locked && Powered) return 4083;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZP && Locked && !Powered) return 4084;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZP && !Locked && Powered) return 4085;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_ZP && !Locked && !Powered) return 4086;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XM && Locked && Powered) return 4087;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XM && Locked && !Powered) return 4088;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XM && !Locked && Powered) return 4089;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XM && !Locked && !Powered) return 4090;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XP && Locked && Powered) return 4091;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XP && Locked && !Powered) return 4092;
- if (Delay == 4 && Facing == eBlockFace::BLOCK_FACE_XP && !Locked && Powered) return 4093;
- return 4094;
- }
- short Repeater();
- unsigned char Delay(short ID);
- eBlockFace Facing(short ID);
- bool Locked(short ID);
- bool Powered(short ID);
- }
- namespace RepeatingCommandBlock
- {
- constexpr short RepeatingCommandBlock(bool Conditional, eBlockFace Facing)
- {
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_ZM) return 9225;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_XP) return 9226;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_ZP) return 9227;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_XM) return 9228;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_YP) return 9229;
- if (Conditional && Facing == eBlockFace::BLOCK_FACE_YM) return 9230;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_ZM) return 9231;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_XP) return 9232;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_ZP) return 9233;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_XM) return 9234;
- if (!Conditional && Facing == eBlockFace::BLOCK_FACE_YP) return 9235;
- return 9236;
- }
- short RepeatingCommandBlock();
- bool Conditional(short ID);
- eBlockFace Facing(short ID);
- }
- namespace RespawnAnchor
- {
- constexpr short RespawnAnchor(unsigned char Charges)
- {
- if (Charges == 0) return 15829;
- if (Charges == 1) return 15830;
- if (Charges == 2) return 15831;
- if (Charges == 3) return 15832;
- return 15833;
- }
- short RespawnAnchor();
- unsigned char Charges(short ID);
- }
- namespace RoseBush
- {
- enum class Half
- {
- Upper,
- Lower
- };
- constexpr short RoseBush(enum Half Half)
- {
- if (Half == Half::Upper) return 7889;
- return 7890;
- }
- short RoseBush();
- enum Half Half(short ID);
- }
- namespace Sand
- {
- constexpr short Sand()
- {
- return 66;
- }
- }
- namespace Sandstone
- {
- constexpr short Sandstone()
- {
- return 246;
- }
- }
- namespace SandstoneSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short SandstoneSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8349;
- if (Type == Type::Bottom) return 8351;
- return 8353;
- }
- short SandstoneSlab();
- enum Type Type(short ID);
- }
- namespace SandstoneStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short SandstoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 5171;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 5173;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 5175;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 5177;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 5179;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 5181;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5183;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 5185;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5187;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 5189;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 5191;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 5193;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 5195;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 5197;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 5199;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 5201;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5203;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 5205;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5207;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 5209;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 5211;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 5213;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 5215;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 5217;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 5219;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 5221;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5223;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 5225;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5227;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 5229;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 5231;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 5233;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 5235;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 5237;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 5239;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 5241;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5243;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 5245;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5247;
- return 5249;
- }
- short SandstoneStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace SandstoneWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short SandstoneWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 13786;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 13787;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 13788;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 13792;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 13793;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 13794;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 13798;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 13799;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 13800;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 13804;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 13805;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 13806;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 13810;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 13811;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 13812;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 13816;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 13817;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 13818;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 13822;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 13823;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 13824;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 13828;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 13829;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 13830;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 13834;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 13835;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 13836;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 13840;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 13841;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 13842;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 13846;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 13847;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 13848;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 13852;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 13853;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 13854;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 13858;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 13859;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 13860;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 13864;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 13865;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 13866;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 13870;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 13871;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 13872;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 13876;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 13877;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 13878;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 13882;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 13883;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 13884;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 13888;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 13889;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 13890;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 13894;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 13895;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 13896;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 13900;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 13901;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 13902;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 13906;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 13907;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 13908;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 13912;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 13913;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 13914;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 13918;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 13919;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 13920;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 13924;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 13925;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 13926;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 13930;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 13931;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 13932;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 13936;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 13937;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 13938;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 13942;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 13943;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 13944;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 13948;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 13949;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 13950;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 13954;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 13955;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 13956;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 13960;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 13961;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 13962;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 13966;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 13967;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 13968;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 13972;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 13973;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 13974;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 13978;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 13979;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 13980;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 13984;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 13985;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 13986;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 13990;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 13991;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 13992;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 13996;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 13997;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 13998;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 14002;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 14003;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 14004;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 14008;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 14009;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 14010;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 14014;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 14015;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 14016;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 14020;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 14021;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 14022;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 14026;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 14027;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 14028;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 14032;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 14033;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 14034;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 14038;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 14039;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 14040;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 14044;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 14045;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 14046;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 14050;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 14051;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 14052;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 14056;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 14057;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 14058;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 14062;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 14063;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 14064;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 14068;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 14069;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 14070;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 14074;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 14075;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 14076;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 14080;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 14081;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 14082;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 14086;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 14087;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 14088;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 14092;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 14093;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 14094;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 14098;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 14099;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 14100;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 14104;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 14105;
- return 14106;
- }
- short SandstoneWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace Scaffolding
- {
- constexpr short Scaffolding(bool Bottom, unsigned char Distance)
- {
- if (Bottom && Distance == 0) return 14756;
- if (Bottom && Distance == 1) return 14758;
- if (Bottom && Distance == 2) return 14760;
- if (Bottom && Distance == 3) return 14762;
- if (Bottom && Distance == 4) return 14764;
- if (Bottom && Distance == 5) return 14766;
- if (Bottom && Distance == 6) return 14768;
- if (Bottom && Distance == 7) return 14770;
- if (!Bottom && Distance == 0) return 14772;
- if (!Bottom && Distance == 1) return 14774;
- if (!Bottom && Distance == 2) return 14776;
- if (!Bottom && Distance == 3) return 14778;
- if (!Bottom && Distance == 4) return 14780;
- if (!Bottom && Distance == 5) return 14782;
- if (!Bottom && Distance == 6) return 14784;
- return 14786;
- }
- short Scaffolding();
- bool Bottom(short ID);
- unsigned char Distance(short ID);
- }
- namespace SeaLantern
- {
- constexpr short SeaLantern()
- {
- return 7862;
- }
- }
- namespace SeaPickle
- {
- constexpr short SeaPickle(unsigned char Pickles)
- {
- if (Pickles == 1) return 9641;
- if (Pickles == 2) return 9643;
- if (Pickles == 3) return 9645;
- return 9647;
- }
- short SeaPickle();
- unsigned char Pickles(short ID);
- }
- namespace Seagrass
- {
- constexpr short Seagrass()
- {
- return 1345;
- }
- }
- namespace Shroomlight
- {
- constexpr short Shroomlight()
- {
- return 14989;
- }
- }
- namespace ShulkerBox
- {
- constexpr short ShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9272;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9273;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9274;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9275;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9276;
- return 9277;
- }
- short ShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace SkeletonSkull
- {
- constexpr short SkeletonSkull(unsigned char Rotation)
- {
- if (Rotation == 0) return 6490;
- if (Rotation == 1) return 6491;
- if (Rotation == 2) return 6492;
- if (Rotation == 3) return 6493;
- if (Rotation == 4) return 6494;
- if (Rotation == 5) return 6495;
- if (Rotation == 6) return 6496;
- if (Rotation == 7) return 6497;
- if (Rotation == 8) return 6498;
- if (Rotation == 9) return 6499;
- if (Rotation == 10) return 6500;
- if (Rotation == 11) return 6501;
- if (Rotation == 12) return 6502;
- if (Rotation == 13) return 6503;
- if (Rotation == 14) return 6504;
- return 6505;
- }
- short SkeletonSkull();
- unsigned char Rotation(short ID);
- }
- namespace SkeletonWallSkull
- {
- constexpr short SkeletonWallSkull(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6506;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6507;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 6508;
- return 6509;
- }
- short SkeletonWallSkull();
- eBlockFace Facing(short ID);
- }
- namespace SlimeBlock
- {
- constexpr short SlimeBlock()
- {
- return 7535;
- }
- }
- namespace SmithingTable
- {
- constexpr short SmithingTable()
- {
- return 14849;
- }
- }
- namespace Smoker
- {
- constexpr short Smoker(eBlockFace Facing, bool Lit)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Lit) return 14803;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Lit) return 14804;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Lit) return 14805;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Lit) return 14806;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Lit) return 14807;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Lit) return 14808;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Lit) return 14809;
- return 14810;
- }
- short Smoker();
- eBlockFace Facing(short ID);
- bool Lit(short ID);
- }
- namespace SmoothQuartz
- {
- constexpr short SmoothQuartz()
- {
- return 8416;
- }
- }
- namespace SmoothQuartzSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short SmoothQuartzSlab(enum Type Type)
- {
- if (Type == Type::Top) return 10832;
- if (Type == Type::Bottom) return 10834;
- return 10836;
- }
- short SmoothQuartzSlab();
- enum Type Type(short ID);
- }
- namespace SmoothQuartzStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short SmoothQuartzStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 10310;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 10312;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 10314;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 10316;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 10318;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 10320;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10322;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10324;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10326;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10328;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 10330;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 10332;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 10334;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 10336;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 10338;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 10340;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10342;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10344;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10346;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 10348;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 10350;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 10352;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 10354;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 10356;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 10358;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 10360;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10362;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10364;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10366;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10368;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 10370;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 10372;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 10374;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 10376;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 10378;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 10380;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10382;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10384;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10386;
- return 10388;
- }
- short SmoothQuartzStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace SmoothRedSandstone
- {
- constexpr short SmoothRedSandstone()
- {
- return 8417;
- }
- }
- namespace SmoothRedSandstoneSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short SmoothRedSandstoneSlab(enum Type Type)
- {
- if (Type == Type::Top) return 10796;
- if (Type == Type::Bottom) return 10798;
- return 10800;
- }
- short SmoothRedSandstoneSlab();
- enum Type Type(short ID);
- }
- namespace SmoothRedSandstoneStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short SmoothRedSandstoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 9750;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 9752;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 9754;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 9756;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 9758;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 9760;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9762;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 9764;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9766;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 9768;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 9770;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 9772;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 9774;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 9776;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 9778;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 9780;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9782;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 9784;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9786;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 9788;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 9790;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 9792;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 9794;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 9796;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 9798;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 9800;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9802;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 9804;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9806;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 9808;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 9810;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 9812;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 9814;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 9816;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 9818;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 9820;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 9822;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 9824;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 9826;
- return 9828;
- }
- short SmoothRedSandstoneStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace SmoothSandstone
- {
- constexpr short SmoothSandstone()
- {
- return 8415;
- }
- }
- namespace SmoothSandstoneSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short SmoothSandstoneSlab(enum Type Type)
- {
- if (Type == Type::Top) return 10826;
- if (Type == Type::Bottom) return 10828;
- return 10830;
- }
- short SmoothSandstoneSlab();
- enum Type Type(short ID);
- }
- namespace SmoothSandstoneStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short SmoothSandstoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 10230;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 10232;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 10234;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 10236;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 10238;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 10240;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10242;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10244;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10246;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10248;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 10250;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 10252;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 10254;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 10256;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 10258;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 10260;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10262;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10264;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10266;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 10268;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 10270;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 10272;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 10274;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 10276;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 10278;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 10280;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10282;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10284;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10286;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10288;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 10290;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 10292;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 10294;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 10296;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 10298;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 10300;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10302;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10304;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10306;
- return 10308;
- }
- short SmoothSandstoneStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace SmoothStone
- {
- constexpr short SmoothStone()
- {
- return 8414;
- }
- }
- namespace SmoothStoneSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short SmoothStoneSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8343;
- if (Type == Type::Bottom) return 8345;
- return 8347;
- }
- short SmoothStoneSlab();
- enum Type Type(short ID);
- }
- namespace Snow
- {
- constexpr short Snow(unsigned char Layers)
- {
- if (Layers == 1) return 3921;
- if (Layers == 2) return 3922;
- if (Layers == 3) return 3923;
- if (Layers == 4) return 3924;
- if (Layers == 5) return 3925;
- if (Layers == 6) return 3926;
- if (Layers == 7) return 3927;
- return 3928;
- }
- short Snow();
- unsigned char Layers(short ID);
- }
- namespace SnowBlock
- {
- constexpr short SnowBlock()
- {
- return 3930;
- }
- }
- namespace SoulCampfire
- {
- constexpr short SoulCampfire(eBlockFace Facing, bool Lit, bool SignalFire)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Lit && SignalFire) return 14923;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Lit && !SignalFire) return 14925;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Lit && SignalFire) return 14927;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Lit && !SignalFire) return 14929;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Lit && SignalFire) return 14931;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Lit && !SignalFire) return 14933;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Lit && SignalFire) return 14935;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Lit && !SignalFire) return 14937;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Lit && SignalFire) return 14939;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Lit && !SignalFire) return 14941;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Lit && SignalFire) return 14943;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Lit && !SignalFire) return 14945;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Lit && SignalFire) return 14947;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Lit && !SignalFire) return 14949;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Lit && SignalFire) return 14951;
- return 14953;
- }
- short SoulCampfire();
- eBlockFace Facing(short ID);
- bool Lit(short ID);
- bool SignalFire(short ID);
- }
- namespace SoulFire
- {
- constexpr short SoulFire()
- {
- return 1952;
- }
- }
- namespace SoulLantern
- {
- constexpr short SoulLantern(bool Hanging)
- {
- if (Hanging) return 14888;
- return 14889;
- }
- short SoulLantern();
- bool Hanging(short ID);
- }
- namespace SoulSand
- {
- constexpr short SoulSand()
- {
- return 4000;
- }
- }
- namespace SoulSoil
- {
- constexpr short SoulSoil()
- {
- return 4001;
- }
- }
- namespace SoulTorch
- {
- constexpr short SoulTorch()
- {
- return 4008;
- }
- }
- namespace SoulWallTorch
- {
- constexpr short SoulWallTorch(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 4009;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 4010;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 4011;
- return 4012;
- }
- short SoulWallTorch();
- eBlockFace Facing(short ID);
- }
- namespace Spawner
- {
- constexpr short Spawner()
- {
- return 1953;
- }
- }
- namespace Sponge
- {
- constexpr short Sponge()
- {
- return 229;
- }
- }
- namespace SpruceButton
- {
- enum class Face
- {
- Floor,
- Wall,
- Ceiling
- };
- constexpr short SpruceButton(enum Face Face, eBlockFace Facing, bool Powered)
- {
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6370;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6371;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6372;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6373;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6374;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6375;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6376;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 6377;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6378;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6379;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6380;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6381;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6382;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6383;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6384;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 6385;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 6386;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 6387;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 6388;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 6389;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 6390;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 6391;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 6392;
- return 6393;
- }
- short SpruceButton();
- enum Face Face(short ID);
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace SpruceDoor
- {
- enum class Half
- {
- Upper,
- Lower
- };
- enum class Hinge
- {
- Left,
- Right
- };
- constexpr short SpruceDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8738;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8739;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8740;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8741;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8742;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8743;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8744;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8745;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8746;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8747;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8748;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8749;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8750;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8751;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8752;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 8753;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8754;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8755;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8756;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8757;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8758;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8759;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8760;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8761;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8762;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8763;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8764;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8765;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8766;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8767;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8768;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 8769;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8770;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8771;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8772;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8773;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8774;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8775;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8776;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8777;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8778;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8779;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8780;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8781;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8782;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8783;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8784;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 8785;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 8786;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 8787;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 8788;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 8789;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 8790;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 8791;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 8792;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 8793;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 8794;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 8795;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 8796;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 8797;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 8798;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 8799;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 8800;
- return 8801;
- }
- short SpruceDoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Hinge Hinge(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace SpruceFence
- {
- constexpr short SpruceFence(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 8580;
- if (East && North && South && !West) return 8581;
- if (East && North && !South && West) return 8584;
- if (East && North && !South && !West) return 8585;
- if (East && !North && South && West) return 8588;
- if (East && !North && South && !West) return 8589;
- if (East && !North && !South && West) return 8592;
- if (East && !North && !South && !West) return 8593;
- if (!East && North && South && West) return 8596;
- if (!East && North && South && !West) return 8597;
- if (!East && North && !South && West) return 8600;
- if (!East && North && !South && !West) return 8601;
- if (!East && !North && South && West) return 8604;
- if (!East && !North && South && !West) return 8605;
- if (!East && !North && !South && West) return 8608;
- return 8609;
- }
- short SpruceFence();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace SpruceFenceGate
- {
- constexpr short SpruceFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && Powered) return 8418;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && !Powered) return 8419;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && Powered) return 8420;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && !Powered) return 8421;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && Powered) return 8422;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && !Powered) return 8423;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && Powered) return 8424;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && !Powered) return 8425;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && Powered) return 8426;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && !Powered) return 8427;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && Powered) return 8428;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && !Powered) return 8429;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && Powered) return 8430;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && !Powered) return 8431;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && Powered) return 8432;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && !Powered) return 8433;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && Powered) return 8434;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && !Powered) return 8435;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && Powered) return 8436;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && !Powered) return 8437;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && Powered) return 8438;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && !Powered) return 8439;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && Powered) return 8440;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && !Powered) return 8441;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && Powered) return 8442;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && !Powered) return 8443;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && Powered) return 8444;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && !Powered) return 8445;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && Powered) return 8446;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && !Powered) return 8447;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && !Open && Powered) return 8448;
- return 8449;
- }
- short SpruceFenceGate();
- eBlockFace Facing(short ID);
- bool InWall(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace SpruceLeaves
- {
- constexpr short SpruceLeaves(unsigned char Distance, bool Persistent)
- {
- if (Distance == 1 && Persistent) return 159;
- if (Distance == 1 && !Persistent) return 160;
- if (Distance == 2 && Persistent) return 161;
- if (Distance == 2 && !Persistent) return 162;
- if (Distance == 3 && Persistent) return 163;
- if (Distance == 3 && !Persistent) return 164;
- if (Distance == 4 && Persistent) return 165;
- if (Distance == 4 && !Persistent) return 166;
- if (Distance == 5 && Persistent) return 167;
- if (Distance == 5 && !Persistent) return 168;
- if (Distance == 6 && Persistent) return 169;
- if (Distance == 6 && !Persistent) return 170;
- if (Distance == 7 && Persistent) return 171;
- return 172;
- }
- short SpruceLeaves();
- unsigned char Distance(short ID);
- bool Persistent(short ID);
- }
- namespace SpruceLog
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short SpruceLog(enum Axis Axis)
- {
- if (Axis == Axis::X) return 76;
- if (Axis == Axis::Y) return 77;
- return 78;
- }
- short SpruceLog();
- enum Axis Axis(short ID);
- }
- namespace SprucePlanks
- {
- constexpr short SprucePlanks()
- {
- return 16;
- }
- }
- namespace SprucePressurePlate
- {
- constexpr short SprucePressurePlate(bool Powered)
- {
- if (Powered) return 3875;
- return 3876;
- }
- short SprucePressurePlate();
- bool Powered(short ID);
- }
- namespace SpruceSapling
- {
- constexpr short SpruceSapling(unsigned char Stage)
- {
- if (Stage == 0) return 23;
- return 24;
- }
- short SpruceSapling();
- unsigned char Stage(short ID);
- }
- namespace SpruceSign
- {
- constexpr short SpruceSign(unsigned char Rotation)
- {
- if (Rotation == 0) return 3414;
- if (Rotation == 1) return 3416;
- if (Rotation == 2) return 3418;
- if (Rotation == 3) return 3420;
- if (Rotation == 4) return 3422;
- if (Rotation == 5) return 3424;
- if (Rotation == 6) return 3426;
- if (Rotation == 7) return 3428;
- if (Rotation == 8) return 3430;
- if (Rotation == 9) return 3432;
- if (Rotation == 10) return 3434;
- if (Rotation == 11) return 3436;
- if (Rotation == 12) return 3438;
- if (Rotation == 13) return 3440;
- if (Rotation == 14) return 3442;
- return 3444;
- }
- short SpruceSign();
- unsigned char Rotation(short ID);
- }
- namespace SpruceSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short SpruceSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8307;
- if (Type == Type::Bottom) return 8309;
- return 8311;
- }
- short SpruceSlab();
- enum Type Type(short ID);
- }
- namespace SpruceStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short SpruceStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 5405;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 5407;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 5409;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 5411;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 5413;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 5415;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5417;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 5419;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5421;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 5423;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 5425;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 5427;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 5429;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 5431;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 5433;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 5435;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5437;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 5439;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5441;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 5443;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 5445;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 5447;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 5449;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 5451;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 5453;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 5455;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5457;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 5459;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5461;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 5463;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 5465;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 5467;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 5469;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 5471;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 5473;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 5475;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5477;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 5479;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5481;
- return 5483;
- }
- short SpruceStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace SpruceTrapdoor
- {
- enum class Half
- {
- Top,
- Bottom
- };
- constexpr short SpruceTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && Powered) return 4176;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && !Powered) return 4178;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && Powered) return 4180;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && !Powered) return 4182;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && Powered) return 4184;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && !Powered) return 4186;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && Powered) return 4188;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && !Powered) return 4190;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && Powered) return 4192;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && !Powered) return 4194;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && Powered) return 4196;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && !Powered) return 4198;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && Powered) return 4200;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && !Powered) return 4202;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && Powered) return 4204;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && !Powered) return 4206;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && Powered) return 4208;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && !Powered) return 4210;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && Powered) return 4212;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && !Powered) return 4214;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && Powered) return 4216;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && !Powered) return 4218;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && Powered) return 4220;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && !Powered) return 4222;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && Powered) return 4224;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && !Powered) return 4226;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && Powered) return 4228;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && !Powered) return 4230;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && Powered) return 4232;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && !Powered) return 4234;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && !Open && Powered) return 4236;
- return 4238;
- }
- short SpruceTrapdoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace SpruceWallSign
- {
- constexpr short SpruceWallSign(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 3744;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 3746;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 3748;
- return 3750;
- }
- short SpruceWallSign();
- eBlockFace Facing(short ID);
- }
- namespace SpruceWood
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short SpruceWood(enum Axis Axis)
- {
- if (Axis == Axis::X) return 112;
- if (Axis == Axis::Y) return 113;
- return 114;
- }
- short SpruceWood();
- enum Axis Axis(short ID);
- }
- namespace StickyPiston
- {
- constexpr short StickyPiston(bool Extended, eBlockFace Facing)
- {
- if (Extended && Facing == eBlockFace::BLOCK_FACE_ZM) return 1329;
- if (Extended && Facing == eBlockFace::BLOCK_FACE_XP) return 1330;
- if (Extended && Facing == eBlockFace::BLOCK_FACE_ZP) return 1331;
- if (Extended && Facing == eBlockFace::BLOCK_FACE_XM) return 1332;
- if (Extended && Facing == eBlockFace::BLOCK_FACE_YP) return 1333;
- if (Extended && Facing == eBlockFace::BLOCK_FACE_YM) return 1334;
- if (!Extended && Facing == eBlockFace::BLOCK_FACE_ZM) return 1335;
- if (!Extended && Facing == eBlockFace::BLOCK_FACE_XP) return 1336;
- if (!Extended && Facing == eBlockFace::BLOCK_FACE_ZP) return 1337;
- if (!Extended && Facing == eBlockFace::BLOCK_FACE_XM) return 1338;
- if (!Extended && Facing == eBlockFace::BLOCK_FACE_YP) return 1339;
- return 1340;
- }
- short StickyPiston();
- bool Extended(short ID);
- eBlockFace Facing(short ID);
- }
- namespace Stone
- {
- constexpr short Stone()
- {
- return 1;
- }
- }
- namespace StoneBrickSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short StoneBrickSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8379;
- if (Type == Type::Bottom) return 8381;
- return 8383;
- }
- short StoneBrickSlab();
- enum Type Type(short ID);
- }
- namespace StoneBrickStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short StoneBrickStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 4933;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 4935;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 4937;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 4939;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 4941;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 4943;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 4945;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 4947;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 4949;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 4951;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 4953;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 4955;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 4957;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 4959;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 4961;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 4963;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 4965;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 4967;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 4969;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 4971;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 4973;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 4975;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 4977;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 4979;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 4981;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 4983;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 4985;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 4987;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 4989;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 4991;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 4993;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 4995;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 4997;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 4999;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 5001;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 5003;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 5005;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 5007;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 5009;
- return 5011;
- }
- short StoneBrickStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace StoneBrickWall
- {
- enum class East
- {
- None,
- Low,
- Tall
- };
- enum class North
- {
- None,
- Low,
- Tall
- };
- enum class South
- {
- None,
- Low,
- Tall
- };
- enum class West
- {
- None,
- Low,
- Tall
- };
- constexpr short StoneBrickWall(enum East East, enum North North, enum South South, bool Up, enum West West)
- {
- if (East == East::None && North == North::None && South == South::None && Up && West == West::None) return 12490;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Low) return 12491;
- if (East == East::None && North == North::None && South == South::None && Up && West == West::Tall) return 12492;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::None) return 12496;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Low) return 12497;
- if (East == East::None && North == North::None && South == South::None && !Up && West == West::Tall) return 12498;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::None) return 12502;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Low) return 12503;
- if (East == East::None && North == North::None && South == South::Low && Up && West == West::Tall) return 12504;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::None) return 12508;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Low) return 12509;
- if (East == East::None && North == North::None && South == South::Low && !Up && West == West::Tall) return 12510;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::None) return 12514;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Low) return 12515;
- if (East == East::None && North == North::None && South == South::Tall && Up && West == West::Tall) return 12516;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::None) return 12520;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Low) return 12521;
- if (East == East::None && North == North::None && South == South::Tall && !Up && West == West::Tall) return 12522;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::None) return 12526;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Low) return 12527;
- if (East == East::None && North == North::Low && South == South::None && Up && West == West::Tall) return 12528;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::None) return 12532;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Low) return 12533;
- if (East == East::None && North == North::Low && South == South::None && !Up && West == West::Tall) return 12534;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::None) return 12538;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Low) return 12539;
- if (East == East::None && North == North::Low && South == South::Low && Up && West == West::Tall) return 12540;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::None) return 12544;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Low) return 12545;
- if (East == East::None && North == North::Low && South == South::Low && !Up && West == West::Tall) return 12546;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::None) return 12550;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Low) return 12551;
- if (East == East::None && North == North::Low && South == South::Tall && Up && West == West::Tall) return 12552;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::None) return 12556;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Low) return 12557;
- if (East == East::None && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 12558;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::None) return 12562;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Low) return 12563;
- if (East == East::None && North == North::Tall && South == South::None && Up && West == West::Tall) return 12564;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::None) return 12568;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Low) return 12569;
- if (East == East::None && North == North::Tall && South == South::None && !Up && West == West::Tall) return 12570;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::None) return 12574;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Low) return 12575;
- if (East == East::None && North == North::Tall && South == South::Low && Up && West == West::Tall) return 12576;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::None) return 12580;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Low) return 12581;
- if (East == East::None && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 12582;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::None) return 12586;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Low) return 12587;
- if (East == East::None && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 12588;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::None) return 12592;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 12593;
- if (East == East::None && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 12594;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::None) return 12598;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Low) return 12599;
- if (East == East::Low && North == North::None && South == South::None && Up && West == West::Tall) return 12600;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::None) return 12604;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Low) return 12605;
- if (East == East::Low && North == North::None && South == South::None && !Up && West == West::Tall) return 12606;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::None) return 12610;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Low) return 12611;
- if (East == East::Low && North == North::None && South == South::Low && Up && West == West::Tall) return 12612;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::None) return 12616;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Low) return 12617;
- if (East == East::Low && North == North::None && South == South::Low && !Up && West == West::Tall) return 12618;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::None) return 12622;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Low) return 12623;
- if (East == East::Low && North == North::None && South == South::Tall && Up && West == West::Tall) return 12624;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::None) return 12628;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Low) return 12629;
- if (East == East::Low && North == North::None && South == South::Tall && !Up && West == West::Tall) return 12630;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::None) return 12634;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Low) return 12635;
- if (East == East::Low && North == North::Low && South == South::None && Up && West == West::Tall) return 12636;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::None) return 12640;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Low) return 12641;
- if (East == East::Low && North == North::Low && South == South::None && !Up && West == West::Tall) return 12642;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::None) return 12646;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Low) return 12647;
- if (East == East::Low && North == North::Low && South == South::Low && Up && West == West::Tall) return 12648;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::None) return 12652;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Low) return 12653;
- if (East == East::Low && North == North::Low && South == South::Low && !Up && West == West::Tall) return 12654;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::None) return 12658;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Low) return 12659;
- if (East == East::Low && North == North::Low && South == South::Tall && Up && West == West::Tall) return 12660;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::None) return 12664;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Low) return 12665;
- if (East == East::Low && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 12666;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::None) return 12670;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Low) return 12671;
- if (East == East::Low && North == North::Tall && South == South::None && Up && West == West::Tall) return 12672;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::None) return 12676;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Low) return 12677;
- if (East == East::Low && North == North::Tall && South == South::None && !Up && West == West::Tall) return 12678;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::None) return 12682;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Low) return 12683;
- if (East == East::Low && North == North::Tall && South == South::Low && Up && West == West::Tall) return 12684;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::None) return 12688;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Low) return 12689;
- if (East == East::Low && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 12690;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::None) return 12694;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Low) return 12695;
- if (East == East::Low && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 12696;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::None) return 12700;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 12701;
- if (East == East::Low && North == North::Tall && South == South::Tall && !Up && West == West::Tall) return 12702;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::None) return 12706;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Low) return 12707;
- if (East == East::Tall && North == North::None && South == South::None && Up && West == West::Tall) return 12708;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::None) return 12712;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Low) return 12713;
- if (East == East::Tall && North == North::None && South == South::None && !Up && West == West::Tall) return 12714;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::None) return 12718;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Low) return 12719;
- if (East == East::Tall && North == North::None && South == South::Low && Up && West == West::Tall) return 12720;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::None) return 12724;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Low) return 12725;
- if (East == East::Tall && North == North::None && South == South::Low && !Up && West == West::Tall) return 12726;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::None) return 12730;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Low) return 12731;
- if (East == East::Tall && North == North::None && South == South::Tall && Up && West == West::Tall) return 12732;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::None) return 12736;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Low) return 12737;
- if (East == East::Tall && North == North::None && South == South::Tall && !Up && West == West::Tall) return 12738;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::None) return 12742;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Low) return 12743;
- if (East == East::Tall && North == North::Low && South == South::None && Up && West == West::Tall) return 12744;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::None) return 12748;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Low) return 12749;
- if (East == East::Tall && North == North::Low && South == South::None && !Up && West == West::Tall) return 12750;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::None) return 12754;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Low) return 12755;
- if (East == East::Tall && North == North::Low && South == South::Low && Up && West == West::Tall) return 12756;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::None) return 12760;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Low) return 12761;
- if (East == East::Tall && North == North::Low && South == South::Low && !Up && West == West::Tall) return 12762;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::None) return 12766;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Low) return 12767;
- if (East == East::Tall && North == North::Low && South == South::Tall && Up && West == West::Tall) return 12768;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::None) return 12772;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Low) return 12773;
- if (East == East::Tall && North == North::Low && South == South::Tall && !Up && West == West::Tall) return 12774;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::None) return 12778;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Low) return 12779;
- if (East == East::Tall && North == North::Tall && South == South::None && Up && West == West::Tall) return 12780;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::None) return 12784;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Low) return 12785;
- if (East == East::Tall && North == North::Tall && South == South::None && !Up && West == West::Tall) return 12786;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::None) return 12790;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Low) return 12791;
- if (East == East::Tall && North == North::Tall && South == South::Low && Up && West == West::Tall) return 12792;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::None) return 12796;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Low) return 12797;
- if (East == East::Tall && North == North::Tall && South == South::Low && !Up && West == West::Tall) return 12798;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::None) return 12802;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Low) return 12803;
- if (East == East::Tall && North == North::Tall && South == South::Tall && Up && West == West::Tall) return 12804;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::None) return 12808;
- if (East == East::Tall && North == North::Tall && South == South::Tall && !Up && West == West::Low) return 12809;
- return 12810;
- }
- short StoneBrickWall();
- enum East East(short ID);
- enum North North(short ID);
- enum South South(short ID);
- bool Up(short ID);
- enum West West(short ID);
- }
- namespace StoneBricks
- {
- constexpr short StoneBricks()
- {
- return 4495;
- }
- }
- namespace StoneButton
- {
- enum class Face
- {
- Floor,
- Wall,
- Ceiling
- };
- constexpr short StoneButton(enum Face Face, eBlockFace Facing, bool Powered)
- {
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 3897;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 3898;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 3899;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 3900;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 3901;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 3902;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 3903;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 3904;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 3905;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 3906;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 3907;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 3908;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 3909;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 3910;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 3911;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 3912;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 3913;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 3914;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 3915;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 3916;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 3917;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 3918;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 3919;
- return 3920;
- }
- short StoneButton();
- enum Face Face(short ID);
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace StonePressurePlate
- {
- constexpr short StonePressurePlate(bool Powered)
- {
- if (Powered) return 3807;
- return 3808;
- }
- short StonePressurePlate();
- bool Powered(short ID);
- }
- namespace StoneSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short StoneSlab(enum Type Type)
- {
- if (Type == Type::Top) return 8337;
- if (Type == Type::Bottom) return 8339;
- return 8341;
- }
- short StoneSlab();
- enum Type Type(short ID);
- }
- namespace StoneStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short StoneStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 10150;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 10152;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 10154;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 10156;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 10158;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 10160;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10162;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10164;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10166;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10168;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 10170;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 10172;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 10174;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 10176;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 10178;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 10180;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10182;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10184;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10186;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 10188;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 10190;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 10192;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 10194;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 10196;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 10198;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 10200;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10202;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 10204;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10206;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 10208;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 10210;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 10212;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 10214;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 10216;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 10218;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 10220;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 10222;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 10224;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 10226;
- return 10228;
- }
- short StoneStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace Stonecutter
- {
- constexpr short Stonecutter(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 14850;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 14851;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 14852;
- return 14853;
- }
- short Stonecutter();
- eBlockFace Facing(short ID);
- }
- namespace StrippedAcaciaLog
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedAcaciaLog(enum Axis Axis)
- {
- if (Axis == Axis::X) return 100;
- if (Axis == Axis::Y) return 101;
- return 102;
- }
- short StrippedAcaciaLog();
- enum Axis Axis(short ID);
- }
- namespace StrippedAcaciaWood
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedAcaciaWood(enum Axis Axis)
- {
- if (Axis == Axis::X) return 139;
- if (Axis == Axis::Y) return 140;
- return 141;
- }
- short StrippedAcaciaWood();
- enum Axis Axis(short ID);
- }
- namespace StrippedBirchLog
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedBirchLog(enum Axis Axis)
- {
- if (Axis == Axis::X) return 94;
- if (Axis == Axis::Y) return 95;
- return 96;
- }
- short StrippedBirchLog();
- enum Axis Axis(short ID);
- }
- namespace StrippedBirchWood
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedBirchWood(enum Axis Axis)
- {
- if (Axis == Axis::X) return 133;
- if (Axis == Axis::Y) return 134;
- return 135;
- }
- short StrippedBirchWood();
- enum Axis Axis(short ID);
- }
- namespace StrippedCrimsonHyphae
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedCrimsonHyphae(enum Axis Axis)
- {
- if (Axis == Axis::X) return 14984;
- if (Axis == Axis::Y) return 14985;
- return 14986;
- }
- short StrippedCrimsonHyphae();
- enum Axis Axis(short ID);
- }
- namespace StrippedCrimsonStem
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedCrimsonStem(enum Axis Axis)
- {
- if (Axis == Axis::X) return 14978;
- if (Axis == Axis::Y) return 14979;
- return 14980;
- }
- short StrippedCrimsonStem();
- enum Axis Axis(short ID);
- }
- namespace StrippedDarkOakLog
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedDarkOakLog(enum Axis Axis)
- {
- if (Axis == Axis::X) return 103;
- if (Axis == Axis::Y) return 104;
- return 105;
- }
- short StrippedDarkOakLog();
- enum Axis Axis(short ID);
- }
- namespace StrippedDarkOakWood
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedDarkOakWood(enum Axis Axis)
- {
- if (Axis == Axis::X) return 142;
- if (Axis == Axis::Y) return 143;
- return 144;
- }
- short StrippedDarkOakWood();
- enum Axis Axis(short ID);
- }
- namespace StrippedJungleLog
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedJungleLog(enum Axis Axis)
- {
- if (Axis == Axis::X) return 97;
- if (Axis == Axis::Y) return 98;
- return 99;
- }
- short StrippedJungleLog();
- enum Axis Axis(short ID);
- }
- namespace StrippedJungleWood
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedJungleWood(enum Axis Axis)
- {
- if (Axis == Axis::X) return 136;
- if (Axis == Axis::Y) return 137;
- return 138;
- }
- short StrippedJungleWood();
- enum Axis Axis(short ID);
- }
- namespace StrippedOakLog
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedOakLog(enum Axis Axis)
- {
- if (Axis == Axis::X) return 106;
- if (Axis == Axis::Y) return 107;
- return 108;
- }
- short StrippedOakLog();
- enum Axis Axis(short ID);
- }
- namespace StrippedOakWood
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedOakWood(enum Axis Axis)
- {
- if (Axis == Axis::X) return 127;
- if (Axis == Axis::Y) return 128;
- return 129;
- }
- short StrippedOakWood();
- enum Axis Axis(short ID);
- }
- namespace StrippedSpruceLog
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedSpruceLog(enum Axis Axis)
- {
- if (Axis == Axis::X) return 91;
- if (Axis == Axis::Y) return 92;
- return 93;
- }
- short StrippedSpruceLog();
- enum Axis Axis(short ID);
- }
- namespace StrippedSpruceWood
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedSpruceWood(enum Axis Axis)
- {
- if (Axis == Axis::X) return 130;
- if (Axis == Axis::Y) return 131;
- return 132;
- }
- short StrippedSpruceWood();
- enum Axis Axis(short ID);
- }
- namespace StrippedWarpedHyphae
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedWarpedHyphae(enum Axis Axis)
- {
- if (Axis == Axis::X) return 14967;
- if (Axis == Axis::Y) return 14968;
- return 14969;
- }
- short StrippedWarpedHyphae();
- enum Axis Axis(short ID);
- }
- namespace StrippedWarpedStem
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short StrippedWarpedStem(enum Axis Axis)
- {
- if (Axis == Axis::X) return 14961;
- if (Axis == Axis::Y) return 14962;
- return 14963;
- }
- short StrippedWarpedStem();
- enum Axis Axis(short ID);
- }
- namespace StructureBlock
- {
- enum class Mode
- {
- Save,
- Load,
- Corner,
- Data
- };
- constexpr short StructureBlock(enum Mode Mode)
- {
- if (Mode == Mode::Save) return 15735;
- if (Mode == Mode::Load) return 15736;
- if (Mode == Mode::Corner) return 15737;
- return 15738;
- }
- short StructureBlock();
- enum Mode Mode(short ID);
- }
- namespace StructureVoid
- {
- constexpr short StructureVoid()
- {
- return 9259;
- }
- }
- namespace SugarCane
- {
- constexpr short SugarCane(unsigned char Age)
- {
- if (Age == 0) return 3948;
- if (Age == 1) return 3949;
- if (Age == 2) return 3950;
- if (Age == 3) return 3951;
- if (Age == 4) return 3952;
- if (Age == 5) return 3953;
- if (Age == 6) return 3954;
- if (Age == 7) return 3955;
- if (Age == 8) return 3956;
- if (Age == 9) return 3957;
- if (Age == 10) return 3958;
- if (Age == 11) return 3959;
- if (Age == 12) return 3960;
- if (Age == 13) return 3961;
- if (Age == 14) return 3962;
- return 3963;
- }
- short SugarCane();
- unsigned char Age(short ID);
- }
- namespace Sunflower
- {
- enum class Half
- {
- Upper,
- Lower
- };
- constexpr short Sunflower(enum Half Half)
- {
- if (Half == Half::Upper) return 7885;
- return 7886;
- }
- short Sunflower();
- enum Half Half(short ID);
- }
- namespace SweetBerryBush
- {
- constexpr short SweetBerryBush(unsigned char Age)
- {
- if (Age == 0) return 14954;
- if (Age == 1) return 14955;
- if (Age == 2) return 14956;
- return 14957;
- }
- short SweetBerryBush();
- unsigned char Age(short ID);
- }
- namespace TNT
- {
- constexpr short TNT(bool Unstable)
- {
- if (Unstable) return 1430;
- return 1431;
- }
- short TNT();
- bool Unstable(short ID);
- }
- namespace TallGrass
- {
- enum class Half
- {
- Upper,
- Lower
- };
- constexpr short TallGrass(enum Half Half)
- {
- if (Half == Half::Upper) return 7893;
- return 7894;
- }
- short TallGrass();
- enum Half Half(short ID);
- }
- namespace TallSeagrass
- {
- enum class Half
- {
- Upper,
- Lower
- };
- constexpr short TallSeagrass(enum Half Half)
- {
- if (Half == Half::Upper) return 1346;
- return 1347;
- }
- short TallSeagrass();
- enum Half Half(short ID);
- }
- namespace Target
- {
- constexpr short Target(unsigned char Power)
- {
- if (Power == 0) return 15760;
- if (Power == 1) return 15761;
- if (Power == 2) return 15762;
- if (Power == 3) return 15763;
- if (Power == 4) return 15764;
- if (Power == 5) return 15765;
- if (Power == 6) return 15766;
- if (Power == 7) return 15767;
- if (Power == 8) return 15768;
- if (Power == 9) return 15769;
- if (Power == 10) return 15770;
- if (Power == 11) return 15771;
- if (Power == 12) return 15772;
- if (Power == 13) return 15773;
- if (Power == 14) return 15774;
- return 15775;
- }
- short Target();
- unsigned char Power(short ID);
- }
- namespace Terracotta
- {
- constexpr short Terracotta()
- {
- return 7882;
- }
- }
- namespace Torch
- {
- constexpr short Torch()
- {
- return 1435;
- }
- }
- namespace TrappedChest
- {
- enum class Type
- {
- Single,
- Left,
- Right
- };
- constexpr short TrappedChest(eBlockFace Facing, enum Type Type)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Type == Type::Single) return 6623;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Type == Type::Left) return 6625;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Type == Type::Right) return 6627;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Type == Type::Single) return 6629;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Type == Type::Left) return 6631;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Type == Type::Right) return 6633;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Type == Type::Single) return 6635;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Type == Type::Left) return 6637;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Type == Type::Right) return 6639;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Type == Type::Single) return 6641;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Type == Type::Left) return 6643;
- return 6645;
- }
- short TrappedChest();
- eBlockFace Facing(short ID);
- enum Type Type(short ID);
- }
- namespace Tripwire
- {
- constexpr short Tripwire(bool Attached, bool Disarmed, bool East, bool North, bool Powered, bool South, bool West)
- {
- if (Attached && Disarmed && East && North && Powered && South && West) return 5275;
- if (Attached && Disarmed && East && North && Powered && South && !West) return 5276;
- if (Attached && Disarmed && East && North && Powered && !South && West) return 5277;
- if (Attached && Disarmed && East && North && Powered && !South && !West) return 5278;
- if (Attached && Disarmed && East && North && !Powered && South && West) return 5279;
- if (Attached && Disarmed && East && North && !Powered && South && !West) return 5280;
- if (Attached && Disarmed && East && North && !Powered && !South && West) return 5281;
- if (Attached && Disarmed && East && North && !Powered && !South && !West) return 5282;
- if (Attached && Disarmed && East && !North && Powered && South && West) return 5283;
- if (Attached && Disarmed && East && !North && Powered && South && !West) return 5284;
- if (Attached && Disarmed && East && !North && Powered && !South && West) return 5285;
- if (Attached && Disarmed && East && !North && Powered && !South && !West) return 5286;
- if (Attached && Disarmed && East && !North && !Powered && South && West) return 5287;
- if (Attached && Disarmed && East && !North && !Powered && South && !West) return 5288;
- if (Attached && Disarmed && East && !North && !Powered && !South && West) return 5289;
- if (Attached && Disarmed && East && !North && !Powered && !South && !West) return 5290;
- if (Attached && Disarmed && !East && North && Powered && South && West) return 5291;
- if (Attached && Disarmed && !East && North && Powered && South && !West) return 5292;
- if (Attached && Disarmed && !East && North && Powered && !South && West) return 5293;
- if (Attached && Disarmed && !East && North && Powered && !South && !West) return 5294;
- if (Attached && Disarmed && !East && North && !Powered && South && West) return 5295;
- if (Attached && Disarmed && !East && North && !Powered && South && !West) return 5296;
- if (Attached && Disarmed && !East && North && !Powered && !South && West) return 5297;
- if (Attached && Disarmed && !East && North && !Powered && !South && !West) return 5298;
- if (Attached && Disarmed && !East && !North && Powered && South && West) return 5299;
- if (Attached && Disarmed && !East && !North && Powered && South && !West) return 5300;
- if (Attached && Disarmed && !East && !North && Powered && !South && West) return 5301;
- if (Attached && Disarmed && !East && !North && Powered && !South && !West) return 5302;
- if (Attached && Disarmed && !East && !North && !Powered && South && West) return 5303;
- if (Attached && Disarmed && !East && !North && !Powered && South && !West) return 5304;
- if (Attached && Disarmed && !East && !North && !Powered && !South && West) return 5305;
- if (Attached && Disarmed && !East && !North && !Powered && !South && !West) return 5306;
- if (Attached && !Disarmed && East && North && Powered && South && West) return 5307;
- if (Attached && !Disarmed && East && North && Powered && South && !West) return 5308;
- if (Attached && !Disarmed && East && North && Powered && !South && West) return 5309;
- if (Attached && !Disarmed && East && North && Powered && !South && !West) return 5310;
- if (Attached && !Disarmed && East && North && !Powered && South && West) return 5311;
- if (Attached && !Disarmed && East && North && !Powered && South && !West) return 5312;
- if (Attached && !Disarmed && East && North && !Powered && !South && West) return 5313;
- if (Attached && !Disarmed && East && North && !Powered && !South && !West) return 5314;
- if (Attached && !Disarmed && East && !North && Powered && South && West) return 5315;
- if (Attached && !Disarmed && East && !North && Powered && South && !West) return 5316;
- if (Attached && !Disarmed && East && !North && Powered && !South && West) return 5317;
- if (Attached && !Disarmed && East && !North && Powered && !South && !West) return 5318;
- if (Attached && !Disarmed && East && !North && !Powered && South && West) return 5319;
- if (Attached && !Disarmed && East && !North && !Powered && South && !West) return 5320;
- if (Attached && !Disarmed && East && !North && !Powered && !South && West) return 5321;
- if (Attached && !Disarmed && East && !North && !Powered && !South && !West) return 5322;
- if (Attached && !Disarmed && !East && North && Powered && South && West) return 5323;
- if (Attached && !Disarmed && !East && North && Powered && South && !West) return 5324;
- if (Attached && !Disarmed && !East && North && Powered && !South && West) return 5325;
- if (Attached && !Disarmed && !East && North && Powered && !South && !West) return 5326;
- if (Attached && !Disarmed && !East && North && !Powered && South && West) return 5327;
- if (Attached && !Disarmed && !East && North && !Powered && South && !West) return 5328;
- if (Attached && !Disarmed && !East && North && !Powered && !South && West) return 5329;
- if (Attached && !Disarmed && !East && North && !Powered && !South && !West) return 5330;
- if (Attached && !Disarmed && !East && !North && Powered && South && West) return 5331;
- if (Attached && !Disarmed && !East && !North && Powered && South && !West) return 5332;
- if (Attached && !Disarmed && !East && !North && Powered && !South && West) return 5333;
- if (Attached && !Disarmed && !East && !North && Powered && !South && !West) return 5334;
- if (Attached && !Disarmed && !East && !North && !Powered && South && West) return 5335;
- if (Attached && !Disarmed && !East && !North && !Powered && South && !West) return 5336;
- if (Attached && !Disarmed && !East && !North && !Powered && !South && West) return 5337;
- if (Attached && !Disarmed && !East && !North && !Powered && !South && !West) return 5338;
- if (!Attached && Disarmed && East && North && Powered && South && West) return 5339;
- if (!Attached && Disarmed && East && North && Powered && South && !West) return 5340;
- if (!Attached && Disarmed && East && North && Powered && !South && West) return 5341;
- if (!Attached && Disarmed && East && North && Powered && !South && !West) return 5342;
- if (!Attached && Disarmed && East && North && !Powered && South && West) return 5343;
- if (!Attached && Disarmed && East && North && !Powered && South && !West) return 5344;
- if (!Attached && Disarmed && East && North && !Powered && !South && West) return 5345;
- if (!Attached && Disarmed && East && North && !Powered && !South && !West) return 5346;
- if (!Attached && Disarmed && East && !North && Powered && South && West) return 5347;
- if (!Attached && Disarmed && East && !North && Powered && South && !West) return 5348;
- if (!Attached && Disarmed && East && !North && Powered && !South && West) return 5349;
- if (!Attached && Disarmed && East && !North && Powered && !South && !West) return 5350;
- if (!Attached && Disarmed && East && !North && !Powered && South && West) return 5351;
- if (!Attached && Disarmed && East && !North && !Powered && South && !West) return 5352;
- if (!Attached && Disarmed && East && !North && !Powered && !South && West) return 5353;
- if (!Attached && Disarmed && East && !North && !Powered && !South && !West) return 5354;
- if (!Attached && Disarmed && !East && North && Powered && South && West) return 5355;
- if (!Attached && Disarmed && !East && North && Powered && South && !West) return 5356;
- if (!Attached && Disarmed && !East && North && Powered && !South && West) return 5357;
- if (!Attached && Disarmed && !East && North && Powered && !South && !West) return 5358;
- if (!Attached && Disarmed && !East && North && !Powered && South && West) return 5359;
- if (!Attached && Disarmed && !East && North && !Powered && South && !West) return 5360;
- if (!Attached && Disarmed && !East && North && !Powered && !South && West) return 5361;
- if (!Attached && Disarmed && !East && North && !Powered && !South && !West) return 5362;
- if (!Attached && Disarmed && !East && !North && Powered && South && West) return 5363;
- if (!Attached && Disarmed && !East && !North && Powered && South && !West) return 5364;
- if (!Attached && Disarmed && !East && !North && Powered && !South && West) return 5365;
- if (!Attached && Disarmed && !East && !North && Powered && !South && !West) return 5366;
- if (!Attached && Disarmed && !East && !North && !Powered && South && West) return 5367;
- if (!Attached && Disarmed && !East && !North && !Powered && South && !West) return 5368;
- if (!Attached && Disarmed && !East && !North && !Powered && !South && West) return 5369;
- if (!Attached && Disarmed && !East && !North && !Powered && !South && !West) return 5370;
- if (!Attached && !Disarmed && East && North && Powered && South && West) return 5371;
- if (!Attached && !Disarmed && East && North && Powered && South && !West) return 5372;
- if (!Attached && !Disarmed && East && North && Powered && !South && West) return 5373;
- if (!Attached && !Disarmed && East && North && Powered && !South && !West) return 5374;
- if (!Attached && !Disarmed && East && North && !Powered && South && West) return 5375;
- if (!Attached && !Disarmed && East && North && !Powered && South && !West) return 5376;
- if (!Attached && !Disarmed && East && North && !Powered && !South && West) return 5377;
- if (!Attached && !Disarmed && East && North && !Powered && !South && !West) return 5378;
- if (!Attached && !Disarmed && East && !North && Powered && South && West) return 5379;
- if (!Attached && !Disarmed && East && !North && Powered && South && !West) return 5380;
- if (!Attached && !Disarmed && East && !North && Powered && !South && West) return 5381;
- if (!Attached && !Disarmed && East && !North && Powered && !South && !West) return 5382;
- if (!Attached && !Disarmed && East && !North && !Powered && South && West) return 5383;
- if (!Attached && !Disarmed && East && !North && !Powered && South && !West) return 5384;
- if (!Attached && !Disarmed && East && !North && !Powered && !South && West) return 5385;
- if (!Attached && !Disarmed && East && !North && !Powered && !South && !West) return 5386;
- if (!Attached && !Disarmed && !East && North && Powered && South && West) return 5387;
- if (!Attached && !Disarmed && !East && North && Powered && South && !West) return 5388;
- if (!Attached && !Disarmed && !East && North && Powered && !South && West) return 5389;
- if (!Attached && !Disarmed && !East && North && Powered && !South && !West) return 5390;
- if (!Attached && !Disarmed && !East && North && !Powered && South && West) return 5391;
- if (!Attached && !Disarmed && !East && North && !Powered && South && !West) return 5392;
- if (!Attached && !Disarmed && !East && North && !Powered && !South && West) return 5393;
- if (!Attached && !Disarmed && !East && North && !Powered && !South && !West) return 5394;
- if (!Attached && !Disarmed && !East && !North && Powered && South && West) return 5395;
- if (!Attached && !Disarmed && !East && !North && Powered && South && !West) return 5396;
- if (!Attached && !Disarmed && !East && !North && Powered && !South && West) return 5397;
- if (!Attached && !Disarmed && !East && !North && Powered && !South && !West) return 5398;
- if (!Attached && !Disarmed && !East && !North && !Powered && South && West) return 5399;
- if (!Attached && !Disarmed && !East && !North && !Powered && South && !West) return 5400;
- if (!Attached && !Disarmed && !East && !North && !Powered && !South && West) return 5401;
- return 5402;
- }
- short Tripwire();
- bool Attached(short ID);
- bool Disarmed(short ID);
- bool East(short ID);
- bool North(short ID);
- bool Powered(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace TripwireHook
- {
- constexpr short TripwireHook(bool Attached, eBlockFace Facing, bool Powered)
- {
- if (Attached && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 5259;
- if (Attached && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 5260;
- if (Attached && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 5261;
- if (Attached && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 5262;
- if (Attached && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 5263;
- if (Attached && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 5264;
- if (Attached && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 5265;
- if (Attached && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 5266;
- if (!Attached && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 5267;
- if (!Attached && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 5268;
- if (!Attached && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 5269;
- if (!Attached && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 5270;
- if (!Attached && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 5271;
- if (!Attached && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 5272;
- if (!Attached && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 5273;
- return 5274;
- }
- short TripwireHook();
- bool Attached(short ID);
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace TubeCoral
- {
- constexpr short TubeCoral()
- {
- return 9531;
- }
- }
- namespace TubeCoralBlock
- {
- constexpr short TubeCoralBlock()
- {
- return 9515;
- }
- }
- namespace TubeCoralFan
- {
- constexpr short TubeCoralFan()
- {
- return 9551;
- }
- }
- namespace TubeCoralWallFan
- {
- constexpr short TubeCoralWallFan(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9601;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9603;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9605;
- return 9607;
- }
- short TubeCoralWallFan();
- eBlockFace Facing(short ID);
- }
- namespace TurtleEgg
- {
- constexpr short TurtleEgg(unsigned char Eggs, unsigned char Hatch)
- {
- if (Eggs == 1 && Hatch == 0) return 9498;
- if (Eggs == 1 && Hatch == 1) return 9499;
- if (Eggs == 1 && Hatch == 2) return 9500;
- if (Eggs == 2 && Hatch == 0) return 9501;
- if (Eggs == 2 && Hatch == 1) return 9502;
- if (Eggs == 2 && Hatch == 2) return 9503;
- if (Eggs == 3 && Hatch == 0) return 9504;
- if (Eggs == 3 && Hatch == 1) return 9505;
- if (Eggs == 3 && Hatch == 2) return 9506;
- if (Eggs == 4 && Hatch == 0) return 9507;
- if (Eggs == 4 && Hatch == 1) return 9508;
- return 9509;
- }
- short TurtleEgg();
- unsigned char Eggs(short ID);
- unsigned char Hatch(short ID);
- }
- namespace TwistingVines
- {
- constexpr short TwistingVines(unsigned char Age)
- {
- if (Age == 0) return 15017;
- if (Age == 1) return 15018;
- if (Age == 2) return 15019;
- if (Age == 3) return 15020;
- if (Age == 4) return 15021;
- if (Age == 5) return 15022;
- if (Age == 6) return 15023;
- if (Age == 7) return 15024;
- if (Age == 8) return 15025;
- if (Age == 9) return 15026;
- if (Age == 10) return 15027;
- if (Age == 11) return 15028;
- if (Age == 12) return 15029;
- if (Age == 13) return 15030;
- if (Age == 14) return 15031;
- if (Age == 15) return 15032;
- if (Age == 16) return 15033;
- if (Age == 17) return 15034;
- if (Age == 18) return 15035;
- if (Age == 19) return 15036;
- if (Age == 20) return 15037;
- if (Age == 21) return 15038;
- if (Age == 22) return 15039;
- if (Age == 23) return 15040;
- if (Age == 24) return 15041;
- return 15042;
- }
- short TwistingVines();
- unsigned char Age(short ID);
- }
- namespace TwistingVinesPlant
- {
- constexpr short TwistingVinesPlant()
- {
- return 15043;
- }
- }
- namespace Vine
- {
- constexpr short Vine(bool East, bool North, bool South, bool Up, bool West)
- {
- if (East && North && South && Up && West) return 4788;
- if (East && North && South && Up && !West) return 4789;
- if (East && North && South && !Up && West) return 4790;
- if (East && North && South && !Up && !West) return 4791;
- if (East && North && !South && Up && West) return 4792;
- if (East && North && !South && Up && !West) return 4793;
- if (East && North && !South && !Up && West) return 4794;
- if (East && North && !South && !Up && !West) return 4795;
- if (East && !North && South && Up && West) return 4796;
- if (East && !North && South && Up && !West) return 4797;
- if (East && !North && South && !Up && West) return 4798;
- if (East && !North && South && !Up && !West) return 4799;
- if (East && !North && !South && Up && West) return 4800;
- if (East && !North && !South && Up && !West) return 4801;
- if (East && !North && !South && !Up && West) return 4802;
- if (East && !North && !South && !Up && !West) return 4803;
- if (!East && North && South && Up && West) return 4804;
- if (!East && North && South && Up && !West) return 4805;
- if (!East && North && South && !Up && West) return 4806;
- if (!East && North && South && !Up && !West) return 4807;
- if (!East && North && !South && Up && West) return 4808;
- if (!East && North && !South && Up && !West) return 4809;
- if (!East && North && !South && !Up && West) return 4810;
- if (!East && North && !South && !Up && !West) return 4811;
- if (!East && !North && South && Up && West) return 4812;
- if (!East && !North && South && Up && !West) return 4813;
- if (!East && !North && South && !Up && West) return 4814;
- if (!East && !North && South && !Up && !West) return 4815;
- if (!East && !North && !South && Up && West) return 4816;
- if (!East && !North && !South && Up && !West) return 4817;
- if (!East && !North && !South && !Up && West) return 4818;
- return 4819;
- }
- short Vine();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool Up(short ID);
- bool West(short ID);
- }
- namespace VoidAir
- {
- constexpr short VoidAir()
- {
- return 9665;
- }
- }
- namespace WallTorch
- {
- constexpr short WallTorch(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 1436;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 1437;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 1438;
- return 1439;
- }
- short WallTorch();
- eBlockFace Facing(short ID);
- }
- namespace WarpedButton
- {
- enum class Face
- {
- Floor,
- Wall,
- Ceiling
- };
- constexpr short WarpedButton(enum Face Face, eBlockFace Facing, bool Powered)
- {
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 15503;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 15504;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 15505;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 15506;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 15507;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 15508;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 15509;
- if (Face == Face::Floor && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 15510;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 15511;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 15512;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 15513;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 15514;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 15515;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 15516;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 15517;
- if (Face == Face::Wall && Facing == eBlockFace::BLOCK_FACE_XP && !Powered) return 15518;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && Powered) return 15519;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZM && !Powered) return 15520;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && Powered) return 15521;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_ZP && !Powered) return 15522;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && Powered) return 15523;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XM && !Powered) return 15524;
- if (Face == Face::Ceiling && Facing == eBlockFace::BLOCK_FACE_XP && Powered) return 15525;
- return 15526;
- }
- short WarpedButton();
- enum Face Face(short ID);
- eBlockFace Facing(short ID);
- bool Powered(short ID);
- }
- namespace WarpedDoor
- {
- enum class Half
- {
- Upper,
- Lower
- };
- enum class Hinge
- {
- Left,
- Right
- };
- constexpr short WarpedDoor(eBlockFace Facing, enum Half Half, enum Hinge Hinge, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 15591;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 15592;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 15593;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 15594;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 15595;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 15596;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 15597;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 15598;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 15599;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 15600;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 15601;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 15602;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 15603;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 15604;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 15605;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 15606;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 15607;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 15608;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 15609;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 15610;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 15611;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 15612;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 15613;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 15614;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 15615;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 15616;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 15617;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 15618;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 15619;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 15620;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 15621;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 15622;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 15623;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 15624;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 15625;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 15626;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 15627;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 15628;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 15629;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 15630;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 15631;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 15632;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 15633;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 15634;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 15635;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 15636;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 15637;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Lower && Hinge == Hinge::Right && !Open && !Powered) return 15638;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && Powered) return 15639;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && Open && !Powered) return 15640;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && Powered) return 15641;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Left && !Open && !Powered) return 15642;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && Powered) return 15643;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && Open && !Powered) return 15644;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && Powered) return 15645;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Upper && Hinge == Hinge::Right && !Open && !Powered) return 15646;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && Powered) return 15647;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && Open && !Powered) return 15648;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && Powered) return 15649;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Left && !Open && !Powered) return 15650;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && Powered) return 15651;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && Open && !Powered) return 15652;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Lower && Hinge == Hinge::Right && !Open && Powered) return 15653;
- return 15654;
- }
- short WarpedDoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Hinge Hinge(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace WarpedFence
- {
- constexpr short WarpedFence(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 15097;
- if (East && North && South && !West) return 15098;
- if (East && North && !South && West) return 15101;
- if (East && North && !South && !West) return 15102;
- if (East && !North && South && West) return 15105;
- if (East && !North && South && !West) return 15106;
- if (East && !North && !South && West) return 15109;
- if (East && !North && !South && !West) return 15110;
- if (!East && North && South && West) return 15113;
- if (!East && North && South && !West) return 15114;
- if (!East && North && !South && West) return 15117;
- if (!East && North && !South && !West) return 15118;
- if (!East && !North && South && West) return 15121;
- if (!East && !North && South && !West) return 15122;
- if (!East && !North && !South && West) return 15125;
- return 15126;
- }
- short WarpedFence();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace WarpedFenceGate
- {
- constexpr short WarpedFenceGate(eBlockFace Facing, bool InWall, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && Powered) return 15287;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && Open && !Powered) return 15288;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && Powered) return 15289;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && InWall && !Open && !Powered) return 15290;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && Powered) return 15291;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && Open && !Powered) return 15292;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && Powered) return 15293;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !InWall && !Open && !Powered) return 15294;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && Powered) return 15295;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && Open && !Powered) return 15296;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && Powered) return 15297;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && InWall && !Open && !Powered) return 15298;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && Powered) return 15299;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && Open && !Powered) return 15300;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && Powered) return 15301;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !InWall && !Open && !Powered) return 15302;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && Powered) return 15303;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && Open && !Powered) return 15304;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && Powered) return 15305;
- if (Facing == eBlockFace::BLOCK_FACE_XM && InWall && !Open && !Powered) return 15306;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && Powered) return 15307;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && Open && !Powered) return 15308;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && Powered) return 15309;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !InWall && !Open && !Powered) return 15310;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && Powered) return 15311;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && Open && !Powered) return 15312;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && Powered) return 15313;
- if (Facing == eBlockFace::BLOCK_FACE_XP && InWall && !Open && !Powered) return 15314;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && Powered) return 15315;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && Open && !Powered) return 15316;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !InWall && !Open && Powered) return 15317;
- return 15318;
- }
- short WarpedFenceGate();
- eBlockFace Facing(short ID);
- bool InWall(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace WarpedFungus
- {
- constexpr short WarpedFungus()
- {
- return 14971;
- }
- }
- namespace WarpedHyphae
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short WarpedHyphae(enum Axis Axis)
- {
- if (Axis == Axis::X) return 14964;
- if (Axis == Axis::Y) return 14965;
- return 14966;
- }
- short WarpedHyphae();
- enum Axis Axis(short ID);
- }
- namespace WarpedNylium
- {
- constexpr short WarpedNylium()
- {
- return 14970;
- }
- }
- namespace WarpedPlanks
- {
- constexpr short WarpedPlanks()
- {
- return 15046;
- }
- }
- namespace WarpedPressurePlate
- {
- constexpr short WarpedPressurePlate(bool Powered)
- {
- if (Powered) return 15061;
- return 15062;
- }
- short WarpedPressurePlate();
- bool Powered(short ID);
- }
- namespace WarpedRoots
- {
- constexpr short WarpedRoots()
- {
- return 14973;
- }
- }
- namespace WarpedSign
- {
- constexpr short WarpedSign(unsigned char Rotation)
- {
- if (Rotation == 0) return 15688;
- if (Rotation == 1) return 15690;
- if (Rotation == 2) return 15692;
- if (Rotation == 3) return 15694;
- if (Rotation == 4) return 15696;
- if (Rotation == 5) return 15698;
- if (Rotation == 6) return 15700;
- if (Rotation == 7) return 15702;
- if (Rotation == 8) return 15704;
- if (Rotation == 9) return 15706;
- if (Rotation == 10) return 15708;
- if (Rotation == 11) return 15710;
- if (Rotation == 12) return 15712;
- if (Rotation == 13) return 15714;
- if (Rotation == 14) return 15716;
- return 15718;
- }
- short WarpedSign();
- unsigned char Rotation(short ID);
- }
- namespace WarpedSlab
- {
- enum class Type
- {
- Top,
- Bottom,
- Double
- };
- constexpr short WarpedSlab(enum Type Type)
- {
- if (Type == Type::Top) return 15054;
- if (Type == Type::Bottom) return 15056;
- return 15058;
- }
- short WarpedSlab();
- enum Type Type(short ID);
- }
- namespace WarpedStairs
- {
- enum class Half
- {
- Top,
- Bottom
- };
- enum class Shape
- {
- Straight,
- InnerLeft,
- InnerRight,
- OuterLeft,
- OuterRight
- };
- constexpr short WarpedStairs(eBlockFace Facing, enum Half Half, enum Shape Shape)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::Straight) return 15400;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerLeft) return 15402;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::InnerRight) return 15404;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterLeft) return 15406;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Shape == Shape::OuterRight) return 15408;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::Straight) return 15410;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 15412;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::InnerRight) return 15414;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 15416;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Shape == Shape::OuterRight) return 15418;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::Straight) return 15420;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerLeft) return 15422;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::InnerRight) return 15424;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterLeft) return 15426;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Shape == Shape::OuterRight) return 15428;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::Straight) return 15430;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 15432;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::InnerRight) return 15434;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 15436;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Shape == Shape::OuterRight) return 15438;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::Straight) return 15440;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerLeft) return 15442;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::InnerRight) return 15444;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterLeft) return 15446;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Shape == Shape::OuterRight) return 15448;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::Straight) return 15450;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerLeft) return 15452;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::InnerRight) return 15454;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterLeft) return 15456;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Shape == Shape::OuterRight) return 15458;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::Straight) return 15460;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerLeft) return 15462;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::InnerRight) return 15464;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterLeft) return 15466;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Shape == Shape::OuterRight) return 15468;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::Straight) return 15470;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerLeft) return 15472;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::InnerRight) return 15474;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Shape == Shape::OuterLeft) return 15476;
- return 15478;
- }
- short WarpedStairs();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- enum Shape Shape(short ID);
- }
- namespace WarpedStem
- {
- enum class Axis
- {
- X,
- Y,
- Z
- };
- constexpr short WarpedStem(enum Axis Axis)
- {
- if (Axis == Axis::X) return 14958;
- if (Axis == Axis::Y) return 14959;
- return 14960;
- }
- short WarpedStem();
- enum Axis Axis(short ID);
- }
- namespace WarpedTrapdoor
- {
- enum class Half
- {
- Top,
- Bottom
- };
- constexpr short WarpedTrapdoor(eBlockFace Facing, enum Half Half, bool Open, bool Powered)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && Powered) return 15192;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && Open && !Powered) return 15194;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && Powered) return 15196;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Top && !Open && !Powered) return 15198;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && Powered) return 15200;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && Open && !Powered) return 15202;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && Powered) return 15204;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Half == Half::Bottom && !Open && !Powered) return 15206;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && Powered) return 15208;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && Open && !Powered) return 15210;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && Powered) return 15212;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Top && !Open && !Powered) return 15214;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && Powered) return 15216;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && Open && !Powered) return 15218;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && Powered) return 15220;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Half == Half::Bottom && !Open && !Powered) return 15222;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && Powered) return 15224;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && Open && !Powered) return 15226;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && Powered) return 15228;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Top && !Open && !Powered) return 15230;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && Powered) return 15232;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && Open && !Powered) return 15234;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && Powered) return 15236;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Half == Half::Bottom && !Open && !Powered) return 15238;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && Powered) return 15240;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && Open && !Powered) return 15242;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && Powered) return 15244;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Top && !Open && !Powered) return 15246;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && Powered) return 15248;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && Open && !Powered) return 15250;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Half == Half::Bottom && !Open && Powered) return 15252;
- return 15254;
- }
- short WarpedTrapdoor();
- eBlockFace Facing(short ID);
- enum Half Half(short ID);
- bool Open(short ID);
- bool Powered(short ID);
- }
- namespace WarpedWallSign
- {
- constexpr short WarpedWallSign(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 15728;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 15730;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 15732;
- return 15734;
- }
- short WarpedWallSign();
- eBlockFace Facing(short ID);
- }
- namespace WarpedWartBlock
- {
- constexpr short WarpedWartBlock()
- {
- return 14972;
- }
- }
- namespace Water
- {
- constexpr short Water(unsigned char Level)
- {
- if (Level == 0) return 34;
- if (Level == 1) return 35;
- if (Level == 2) return 36;
- if (Level == 3) return 37;
- if (Level == 4) return 38;
- if (Level == 5) return 39;
- if (Level == 6) return 40;
- if (Level == 7) return 41;
- if (Level == 8) return 42;
- if (Level == 9) return 43;
- if (Level == 10) return 44;
- if (Level == 11) return 45;
- if (Level == 12) return 46;
- if (Level == 13) return 47;
- if (Level == 14) return 48;
- return 49;
- }
- short Water();
- unsigned char Level(short ID);
- }
- namespace WeepingVines
- {
- constexpr short WeepingVines(unsigned char Age)
- {
- if (Age == 0) return 14990;
- if (Age == 1) return 14991;
- if (Age == 2) return 14992;
- if (Age == 3) return 14993;
- if (Age == 4) return 14994;
- if (Age == 5) return 14995;
- if (Age == 6) return 14996;
- if (Age == 7) return 14997;
- if (Age == 8) return 14998;
- if (Age == 9) return 14999;
- if (Age == 10) return 15000;
- if (Age == 11) return 15001;
- if (Age == 12) return 15002;
- if (Age == 13) return 15003;
- if (Age == 14) return 15004;
- if (Age == 15) return 15005;
- if (Age == 16) return 15006;
- if (Age == 17) return 15007;
- if (Age == 18) return 15008;
- if (Age == 19) return 15009;
- if (Age == 20) return 15010;
- if (Age == 21) return 15011;
- if (Age == 22) return 15012;
- if (Age == 23) return 15013;
- if (Age == 24) return 15014;
- return 15015;
- }
- short WeepingVines();
- unsigned char Age(short ID);
- }
- namespace WeepingVinesPlant
- {
- constexpr short WeepingVinesPlant()
- {
- return 15016;
- }
- }
- namespace WetSponge
- {
- constexpr short WetSponge()
- {
- return 230;
- }
- }
- namespace Wheat
- {
- constexpr short Wheat(unsigned char Age)
- {
- if (Age == 0) return 3357;
- if (Age == 1) return 3358;
- if (Age == 2) return 3359;
- if (Age == 3) return 3360;
- if (Age == 4) return 3361;
- if (Age == 5) return 3362;
- if (Age == 6) return 3363;
- return 3364;
- }
- short Wheat();
- unsigned char Age(short ID);
- }
- namespace WhiteBanner
- {
- constexpr short WhiteBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 7897;
- if (Rotation == 1) return 7898;
- if (Rotation == 2) return 7899;
- if (Rotation == 3) return 7900;
- if (Rotation == 4) return 7901;
- if (Rotation == 5) return 7902;
- if (Rotation == 6) return 7903;
- if (Rotation == 7) return 7904;
- if (Rotation == 8) return 7905;
- if (Rotation == 9) return 7906;
- if (Rotation == 10) return 7907;
- if (Rotation == 11) return 7908;
- if (Rotation == 12) return 7909;
- if (Rotation == 13) return 7910;
- if (Rotation == 14) return 7911;
- return 7912;
- }
- short WhiteBanner();
- unsigned char Rotation(short ID);
- }
- namespace WhiteBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short WhiteBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1049;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1050;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1051;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1052;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1053;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1054;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1055;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1056;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1057;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1058;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1059;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1060;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1061;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1062;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1063;
- return 1064;
- }
- short WhiteBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace WhiteCarpet
- {
- constexpr short WhiteCarpet()
- {
- return 7866;
- }
- }
- namespace WhiteConcrete
- {
- constexpr short WhiteConcrete()
- {
- return 9438;
- }
- }
- namespace WhiteConcretePowder
- {
- constexpr short WhiteConcretePowder()
- {
- return 9454;
- }
- }
- namespace WhiteGlazedTerracotta
- {
- constexpr short WhiteGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9374;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9375;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9376;
- return 9377;
- }
- short WhiteGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace WhiteShulkerBox
- {
- constexpr short WhiteShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9278;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9279;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9280;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9281;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9282;
- return 9283;
- }
- short WhiteShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace WhiteStainedGlass
- {
- constexpr short WhiteStainedGlass()
- {
- return 4095;
- }
- }
- namespace WhiteStainedGlassPane
- {
- constexpr short WhiteStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 6865;
- if (East && North && South && !West) return 6866;
- if (East && North && !South && West) return 6869;
- if (East && North && !South && !West) return 6870;
- if (East && !North && South && West) return 6873;
- if (East && !North && South && !West) return 6874;
- if (East && !North && !South && West) return 6877;
- if (East && !North && !South && !West) return 6878;
- if (!East && North && South && West) return 6881;
- if (!East && North && South && !West) return 6882;
- if (!East && North && !South && West) return 6885;
- if (!East && North && !South && !West) return 6886;
- if (!East && !North && South && West) return 6889;
- if (!East && !North && South && !West) return 6890;
- if (!East && !North && !South && West) return 6893;
- return 6894;
- }
- short WhiteStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace WhiteTerracotta
- {
- constexpr short WhiteTerracotta()
- {
- return 6847;
- }
- }
- namespace WhiteTulip
- {
- constexpr short WhiteTulip()
- {
- return 1419;
- }
- }
- namespace WhiteWallBanner
- {
- constexpr short WhiteWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8153;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8154;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8155;
- return 8156;
- }
- short WhiteWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace WhiteWool
- {
- constexpr short WhiteWool()
- {
- return 1384;
- }
- }
- namespace WitherRose
- {
- constexpr short WitherRose()
- {
- return 1423;
- }
- }
- namespace WitherSkeletonSkull
- {
- constexpr short WitherSkeletonSkull(unsigned char Rotation)
- {
- if (Rotation == 0) return 6510;
- if (Rotation == 1) return 6511;
- if (Rotation == 2) return 6512;
- if (Rotation == 3) return 6513;
- if (Rotation == 4) return 6514;
- if (Rotation == 5) return 6515;
- if (Rotation == 6) return 6516;
- if (Rotation == 7) return 6517;
- if (Rotation == 8) return 6518;
- if (Rotation == 9) return 6519;
- if (Rotation == 10) return 6520;
- if (Rotation == 11) return 6521;
- if (Rotation == 12) return 6522;
- if (Rotation == 13) return 6523;
- if (Rotation == 14) return 6524;
- return 6525;
- }
- short WitherSkeletonSkull();
- unsigned char Rotation(short ID);
- }
- namespace WitherSkeletonWallSkull
- {
- constexpr short WitherSkeletonWallSkull(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6526;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6527;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 6528;
- return 6529;
- }
- short WitherSkeletonWallSkull();
- eBlockFace Facing(short ID);
- }
- namespace YellowBanner
- {
- constexpr short YellowBanner(unsigned char Rotation)
- {
- if (Rotation == 0) return 7961;
- if (Rotation == 1) return 7962;
- if (Rotation == 2) return 7963;
- if (Rotation == 3) return 7964;
- if (Rotation == 4) return 7965;
- if (Rotation == 5) return 7966;
- if (Rotation == 6) return 7967;
- if (Rotation == 7) return 7968;
- if (Rotation == 8) return 7969;
- if (Rotation == 9) return 7970;
- if (Rotation == 10) return 7971;
- if (Rotation == 11) return 7972;
- if (Rotation == 12) return 7973;
- if (Rotation == 13) return 7974;
- if (Rotation == 14) return 7975;
- return 7976;
- }
- short YellowBanner();
- unsigned char Rotation(short ID);
- }
- namespace YellowBed
- {
- enum class Part
- {
- Head,
- Foot
- };
- constexpr short YellowBed(eBlockFace Facing, bool Occupied, enum Part Part)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Head) return 1113;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && Occupied && Part == Part::Foot) return 1114;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Head) return 1115;
- if (Facing == eBlockFace::BLOCK_FACE_ZM && !Occupied && Part == Part::Foot) return 1116;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Head) return 1117;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && Occupied && Part == Part::Foot) return 1118;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Head) return 1119;
- if (Facing == eBlockFace::BLOCK_FACE_ZP && !Occupied && Part == Part::Foot) return 1120;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Head) return 1121;
- if (Facing == eBlockFace::BLOCK_FACE_XM && Occupied && Part == Part::Foot) return 1122;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Head) return 1123;
- if (Facing == eBlockFace::BLOCK_FACE_XM && !Occupied && Part == Part::Foot) return 1124;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Head) return 1125;
- if (Facing == eBlockFace::BLOCK_FACE_XP && Occupied && Part == Part::Foot) return 1126;
- if (Facing == eBlockFace::BLOCK_FACE_XP && !Occupied && Part == Part::Head) return 1127;
- return 1128;
- }
- short YellowBed();
- eBlockFace Facing(short ID);
- bool Occupied(short ID);
- enum Part Part(short ID);
- }
- namespace YellowCarpet
- {
- constexpr short YellowCarpet()
- {
- return 7870;
- }
- }
- namespace YellowConcrete
- {
- constexpr short YellowConcrete()
- {
- return 9442;
- }
- }
- namespace YellowConcretePowder
- {
- constexpr short YellowConcretePowder()
- {
- return 9458;
- }
- }
- namespace YellowGlazedTerracotta
- {
- constexpr short YellowGlazedTerracotta(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9390;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9391;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9392;
- return 9393;
- }
- short YellowGlazedTerracotta();
- eBlockFace Facing(short ID);
- }
- namespace YellowShulkerBox
- {
- constexpr short YellowShulkerBox(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 9302;
- if (Facing == eBlockFace::BLOCK_FACE_XP) return 9303;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 9304;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 9305;
- if (Facing == eBlockFace::BLOCK_FACE_YP) return 9306;
- return 9307;
- }
- short YellowShulkerBox();
- eBlockFace Facing(short ID);
- }
- namespace YellowStainedGlass
- {
- constexpr short YellowStainedGlass()
- {
- return 4099;
- }
- }
- namespace YellowStainedGlassPane
- {
- constexpr short YellowStainedGlassPane(bool East, bool North, bool South, bool West)
- {
- if (East && North && South && West) return 6993;
- if (East && North && South && !West) return 6994;
- if (East && North && !South && West) return 6997;
- if (East && North && !South && !West) return 6998;
- if (East && !North && South && West) return 7001;
- if (East && !North && South && !West) return 7002;
- if (East && !North && !South && West) return 7005;
- if (East && !North && !South && !West) return 7006;
- if (!East && North && South && West) return 7009;
- if (!East && North && South && !West) return 7010;
- if (!East && North && !South && West) return 7013;
- if (!East && North && !South && !West) return 7014;
- if (!East && !North && South && West) return 7017;
- if (!East && !North && South && !West) return 7018;
- if (!East && !North && !South && West) return 7021;
- return 7022;
- }
- short YellowStainedGlassPane();
- bool East(short ID);
- bool North(short ID);
- bool South(short ID);
- bool West(short ID);
- }
- namespace YellowTerracotta
- {
- constexpr short YellowTerracotta()
- {
- return 6851;
- }
- }
- namespace YellowWallBanner
- {
- constexpr short YellowWallBanner(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 8169;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 8170;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 8171;
- return 8172;
- }
- short YellowWallBanner();
- eBlockFace Facing(short ID);
- }
- namespace YellowWool
- {
- constexpr short YellowWool()
- {
- return 1388;
- }
- }
- namespace ZombieHead
- {
- constexpr short ZombieHead(unsigned char Rotation)
- {
- if (Rotation == 0) return 6530;
- if (Rotation == 1) return 6531;
- if (Rotation == 2) return 6532;
- if (Rotation == 3) return 6533;
- if (Rotation == 4) return 6534;
- if (Rotation == 5) return 6535;
- if (Rotation == 6) return 6536;
- if (Rotation == 7) return 6537;
- if (Rotation == 8) return 6538;
- if (Rotation == 9) return 6539;
- if (Rotation == 10) return 6540;
- if (Rotation == 11) return 6541;
- if (Rotation == 12) return 6542;
- if (Rotation == 13) return 6543;
- if (Rotation == 14) return 6544;
- return 6545;
- }
- short ZombieHead();
- unsigned char Rotation(short ID);
- }
- namespace ZombieWallHead
- {
- constexpr short ZombieWallHead(eBlockFace Facing)
- {
- if (Facing == eBlockFace::BLOCK_FACE_ZM) return 6546;
- if (Facing == eBlockFace::BLOCK_FACE_ZP) return 6547;
- if (Facing == eBlockFace::BLOCK_FACE_XM) return 6548;
- return 6549;
- }
- short ZombieWallHead();
- eBlockFace Facing(short ID);
- }
-}
diff --git a/src/Registries/CMakeLists.txt b/src/Registries/CMakeLists.txt
index 906433f76..31102881d 100644
--- a/src/Registries/CMakeLists.txt
+++ b/src/Registries/CMakeLists.txt
@@ -1,9 +1,10 @@
target_sources(
${CMAKE_PROJECT_NAME} PRIVATE
- Blocks.cpp
+ BlockStates.cpp
- Blocks.h
+ BlockStates.h
+ BlockTypes.h
Items.h
Statistics.h
) \ No newline at end of file
diff --git a/src/Registries/Statistics.h b/src/Registries/Statistics.h
index d1de992c6..82aef5442 100644
--- a/src/Registries/Statistics.h
+++ b/src/Registries/Statistics.h
@@ -1,4 +1,3 @@
-
#pragma once
enum class Statistic
diff --git a/src/Simulator/IncrementalRedstoneSimulator/RedstoneSimulatorChunkData.h b/src/Simulator/IncrementalRedstoneSimulator/RedstoneSimulatorChunkData.h
index 02da327a1..f9545d997 100644
--- a/src/Simulator/IncrementalRedstoneSimulator/RedstoneSimulatorChunkData.h
+++ b/src/Simulator/IncrementalRedstoneSimulator/RedstoneSimulatorChunkData.h
@@ -3,8 +3,9 @@
#include <stack>
-#include "../RedstoneSimulator.h"
-#include "../../Chunk.h"
+#include "Chunk.h"
+#include "BlockState.h"
+#include "Simulator/RedstoneSimulator.h"
@@ -82,7 +83,7 @@ public:
}
/** Temporary, should be chunk data: wire block store, to avoid recomputing states every time. */
- std::unordered_map<Vector3i, short, VectorHasher<int>> WireStates;
+ std::unordered_map<Vector3i, BlockState, VectorHasher<int>> WireStates;
std::unordered_set<Vector3i, VectorHasher<int>> AlwaysTickedPositions;
diff --git a/src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h b/src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h
index c97f37aa5..66709293a 100644
--- a/src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h
+++ b/src/Simulator/IncrementalRedstoneSimulator/RedstoneWireHandler.h
@@ -2,7 +2,7 @@
#pragma once
#include "RedstoneHandler.h"
-#include "../../Registries/Blocks.h"
+#include "Registries/BlockStates.h"
@@ -20,7 +20,7 @@ namespace RedstoneWireHandler
/** Invokes Callback with the wire's left, front, and right direction state corresponding to Offset.
Returns a new block constructed from the directions that the callback may have modified. */
template <class OffsetCallback>
- inline short DoWithDirectionState(const Vector3i Offset, short Block, OffsetCallback Callback)
+ inline BlockState DoWithDirectionState(const Vector3i Offset, BlockState Block, OffsetCallback Callback)
{
auto North = Block::RedstoneWire::North(Block);
auto South = Block::RedstoneWire::South(Block);
@@ -49,7 +49,7 @@ namespace RedstoneWireHandler
}
/** Adjusts a given wire block so that the direction represented by Offset has state Direction. */
- inline void SetDirectionState(const Vector3i Offset, short & Block, TemporaryDirection Direction)
+ inline void SetDirectionState(const Vector3i Offset, BlockState & Block, TemporaryDirection Direction)
{
Block = DoWithDirectionState(Offset, Block, [Direction](auto, auto & Front, auto)
{
@@ -189,7 +189,7 @@ namespace RedstoneWireHandler
return;
}
- DataForChunk(Chunk).WireStates[Position] = Block;
+ DataForChunk(Chunk).WireStates.emplace(Position, Block);
}
inline PowerLevel GetPowerDeliveredToPosition(const cChunk & a_Chunk, Vector3i a_Position, BLOCKTYPE a_BlockType, Vector3i a_QueryPosition, BLOCKTYPE a_QueryBlockType, bool IsLinked)